@charset "UTF-8";
/*
Getup.css is released under the Open Source MIT license.
http://www.opensource.org/licenses/mit-license.php

Getup.css is inspired by OOCSS, inuit.css, Twitter Bootstrap, HTML5 Boilerplate, PocketGrid

LICENSE
https://github.com/nibushibu/getup-css/blob/master/LICENSE
*/
/* @import "compass";
@import "./normalize.scss";
@import "animate";
@import "ceaser-easing";
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0&icon_names=keyboard_arrow_up");
@import url("https://use.fontawesome.com/releases/v6.2.0/css/all.css");
:root {
  /* タイポグラフィスケール */
  --font-size-2xs: clamp(1.1rem, 0.5vw + 1.1rem, 1.3rem); /* 11px〜13px */
  --font-size-xs: clamp(1.2rem, 0.5vw + 1.1rem, 1.4rem); /* 12px〜14px */
  --font-size-sm: clamp(1.3rem, 0.5vw + 1.3rem, 1.5rem); /* 14px〜16px */
  --font-size-base: clamp(1.5rem, 0.25vw + 1.55rem, 1.6rem); /* 16px固定 */
  --font-size-lg: clamp(1.8rem, 0.75vw + 1.65rem, 2rem); /* 18px〜20px */
  --font-size-xl: clamp(2.4rem, 1.5vw + 2.1rem, 3rem); /* 24px〜30px */
  --font-size-2xl: clamp(3.2rem, 2.5vw + 2.7rem, 4rem); /* 32px〜40px */
  --font-size-3xl: clamp(4rem, 4vw + 3rem, 5.6rem); /* 40px〜56px */
  /* スペーシングシステム */
  --space-xs: clamp(0.25rem, 0.5vw, 0.5rem);
  --space-sm: clamp(0.5rem, 1vw, 1rem);
  --space-md: clamp(1rem, 2vw, 1.5rem);
  --space-lg: clamp(1.5rem, 3vw, 2.5rem);
  --space-xl: clamp(2rem, 4vw, 4rem);
  --space-2xl: clamp(3rem, 6vw, 6rem);
  /* カラーシステム */
  --color-primary: #43b02a;
  --color-secondary: #ffd52b;
  --color-text: #1f2937;
  --color-background: #eef0f2;
  --color-background2: #b7c0cb;
  --color-gray: #575f69;
  /* スペーシング（8の倍数ベース） */
  --space-unit: 0.8rem; /* 8px */
  --space-xs: clamp(0.4rem, 1vw + 0.2rem, 0.8rem); /* 4px〜8px */
  --space-sm: clamp(0.8rem, 2vw + 0.4rem, 1.6rem); /* 8px〜16px */
  --space-md: clamp(1.6rem, 3vw + 1rem, 3.2rem); /* 16px〜32px */
  --space-lg: clamp(2.4rem, 4vw + 1.6rem, 4.8rem); /* 24px〜48px */
  --space-xl: clamp(3.2rem, 5vw + 2rem, 6.4rem); /* 32px〜64px */
  --space-2xl: clamp(4rem, 6vw + 2.5rem, 8rem); /* 40px〜80px */
  --space-3xl: clamp(4.8rem, 8vw + 3rem, 9.6rem); /* 48px〜96px */
  /* レイアウト */
  --container-width: min(90%, 1200px);
  --content-width: min(85%, 800px);
  --sidebar-width: clamp(200px, 25%, 300px);
  /* ボーダー・角丸 */
  --border-radius-sm: 0.25rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 1rem;
  /* シャドウ */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

h1 {
  font-size: var(--font-size-3xl);
}

h2 {
  font-size: var(--font-size-2xl);
}

h3 {
  font-size: var(--font-size-xl);
}

h4 {
  font-size: var(--font-size-base);
}

p {
  font-size: var(--font-size-base);
}

small {
  font-size: var(--font-size-sm);
}

* {
  margin: 0;
  padding: 0;
  font-style: normal;
  font-size: 100.01%;
  text-align: left;
  color: #111;
  zoom: 1;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "IBM Plex Sans JP", sans-serif;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  font-size: 10px;
  line-height: 1.5;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  background-color: var(--color-background);
}

p {
  line-height: 1.8;
}

a {
  text-decoration: none;
}
a:link, a:visited {
  transition: all 0.2s ease-out;
  color: var(--color-text);
}
a:hover {
  transition: all 0.2s ease-out;
  color: var(--color-primary);
}
a:not([href^="#"]):hover {
  opacity: 1;
}

/* common */
h2.wp-block-heading {
  color: var(--color-primary);
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  h2.wp-block-heading {
    margin-top: 30px;
  }
}

h3.wp-block-heading {
  font-family: "proxima-nova", sans-serif;
}
h3.wp-block-heading + figure {
  margin-top: var(--space-md);
}

figure img {
  width: 100%;
  display: block;
  height: auto;
}
figure + p {
  margin-top: var(--space-unit);
}

.wp-block-columns {
  display: flex;
  gap: 60px;
  margin-top: var(--space-unit);
}

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

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

