@charset "UTF-8";
/* ・:*( ܸ ・⩊・ ܸ )*:・ common (repetitive) stuff ・:*( ܸ ・⩊・ ܸ )*:・ */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  padding-inline-start: 0;
  margin-inline-start: 0;
  line-height: normal;
  text-decoration: none;
  color: unset;
}

ul {
  list-style: none;
}

:root {
  --primary-color: #00A0E9;
  --accent-color: #F16C10;
  --primary-light: #BCE6F7;
  --secondary-light: #E1F4FC;
  --primary-dark: #196787;
  --flex-gap: 3rem;
  --min-width: 320px;
  --text-size: clamp(14px, 1.2vw, 16px);
  --text-sm: 0.8rem;
}

body {
  font-size: var(--text-size);
}

main h3, main h4, main p {
  margin: 0.6rem 0 0.2rem 0;
}
main h2 {
  font-size: 1.8rem;
  margin: 10px 0;
  font-weight: bolder;
}
main h3 {
  font-size: 1.4rem;
  font-weight: bold;
}
main h4 {
  font-size: 1.3rem;
  font-weight: bold;
}
main p {
  font-size: 1rem;
}
main h1 {
  display: none;
}

@media (max-width: 768px) {
  :root {
    --flex-gap: 2rem;
    --min-width: 200px;
    --text-size: 16px;
  }
  main h2 {
    font-size: 1.3rem;
  }
  main h3 {
    font-size: 1.2rem;
  }
  main h3, main h4 {
    font-size: 1.1rem;
  }
}
main a:hover {
  opacity: 1;
}

.content {
  margin-bottom: 0px;
}

/* layout flex wrap */
.l-fl-wr {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
}

.outer-container {
  width: 100%;
  margin: auto;
  padding: 20px 5% 60px 5%;
  box-sizing: border-box;
  text-align: center;
}

@media (max-width: 768px) {
  .outer-container {
    padding: 8%;
  }
  .l-fl-wr {
    gap: 1rem;
  }
}
.outer-container > * {
  max-width: 1000px;
  margin: auto;
}

/* exceptopn from max-width */
.exception > * {
  max-width: 1200px;
}

.cta, .cta1, .cta-off, .main-cta {
  display: inline-block;
  max-width: 340px;
  background-color: var(--accent-color);
  color: white;
  font-weight: bold;
  text-align: center;
  padding: 0.7rem 2.4rem;
  border-radius: 20px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  transition: 0.3s linear;
  margin: auto 0.4rem;
  line-height: 1.2rem;
}

.cta1 {
  background: linear-gradient(to right, #6BD4FF, #009FE0);
  margin-top: 10px;
}

.cta:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
  color: white;
}

.cta::after, .cta1::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: rgba(255, 255, 255, 0.35);
  transform: skewX(-20deg);
  transition: 0.5s;
}

.cta:hover::after, .cta1:hover::after {
  left: 150%;
}

.cta1:hover {
  color: white;
  box-shadow: 0 0 8px var(--primary-color), 0 0 20px white;
}

.cta-off:hover {
  color: white;
}

.cta-off {
  background-color: #868686;
}

.cta-group {
  margin-top: 20px;
  margin-bottom: 40px;
  gap: 0;
}

@media (max-width: 401px) {
  .cta, .main-cta, .cta-off {
    width: 100%;
    margin: 0 0 0.5rem 0;
  }
}
.caption {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 20px auto;
  margin-bottom: 40px;
  padding: 2px;
}

/* caption vertical */
.caption-v {
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 4px;
  color: white;
}
.caption-v img {
  height: 100%;
}
.caption-v .mb {
  display: none;
  height: 2rem;
}