header {
  width: 100%;
  box-sizing: border-box;
  position: sticky;
  top: 0;
  z-index: 100;
  padding: var(--space-sm) 0;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 40px rgba(17, 17, 17, 0.1);
}
header .header__inner {
  width: 95%;
  max-width: 1200px;
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
}
@media screen and (max-width: 1100px) {
  header .header__inner {
    position: relative;
    grid-template-columns: 1fr;
  }
}
header .header__inner div,
header .header__inner nav {
  box-sizing: border-box;
}
header .header__logo {
  box-sizing: border-box;
}
header .header__logo .logo__img {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: var(--space-sm);
  margin: 0;
}
@media screen and (max-width: 1100px) {
  header .header__logo .logo__img {
    display: grid;
    grid-template-columns: auto 1fr;
    margin: 0;
    font-size: 1px;
  }
}
header .header__logo .logo__img img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1100px) {
  header .header__logo .logo__img img {
    width: auto;
    height: 30px;
  }
}
header .header__logo .logo__copy {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
header .header__logo .logo__copy p {
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--color-primary);
  font-style: italic;
  white-space: nowrap;
}
@media screen and (max-width: 1100px) {
  header .header__logo .logo__copy p {
    font-size: 11px;
    line-height: 1.5;
  }
}
header .header__menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 1100px) {
  header .header__menu {
    box-sizing: border-box;
    padding-top: 60px;
    align-items: flex-start;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--color-primary);
    transition: 0.4s ease-in-out;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
    opacity: 0;
  }
}
header .header__menu .nav__list {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 1100px) {
  header .header__menu .nav__list {
    display: block;
    align-items: top;
    justify-content: unset;
    margin-left: 0;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
}
header .header__menu .nav__list > li {
  width: fit-content;
  list-style-type: none;
  font-size: var(--font-size-sm);
}
header .header__menu .nav__list > li > a {
  padding: 0.2em 0.3em;
}
@media screen and (max-width: 1100px) {
  header .header__menu .nav__list > li > a {
    display: block;
    color: #fff;
    padding: 1.2em 1.5em;
  }
}
header .header__menu .nav__list > li + li {
  margin-left: var(--space-md);
}
@media screen and (max-width: 1100px) {
  header .header__menu .nav__list > li + li {
    margin-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }
}
@media screen and (max-width: 768px) {
  header .header__menu .nav__list > li {
    width: auto;
  }
}
header .header__menu .nav__list > li > .sub__list {
  display: none;
  list-style-type: none;
  margin-left: 3em;
  margin-bottom: 1em;
}
header .header__menu .nav__list > li > .sub__list > li {
  list-style-type: none;
  text-indent: 1em;
}
header .header__menu .nav__list > li > .sub__list > li a:link, header .header__menu .nav__list > li > .sub__list > li a:visited {
  color: #fff;
}
header .header__menu .nav__list > li > .sub__list > li::marker {
  content: "−";
  color: #fff;
}
header .header__menu .nav__list > li > .sub__list > li + li {
  margin-top: var(--space-unit);
}
@media screen and (max-width: 768px) {
  header .header__menu .nav__list > li > .sub__list {
    display: inherit;
  }
}
header .header__hamburger {
  display: none;
  background: none;
  border: none;
  position: absolute;
  width: 30px;
  height: 25px;
  top: calc(50% - 2px);
  right: 5px;
}
@media screen and (max-width: 1100px) {
  header .header__hamburger {
    display: block;
    cursor: pointer;
  }
  header .header__hamburger span {
    content: "";
    display: block;
    height: 1px;
    width: 30px;
    background-color: #000;
    position: absolute;
  }
  header .header__hamburger span::before, header .header__hamburger span::after {
    content: "";
    display: block;
    height: 1px;
    width: 30px;
    background-color: #000;
    position: absolute;
  }
  header .header__hamburger span::before {
    bottom: 8px;
    transition: 0.4s ease;
  }
  header .header__hamburger span::after {
    top: 8px;
    transition: 0.4s ease;
  }
  header .header__hamburger .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: #222;
    padding-top: 100px;
    transition: 0.3s;
  }
  header .header__hamburger .nav-list {
    flex-direction: column;
    gap: 20px;
    padding-left: 20px;
  }
  header .header__hamburger .nav-list > li a:link, header .header__hamburger .nav-list > li a:visited {
    color: var(--color-primary);
  }
  header .header__hamburger .nav-list > li a:hover {
    color: var(--color-secondary);
  }
}
header #menu-toggle:checked ~ .header__hamburger span {
  background-color: rgba(255, 255, 255, 0);
}
header #menu-toggle:checked ~ .header__hamburger span::before {
  bottom: 0;
  transform: rotate(405deg);
  transition: 0.3s ease;
  background-color: #fff;
}
header #menu-toggle:checked ~ .header__hamburger span::after {
  top: 0;
  transform: rotate(-405deg);
  transition: 0.3s ease;
  background-color: #fff;
}
header .menu-toggle {
  display: none;
}
header .menu-toggle:checked ~ .header__menu {
  right: 0;
  opacity: 1;
  transition: 0.4s ease-in-out;
}

footer {
  width: 100%;
  box-sizing: border-box;
  border-top: 1px solid #ccc;
  padding: var(--space-md) 0;
  margin-top: var(--space-xl);
}
footer .footer__container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
footer .footer__container + .copyright {
  margin-top: var(--space-md);
}
footer .footer__container p.footer__text {
  font-size: 14px;
  text-align: center;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  footer .footer__container p.footer__text {
    font-size: 12px;
  }
}
footer .footer__container .footer__list {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
}
footer .footer__container .footer__list li {
  display: block;
  width: fit-content;
  font-size: var(--font-size-xs);
}
footer .footer__container .footer__list li + li {
  margin-left: var(--space-md);
}
footer .copyright {
  text-align: center;
}
footer .copyright p {
  text-align: center;
  font-size: var(--font-size-xs);
  color: #999;
  font-family: "Trebuche MS", sans-serif;
}
footer .copyright p br {
  display: none;
}
@media screen and (max-width: 768px) {
  footer .copyright p br {
    display: inherit;
  }
}
@media screen and (max-width: 768px) {
  footer .copyright p {
    font-size: 11px;
  }
}
footer .copyright__logo {
  text-align: center;
}
footer .copyright__logo img {
  width: 30%;
  max-width: 240px;
}
@media screen and (max-width: 768px) {
  footer .copyright__logo img {
    width: 45%;
    max-width: auto;
  }
}

/* TOPへ戻るボタン（Go to top）*/
#page-top {
  position: fixed;
  right: 30px;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 100;
}
#page-top.is-show {
  opacity: 1;
  visibility: visible;
}
#page-top a {
  width: 60px;
  height: 60px;
  border-radius: 5px 5px 0 0;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-align: center;
  background: var(--color-primary);
}
@media screen and (max-width: 768px) {
  #page-top a {
    width: 45px;
    height: 45px;
  }
}
#page-top a i {
  font-size: 40px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #page-top a i {
    font-size: 30px;
  }
}

section {
  width: 90%;
  max-width: 1100px;
  margin-inline: auto;
}
section + section {
  margin-top: var(--space-2xl);
}
section p + p {
  margin-top: var(--space-sm);
}

ul.products__list, #contents__products .products__option .wrapper .option__clm ul, #contents__products .products__overview .wrapper .overview__clm ul {
  margin-left: 1.5em;
}
ul.products__list li, #contents__products .products__option .wrapper .option__clm ul li, #contents__products .products__overview .wrapper .overview__clm ul li {
  font-size: var(--font-size-sm);
}
ul.products__list li::marker, #contents__products .products__option .wrapper .option__clm ul li::marker, #contents__products .products__overview .wrapper .overview__clm ul li::marker {
  color: var(--color-primary);
}
ul.products__list li + li, #contents__products .products__option .wrapper .option__clm ul li + li, #contents__products .products__overview .wrapper .overview__clm ul li + li {
  margin-top: 5px;
}
ul.list__expnote {
  margin-top: var(--space-md);
}
ul.list__expnote li::marker {
  content: "※";
}

p.check {
  color: rgb(255, 0, 221) !important;
  font-weight: 700;
}
p.caption {
  color: var(--color-gray);
  font-size: var(--font-size-sm);
  text-align: center;
  margin-top: var(--space-md);
}

.anchorpoint {
  position: relative;
  top: -150px;
}

#contents__top section h2 {
  font-family: "proxima-nova", sans-serif;
  font-size: var(--font-size-2xl);
  text-align: center;
  letter-spacing: 1px;
  font-weight: 700;
}
#contents__top section h2 p {
  margin-top: var(--space-unit);
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 400;
  margin-inline: auto;
  text-align: center;
  display: block;
  width: fit-content;
  white-space: nowrap;
  box-sizing: border-box;
  position: relative;
}
#contents__top section h2 p::before {
  content: "";
  position: absolute;
  display: block;
  width: 130%;
  border-top: 2px solid var(--color-primary);
  left: -15%;
  top: -40%;
}
#contents__top section h2 + .wrapper, #contents__top section h2 + ul {
  margin-top: var(--space-lg);
}
#contents__top section.first-view {
  width: 100%;
  margin-top: var(--space-md);
  position: relative;
  overflow: hidden;
}
#contents__top section.first-view video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#contents__top section.first-view p.fv-copy {
  text-align: center;
  margin-top: var(--space-xl);
}
@media screen and (max-width: 768px) {
  #contents__top section.first-view p.fv-copy {
    text-align: left;
    margin-left: 1.5em;
    margin-right: 1.5em;
  }
}
#contents__top section.section-product {
  margin-top: var(--space-xl);
}
#contents__top section.section-product h2.pro-item {
  text-align: center;
  font-weight: 500;
  border-top: 1px #e0e0e0 solid;
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
}
#contents__top section.section-product h2.pro-title + .products-featured {
  margin-top: var(--space-md);
}
#contents__top section.section-product div.products-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  #contents__top section.section-product div.products-featured {
    display: block;
    width: 100%;
  }
}
#contents__top section.section-product div.products-featured .company-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  position: relative;
}
#contents__top section.section-product div.products-featured .company-cell a {
  display: block;
}
#contents__top section.section-product div.products-featured .company-cell a img {
  display: block;
  max-width: 360px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #contents__top section.section-product div.products-featured .company-cell a img {
    width: 70%;
  }
}
#contents__top section.section-product div.products-featured .company-cell a h3.pro-name {
  text-align: center;
  color: var(--color-primary);
  font-weight: 400;
}
#contents__top section.section-product div.products-featured .company-cell a p {
  text-align: center;
  margin: 1em 3em 2em;
}
@media screen and (max-width: 768px) {
  #contents__top section.section-product div.products-featured .company-cell a p {
    text-align: left;
    margin-left: 1.5em;
    margin-right: 1.5em;
  }
}
@media screen and (max-width: 768px) {
  #contents__top section.section-product div.products-featured .company-cell a p.text-ex {
    margin-bottom: 0;
  }
}
#contents__top section.section-product div.products-featured.top-ex {
  background-color: #fff;
}
#contents__top section.section-product div.products-featured.top-ex .company-cell {
  background-color: transparent;
  width: 80%;
  margin: 0 auto;
  position: relative;
}
#contents__top section.section-product div.products-featured.top-ex .company-cell:first-child::after {
  content: "";
  position: absolute;
  right: -15.5%;
  top: 50%;
  transform: translate(50%, -50%);
  width: 1px;
  height: 80%;
  background-color: #e0e0e0;
}
@media screen and (max-width: 768px) {
  #contents__top section.section-product div.products-featured.top-ex .company-cell:first-child::after {
    display: none;
  }
}
#contents__top section.section-product div.products-tp, #contents__top section.section-product div.products-st {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  margin-top: var(--space-lg);
}
@media screen and (max-width: 768px) {
  #contents__top section.section-product div.products-tp, #contents__top section.section-product div.products-st {
    display: block;
  }
}
#contents__top section.section-product div.products-tp .company-cell, #contents__top section.section-product div.products-st .company-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
#contents__top section.section-product div.products-tp .company-cell:not(:last-child)::after, #contents__top section.section-product div.products-st .company-cell:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translate(50%, -50%);
  width: 1px;
  height: 100%;
  background-color: #e0e0e0;
}
@media screen and (max-width: 768px) {
  #contents__top section.section-product div.products-tp .company-cell:not(:last-child)::after, #contents__top section.section-product div.products-st .company-cell:not(:last-child)::after {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #contents__top section.section-product div.products-tp .company-cell, #contents__top section.section-product div.products-st .company-cell {
    margin: var(--space-md) var(--space-md) 0;
  }
}
#contents__top section.section-product div.products-tp .company-cell a, #contents__top section.section-product div.products-st .company-cell a {
  width: 100%;
  height: 400px;
  display: block;
  padding-bottom: var(--space-md);
  background-color: #fff;
  box-sizing: content-box;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}