@media (max-width: 1000px) {
  .caption-v {
    writing-mode: horizontal-tb;
    letter-spacing: 0;
  }
  .caption-v .dt {
    display: none;
  }
  .benefits.outer-container > *,
  .message.outer-container > *,
  .caption-v .mb {
    display: block;
  }
}
.header {
  position: fixed;
  z-index: 10;
  width: 100%;
  background-color: var(--primary-color);
  padding: 0.5rem 3rem 1rem 3rem;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  align-items: center;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, -webkit-backdrop-filter 0.3s ease;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease;
}

/* logo */
.main-logo img {
  max-height: 60px;
  width: auto;
}

/* nav desktop */
.main-nav ul {
  font-size: 0.8rem;
  margin-top: 10px;
}

.main-nav a {
  font-weight: bold;
  color: white;
}

.main-nav ul a:hover {
  text-decoration: underline;
}

.header-contacts {
  gap: 0;
  justify-content: flex-end;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 2px;
  min-width: 140px;
}

.header-phone img {
  height: 26px;
}

/* hamburger button - default hidden (desktop) */
.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: 0.2s;
}

@media (min-width: 769px) {
  .header.scrolled {
    background-color: rgba(0, 160, 233, 0.8); /* #00A0E9 with opacity */
    -webkit-backdrop-filter: blur(6px);
            backdrop-filter: blur(6px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  }
}
@media (max-width: 768px) {
  .header {
    padding: 0 1rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
  }
  .nav-toggle {
    display: block;
    margin-left: auto;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 30;
  }
  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
    position: relative;
  }
  /* FULL-SCREEN OVERLAY MENU */
  .main-nav {
    position: fixed;
    inset: 0; /* top:0; right:0; bottom:0; left:0; */
    background: linear-gradient(to top, rgba(25, 103, 135, 0.8), rgba(0, 160, 233, 0.8));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 4rem 1.5rem 2rem;
    box-sizing: border-box;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 25;
  }
  .main-nav .header-contacts {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .main-nav a {
    font-size: 1.4rem;
  }
  /* WHEN NAV IS OPEN */
  .header.nav-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  /* HAMBURGER → X */
  .header.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .header.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  .header.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}
/* ・:*( ܸ ・⩊・ ܸ )*:・ section 0: hero ・:*( ܸ ・⩊・ ܸ )*:・ */
.hero {
  padding-top: 0px;
}

.hero .upper-part {
  align-items: flex-end;
  flex-wrap: nowrap;
  margin-bottom: 32px;
}

.hero-img-dt, .hero-left {
  width: 50%;
}

.hero-left {
  margin-top: 120px;
}

.hero-left > * {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 15px;
}

.hero-3points {
  display: flex;
  justify-content: space-between;
}

.hero-3points img {
  width: 30%;
}

/* hero for mobile */
@media (max-width: 768px) {
  .hero .upper-part {
    flex-direction: column;
  }
  .hero-img-dt {
    display: none;
  }
  .hero-left {
    width: 100%;
    margin-top: 80px;
  }
}
/* ・:*( ܸ ・⩊・ ܸ )*:・ main-cta ・:*( ܸ ・⩊・ ܸ )*:・ */
.contact-us {
  font-weight: 600;
}

.main-cta {
  padding: 0.7rem 4rem;
  border-radius: 40px;
  font-size: 1.2rem;
  /* Animated gradient */
  background: linear-gradient(135deg, #ff6a6a, #ff9f43);
  background-size: 300% 300%;
  animation: gradientMove 5s ease-in-out infinite;
  /* Glow effect */
  box-shadow: 0 0 15px rgba(255, 120, 80, 0.6), 0 0 30px rgba(255, 120, 80, 0.4);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.main-cta span {
  font-size: var(--text-sm);
  font-weight: 500;
}

/* Glow more on hover */
.main-cta:hover {
  box-shadow: 0 0 25px rgba(255, 120, 80, 0.9), 0 0 45px rgba(255, 120, 80, 0.7);
  transform: translateY(-3px);
  color: white;
}

/* Moving gradient animation */
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.contact-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem 3rem;
}

.contact-tel .tel {
  border-left: 1px solid #333;
  font-size: 2rem;
  padding-left: 3rem;
  text-align: left;
}

.contact-tel .tel p {
  color: var(--accent-color);
}

@media (max-width: 876px) {
  .contact-tel {
    flex-direction: column;
    gap: 0;
  }
  .contact-tel .tel {
    text-align: center;
    padding-left: 0;
    border-left: none;
    border-top: none;
    margin-top: 20px;
  }
}
/* ・:*( ܸ ・⩊・ ܸ )*:・ section 1: about ・:*( ܸ ・⩊・ ܸ )*:・ */
/* ・:*( ܸ ・⩊・ ܸ )*:・ section 8: uniqueness ・:*( ܸ ・⩊・ ܸ )*:・ */
.uniqueness .caption {
  background-image: url("img-metalp/UNIQUENESS.svg");
}

.about .caption {
  background-image: url("img-metalp/ABOUT.svg");
}

.about .content, .uniqueness .content {
  align-items: center;
}

.about .content > *, .uniqueness .content > * {
  max-width: 31%;
  min-width: var(--min-width);
  text-align: justify;
  line-break: strict;
}

@media (max-width: 768px) {
  .about .content, .uniqueness .content {
    align-items: center;
    padding: 0;
  }
  .about .content > *, .uniqueness .content > * {
    width: 100%;
    max-width: 425px;
    font-size: 1.1rem;
  }
}
/* ・:*( ܸ ・⩊・ ܸ )*:・ section 2: products ・:*( ܸ ・⩊・ ܸ )*:・ */
.products .caption {
  background-image: url("img-metalp/CAMPAIGN.svg");
}

.products .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  max-width: 340px;
  box-sizing: border-box;
  padding-bottom: 10px;
  border: 15px solid transparent;
  border-radius: 50px;
  background: linear-gradient(#ffffff) padding-box, linear-gradient(to bottom, var(--primary-color), var(--primary-dark)) border-box;
}
.products .card p {
  font-size: var(--text-sm);
}
.products .card img {
  width: 96%;
}
.products .card .l-fl-wr {
  gap: 0;
}

.products .card .upper-part {
  display: flex;
  margin-bottom: 10px;
}
.products .card .upper-part .left {
  width: 50%;
  background-color: var(--primary-color);
  color: white;
  align-content: center;
}
.products .card .upper-part .left h4 {
  line-height: 1.7rem;
}
.products .card .upper-part .left p {
  margin: 2px;
}
.products .card .upper-part img {
  border-top-right-radius: 40px;
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.2s, box-shadow 0.2s;
}
.products .card .upper-part a {
  width: 50%;
}
.products .card .upper-part a:hover img {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.products .card .down-part {
  padding: 0 10px;
  text-align: justify;
}
.products .card .down-part h4, .products .card .down-part p {
  margin: 6px 0;
}

.products .cta, .products .cta-off {
  padding: 6px 20px;
  margin: 0 6px;
  font-weight: normal;
  font-size: var(--text-sm);
}

.products .swipe {
  display: none;
}

@media (max-width: 898px) {
  .products .content {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0;
    margin: 0;
  }
  .products .swipe {
    display: block;
    opacity: 0.7;
  }
  .products .hint {
    font-size: var(--text-sm);
    margin-bottom: 14px;
  }
  .products .dots {
    margin-top: 10px;
    font-size: 1.2rem;
  }
  .products .card {
    flex: 0 0 auto;
    scroll-snap-align: center;
    flex-shrink: 0;
  }
  .products .content.l-fl-wr::-webkit-scrollbar {
    display: none;
  }
  .products .card:first-child {
    order: 6;
  }
}
@media (max-width: 401px) {
  .products .card {
    max-width: 220px;
    border-radius: 20px;
    border: 6px solid transparent;
  }
  .products .l-fl-wr {
    width: 100%;
  }
  .products .cta:first-child, .cta-off:first-child {
    display: none;
  }
}
/* ・:*( ܸ ・⩊・ ܸ )*:・ section 3: benefits ・:*( ܸ ・⩊・ ܸ )*:・ */
.outer-container.benefits {
  background: linear-gradient(to bottom, var(--primary-light), var(--primary-color));
}

.benefits {
  padding-top: 60px;
}
.benefits > * {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.benefits li {
  background-color: white;
  border-radius: 20px;
  display: flex;
  gap: 2rem;
  text-align: left;
  padding: 20px 30px;
  margin: 40px 0;
}
.benefits li img {
  min-width: 80px;
}
.benefits li span {
  display: block;
  font-weight: bold;
}

@media (max-width: 1000px) {
  .benefits .caption-v {
    text-align: left;
  }
}
@media (max-width: 401px) {
  .benefits li {
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-align: center;
  }
  .benefits li img {
    max-width: 40px;
  }
}
/* ・:*( ܸ ・⩊・ ܸ )*:・ section 4: problems ・:*( ܸ ・⩊・ ܸ )*:・ */
.problems .caption {
  background-image: url("img-metalp/PROBLEMS.svg");
}

.problems .content {
  justify-content: space-evenly;
  align-items: flex-end;
}
.problems .content .left {
  background: var(--primary-light);
}
.problems .content .right {
  background: var(--primary-color);
  color: white;
}

.problem {
  align-content: center;
  width: 50%;
  max-width: var(--min-width);
  aspect-ratio: 1/1;
  border-radius: 50%;
}
.problem h4 {
  margin: 5px;
  margin-top: -10px;
}
.problem ul {
  text-align: left;
  list-style: disc;
  padding-inline-start: 22px;
  margin-left: 7%;
  margin-right: 2%;
  font-size: var(--text-sm);
}

.problems-image {
  position: absolute;
  margin-right: -10px;
  width: 100%;
  max-width: 1200px;
  z-index: 2;
}
.problems-image img {
  width: 20%;
}

@media (max-width: 768px) {
  .problems .content {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .problems .content .problem {
    min-width: var(--min-width);
    padding: 2%;
    width: -moz-fit-content;
    width: fit-content;
    max-width: none;
  }
  .problems .content .problem ul {
    margin: 0;
  }
  .problems .content .left {
    margin-right: -20vw;
  }
  .problems .content .right {
    margin-left: -10vw;
    margin-top: -60px;
  }
  .problems .content .problems-image {
    position: relative;
    width: 100%;
    margin-top: -60px;
  }
  .problems .content .problems-image img {
    width: 30%;
    min-width: 200px;
    margin-right: -10vw;
  }
}
/* ・:*( ܸ ・⩊・ ܸ )*:・ section 5: reasons to choose us ・:*( ܸ ・⩊・ ܸ )*:・ */
.reasons {
  background-color: var(--secondary-light);
}

.reasons p {
  margin-bottom: 0;
}

.reasons .caption {
  background-image: url("img-metalp/WHY-US.svg");
}

.reasons li {
  margin-top: 40px;
  align-items: flex-end;
  flex-wrap: nowrap;
}

.reasons .content {
  text-align: left;
  max-width: 30%;
  min-width: var(--min-width);
}

.reasons .content img {
  height: 40px;
}

.makers {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.makers > *, .awards {
  display: flex;
  justify-content: flex-end;
  gap: 1.4rem;
}

.makers > * {
  align-items: center;
}

.awards {
  align-items: baseline;
}

.makers img {
  height: 1.1rem;
}

.makers .b-s {
  height: 1.2rem;
}

.makers .bb-s {
  height: 1.4rem;
}

.makers .bbb-s {
  height: 1.6rem;
}

.awards img {
  max-width: 10rem;
  min-width: 4rem;
  height: auto;
  margin: clamp(6px, 1.2vw, 16px);
}

.awards:last-child {
  height: 90%;
}

.video-container {
  width: 32%;
  margin: 0;
  aspect-ratio: 16/9;
  position: relative;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 768px) {
  .reasons li:nth-child(odd) {
    flex-direction: column-reverse;
  }
  .reasons li {
    flex-direction: column;
    align-items: center;
  }
  .reasons .content,
  .reasons .awards,
  .reasons .makers,
  .reasons .makers > *,
  .reasons .video-container {
    width: 100%;
    max-width: 425px;
    justify-content: center;
  }
}
@media (max-width: 601px) {
  .reasons .content p {
    margin-bottom: 0;
  }
}
/* ・:*( ܸ ・⩊・ ܸ )*:・ section 6: support ・:*( ܸ ・⩊・ ܸ )*:・ */
.support .columns li {
  width: 30%;
  min-width: var(--min-width);
  text-align: justify;
}

.support .columns img {
  width: 100%;
  height: auto;
}

.support ul {
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .support .columns li {
    width: 100%;
    max-width: 425px;
  }
}
/* ・:*( ܸ ・⩊・ ܸ )*:・ section 7: examples ・:*( ܸ ・⩊・ ܸ )*:・ */
.examples {
  background-color: var(--primary-light);
}

.examples ul {
  margin-bottom: 40px;
}

.examples li {
  box-sizing: border-box;
  width: 260px;
  background-color: white;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 10px;
}

.examples li .upper-part {
  background-color: var(--secondary-light);
  padding-top: 10px;
  position: relative;
}

.examples li .upper-part img {
  height: 120px;
}

.examples li .upper-part div {
  position: absolute;
  z-index: 2;
  bottom: 0px;
  background: white;
  color: var(--primary-color);
  padding: 0.4rem 1rem;
}

.examples li .down-part {
  padding: 33px;
}

.examples li .down-part p {
  text-align: left;
}

@media (max-width: 768px) {
  .examples li {
    width: 100%;
    max-width: 425px;
  }
}
/* ・:*( ܸ ・⩊・ ܸ )*:・ section 9: cases ・:*( ܸ ・⩊・ ܸ )*:・ */
.cases {
  background-color: var(--secondary-light);
}

.cases ul {
  margin-bottom: 40px;
  max-width: 860px;
}

.cases li {
  box-sizing: border-box;
  border: 5px solid white;
  border-radius: 20px;
  margin-bottom: 20px;
  padding: 30px 40px;
  display: flex;
  gap: 2rem;
  align-items: center;
  text-align: left;
}
.cases li img {
  width: 100px;
  height: auto;
  border-radius: 50%;
  aspect-ratio: 1;
  border: 1px solid white;
}
.cases li span {
  font-size: var(--text-sm);
  color: #fff;
  background-color: var(--primary-color);
  border-radius: 50px;
  padding: 0 1rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.cases li:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}

.cases li:nth-child(odd) {
  background: var(--primary-light);
}

.cases li:nth-child(even) {
  background: #F1FBFF;
}

@media (max-width: 601px) {
  .cases li {
    flex-direction: column-reverse;
    gap: 0.5rem;
    text-align: center;
  }
}
/* ・:*( ܸ ・⩊・ ܸ )*:・ section 10: flow ・:*( ܸ ・⩊・ ܸ )*:・ */
.flow li {
  max-width: 20%;
  min-width: 200px;
  border-radius: 20px;
  padding: 20px;
  position: relative;
}

.flow li:nth-child(odd) {
  background: var(--secondary-light);
}

.flow li:nth-child(even) {
  background: var(--primary-light);
}

.flow li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -25px;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  /* GRADIENT arrow */
  background: linear-gradient(45deg, #009FE0, #6BD4FF);
  /* Make it a triangle */
  clip-path: polygon(100% 50%, 0 0, 0 100%);
}

.flow li b {
  color: var(--primary-color);
  font-size: 1.4rem;
}

.flow li strong {
  line-height: 3rem;
}

.flow li p {
  margin: 2px;
  text-align: left;
}

@media (max-width: 768px) {
  .flow li:not(:last-child)::after {
    display: none;
  }
  .flow li {
    width: 100%;
    max-width: 425px;
    margin-bottom: 20px;
    text-align: center;
  }
}
/* ・:*( ܸ ・⩊・ ܸ )*:・ section 11: faq ・:*( ܸ ・⩊・ ܸ )*:・ */
.faq {
  background: var(--primary-light);
  margin-bottom: 0;
}
.faq a {
  color: var(--primary-color);
  font-weight: 600;
}
.faq dl div {
  box-sizing: border-box;
  border: white solid 2px;
  max-width: 860px;
  margin: auto;
  background: white;
  border-radius: 20px;
  padding: 1.2rem 4rem 1.2rem 2rem;
  margin-bottom: 20px;
  text-align: left;
  position: relative;
  cursor: pointer;
}
.faq dl div::before {
  content: "＋";
  position: absolute;
  right: 2rem;
  top: 2rem;
  font-weight: bold;
  color: var(--primary-color);
  display: inline-block;
  width: 1.2rem;
}
.faq dl div.open::before {
  content: "−";
}
.faq dl div:hover {
  border: var(--accent-color) solid 2px;
}
.faq dl dd {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease;
}
.faq dl div.open dd {
  opacity: 1;
  transition: 0.3s;
}
.faq dl dt {
  color: var(--primary-color);
  font-weight: bold;
  margin: 0.8rem 0;
}
.faq dl dt span {
  color: var(--accent-color);
  margin-right: 1rem;
}

/* ・:*( ܸ ・⩊・ ܸ )*:・ section 12: message ・:*( ܸ ・⩊・ ܸ )*:・ */
.message {
  background: linear-gradient(to bottom, #6BD4FF, #009FE0);
  padding-top: 60px;
}
.message > * {
  display: flex;
  align-items: stretch;
}
.message .caption-v {
  width: 30%;
}

.message .content {
  display: flex;
  gap: 0;
  justify-content: center;
}

.message .content .image.dt, .message .content .text {
  max-width: 48%;
  min-width: var(--min-width);
  height: -moz-fit-content;
  height: fit-content;
  margin: 0;
}

.message .content .image {
  width: 100%;
  border-radius: 20px;
  height: auto;
}

.message .content .image.dt {
  position: relative;
  aspect-ratio: 4/3;
  z-index: -1;
}

.message .content .image.mb {
  display: none;
  margin: 1rem auto;
  max-width: 320px;
  border-radius: 10px;
}

.message .content .text {
  box-sizing: border-box;
  background: #fff;
  border-radius: 20px;
  margin-top: 90px;
  margin-left: -60px;
  align-content: center;
  padding: 20px 30px;
}

@media (max-width: 768px) {
  .message .content .text {
    margin: 0;
    width: 100%;
    max-width: 425px;
    padding: clamp(0.8rem, 1vw, 1rem);
  }
  .message .content .text p {
    font-size: var(--text-sm);
  }
  .message .content .image.dt {
    display: none;
  }
  .message .content .image.mb {
    display: block;
  }
}
@media (max-width: 1000px) {
  .message .caption-v {
    width: 100%;
  }
  .message .caption-v img {
    margin: auto;
    margin-bottom: 40px;
  }
}
.company table {
  box-sizing: border-box;
  max-width: 960px;
  margin: auto;
  margin-top: 4rem;
  border-collapse: collapse;
}

.company table tr {
  border-bottom: 1px solid rgb(102, 102, 102);
}

.company table th {
  text-align: left;
  box-sizing: border-box;
  font-weight: normal;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2rem 3rem;
}

.company table td {
  text-align: left;
  box-sizing: border-box;
  padding: 2rem 0;
}

.company ul {
  list-style: disc;
}

@media (max-width: 600px) {
  .company table,
  .company table tbody,
  .company table tr,
  .company table th,
  .company table td,
  .company td span {
    display: block;
    width: 100%;
  }
  .company table tr {
    margin-bottom: 1rem;
  }
  .company table th {
    padding: 1rem 0;
    font-weight: bold;
    background: none;
    border-bottom: none;
  }
  .company table td {
    padding: 0 0 1rem 0;
    border-bottom: 1px solid #ccc;
  }
  .company table ul {
    padding-left: 1.5rem;
  }
}
footer {
  box-sizing: border-box;
  text-align: center;
  padding-bottom: 40px;
}

footer .info-bg {
  background-image: url("img-metalp/footer_img.jpg");
  margin: auto;
  text-align: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 400px;
}

footer .info .l-fl-wr {
  padding: 0 5%;
  margin-bottom: 20px;
  margin-top: -180px;
}

footer .info .flexbox {
  max-width: 360px;
  min-width: 300px;
  background-color: #fff;
  border-radius: 20px;
  text-align: center;
  padding: 1rem 2rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #333;
}
footer .info .flexbox p {
  margin: 1.2rem;
  font-size: 0.7rem;
}

footer .info .tel p {
  margin: 0.2px 10px;
}
footer .info .tel strong {
  font-size: 1.2rem;
}
footer .info .tel a {
  font-size: 2.5rem;
  color: #003366;
  font-weight: bold;
}
footer .info .tel span {
  color: #fff;
  background-color: #666;
  padding: 0.2rem 1rem;
  margin-right: 1rem;
  margin-top: 1rem;
}

footer .logo .l-fl-wr {
  margin: auto;
  margin-bottom: 40px;
  justify-content: space-between;
  padding: 0 5%;
}

footer .logo .col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 768px) {
  footer .info .l-fl-wr {
    gap: 0;
    margin-top: -100px;
  }
  footer .info .flexbox {
    width: 100%;
    max-width: none;
  }
}
.contact_lead, .contact_tel {
  text-align: center;
  margin-bottom: 40px;
}

.contact_lead .bold, .contact_tel .bold {
  font-weight: bold;
}

.contact_lead p, .contact_tel p {
  margin: 0;
  line-height: 2;
}

.contact_lead p + p {
  margin-top: 30px;
}

.contact_lead .red {
  display: block;
  color: #ff3300;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 10px;
  text-align: center;
}

.contact_lead .red::before, .contact_lead .red::after {
  content: "";
  position: absolute;
  bottom: 0;
  display: block;
  width: 2px;
  height: 100%;
  background: #ff3300;
}

.contact_lead .red::before {
  left: -5%;
  transform: rotate(-30deg);
}

.contact_lead .red::after {
  right: -5%;
  transform: rotate(30deg);
}

p.tel_bottom {
  font-size: 40px;
  line-height: 1;
  color: #003366;
}

.tel_bottom a:hover {
  text-decoration: none;
}

.contact_wrap br.sp {
  display: none;
}

.contact_wrap img {
  margin-top: 60px;
}

@media only screen and (max-width: 640px) {
  .contact_content {
    display: block;
    padding: 0 0 30px;
  }
  .contact_content .wpcf7-list-item {
    min-width: 120px;
  }
  .contact_title {
    width: 100%;
    padding: 0;
    text-align: center;
  }
  .contact_title span.present {
    max-width: inherit;
    margin: 0;
  }
  #contact2025 {
    padding: 0;
    box-shadow: none;
  }
}
#contact2025 .contactform-container > .contactform-row {
  text-align: left;
}

.wpcf7 select {
  width: 100%;
  text-align: center;
}

#contact2025 .contact-info_img {
  width: -moz-fit-content;
  width: fit-content;
}/*# sourceMappingURL=style-metalp.css.map */