@media screen and (max-width: 768px) {
  #contents__top section.section-product div.products-tp .company-cell a, #contents__top section.section-product div.products-st .company-cell a {
    height: auto;
  }
}
#contents__top section.section-product div.products-tp .company-cell a.link__products, #contents__top section.section-product div.products-st .company-cell a.link__products {
  display: grid;
  grid-template-rows: subgrid;
}
#contents__top section.section-product div.products-tp .company-cell a img, #contents__top section.section-product div.products-st .company-cell a img {
  display: block;
  width: 80%;
  max-width: 360px;
  margin: 0 auto;
  transition: transform 0.3s ease;
}
#contents__top section.section-product div.products-tp .company-cell a img:hover, #contents__top section.section-product div.products-st .company-cell a img:hover {
  transform: scale(1.1);
}
#contents__top section.section-product div.products-tp .company-cell a h3.pro-name, #contents__top section.section-product div.products-st .company-cell a h3.pro-name {
  text-align: center;
  color: var(--color-primary);
  font-size: 28px;
  font-weight: 500;
  word-break: break-word;
  overflow-wrap: break-word;
}
#contents__top section.section-product div.products-tp .company-cell a h3.pro-name .ja, #contents__top section.section-product div.products-st .company-cell a h3.pro-name .ja {
  font-size: 22px;
  color: inherit;
}
#contents__top section.section-product div.products-tp .company-cell a h3.a-ex, #contents__top section.section-product div.products-st .company-cell a h3.a-ex {
  line-height: 1.2;
}
#contents__top section.section-product div.products-tp .company-cell a .btn__detail, #contents__top section.section-product div.products-st .company-cell a .btn__detail {
  width: 100%;
  display: block;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #contents__top section.section-product div.products-tp .company-cell a .btn__detail, #contents__top section.section-product div.products-st .company-cell a .btn__detail {
    padding-top: var(--space-md);
  }
}
#contents__top section.section-product div.products-tp .company-cell a .btn__detail button, #contents__top section.section-product div.products-st .company-cell a .btn__detail button {
  font-size: var(--font-size-sm);
  border: 1px solid #111;
  background-color: #fff;
  padding: 0.3em 1em 0.1em;
  border-radius: 15px;
}
#contents__top section.section-product div.products-tp .company-cell a p, #contents__top section.section-product div.products-st .company-cell a p {
  text-align: center;
  margin-top: var(--space-unit);
}
#contents__top section.top__news {
  margin-top: var(--space-xl);
}
#contents__top section.top__news .news__list {
  display: grid;
  grid-template-columns: 1fr 6fr;
  gap: 20px;
  margin: var(--space-sm);
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 768px) {
  #contents__top section.top__news .news__list {
    margin: var(--space-md);
  }
}
#contents__top section.top__news .news__list dt,
#contents__top section.top__news .news__list dd {
  padding: 2em 0;
}
#contents__top section.top__news .news__list dt p {
  text-align: center;
}
#contents__top section.top__news .news__list dd p {
  text-align: left;
}
#contents__top section.section__container .page-works h1.single__h1 {
  font-size: var(--font-size-3xl);
  color: #43b02a;
  text-align: center;
}
#contents__top section.section__container .page-works p.has-text-align-left {
  width: 80%;
  margin: 0 auto;
  margin-top: var(--space-xs);
}
#contents__products .products__title {
  width: 100%;
}
#contents__products .products__title--inner {
  width: 95%;
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-inline: auto;
  box-sizing: border-box;
  gap: var(--space-md);
}
@media screen and (max-width: 768px) {
  #contents__products .products__title--inner {
    grid-template-columns: 1fr;
    gap: 0;
    width: 90%;
  }
}
#contents__products .products__title--eyecatch .wrapper {
  text-align: center;
}
#contents__products .products__title--eyecatch .wrapper img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  #contents__products .products__title--eyecatch .wrapper img {
    width: 80%;
  }
}
#contents__products .products__title--title {
  display: flex;
  align-items: center;
}
#contents__products .products__title--title .wrapper h1 {
  font-size: var(--font-size-3xl);
  color: var(--color-primary);
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  #contents__products .products__title--title .wrapper h1 {
    font-size: var(--font-size-2xl);
    text-align: center;
    margin-top: 0;
    margin-bottom: var(--space-md);
  }
}
#contents__products .products__title--title .wrapper h1 p {
  font-size: var(--font-size-3xl);
  color: var(--color-primary);
  line-height: 1.1;
}
#contents__products .products__title--title .wrapper h1 p .ja {
  font-size: var(--font-size-xl);
  color: inherit;
}
#contents__products .products__title + section {
  margin-top: var(--space-md);
}
#contents__products .products__section {
  width: 90%;
  max-width: 1100px;
  margin-inline: auto;
}
#contents__products .products__section h2 {
  font-family: "proxima-nova", sans-serif;
  font-size: var(--font-size-2xl);
  text-align: center;
  letter-spacing: 1px;
  font-weight: 700;
}
#contents__products .products__section h2 p {
  margin-top: var(--space-unit);
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 400;
  margin-inline: auto;
  text-align: center;
  display: block;
  width: fit-content;
  white-space: nowrap;
  box-sizing: border-box;
  position: relative;
}
#contents__products .products__section h2 p::before {
  content: "";
  position: absolute;
  display: block;
  width: 130%;
  border-top: 2px solid var(--color-primary);
  left: -15%;
  top: -40%;
}
#contents__products .products__section h2 + .wrapper, #contents__products .products__section h2 + ul {
  margin-top: var(--space-lg);
}
#contents__products .products__section + .products__section {
  margin-top: var(--space-2xl);
}
#contents__products .products__section.products__overview {
  max-width: 100%;
  width: 100%;
}
#contents__products .products__overview {
  background-color: var(--color-background2);
  padding: 4em 0 6em;
}
#contents__products .products__overview h2 + .wrapper {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  #contents__products .products__overview h2 + .wrapper {
    margin-top: var(--space-md);
  }
}
#contents__products .products__overview .wrapper {
  width: 90%;
  max-width: 1100px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-md);
}
@media screen and (max-width: 768px) {
  #contents__products .products__overview .wrapper {
    grid-template-columns: 1fr;
  }
}
#contents__products .products__overview .wrapper .overview__clm {
  display: flex;
  align-items: center;
}
#contents__products .products__overview .wrapper .overview__clm p + p, #contents__products .products__overview .wrapper .overview__clm p + ul {
  margin-top: var(--space-unit);
}
#contents__products .products__overview .wrapper .overview__clm p + h3 {
  margin-top: var(--space-sm);
}
#contents__products .products__overview .wrapper .overview__clm img {
  width: 100%;
  height: auto;
}
#contents__products .products__overview .wrapper .overview__clm .clm__inner h3 {
  font-size: var(--font-size-base);
  font-weight: 700;
}
#contents__products .products__option .wrapper {
  width: 95%;
  max-width: 1100px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-md);
}
#contents__products .products__option .wrapper .option__clm {
  align-items: center;
}
#contents__products .products__option .wrapper .option__clm h3 {
  font-size: var(--font-size-base);
  font-weight: 700;
}
#contents__products .products__option .wrapper .option__clm h3 + p {
  margin-top: var(--space-md);
}
#contents__products .products__option .wrapper .option__clm p + p, #contents__products .products__option .wrapper .option__clm p + ul {
  margin-top: var(--space-unit);
}
#contents__products .products__option .wrapper .option__clm p + h3 {
  margin-top: var(--space-sm);
}
#contents__products .products__option .wrapper .option__clm img {
  width: 80%;
  height: auto;
}
#contents__products .products__spectbl {
  width: 100%;
  font-size: var(--font-size-base);
  border-top: 1px solid var(--color-background2);
  border-bottom: 1px solid var(--color-background2);
  border-collapse: collapse;
}
#contents__products .products__spectbl tbody tr:nth-child(even) th,
#contents__products .products__spectbl tbody tr:nth-child(even) td {
  background-color: var(--color-background2);
}
#contents__products .products__spectbl tbody tr th {
  width: 25%;
  text-align: center;
  padding: 1.5em 0;
}
@media screen and (max-width: 768px) {
  #contents__products .products__spectbl tbody tr th {
    display: block;
    width: 100%;
    padding-top: 1.5em;
    padding-bottom: 0.3em;
  }
}
#contents__products .products__spectbl tbody tr td {
  text-align: center;
  padding: 1.5em 0;
}
@media screen and (max-width: 768px) {
  #contents__products .products__spectbl tbody tr td {
    display: block;
    width: 100%;
    padding-top: 0.3em;
    padding-bottom: 1.5em;
  }
}
#contents__products .products__gallery .list__gallery {
  width: 90%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  #contents__products .products__gallery .list__gallery {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
#contents__products .products__gallery .list__gallery li {
  list-style-type: none;
  display: block;
  aspect-ratio: 1/1;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  overflow: hidden;
  transition: all 0.2s ease-in;
}
#contents__products .products__gallery .list__gallery li:has(> a):hover {
  transition: all 0.2s ease-in;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 768px) {
  #contents__products .products__gallery .list__gallery li.empty {
    display: none;
  }
}
#contents__products .products__gallery .list__gallery li a {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#contents__products .products__gallery .list__gallery li a:hover img {
  transform: scale(1.3);
  transition: all 0.2s ease-in;
  opacity: 1;
}
#contents__products .products__gallery .list__gallery li a img {
  max-width: 150%;
  height: cover;
  transition: all 0.2s ease-in;
  opacity: 0.8;
}
#contents__products .products__related {
  box-sizing: border-box;
}
#contents__products .products__related > .wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
@media screen and (max-width: 768px) {
  #contents__products .products__related > .wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
#contents__products .products__related > .wrapper .related__element {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: 3/span 3;
  gap: var(--space-sm);
}
#contents__products .products__related > .wrapper .related__img {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 10px;
  background-color: #ddd;
}
#contents__products .products__related > .wrapper .related__img img {
  width: 100%;
  height: auto;
}
#contents__products .products__related > .wrapper .related__img img.dummy {
  opacity: 0.9;
}
#contents__products .products__related > .wrapper .related__title p {
  text-align: center;
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--color-primary);
}
#contents__products .products__related > .wrapper .related__txt p {
  font-size: var(--font-size-sm);
}
#contents__page .page__title {
  width: 100%;
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 350px;
}
#contents__page .page__title h1 {
  font-size: var(--font-size-2xl);
  color: #fff;
}
#contents__page .page__title + section {
  margin-top: var(--space-2xl);
}
#contents__page .page__section h2 {
  font-family: "proxima-nova", sans-serif;
  font-size: var(--font-size-2xl);
  text-align: center;
  letter-spacing: 1px;
  font-weight: 700;
}
#contents__page .page__section h2 p {
  margin-top: var(--space-unit);
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 400;
  margin-inline: auto;
  text-align: center;
  display: block;
  width: fit-content;
  white-space: nowrap;
  box-sizing: border-box;
  position: relative;
}
#contents__page .page__section h2 p::before {
  content: "";
  position: absolute;
  display: block;
  width: 130%;
  border-top: 2px solid var(--color-primary);
  left: -15%;
  top: -40%;
}
#contents__page .page__section h2 + .wrapper, #contents__page .page__section h2 + ul, #contents__page .page__section h2 + p {
  margin-top: var(--space-lg);
}
#contents__page .page__section h3 {
  color: var(--color-gray);
  font-size: var(--font-size-lg);
  margin-top: var(--space-lg);
  margin-left: 1.1em;
  text-indent: -1.1em;
}
#contents__page .page__section h3::before {
  content: "●";
  color: var(--color-primary);
  margin-right: 0.1em;
}
#contents__page .page__section h3 + p {
  margin-top: var(--space-unit);
}
#contents__page .page__section h4 {
  font-size: var(--font-size-base);
  margin-top: var(--space-lg);
}
#contents__page .page__section h4::before {
  content: "−";
  margin-right: 0.2em;
  font-weight: 400;
}
#contents__page .page__section h4 + p {
  margin-top: var(--space-unit);
}
#contents__page .page__section.section__read h3 {
  color: var(--color-primary);
  text-align: center;
  font-size: var(--font-size-xl);
  margin-left: 0;
  text-indent: 0;
}
@media screen and (max-width: 768px) {
  #contents__page .page__section.section__read h3 {
    text-align: left;
    font-size: var(--font-size-lg);
  }
  #contents__page .page__section.section__read h3 br {
    display: none;
  }
}
#contents__page .page__section.section__read h3::before {
  content: "";
  margin-right: 0;
}
#contents__page .page__section.section__read h3 + p {
  margin-top: var(--space-md);
}
#contents__page .page__section.section__read p + p {
  margin-top: var(--space-sm);
}
#contents__page .page__about_features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
  align-items: stretch;
  margin-top: var(--space-md);
}
@media screen and (max-width: 768px) {
  #contents__page .page__about_features {
    grid-template-columns: repeat(2, 1fr);
  }
}
#contents__page .page__about_features li {
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-primary);
  height: 150px;
  box-sizing: border-box;
  padding: 1em;
  border-radius: 1em;
}
#contents__page .page__about_features li p {
  font-size: var(--font-size-base);
  font-weight: 700;
  color: #fff;
  text-align: center;
}
#contents__page .page__about_testing {
  display: grid;
  grid-template-columns: 1fr 3fr;
  border-bottom: 1px solid #ccc;
  margin-top: var(--space-md);
}
@media screen and (max-width: 768px) {
  #contents__page .page__about_testing {
    grid-template-columns: 1fr;
  }
}
#contents__page .page__about_testing dt {
  border-collapse: collapse;
  padding: 2em 0;
  border-top: 1px solid #ccc;
}
#contents__page .page__about_testing dt p {
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
}
@media screen and (max-width: 768px) {
  #contents__page .page__about_testing dt {
    padding: 1em 0 0.3em;
  }
}
#contents__page .page__about_testing dd {
  border-collapse: collapse;
  padding: 2em 0;
  border-top: 1px solid #ccc;
}
@media screen and (max-width: 768px) {
  #contents__page .page__about_testing dd {
    border-top: 0;
    padding: 0.3em 0 1em;
  }
  #contents__page .page__about_testing dd p {
    text-align: center;
  }
  #contents__page .page__about_testing dd p sup {
    margin-left: 0.1em 0;
  }
}
#contents__page .page__about_testing--ph {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-md);
}
#contents__page .page__about_testing--ph .ph__element img {
  width: 100%;
  height: auto;
}
#contents__page .page__about_testing--expnote {
  display: grid;
  grid-template-columns: auto 1fr;
  margin-top: var(--space-md);
  gap: 5px 0;
}
@media screen and (max-width: 768px) {
  #contents__page .page__about_testing--expnote {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
#contents__page .page__about_testing--expnote dt p, #contents__page .page__about_testing--expnote dd p {
  font-size: var(--font-size-xs);
  color: #999;
}
#contents__page .page__about_testing--expnote dt {
  padding-right: 1.5em;
}
#contents__page .page__about_testing--expnote dt p {
  white-space: nowrap;
  font-weight: 600;
}
#contents__page .page__about_flowimg {
  width: 80%;
  margin-inline: auto;
  margin-top: var(--space-md);
  border-radius: 30px;
  box-shadow: inset 10px 10px 20px rgba(0, 0, 0, 0.15), inset -10px -10px 20px rgb(255, 255, 255);
  box-sizing: border-box;
  padding: 2em;
}
@media screen and (max-width: 768px) {
  #contents__page .page__about_flowimg {
    width: 100%;
  }
}
#contents__page .page__about_flowimg img {
  width: 100%;
  height: auto;
}
#contents__page .page__about_effect4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: var(--space-md);
  gap: var(--space-md);
}
@media screen and (max-width: 768px) {
  #contents__page .page__about_effect4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
#contents__page .page__about_effect4 .effect4__element {
  box-shadow: inset 10px 10px 20px rgba(0, 0, 0, 0.15), inset -10px -10px 20px rgb(255, 255, 255);
  border-radius: 10px;
  box-sizing: border-box;
  padding: 1.5em;
}
#contents__page .page__about_effect4 .effect4__img {
  box-sizing: border-box;
  text-align: center;
}
#contents__page .page__about_effect4 .effect4__img img {
  width: 80%;
  height: auto;
}
#contents__page .page__about_effect4 .effect4__txt {
  box-sizing: border-box;
}
#contents__page .page__about_effect4 .effect4__txt h5 {
  text-align: center;
  background-color: var(--color-primary);
  color: #fff;
  font-weight: 700;
  font-size: var(--font-size-base);
  border-radius: 15px;
  padding: 0.2em 0.5em 0.1em;
}
#contents__page .page__about_effect4 .effect4__txt h5 + p {
  margin-top: var(--space-unit);
}
#contents__page .page__about_effect4 .effect4__txt p {
  font-size: var(--font-size-sm);
}
#contents__page .page__about_solution {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}
@media screen and (max-width: 768px) {
  #contents__page .page__about_solution {
    grid-template-columns: 1fr;
    width: 90%;
    margin-inline: auto;
  }
}
#contents__page .page__about_solution .about_solution__img {
  box-sizing: border-box;
}
#contents__page .page__about_solution .about_solution__img img {
  width: 100%;
  height: auto;
}
#contents__page .page__about_solution .about_solution__txt p {
  font-size: var(--font-size-sm);
}
#contents__page .page__about_solution .about_solution__txt--list {
  margin-left: 1.5em;
  margin-top: var(--space-unit);
  font-size: var(--font-size-sm);
}
#contents__page .page__about_solution .about_solution__txt--list li + li {
  margin-top: var(--space-unit);
}
#contents__page .page__about_solution .about_solution__txt--list li::marker {
  color: var(--color-primary);
}

.form__tableblock {
  background-color: #fff;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  box-sizing: border-box;
  padding: 2rem;
}
.form__tableblock .form__read {
  background-color: var(--color-background);
  padding: 1.3em 2em 1em;
  border-radius: 10px;
  box-sizing: border-box;
}
.form__tableblock .form__read p {
  font-size: var(--font-size-sm);
}
.form__tableblock .form__read p a:link, .form__tableblock .form__read p a:visited {
  color: var(--color-primary);
}
.form__tableblock .form__read p a:hover {
  color: var(--color-secondary);
}
.form__tableblock .form__submit {
  margin-top: var(--space-md);
}
.form__tableblock .form__submit p {
  text-align: center;
}
.form__tableblock .form__submit p input {
  border: 0;
  background-color: var(--color-primary);
  text-align: center;
  padding: 1em 2em;
  color: #fff;
  border-radius: 30px;
  cursor: pointer;
}
.form__tableblock .form__submit p input:disabled {
  background-color: #ccc;
  color: #888;
  cursor: not-allowed;
}
.form__tableblock + .form__tableblock {
  margin-top: var(--space-md);
}
.form__tableblock + h2 {
  margin-top: var(--space-xl);
  font-size: var(--font-size-xl);
  font-weight: 700;
}
.form__tableblock + h2 + .form__tableblock {
  margin-top: var(--space-sm);
}
.form__tableblock + p {
  margin-top: var(--space-md);
}
.form__tableblock + p + .form__tableblock {
  margin-top: var(--space-md);
}
.form__tableblock .contact__table {
  width: 100%;
}
.form__tableblock .contact__table tr + tr {
  border-top: 1px solid #ddd;
}
.form__tableblock .contact__table tr.adjust__tr {
  border-bottom: none;
}
.form__tableblock .contact__table tr th,
.form__tableblock .contact__table tr td {
  padding: 2rem 2rem;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .form__tableblock .contact__table tr th,
  .form__tableblock .contact__table tr td {
    display: block;
    padding-left: 0;
    padding-right: 0;
  }
}
.form__tableblock .contact__table tr th {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .form__tableblock .contact__table tr th {
    width: 100%;
    padding-bottom: 0;
  }
}
.form__tableblock .contact__table tr th p {
  font-size: 16px;
  font-weight: 700;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .form__tableblock .contact__table tr th p {
    text-align: center;
  }
}
.form__tableblock .contact__table tr th .required {
  border-radius: 1.5em;
  width: fit-content;
  border: 2px #c00 solid;
  box-sizing: border-box;
  font-weight: 700;
  color: #c00;
  font-size: 15px;
  line-height: 1.1;
  padding: 0 10px;
  margin-left: 0.5em;
}
.form__tableblock .contact__table tr th .ann-text {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
}
.form__tableblock .contact__table tr td {
  display: block;
}
@media screen and (max-width: 768px) {
  .form__tableblock .contact__table tr td {
    text-align: center;
  }
}
.form__tableblock .contact__table tr td.spc__ann {
  padding: 0 2rem 2rem 2rem;
}
.form__tableblock .contact__table tr td p {
  color: #000;
}
.form__tableblock .contact__table tr td p .p__in_marginbottom {
  padding-bottom: 0.3em;
  display: inline-block;
}
.form__tableblock .contact__table tr td p.br_none br {
  display: none;
}
.form__tableblock .contact__table tr td .wpcf7-form-control-wrap {
  vertical-align: text-bottom;
}
.form__tableblock .contact__table tr td .wpcf7-form-control-wrap + .wpcf7-form-control-wrap {
  margin-top: 7px;
  display: block;
}
.form__tableblock .contact__table tr td input[type=text], .form__tableblock .contact__table tr td input[type=email], .form__tableblock .contact__table tr td input[type=tel] {
  width: 100%;
  border: 0;
  box-sizing: border-box;
  padding: 0.7em 1.3em;
  border-radius: 30px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
  background-color: #efefef;
  box-sizing: border-box;
}
.form__tableblock .contact__table tr td input[type=text] + p, .form__tableblock .contact__table tr td input[type=email] + p, .form__tableblock .contact__table tr td input[type=tel] + p {
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .form__tableblock .contact__table tr td input[type=text] + p, .form__tableblock .contact__table tr td input[type=email] + p, .form__tableblock .contact__table tr td input[type=tel] + p {
    margin-top: 8px;
  }
}
.form__tableblock .contact__table tr td input[type=number] {
  border: 0;
  box-sizing: border-box;
  padding: 0.7em 1.3em;
  border-radius: 30px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
  background-color: #efefef;
  text-align: center;
  margin-right: 0.3em;
}
@media screen and (max-width: 768px) {
  .form__tableblock .contact__table tr td input[type=number] {
    width: 100%;
  }
}
.form__tableblock .contact__table tr td input[type=tel] {
  width: 60%;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .form__tableblock .contact__table tr td input[type=tel] {
    width: 100%;
  }
}
.form__tableblock .contact__table tr td input[type=tel].input__zip {
  width: 200px;
  text-align: center;
  margin-left: 0.3em;
  position: relative;
}
.form__tableblock .contact__table tr td select.wpcf7-form-control {
  box-sizing: border-box;
  padding: 0.5em 1.3em;
  border-radius: 30px;
  cursor: pointer;
  background-color: #efefef;
  border: 1px solid #ccc;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  width: 100%;
}
.form__tableblock .contact__table tr td textarea.wpcf7-textarea {
  width: 100%;
  height: 200px !important;
  padding: 0.7em 1.3em;
  border-radius: 15px;
  border: 0;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
  background-color: #efefef;
  box-sizing: border-box;
}
.form__tableblock .contact__table tr td .wpcf7-form-control.wpcf7-textarea {
  /* お問い合わせ内容に適応 */
  height: auto;
}
.form__tableblock .contact__table tr td .wpcf7-form-control .wpcf7-list-item {
  display: block;
  width: 100%;
  margin-left: 0;
}
.form__tableblock .contact__table tr td .wpcf7-form-control .wpcf7-list-item label {
  background-color: #efefef;
  box-sizing: border-box;
  padding: 0.5em 1em;
  border-radius: 5px;
  width: 100%;
  display: block;
  cursor: pointer;
  transition: all 0.8s ease-in;
}
.form__tableblock .contact__table tr td .wpcf7-form-control .wpcf7-list-item label input {
  margin-right: 0.5em;
}
.form__tableblock .contact__table tr td .wpcf7-form-control .wpcf7-list-item label:hover {
  background-color: var(--color-primary);
  transition: all 0.2s ease-in;
}
.form__tableblock .contact__table tr td .wpcf7-form-control .wpcf7-list-item label:has(input[type=checkbox]:checked), .form__tableblock .contact__table tr td .wpcf7-form-control .wpcf7-list-item label:has(input[type=radio]:checked) {
  background-color: var(--color-background2);
  transition: background-color 0.8s ease;
}
.form__tableblock .contact__table tr td .wpcf7-form-control .wpcf7-list-item label:has(input[type=checkbox]:checked) .wpcf7-list-item-label, .form__tableblock .contact__table tr td .wpcf7-form-control .wpcf7-list-item label:has(input[type=radio]:checked) .wpcf7-list-item-label {
  color: #fff;
  white-space: break-spaces;
}
.form__tableblock .contact__table tr td .wpcf7-form-control .wpcf7-list-item + .wpcf7-list-item {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .form__tableblock .contact__table tr td .wpcf7-form-control .wpcf7-list-item + .wpcf7-list-item {
    margin-top: 5px;
  }
}
.form__tableblock .contact__table tr .birth__date {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 5px;
  width: fit-content;
}
.form__tableblock .contact__table tr .list__expnote {
  margin-top: var(--space-unit);
}
.form__tableblock .contact__table tr .list__expnote li p {
  font-size: var(--font-size-sm);
  line-height: 1.4;
}
.form__tableblock .contact__table tr .list__expnote li + li {
  margin-top: 3px;
}
.form__tableblock .contact__table tr .listst__no {
  list-style-type: none;
  margin: 0;
}
.form__tableblock .contact__table tr .listst__no li + li {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .form__tableblock .contact__table tr .listst__no li + li {
    margin-top: 5px;
  }
}
.form__tableblock .contact__table tr .listst__no li .nametitle + span {
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  .form__tableblock .wpcf7-spinner {
    display: block;
    margin-top: var(--space-unit);
  }
}
.form__tableblock .wpcf7 .wpcf7-submit {
  cursor: pointer;
}
.form__tableblock .form__privacy_accept {
  margin-top: var(--space-md);
  background-color: #eee;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 3em;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .form__tableblock .form__privacy_accept {
    padding: 1.5em;
  }
}
.form__tableblock .form__privacy_accept h3 {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}
.form__tableblock .form__privacy_accept h3 + p {
  margin-top: var(--space-unit);
}
.form__tableblock .form__privacy_accept p {
  font-size: 13px;
}
.form__tableblock .form__privacy_accept p.p__accept {
  text-align: center;
  font-weight: 500;
}
.form__tableblock .form__privacy_accept p.p__accept .wpcf7-list-item {
  display: block;
  width: 100%;
  margin-left: 0;
}
.form__tableblock .form__privacy_accept p.p__accept .wpcf7-list-item label {
  background-color: #fff;
  box-sizing: border-box;
  padding: 0.5em 1em;
  border-radius: 5px;
  width: fit-content;
  margin-inline: auto;
  white-space: nowrap;
  display: block;
  cursor: pointer;
  transition: all 0.8s ease-in;
}
@media screen and (max-width: 768px) {
  .form__tableblock .form__privacy_accept p.p__accept .wpcf7-list-item label {
    white-space: break-spaces;
  }
}
.form__tableblock .form__privacy_accept p.p__accept .wpcf7-list-item label input {
  margin-right: 0.5em;
}
.form__tableblock .form__privacy_accept p.p__accept .wpcf7-list-item label:hover {
  background-color: var(--color-primary);
  transition: all 0.2s ease-in;
}
.form__tableblock .form__privacy_accept p.p__accept .wpcf7-list-item label:has(input[type=checkbox]:checked) {
  background-color: var(--color-background2);
  transition: background-color 0.8s ease;
}
.form__tableblock .form__privacy_accept p.p__accept .wpcf7-list-item label:has(input[type=checkbox]:checked) .wpcf7-list-item-label {
  color: #fff;
  white-space: break-spaces;
}
.form__tableblock .form__privacy_accept p.p__accept .wpcf7-list-item + .wpcf7-list-item {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .form__tableblock .form__privacy_accept p.p__accept .wpcf7-list-item + .wpcf7-list-item {
    margin-top: 5px;
  }
}

.wpcf7 form.invaild .wpcf7-response-output {
  background-color: #ffb900;
}
.wpcf7 form.sent .wpcf7-response-output {
  background-color: #46b450;
}
.wpcf7 form .wpcf7-response-output {
  margin-top: var(--space-md) !important;
  padding: 2em 1em !important;
  border: 0 !important;
  text-align: center;
  font-weight: 700;
  font-size: var(--font-size-base);
  background-color: #00a0d2;
  border-radius: 10px;
}/*# sourceMappingURL=main.css.map */