@charset "UTF-8";
:root {
  --main-color: #2399D5;
  --txt-color: #303034;
  --ttl-black: #05103E;
  --ttl-blue: #006ABE;
  --dark-blue: #092459;
  --dark-navy: #01011A;
  --white: #FFFFFF;
  --gray-8: #888;
  --gray-e0: #E0E0E0;
  --light-gray: #F2F4F7;
  --table-border: #D4D2DC;
  --font-main: "Noto Sans JP", sans-serif;
  --font-serif: "Shippori Mincho", serif;
  --font-en: "Josefin Sans", sans-serif;
}

html {
  font-family: var(--font-main);
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%; /* iOS 8+ */
  scroll-behavior: smooth;
  scroll-padding-top: 3rem;
}
@media screen and (width <= 767px) {
  html {
    font-size: 2.5641025641vw;
  }
}
@media screen and (width > 767px), print {
  html {
    font-size: 10px;
  }
}

body {
  color: var(--txt-color);
  font-size: 1.6rem;
  letter-spacing: 0;
  word-break: break-word;
}
@media screen and (width <= 767px) {
  body {
    min-width: 320px;
  }
}
@media screen and (width > 960px), print {
  body::before {
    content: "";
    display: block;
    background-color: rgba(0, 0, 0, 0.4);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    z-index: 10;
  }
}
@media screen and (width > 960px) and (width <= 960px) {
  body::before {
    top: 5.5rem;
  }
}
@media screen and (width > 960px) and (width > 960px) {
  body::before {
    top: 7.5rem;
  }
}
@media screen and (width > 960px), print {
  body[data-child-open=true]::before {
    opacity: 1;
    pointer-events: initial;
  }
}

@media screen and (width <= 960px) {
  main {
    padding-top: 5.5rem;
  }
}
@media screen and (width > 960px), print {
  main {
    padding-top: 7.5rem;
  }
}

summary::-webkit-details-marker {
  display: none;
}

@media screen and (width <= 960px) {
  section {
    margin-top: 9rem;
    scroll-margin-top: 5.5rem;
  }
}
@media screen and (width > 960px), print {
  section {
    margin-top: 8rem;
    scroll-margin-top: 7.5rem;
  }
}

p {
  margin-top: 1rem;
  line-height: 1.75;
}
p a {
  color: var(--main-color);
  text-decoration: underline;
}
@media screen and (width > 960px), print {
  p a:hover {
    text-decoration: none;
  }
}

.-bold {
  font-weight: 700;
}

img {
  max-width: 100%;
}

figure.-border > div {
  border: 0.1rem solid var(--gray-e0);
}
figure img {
  width: 100%;
}
figure figcaption {
  margin-top: 1rem;
  text-align: center;
  line-height: 1.47;
}
@media screen and (width <= 767px) {
  figure figcaption {
    font-size: 1.4rem;
  }
}
@media screen and (width > 767px), print {
  figure figcaption {
    font-size: 1.5rem;
  }
}

h2 {
  color: var(--ttl-black);
  font-weight: 700;
  line-height: 1.4;
  position: relative;
}
@media screen and (width <= 767px) {
  h2 {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    font-size: 2.8rem;
  }
}
@media screen and (width > 767px), print {
  h2 {
    margin-bottom: 1.25rem;
    padding-left: 2.1rem;
    font-size: 3rem;
  }
}
h2::before {
  content: "";
  display: block;
  width: 0.6rem;
  background-color: var(--ttl-blue);
  position: absolute;
  top: 0.5rem;
  left: 0;
}
@media screen and (width <= 767px) {
  h2::before {
    height: 3rem;
  }
}
@media screen and (width > 767px), print {
  h2::before {
    height: 3.4rem;
  }
}
h2 + * {
  margin-top: 0 !important;
}

h3 {
  color: var(--ttl-blue);
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (width <= 767px) {
  h3 {
    margin-top: 5rem;
    margin-bottom: 1.5rem;
    font-size: 2.3rem;
  }
}
@media screen and (width > 767px), print {
  h3 {
    margin-top: 4rem;
    margin-bottom: 1rem;
    font-size: 2.4rem;
  }
}
h3 + * {
  margin-top: 0 !important;
}

h4 {
  color: var(--ttl-black);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (width <= 767px) {
  h4 {
    margin-top: 4rem;
    margin-bottom: 1.2rem;
  }
}
@media screen and (width > 767px), print {
  h4 {
    margin-top: 2.5rem;
    margin-bottom: 0.8rem;
  }
}
h4 + * {
  margin-top: 0 !important;
}

@media screen and (width > 767px), print {
  .-sp {
    display: none;
  }
}

@media screen and (width <= 767px) {
  .-pc {
    display: none;
  }
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 2rem;
}
.container.-s {
  max-width: 1140px;
}
.container.-xs {
  max-width: 960px;
}

.btn {
  --hover-color: var(--main-color);
  display: inline-block;
  padding-block: 1rem;
  border: 0.2rem solid var(--main-color);
  text-align: center;
  color: var(--main-color);
  font-weight: 700;
  line-height: 1.5;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, var(--hover-color)), color-stop(50%, transparent));
  background-image: linear-gradient(to right, var(--hover-color) 50%, transparent 50%);
  background-position: 100%;
  background-size: 300%;
  -webkit-transition: background-position 0.6s, color 0.4s;
  transition: background-position 0.6s, color 0.4s;
}
@media screen and (width <= 767px) {
  .btn {
    width: 100%;
    padding-inline: 1.2rem;
  }
}
@media screen and (width > 767px), print {
  .btn {
    padding-inline: 4rem;
  }
  .btn:hover {
    background-position: 0;
    color: var(--white);
  }
}
.btn.-gray {
  --hover-color: var(--gray-8);
  border-color: var(--gray-8);
  color: var(--gray-8);
}
@media screen and (width > 767px), print {
  .btn.-gray:hover {
    color: var(--white);
  }
}
.btn.-blue {
  --hover-color: var(--white);
  background-color: var(--main-color);
  color: var(--white);
}
@media screen and (width > 767px), print {
  .btn.-blue:hover {
    color: var(--main-color);
  }
}

.btn_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}
.btn_wrap.-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 1rem;
  font-weight: 700;
}
.link::after {
  content: "→";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 0.2rem solid var(--main-color);
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--main-color);
  color: var(--white);
  -webkit-transition: color 0.4s, background-color 0.4s;
  transition: color 0.4s, background-color 0.4s;
}
.link span {
  text-align: right;
  color: var(--main-color);
  line-height: 1.5;
  text-decoration: underline;
}
.link.-anchor::after {
  content: "↓";
}
@media screen and (width > 767px), print {
  .link:hover::after {
    background-color: var(--white);
    color: var(--main-color);
  }
  .link:hover span {
    text-decoration: none;
  }
}

.link_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5rem 3rem;
  margin-top: 2rem;
}

@media screen and (width <= 767px) {
  .box {
    margin-top: 2rem;
    padding: 2.5rem 3rem;
  }
}
@media screen and (width > 767px), print {
  .box {
    margin-top: 3rem;
    padding: 3.5rem 4rem;
  }
}
.box > *:first-child {
  margin-top: 0;
}
.box.-border {
  border: 0.7rem solid var(--light-gray);
}
@media screen and (width <= 767px) {
  .box.-border {
    padding: 1.8rem 2.3rem;
  }
}
@media screen and (width > 767px), print {
  .box.-border {
    padding: 2rem 3.3rem;
  }
}
.box.-gray {
  background-color: var(--light-gray);
}
@media screen and (width <= 767px) {
  .box.-gray {
    padding: 2.5rem 3rem;
  }
}
@media screen and (width > 767px), print {
  .box.-gray {
    padding: 3.5rem 4rem;
  }
}
.box.-border--thin {
  border: 0.1rem solid var(--gray-e0);
}
@media screen and (width <= 767px) {
  .box.-border--thin {
    padding: 2.4rem 2.9rem;
  }
}
@media screen and (width > 767px), print {
  .box.-border--thin {
    padding: 2rem 3.9rem;
  }
}

.list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}
.list a {
  color: var(--main-color);
  text-decoration: underline;
}
@media screen and (width > 767px), print {
  .list a:hover {
    text-decoration: none;
  }
}
.list.-dotted > li {
  padding-left: 2rem;
  position: relative;
}
@media screen and (width <= 767px) {
  .list.-dotted > li {
    line-height: 1.625;
  }
}
@media screen and (width > 767px), print {
  .list.-dotted > li {
    line-height: 1.75;
  }
}
.list.-dotted > li::before {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  border-radius: 0.5rem;
  background-color: var(--ttl-blue);
  position: absolute;
  top: 1rem;
  left: 0;
}
.list.-note > li {
  padding-left: 2.2rem;
  font-size: 1.4rem;
  position: relative;
}
@media screen and (width <= 767px) {
  .list.-note > li {
    line-height: 1.43;
  }
}
@media screen and (width > 767px), print {
  .list.-note > li {
    line-height: 1.57;
  }
}
.list.-note > li::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.list.-num {
  counter-reset: listcnt;
}
.list.-num > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
  counter-increment: listcnt;
  line-height: 1.4;
}
.list.-num > li::before {
  content: counter(listcnt) ".";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: var(--ttl-blue);
}
.list.-note--num {
  counter-reset: notecnt;
}
.list.-note--num > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
  counter-increment: notecnt;
  font-size: 1.4rem;
  line-height: 1.4;
}
.list.-note--num > li::before {
  content: "※" counter(notecnt);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.list.-triangle > li {
  padding-left: 1.6rem;
  position: relative;
  line-height: 1.5;
}
.list.-triangle > li::before {
  content: "";
  display: block;
  width: 0.6rem;
  height: 1rem;
  background-color: var(--dark-blue);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  position: absolute;
  top: 0.8rem;
  left: 0;
}

.column2 > *, .column3 > *, .column4 > *, .column5 > * {
  margin-top: 0 !important;
}
.column2 > * > *:first-child, .column3 > * > *:first-child, .column4 > * > *:first-child, .column5 > * > *:first-child {
  margin-top: 0;
}

.column2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2rem;
}
@media screen and (width <= 767px) {
  .column2 {
    gap: 4rem 2.6rem;
  }
}
@media screen and (width > 767px), print {
  .column2 {
    gap: 4rem 6rem;
  }
}
.column2 > *:first-child {
  margin-top: 0;
}

.column3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 4rem;
}
@media screen and (width <= 767px) {
  .column3 {
    gap: 4rem 2.6rem;
  }
}
@media screen and (width > 767px), print {
  .column3 {
    gap: 4rem 4.5rem;
  }
}

.column4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 4rem;
}
@media screen and (width <= 767px) {
  .column4 {
    gap: 4rem 2.6rem;
  }
}
@media screen and (width > 767px), print {
  .column4 {
    gap: 4rem;
  }
}
@media screen and (width <= 767px) {
  .column4 > * {
    width: calc(50% - 1.3rem);
  }
}
@media screen and (width > 767px), print {
  .column4 > * {
    width: calc((100% - 12rem) / 4);
  }
}

.column5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 4rem;
}
@media screen and (width <= 767px) {
  .column5 {
    gap: 4rem 2.6rem;
  }
}
@media screen and (width > 767px), print {
  .column5 {
    gap: 4rem 3.5rem;
  }
}

/* header */
#header {
  width: 100%;
  background-color: var(--white);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
}
@media screen and (width <= 960px) {
  #header {
    height: 5.5rem;
    padding-left: 2rem;
  }
}
@media screen and (960px < width <= 1190px) {
  #header {
    height: 7.5rem;
    padding-left: 1.8rem;
    padding-right: 1.8rem;
    font-size: 1.5rem;
  }
}
@media screen and (width > 1190px), print {
  #header {
    height: 7.5rem;
    padding-left: 3.6rem;
    padding-right: 2.1rem;
  }
}

.header_inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (width <= 960px) {
  .header_logo img {
    width: 18.4rem;
  }
}
@media screen and (960px < width <= 1190px) {
  .header_logo img {
    width: 16vw;
  }
}
@media screen and (width > 1190px), print {
  .header_logo img {
    width: 22rem;
  }
}

@media screen and (width <= 960px) {
  .header_menu {
    width: 100vw;
    background-color: var(--white);
    position: fixed;
    top: 5.5rem;
    left: 120%;
    bottom: 0;
    overflow-y: auto;
    opacity: 0;
    -webkit-transition: left 0.4s, opacity 0.4s;
    transition: left 0.4s, opacity 0.4s;
  }
  .header_menu .-sp {
    display: block;
  }
  .header_menu[data-sp-open=true] {
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
  }
  .header_menu::before {
    content: "";
    display: block;
    width: 100%;
    height: 5.5rem;
    -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    pointer-events: none;
  }
}
@media screen and (width > 960px), print {
  .header_menu .-sp {
    display: none;
  }
}
@media screen and (width <= 960px) {
  .header_menu_inner {
    padding-bottom: 12rem;
    position: relative;
  }
}
@media screen and (width > 960px), print {
  .header_menu_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2.5rem;
  }
}

.header_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (width <= 960px) {
  .header_nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (width > 960px), print {
  .header_nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 1rem;
  }
}

.header_nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (width <= 960px) {
  .header_nav_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (width > 960px), print {
  .header_nav_list {
    gap: 3rem;
  }
}
.header_nav_list > li {
  color: var(--ttl-black);
  font-weight: 700;
  line-height: 1.5;
}
.header_nav_list > li > a,
.header_nav_list > li .header_nav_toggle {
  display: block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  cursor: pointer;
}
@media screen and (width <= 960px) {
  .header_nav_list > li > a,
  .header_nav_list > li .header_nav_toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 2rem;
    border-bottom: 0.1rem solid var(--gray-e0);
    font-size: 1.8rem;
  }
}
@media screen and (width > 960px), print {
  .header_nav_list > li > a,
  .header_nav_list > li .header_nav_toggle {
    padding-bottom: 0.8rem;
  }
}
@media screen and (width > 767px), print {
  .header_nav_list > li > a:hover,
  .header_nav_list > li .header_nav_toggle:hover {
    color: var(--main-color);
  }
}
@media screen and (width <= 960px) {
  .header_nav_list > li > a::after {
    content: "→";
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    background-color: var(--main-color);
    color: var(--white);
  }
}

.header_nav_toggle {
  position: relative;
}
@media screen and (width <= 960px) {
  .header_nav_toggle[data-child-open=true] .toggle_btn::after {
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 0;
  }
}
@media screen and (width > 960px), print {
  .header_nav_toggle[data-child-open=true] {
    color: var(--main-color);
  }
  .header_nav_toggle[data-child-open=true]::before {
    content: "";
    display: block;
    width: 100%;
    height: 1.2rem;
    position: absolute;
    top: 100%;
    cursor: auto;
  }
}
@media screen and (width <= 960px) {
  .header_nav_toggle .toggle_btn {
    display: block;
    width: 2.6rem;
    height: 2.6rem;
    background-color: var(--main-color);
    position: relative;
  }
  .header_nav_toggle .toggle_btn::before, .header_nav_toggle .toggle_btn::after {
    content: "";
    display: block;
    width: 1.2rem;
    height: 0.2rem;
    background-color: var(--white);
    position: absolute;
    top: 1.2rem;
    left: 0.7rem;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .header_nav_toggle .toggle_btn::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}

.header_nav_child {
  display: none;
}
@media screen and (width > 960px), print {
  .header_nav_child {
    min-width: 18rem;
    background-color: var(--white);
    position: fixed;
    top: 8.7rem;
  }
}
@media screen and (width <= 960px) {
  .header_nav_child .header_nav_child_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
    padding: 2.5rem 2rem;
    border-bottom: 0.1rem solid var(--gray-e0);
  }
}
.header_nav_child .header_nav_child_list > li {
  font-weight: 400;
}
@media screen and (width <= 960px) {
  .header_nav_child .header_nav_child_list > li {
    padding-left: 1.6rem;
    position: relative;
    line-height: 1.5;
  }
  .header_nav_child .header_nav_child_list > li::before {
    content: "";
    display: block;
    width: 0.6rem;
    height: 1rem;
    background-color: var(--dark-blue);
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    position: absolute;
    top: 0.8rem;
    left: 0;
  }
}
@media screen and (width > 960px), print {
  .header_nav_child .header_nav_child_list > li {
    font-size: 1.5rem;
  }
  .header_nav_child .header_nav_child_list > li:not(:last-of-type) {
    border-bottom: 0.1rem solid var(--gray-e0);
  }
}
.header_nav_child .header_nav_child_list > li a {
  color: var(--main-color);
  -webkit-transition: background-color 0.4s;
  transition: background-color 0.4s;
}
@media screen and (width <= 960px) {
  .header_nav_child .header_nav_child_list > li a {
    text-decoration: underline;
  }
}
@media screen and (width > 960px), print {
  .header_nav_child .header_nav_child_list > li a {
    display: block;
    padding: 1.1rem 1.5rem 0.8rem;
  }
}
@media screen and (width > 767px), print {
  .header_nav_child .header_nav_child_list > li a:hover {
    background-color: var(--light-gray);
  }
}
@media screen and (960px < width <= 1190px) {
  .header_nav_child.-business_introduction {
    right: 60rem;
  }
}
@media screen and (width > 1190px), print {
  .header_nav_child.-business_introduction {
    right: 74rem;
  }
}
@media screen and (960px < width <= 1190px) {
  .header_nav_child.-company {
    right: 24rem;
  }
}
@media screen and (width > 1190px), print {
  .header_nav_child.-company {
    right: 37rem;
  }
}
@media screen and (width <= 960px) {
  .header_nav_child.-products {
    padding-inline: 2rem;
    border-bottom: 0.1rem solid var(--gray-e0);
  }
}
@media screen and (width > 960px), print {
  .header_nav_child.-products {
    width: 90rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (width > 960px), print {
  .header_nav_child.-products .header_nav_child_head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 7rem;
    padding: 1rem 3rem;
    border-bottom: 0.1rem solid var(--gray-e0);
  }
}
@media screen and (width <= 960px) {
  .header_nav_child.-products .header_nav_child_head .link {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 0;
    padding: 1.6rem 2.4rem 1.3rem 1.2rem;
    border-bottom: 0.1rem solid var(--gray-e0);
    color: var(--txt-color);
    font-size: 1.5rem;
    font-weight: 400;
    position: relative;
  }
  .header_nav_child.-products .header_nav_child_head .link span {
    color: var(--txt-color);
    text-decoration: none;
  }
  .header_nav_child.-products .header_nav_child_head .link::after {
    width: auto;
    height: auto;
    background-color: transparent;
    border: none;
    color: var(--main-color);
    font-size: 1.6rem;
    font-weight: 700;
    position: absolute;
    top: 1.4rem;
    right: 0.4rem;
  }
  .header_nav_child.-products .header_nav_child_head .link:not(.-main) {
    display: none;
  }
}
@media screen and (width > 960px), print {
  .header_nav_child.-products .header_nav_child_head .link.-main {
    font-size: 2.4rem;
  }
  .header_nav_child.-products .header_nav_child_head .link.-main::after {
    font-size: 1.6rem;
  }
  .header_nav_child.-products .header_nav_child_head .link:not(.-main)::after {
    width: 1.8rem;
    height: 1.8rem;
    font-size: 1.2rem;
  }
}
@media screen and (width <= 960px) {
  .header_nav_child.-products .header_nav_child_bottom .link {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 0;
    padding: 1.6rem 2.4rem 1.3rem 1.2rem;
    color: var(--txt-color);
    font-size: 1.5rem;
    font-weight: 400;
    position: relative;
  }
  .header_nav_child.-products .header_nav_child_bottom .link span {
    color: var(--txt-color);
    text-decoration: none;
  }
  .header_nav_child.-products .header_nav_child_bottom .link::after {
    width: auto;
    height: auto;
    background-color: transparent;
    border: none;
    color: var(--main-color);
    font-size: 1.6rem;
    font-weight: 700;
    position: absolute;
    top: 1.4rem;
    right: 0.4rem;
  }
}
@media screen and (width > 960px), print {
  .header_nav_child.-products .header_nav_child_main .link_wrap .link {
    font-size: 1.8rem;
  }
  .header_nav_child.-products .header_nav_child_main .link_wrap .link::after {
    width: 1.8rem;
    height: 1.8rem;
    font-size: 1.2rem;
  }
}
@media screen and (width > 960px), print {
  .header_nav_child.-products .header_nav_child_main .child_category_content {
    padding-right: 1rem;
  }
}
@media screen and (width > 960px), print {
  .header_nav_child.-products .header_nav_child_main .child_category_list {
    width: 18rem;
    position: relative;
  }
}
@media screen and (width <= 960px) {
  .header_nav_child.-products .header_nav_child_main .child_category_item {
    position: relative;
  }
  .header_nav_child.-products .header_nav_child_main .child_category_item::before, .header_nav_child.-products .header_nav_child_main .child_category_item::after {
    content: "";
    display: block;
    width: 1.2rem;
    height: 0.2rem;
    background-color: var(--main-color);
    position: absolute;
    top: 2.4rem;
    right: 0.6rem;
    -webkit-transition: opacity 0.4s, -webkit-transform 0.4s;
    transition: opacity 0.4s, -webkit-transform 0.4s;
    transition: transform 0.4s, opacity 0.4s;
    transition: transform 0.4s, opacity 0.4s, -webkit-transform 0.4s;
  }
  .header_nav_child.-products .header_nav_child_main .child_category_item::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .header_nav_child.-products .header_nav_child_main .child_category_item[data-sp-open=true]::after {
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 0;
  }
}
@media screen and (width > 960px), print {
  .header_nav_child.-products .header_nav_child_main .child_category_item:not(:last-of-type) {
    border-bottom: 0.1rem solid var(--gray-e0);
  }
}
.header_nav_child.-products .header_nav_child_main .child_category_item > span {
  display: block;
  font-size: 1.5rem;
  font-weight: 400;
}
@media screen and (width <= 960px) {
  .header_nav_child.-products .header_nav_child_main .child_category_item > span {
    padding: 1.6rem 2.4rem 1.3rem 1.2rem;
    border-bottom: 0.1rem solid var(--gray-e0);
    position: relative;
  }
}
@media screen and (width > 960px), print {
  .header_nav_child.-products .header_nav_child_main .child_category_item > span {
    padding: 1.5rem 1.5rem 1.3rem;
    cursor: pointer;
    -webkit-transition: color 0.4s, background-color 0.4s;
    transition: color 0.4s, background-color 0.4s;
  }
}
@media screen and (width > 960px), print {
  .header_nav_child.-products .header_nav_child_main .child_category_item[data-current=true] {
    background-color: var(--dark-blue);
  }
  .header_nav_child.-products .header_nav_child_main .child_category_item[data-current=true] > span {
    color: var(--white);
  }
  .header_nav_child.-products .header_nav_child_main .child_category_item[data-current=true] .child_category_content {
    opacity: 1;
    pointer-events: initial;
  }
}
@media screen and (width > 767px), print {
  .header_nav_child.-products .header_nav_child_main .child_category_item:not([data-current=true]):hover > span {
    color: var(--main-color);
    background-color: var(--light-gray);
  }
}
@media screen and (width > 960px), print {
  .header_nav_child.-products .header_nav_child_main .child_category_item.-probe_cards .list_wrap .list.-triangle:first-child {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media screen and (width <= 960px) {
  .header_nav_child.-products .header_nav_child_main .child_category_item.-other_services .link_wrap {
    display: none;
  }
}
@media screen and (width > 960px), print {
  .header_nav_child.-products .header_nav_child_main .child_category_item.-other_services .link_wrap p {
    margin-top: 0;
    font-size: 1.8rem;
  }
}
@media screen and (width <= 960px) {
  .header_nav_child.-products .header_nav_child_main .child_category_item.-other_services .child_category_content .links .list.-triangle {
    margin-top: 0;
  }
}
@media screen and (width <= 960px) {
  .header_nav_child.-products .header_nav_child_main .child_category_content {
    display: none;
    -webkit-transition: all;
    transition: all;
  }
}
@media screen and (width > 960px), print {
  .header_nav_child.-products .header_nav_child_main .child_category_content {
    width: 72rem;
    height: 100%;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    gap: 3rem;
    position: absolute;
    top: 0;
    left: 18rem;
    opacity: 0;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
    pointer-events: none;
  }
}
@media screen and (width <= 960px) {
  .header_nav_child.-products .header_nav_child_main .child_category_content .img {
    display: none;
  }
}
@media screen and (width > 960px), print {
  .header_nav_child.-products .header_nav_child_main .child_category_content .img {
    width: 10rem;
    height: 100%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    overflow: hidden;
    position: relative;
  }
  .header_nav_child.-products .header_nav_child_main .child_category_content .img img {
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@media screen and (width <= 960px) {
  .header_nav_child.-products .header_nav_child_main .child_category_content .links {
    padding-block: 2.5rem;
    border-bottom: 0.1rem solid var(--gray-e0);
  }
}
@media screen and (width <= 960px) {
  .header_nav_child.-products .header_nav_child_main .child_category_content .links .link_wrap {
    margin-top: 0;
  }
}
@media screen and (width <= 960px) {
  .header_nav_child.-products .header_nav_child_main .child_category_content .links .link_wrap .link {
    gap: 0;
    padding-left: 1.6rem;
    color: var(--main-color);
    font-size: 1.5rem;
    font-weight: 400;
    text-decoration: underline;
    line-height: 1.5;
    position: relative;
  }
  .header_nav_child.-products .header_nav_child_main .child_category_content .links .link_wrap .link::before {
    content: "";
    display: block;
    width: 0.6rem;
    height: 1rem;
    background-color: var(--dark-blue);
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    position: absolute;
    top: 0.8rem;
    left: 0;
  }
  .header_nav_child.-products .header_nav_child_main .child_category_content .links .link_wrap .link::after {
    content: none;
  }
}
@media screen and (width > 960px), print {
  .header_nav_child.-products .header_nav_child_main .child_category_content .links .list_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 3rem;
  }
}
@media screen and (width <= 960px) {
  .header_nav_child.-products .header_nav_child_main .child_category_content .links .list.-triangle {
    margin-top: 1.5rem;
    gap: 1.5rem;
  }
}
.header_nav_child.-products .header_nav_child_main .child_category_content .links .list.-triangle > li {
  font-weight: 400;
}
@media screen and (width <= 960px) {
  .header_nav_child.-products .header_nav_child_main .child_category_content .links .list.-triangle > li {
    font-size: 1.5rem;
  }
}
@media screen and (width > 960px), print {
  .header_nav_child.-products .header_nav_child_main .child_category_content .links .list.-triangle > li {
    font-size: 1.4rem;
  }
}
@media screen and (width > 960px), print {
  .header_nav_child.-products .header_nav_child_main .child_category_content .links .list.-triangle[data-grid-col="2"] {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 1rem 3rem;
  }
}
@media screen and (width > 960px), print {
  .header_nav_child.-products .header_nav_child_main .child_category_content .links .list.-triangle[data-grid-col="3"] {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 1rem 3rem;
  }
}
@media screen and (width > 960px), print {
  .header_nav_child.-products .header_nav_child_main .child_category_content .links > .list.-triangle:not([data-grid-col]) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1rem 3rem;
  }
}

.header_nav_sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (width <= 960px) {
  .header_nav_sub {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 3.5rem;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 8rem;
  }
}
@media screen and (width > 960px), print {
  .header_nav_sub {
    gap: 2rem;
    padding-top: 1.4rem;
  }
}

.header_nav_sub_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (width <= 960px) {
  .header_nav_sub_list {
    gap: 3.5rem;
  }
}
@media screen and (960px < width <= 1190px) {
  .header_nav_sub_list {
    gap: 2rem;
  }
}
@media screen and (width > 1190px), print {
  .header_nav_sub_list {
    gap: 2.5rem;
  }
}
.header_nav_sub_list > li {
  color: var(--gray-8);
}
@media screen and (width <= 960px) {
  .header_nav_sub_list > li {
    font-size: 1.5rem;
  }
}
@media screen and (width > 960px), print {
  .header_nav_sub_list > li {
    font-size: 1.4rem;
  }
}
@media screen and (width > 767px), print {
  .header_nav_sub_list > li a:hover {
    text-decoration: underline;
  }
}

.header_lang {
  position: relative;
}
@media screen and (width > 960px), print {
  .header_lang {
    padding-left: 2rem;
  }
  .header_lang::before {
    content: "";
    display: block;
    width: 0.1rem;
    height: 1.5rem;
    background-color: var(--gray-e0);
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.header_lang_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}
@media screen and (width <= 960px) {
  .header_lang_btn {
    font-size: 1.5rem;
  }
}
@media screen and (width > 767px), print {
  .header_lang_btn:hover {
    color: var(--main-color);
  }
}
.header_lang_btn img {
  width: 1.3rem;
}
.header_lang_btn span {
  margin-bottom: 0.3rem;
}
.header_lang_btn[data-open=true] + .header_lang_list {
  opacity: 1;
  pointer-events: initial;
}
.header_lang_list {
  width: 15rem;
  border: 0.1rem solid var(--main-color);
  -webkit-box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
  z-index: 1;
}
@media screen and (width <= 960px) {
  .header_lang_list {
    position: absolute;
    bottom: 2.8rem;
    right: -1.5rem;
  }
}
@media screen and (width > 960px), print {
  .header_lang_list {
    position: fixed;
    top: 4rem;
  }
}
.header_lang_list > li:not(:last-of-type) {
  border-bottom: 0.1rem solid var(--main-color);
}
.header_lang_list > li a {
  display: block;
  padding: 1.3rem;
  background-color: var(--white);
  color: var(--main-color);
  font-size: 1.4rem;
  -webkit-transition: background-color 0.4s;
  transition: background-color 0.4s;
}
@media screen and (width > 767px), print {
  .header_lang_list > li a:hover {
    background-color: var(--light-gray);
  }
}

.header_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (width <= 960px) {
  .header_btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.2rem;
    margin-top: 3rem;
  }
}
@media screen and (960px < width <= 1190px) {
  .header_btn {
    font-size: 1.2rem;
    gap: 1.5rem;
  }
}
@media screen and (width > 1190px) {
  .header_btn {
    gap: 1.5rem;
  }
}
.header_btn .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (width <= 960px) {
  .header_btn .btn {
    width: 30rem;
    height: 5.1rem;
  }
}
@media screen and (width > 960px), print {
  .header_btn .btn {
    height: 4.6rem;
  }
}
.header_btn .btn.-catalogue {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 1.2rem 0 1rem;
  letter-spacing: -0.02em;
}
@media screen and (width <= 960px) {
  .header_btn .btn.-catalogue {
    gap: 1.2rem;
  }
}
@media screen and (width > 960px), print {
  .header_btn .btn.-catalogue {
    gap: 0.6rem;
  }
}
.header_btn .btn.-catalogue br {
  display: none;
}
@media screen and (960px < width <= 1190px) {
  .header_btn .btn.-catalogue br {
    display: block;
  }
}
.header_btn .btn.-catalogue::after {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  background-color: var(--main-color);
  -webkit-mask-image: url(../images/icon_dl.svg);
          mask-image: url(../images/icon_dl.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-transition: background-color 0.4s;
  transition: background-color 0.4s;
}
.header_btn .btn.-catalogue:hover::after {
  background-color: var(--white);
}
.header_btn .btn.-contact {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 0 0 0 1.3rem;
}
@media screen and (width <= 960px) {
  .header_btn .btn.-contact {
    gap: 6.7rem;
  }
}
@media screen and (960px < width <= 1190px) {
  .header_btn .btn.-contact {
    gap: 1.6rem;
  }
}
@media screen and (width > 1190px), print {
  .header_btn .btn.-contact {
    gap: 2.4rem;
  }
}
.header_btn .btn.-contact span {
  --hover-color: var(--main-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  border-left: 0.2rem solid var(--main-color);
  background-color: var(--white);
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, var(--hover-color)), color-stop(50%, transparent));
  background-image: linear-gradient(to right, var(--hover-color) 50%, transparent 50%);
  background-position: 100%;
  background-size: 300%;
  -webkit-transition: background-position 0.6s;
  transition: background-position 0.6s;
}
@media screen and (width <= 960px) {
  .header_btn .btn.-contact span {
    padding-inline: 1.4rem;
  }
}
@media screen and (width > 960px), print {
  .header_btn .btn.-contact span {
    padding-inline: 1rem;
  }
}
.header_btn .btn.-contact span::after {
  content: "";
  width: 2.2rem;
  height: 1.5rem;
  background-color: var(--main-color);
  -webkit-mask-image: url(../images/icon_contact.svg);
          mask-image: url(../images/icon_contact.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-transition: background-color 0.4s;
  transition: background-color 0.4s;
}
.header_btn .btn.-contact:hover span {
  background-position: 0;
}
.header_btn .btn.-contact:hover span::after {
  background-color: var(--white);
}

#header_trigger {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 5.5rem;
  background-color: var(--main-color);
}
@media screen and (width <= 960px) {
  #header_trigger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (width > 960px), print {
  #header_trigger {
    display: none;
  }
}
#header_trigger::before, #header_trigger::after {
  content: "";
  display: block;
  background-color: var(--white);
  width: 2.6rem;
  height: 0.2rem;
  border-radius: 0.1rem;
  position: absolute;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
#header_trigger::before {
  top: 1.1rem;
}
#header_trigger::after {
  top: 2.9rem;
}
#header_trigger .bar {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  display: block;
  background-color: var(--white);
  width: 2.6rem;
  height: 0.2rem;
  margin-block: 2rem 1.7rem;
  border-radius: 0.1rem;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
#header_trigger .txt {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
  color: var(--white);
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 1.1rem;
  text-transform: uppercase;
}
#header_trigger .txt.-close {
  display: none;
}
#header_trigger[data-sp-open=true]::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 1.8rem;
  right: 1.5rem;
}
#header_trigger[data-sp-open=true]::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 1.8rem;
  right: 1.5rem;
}
#header_trigger[data-sp-open=true] .bar {
  opacity: 0;
}
#header_trigger[data-sp-open=true] .txt.-menu {
  display: none;
}
#header_trigger[data-sp-open=true] .txt.-close {
  display: block;
}

#to_top_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  background-color: var(--main-color);
  border: 0.2rem solid var(--main-color);
  position: fixed;
  bottom: -120%;
  opacity: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  z-index: 90;
}
@media screen and (width <= 767px) {
  #to_top_btn {
    right: 0;
  }
}
@media screen and (width > 767px), print {
  #to_top_btn {
    right: 2rem;
  }
}
#to_top_btn[data-conditon=show] {
  opacity: 1;
}
@media screen and (width <= 767px) {
  #to_top_btn[data-conditon=show] {
    bottom: 0;
  }
}
@media screen and (width > 767px), print {
  #to_top_btn[data-conditon=show] {
    bottom: 2rem;
  }
}
#to_top_btn::before {
  content: "↑";
  color: var(--white);
  font-size: 2.3rem;
  font-weight: 700;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}
@media screen and (width > 767px), print {
  #to_top_btn:hover {
    background-color: var(--white);
  }
  #to_top_btn:hover::before {
    color: var(--main-color);
  }
}

/* footer */
#footer {
  background-color: var(--dark-navy);
}
@media screen and (width <= 767px) {
  #footer {
    margin-top: 8rem;
    padding-block: 4rem 5rem;
  }
}
@media screen and (width > 767px), print {
  #footer {
    margin-top: 11rem;
    padding-block: 4rem 1.5rem;
  }
}

main:has(#contact_banner) + #to_top_btn + #footer {
  margin-top: 0;
}

.footer_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 4rem;
}

@media screen and (width <= 767px) {
  .footer_info {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (width > 767px), print {
  .footer_info {
    padding-top: 1rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

@media screen and (width <= 767px) {
  .footer_logo {
    width: 21rem;
  }
}
@media screen and (width > 767px), print {
  .footer_logo {
    width: 28rem;
  }
}
.footer_logo img {
  width: 100%;
}

.footer_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
@media screen and (width <= 767px) {
  .footer_btn {
    margin-top: 3.5rem;
  }
}
@media screen and (width > 767px), print {
  .footer_btn {
    margin-top: 5rem;
  }
}
.footer_btn .btn {
  --hover-color: var(--white);
  width: 19rem;
  min-height: 4.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem 1rem 1rem 1.2rem;
  border-width: 0.1rem;
  border-color: var(--white);
  color: var(--white);
  font-size: 1.3rem;
}
@media screen and (width > 767px), print {
  .footer_btn .btn:hover {
    color: var(--dark-navy);
  }
  .footer_btn .btn:hover::after {
    background-color: var(--dark-navy) !important;
  }
}
.footer_btn .btn.-contact::after {
  content: "";
  width: 2.4rem;
  height: 1.8rem;
  background-color: var(--white);
  -webkit-mask-image: url(../images/icon_contact.svg);
          mask-image: url(../images/icon_contact.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-transition: background-color 0.4s;
  transition: background-color 0.4s;
}
.footer_btn .btn.-catalogue::after {
  content: "";
  width: 2.4rem;
  height: 1.6rem;
  background-color: var(--white);
  -webkit-mask-image: url(../images/icon_dl.svg);
          mask-image: url(../images/icon_dl.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-transition: background-color 0.4s;
  transition: background-color 0.4s;
}

.footer_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--gray-8);
  font-size: 1.3rem;
  line-height: 1.46;
}
@media screen and (width <= 767px) {
  .footer_link {
    margin-top: 2.5rem;
    gap: 1.5rem;
  }
}
@media screen and (width > 767px), print {
  .footer_link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 3rem;
    gap: 1.2rem;
  }
}
@media screen and (width > 767px), print {
  .footer_link a:hover {
    text-decoration: underline;
  }
}

@media screen and (width <= 767px) {
  .footer_location {
    display: none;
  }
}
.footer_location dt {
  width: 8.8rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: var(--white);
  font-weight: 700;
}
.footer_location dd {
  color: var(--gray-8);
  font-size: 1.3rem;
  line-height: 1.4615384615;
}
.footer_location dd a {
  display: block;
}
.footer_location dd a:hover {
  text-decoration: underline;
}
.footer_location dd a::after {
  content: "";
  display: inline-block;
  width: 1.2rem;
  height: 1.6rem;
  background-image: url(../images/icon_location.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
  margin-left: 0.5rem;
  margin-bottom: -0.2rem;
}
.footer_location dd span {
  display: inline-block;
}

.footer_hq {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  padding-bottom: 3rem;
  margin-bottom: 1.5rem;
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.15);
}
.footer_hq dt {
  font-size: 1.9rem;
  line-height: 1.45;
}

.footer_branch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (width > 1000px), print {
  .footer_branch {
    gap: 6rem;
  }
}
@media screen and (767px < width <= 1000px), print {
  .footer_branch {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
}

.footer_branch_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}

.footer_branch_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}
.footer_branch_item dt {
  font-size: 1.4rem;
  line-height: 1.4285714286;
}

.footer_copy {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
}
@media screen and (width <= 767px) {
  .footer_copy {
    margin-top: 4rem;
    padding-inline: 2rem;
  }
}
@media screen and (width > 767px), print {
  .footer_copy {
    margin-top: 4.4rem;
    padding-inline: 3rem;
  }
}

#contact_banner {
  background-size: cover;
}
@media screen and (width <= 767px) {
  #contact_banner {
    margin-top: 8rem;
    padding-block: 4rem;
    background-image: url(../images/contact_bg_sp.jpg);
  }
}
@media screen and (width > 767px), print {
  #contact_banner {
    margin-top: 11rem;
    padding-block: 6rem;
    background-image: url(../images/contact_bg_pc.jpg);
  }
}
#contact_banner .contact_keywords {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (width <= 767px) {
  #contact_banner .contact_keywords {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (width > 767px), print {
  #contact_banner .contact_keywords {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.5rem;
  }
}
#contact_banner .contact_keywords p {
  margin-top: 0;
  background-color: var(--ttl-black);
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, var(--hover-color)), color-stop(50%, transparent));
  background-image: linear-gradient(to right, var(--hover-color) 50%, transparent 50%);
  background-position: 100%;
  border-radius: 2rem;
  color: var(--white);
  font-weight: 500;
  line-height: 1;
}
@media screen and (width <= 767px) {
  #contact_banner .contact_keywords p {
    padding: 0.7rem 1.3rem;
    font-size: 1.4rem;
  }
}
@media screen and (width > 767px), print {
  #contact_banner .contact_keywords p {
    padding: 0.7rem 1.8rem;
    font-size: 2rem;
  }
}
#contact_banner .contact_txt {
  margin-top: 2rem;
  text-align: center;
  color: var(--white);
  font-weight: 700;
  line-height: 1;
}
@media screen and (width <= 767px) {
  #contact_banner .contact_txt {
    font-size: 2.8rem;
    letter-spacing: 0.04em;
  }
}
@media screen and (width > 767px), print {
  #contact_banner .contact_txt {
    font-size: 4.2rem;
    letter-spacing: 0.06em;
  }
}
@media screen and (width <= 767px) {
  #contact_banner .btn_wrap.-center {
    margin-top: 3rem;
  }
}
@media screen and (width > 767px), print {
  #contact_banner .btn_wrap.-center {
    margin-top: 4rem;
  }
}
#contact_banner .btn_wrap.-center .btn {
  --hover-color: var(--white);
  padding: 1.7rem 6rem;
  background-color: transparent;
  border-width: 0.3rem;
  border-color: var(--white);
  color: var(--white);
  font-size: 1.8rem;
}
@media screen and (width > 767px), print {
  #contact_banner .btn_wrap.-center .btn:hover {
    color: var(--main-color);
  }
}

/* lower_mv */
.lower_mv {
  --bg-color1: #0D378D;
  --bg-color2: #1078D1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--bg-color1)), to(var(--bg-color2)));
  background-image: linear-gradient(to bottom, var(--bg-color1), var(--bg-color2));
  overflow: hidden;
  position: relative;
}
@media screen and (width <= 767px) {
  .lower_mv {
    min-height: 11.9rem;
    margin-bottom: 3rem;
  }
}
@media screen and (767px < width <= 1365px) {
  .lower_mv {
    min-height: 19rem;
  }
}
@media screen and (width > 1365px), print {
  .lower_mv {
    min-height: 13.9vw;
  }
}
@media screen and (width <= 767px) {
  .lower_mv + .anchor {
    margin-block: 2.5rem 3rem;
  }
}
.lower_mv.-index {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (width <= 767px) {
  .lower_mv.-index {
    min-height: 15rem;
    background-image: url(../images/lower_top_mv_bg_sp.jpg);
  }
}
@media screen and (width > 767px), print {
  .lower_mv.-index {
    background-image: url(../images/lower_top_mv_bg_pc.jpg);
  }
}
.lower_mv.-index .container {
  max-width: none;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (width <= 767px) {
  .lower_mv.-index .lower_mv_ttl {
    font-size: 3.8rem;
  }
}
@media screen and (width > 767px), print {
  .lower_mv.-index .lower_mv_ttl {
    font-size: 5.4rem;
  }
}
@media screen and (width <= 767px) {
  .lower_mv.-index .lower_mv_ttl span {
    font-size: 1.5rem;
  }
}
@media screen and (width > 767px), print {
  .lower_mv.-index .lower_mv_ttl span {
    font-size: 2.1rem;
  }
}
.lower_mv.-index picture {
  width: 100%;
}
.lower_mv.-index .lower_mv_img {
  display: block;
  margin-left: auto;
}
@media screen and (width <= 767px) {
  .lower_mv.-index .lower_mv_img {
    width: 38.95%;
    margin-top: 2rem;
  }
}
@media screen and (767px < width <= 1366px), print {
  .lower_mv.-index .lower_mv_img {
    width: 72.9%;
    margin-top: 7rem;
  }
}
@media screen and (width > 1366px), print {
  .lower_mv.-index .lower_mv_img {
    width: auto;
    max-height: 25rem;
    margin-top: 7rem;
  }
}
.lower_mv:not(.-index) .lower_mv_img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0.6;
}
@media screen and (767px < width <= 1365px) {
  .lower_mv:not(.-index) .lower_mv_img {
    max-width: none;
    width: 136.6rem;
    height: auto;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.lower_mv .container {
  position: relative;
  z-index: 1;
}
@media screen and (width <= 767px) {
  .lower_mv + section {
    margin-top: 3rem;
  }
}

.lower_mv_ttl {
  max-width: 1200px;
  margin-inline: auto;
  color: var(--white);
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.25;
}
@media screen and (width <= 767px) {
  .lower_mv_ttl {
    padding-block: 3rem;
    font-size: 3.2rem;
  }
}
@media screen and (width > 767px), print {
  .lower_mv_ttl {
    padding-block: 5.5rem;
    font-size: 4.2rem;
  }
}
.lower_mv_ttl span {
  display: block;
  margin-bottom: 1rem;
  font-family: "Josefin Sans", "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0.16em;
}
@media screen and (width <= 767px) {
  .lower_mv_ttl span {
    font-size: 1.2rem;
  }
}
@media screen and (width > 767px), print {
  .lower_mv_ttl span {
    font-size: 1.5rem;
  }
}

/* breadcrumb */
@media screen and (width <= 767px) {
  .breadcrumb {
    display: none;
    margin-top: 6rem;
    margin-bottom: 3rem;
  }
}
@media screen and (width > 767px), print {
  .breadcrumb {
    margin-top: 1.5rem;
    margin-bottom: 3rem;
  }
}
.breadcrumb + * {
  margin-top: 0 !important;
}

.breadcrumb_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (width <= 767px) {
  .breadcrumb_list {
    gap: 0.6rem;
  }
}
@media screen and (width > 767px), print {
  .breadcrumb_list {
    gap: 1rem;
  }
}
.breadcrumb_list > li {
  font-size: 1.2rem;
  line-height: 1.4166666667;
}
.breadcrumb_list > li:first-of-type::before {
  content: "";
  display: inline-block;
  width: 1.8rem;
  height: 1.6rem;
  margin-right: 0.4rem;
  margin-bottom: -0.2rem;
  background-image: url(../images/icon_home.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.breadcrumb_list > li:not(:first-of-type)::before {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 1rem;
  margin-bottom: -0.2rem;
  background-image: url(../images/arw_gray.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (width <= 767px) {
  .breadcrumb_list > li:not(:first-of-type)::before {
    margin-right: 0.6rem;
  }
}
@media screen and (width > 767px), print {
  .breadcrumb_list > li:not(:first-of-type)::before {
    margin-right: 1rem;
  }
}
.breadcrumb_list > li a {
  color: var(--main-color);
  text-decoration: underline;
}
.breadcrumb_list > li a:hover {
  text-decoration: none;
}
.breadcrumb_list > li br {
  display: none;
}

.anchor {
  margin-block: 6.5rem 6rem;
  background-color: var(--light-gray);
  border-bottom: 0.1rem solid var(--gray-e0);
}

.anchor_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (width <= 767px) {
  .anchor_list {
    padding-block: 1.8rem 1.6rem;
    gap: 1.5rem 2.5rem;
  }
}
@media screen and (width > 767px), print {
  .anchor_list {
    padding-block: 1.5rem 1.6rem;
    gap: 1.5rem 4rem;
  }
}
.anchor_list > li {
  color: var(--main-color);
}
@media screen and (width <= 767px) {
  .anchor_list > li {
    width: calc((100% - 2.5rem) / 2);
  }
  .anchor_list > li.-sp_wide {
    width: 100%;
  }
}
.anchor_list > li a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
}
@media screen and (width <= 767px) {
  .anchor_list > li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-bottom: 0.8rem;
    border-bottom: 0.1rem solid currentColor;
  }
}
@media screen and (width > 767px), print {
  .anchor_list > li a {
    display: inline-block;
    text-decoration: underline;
  }
}
.anchor_list > li a::after {
  content: "";
  display: inline-block;
  width: 1.1rem;
  height: 0.9rem;
  margin-left: 0.8rem;
  background-color: currentColor;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (width > 767px), print {
  .anchor_list > li a:hover {
    text-decoration: none;
  }
}

.case_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (width <= 767px) {
  .case_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
}
@media screen and (width > 767px), print {
  .case_list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 4.5rem;
  }
}
.case_list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (width <= 767px) {
  .case_list > li {
    width: 100%;
  }
}
@media screen and (width > 767px), print {
  .case_list > li {
    width: calc((100% - 9rem) / 3);
  }
}
.case_list > li a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--white);
}
@media screen and (width > 767px), print {
  .case_list > li a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
  }
  .case_list > li a:hover .case_img img {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
            transform: translate(-50%, -50%) scale(1.1);
  }
}
.case_list > li .case_img {
  overflow: hidden;
  background-color: var(--bg-feature);
  position: relative;
}
@media screen and (width <= 767px) {
  .case_list > li .case_img {
    width: 8rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media screen and (width > 767px), print {
  .case_list > li .case_img {
    width: 100%;
    aspect-ratio: 37/19;
  }
}
.case_list > li .case_img.-high_current {
  --bg-feature: #FAE4E4;
}
.case_list > li .case_img.-fine_pitch {
  --bg-feature: #FDF2D5;
}
.case_list > li .case_img.-non_magnetic {
  --bg-feature: #E4ECF8;
}
.case_list > li .case_img.-kelvin {
  --bg-feature: #E6F2DB;
}
.case_list > li .case_img.-other {
  --bg-feature: #FAE7DA;
}
.case_list > li .case_img img {
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (width <= 767px) {
  .case_list > li .case_img img {
    width: 5.6rem;
  }
}
@media screen and (width > 767px), print {
  .case_list > li .case_img img {
    width: min(12rem, 10vw);
  }
}
.case_list > li .case_txt {
  border-right: 0.1rem solid var(--gray-e0);
  border-bottom: 0.1rem solid var(--gray-e0);
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (width <= 767px) {
  .case_list > li .case_txt {
    padding: 0 1.1rem 2rem 1.5rem;
    border-top: 0.1rem solid var(--gray-e0);
  }
}
@media screen and (width > 767px), print {
  .case_list > li .case_txt {
    padding: 1.5rem 2.5rem 2rem;
    border-left: 0.1rem solid var(--gray-e0);
  }
}
.case_list > li .case_txt .label {
  display: inline-block;
  background-color: var(--ttl-blue);
  color: var(--white);
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (width <= 767px) {
  .case_list > li .case_txt .label {
    padding: 0.1rem 0.5rem;
    font-size: 1.4rem;
  }
}
@media screen and (width > 767px), print {
  .case_list > li .case_txt .label {
    padding: 0.1rem 1.5rem;
    position: absolute;
    top: 0;
    left: 0;
  }
}
.case_list > li .case_txt h3 {
  color: var(--txt-color);
  line-height: 1.3333;
}
@media screen and (width <= 767px) {
  .case_list > li .case_txt h3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
  }
}
@media screen and (width > 767px), print {
  .case_list > li .case_txt h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 2.1rem;
  }
}
.case_list > li .case_txt .keywords {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: var(--ttl-blue);
  font-size: 1.4rem;
}
@media screen and (width <= 767px) {
  .case_list > li .case_txt .keywords {
    gap: 0.4rem 1rem;
  }
}
@media screen and (width > 767px), print {
  .case_list > li .case_txt .keywords {
    gap: 0.4rem 1.5rem;
  }
}

/* table */
.table {
  margin-top: 3rem;
  width: 100%;
}
@media screen and (width <= 767px) {
  .table {
    font-size: 1.4rem;
  }
}
.table:not(:last-child) {
  margin-bottom: 2.5rem;
}
.table th {
  background-color: var(--dark-blue);
  text-align: center;
  vertical-align: middle;
  color: var(--white);
  font-weight: 700;
  line-height: 1.4;
  border-top: 0.1rem solid #43577E;
  border-left: 0.1rem solid #43577E;
}
@media screen and (width <= 767px) {
  .table th {
    padding: 1.4rem;
  }
}
@media screen and (width > 767px), print {
  .table th {
    padding: 1.5rem;
  }
}
.table th:last-child {
  border-right: 0.1rem solid #43577E;
}
.table tr:last-child th {
  border-bottom: 0.1rem solid #43577E;
}
.table td {
  text-align: center;
  vertical-align: middle;
  border-top: 0.1rem solid var(--table-border);
  border-left: 0.1rem solid var(--table-border);
}
@media screen and (width <= 767px) {
  .table td {
    padding: 1.4rem;
  }
}
@media screen and (width > 767px), print {
  .table td {
    padding: 1.5rem;
  }
}
.table td:last-child {
  border-right: 0.1rem solid var(--table-border);
}
.table td.img {
  padding: 0;
}
.table td > *:first-child {
  margin-top: 0;
}
.table tr:last-child td {
  border-bottom: 0.1rem solid var(--table-border);
}
.table tbody tr:nth-of-type(odd) td {
  background-color: var(--light-gray);
}
@media screen and (width <= 767px) {
  .table tbody th {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    letter-spacing: 0.04em;
  }
}
@media screen and (width <= 767px) {
  .table.-sp_vertical tr::after {
    content: "";
    clear: both;
  }
  .table.-sp_vertical thead tr th:nth-of-type(n + 2),
  .table.-sp_vertical tbody tr td {
    float: left;
    width: 100%;
  }
  .table.-sp_vertical thead tr th:nth-of-type(2) {
    border-top: 0.1rem solid #43577E;
  }
  .table.-sp_vertical tbody tr td {
    border-right: 0.1rem solid var(--table-border);
  }
  .table.-sp_vertical tbody tr td p {
    text-align: left;
  }
  .table.-sp_vertical thead tr th:not(:last-child),
  .table.-sp_vertical tbody tr:last-child td:not(:last-child) {
    border-bottom: none;
  }
  .table.-sp_vertical tbody th {
    -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
            writing-mode: initial;
  }
}
.table_scroll {
  width: 100%;
}
@media screen and (width <= 767px) {
  .table_scroll {
    overflow-x: scroll;
  }
  .table_scroll .table {
    width: 100rem;
  }
  .table_scroll tbody th {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
  }
}

/* Safari */
@media screen and (width <= 767px) {
  _::-webkit-full-page-media, _:future, :root .table th {
    -webkit-writing-mode: horizontal-tb !important;
            writing-mode: horizontal-tb !important;
  }
  _::-webkit-full-page-media .transform, _:future .transform, :root .table th .transform {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}

@media screen and (width <= 767px) {
  _::-webkit-full-page-media, _:future, :root .table th .transform {
    display: inline-block;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}

.faq_list .faq_item {
  padding-block: 2.3rem 2.5rem;
  border-bottom: 0.1rem solid #ccc;
}
.faq_list .faq_item:first-child {
  border-top: 0.1rem solid #ccc;
}
.faq_list dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1rem;
  color: var(--ttl-blue);
  padding-left: 2.3rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.44;
  position: relative;
}
.faq_list dt::before {
  content: "Q";
  font-size: 2rem;
  position: absolute;
  top: -0.2rem;
  left: 0;
}
.faq_list dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 2.3rem;
  position: relative;
}
.faq_list dd > *:first-child {
  margin-top: 0;
}
.faq_list dd::before {
  content: "A";
  font-size: 2rem;
  font-weight: 700;
  position: absolute;
  top: 0.4rem;
  left: 0.1rem;
}

.box .faq_list .faq_item {
  padding-block: 0;
  border: none !important;
}
.box .faq_list .faq_item + .faq_item {
  margin-top: 2rem;
}

.pagination .wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 6rem;
}
@media screen and (width <= 767px) {
  .pagination .wp-pagenavi {
    gap: 0.6rem;
  }
}
@media screen and (width > 767px), print {
  .pagination .wp-pagenavi {
    gap: 1rem;
  }
}
.pagination .wp-pagenavi > span, .pagination .wp-pagenavi > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 0.1rem solid var(--main-color);
  text-decoration: none;
  color: var(--main-color);
}
@media screen and (width <= 767px) {
  .pagination .wp-pagenavi > span, .pagination .wp-pagenavi > a {
    width: 3.5rem;
    height: 3.5rem;
    padding: 0 0.5em;
    font-size: 1.3rem;
  }
}
@media screen and (width > 767px), print {
  .pagination .wp-pagenavi > span, .pagination .wp-pagenavi > a {
    min-width: 4rem;
    height: 4rem;
    padding: 0 1.5rem;
    font-size: 1.5rem;
  }
}
.pagination .wp-pagenavi > a {
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.pagination .wp-pagenavi > a:hover {
  opacity: 0.7;
  border-color: var(--main-color);
}
.pagination .wp-pagenavi .current {
  background-color: var(--main-color);
  color: var(--white);
  border-color: var(--main-color);
}
.pagination .wp-pagenavi .previouspostslink {
  margin-right: 1rem;
}
@media screen and (width <= 767px) {
  .pagination .wp-pagenavi .previouspostslink {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 6rem;
  }
}
@media screen and (width <= 767px) {
  .pagination .wp-pagenavi .previouspostslink::before {
    content: "";
    display: block;
    width: 0.8rem;
    height: 0.8rem;
    border-top: 0.15rem solid var(--main-color);
    border-left: 0.15rem solid var(--main-color);
    -webkit-transform: translateX(0.2rem) rotate(-45deg);
            transform: translateX(0.2rem) rotate(-45deg);
  }
}
@media screen and (width > 767px), print {
  .pagination .wp-pagenavi .previouspostslink::before {
    content: "前のページ";
  }
}
.pagination .wp-pagenavi .nextpostslink {
  margin-left: 1rem;
}
@media screen and (width <= 767px) {
  .pagination .wp-pagenavi .nextpostslink {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 6rem;
  }
}
@media screen and (width <= 767px) {
  .pagination .wp-pagenavi .nextpostslink::before {
    content: "";
    display: block;
    width: 0.8rem;
    height: 0.8rem;
    border-top: 0.15rem solid var(--main-color);
    border-right: 0.15rem solid var(--main-color);
    -webkit-transform: translateX(-0.2rem) rotate(45deg);
            transform: translateX(-0.2rem) rotate(45deg);
  }
}
@media screen and (width > 767px), print {
  .pagination .wp-pagenavi .nextpostslink::before {
    content: "次のページ";
  }
}

[data-category=privacy_policy] h1,
[data-category=notfound] h1 {
  margin-top: 1.7rem;
  color: var(--ttl-black);
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.28;
}
@media screen and (width <= 767px) {
  [data-category=privacy_policy] h1,
  [data-category=notfound] h1 {
    font-size: 2.8rem;
  }
}
@media screen and (width > 767px), print {
  [data-category=privacy_policy] h1,
  [data-category=notfound] h1 {
    font-size: 4.2rem;
  }
}
[data-category=privacy_policy] h1 + h2,
[data-category=notfound] h1 + h2 {
  margin-top: 4rem;
}
@media screen and (width <= 767px) {
  [data-category=privacy_policy] .container.-xs,
  [data-category=notfound] .container.-xs {
    margin-top: 4rem;
  }
}
[data-category=privacy_policy] .privacy_policy_list,
[data-category=notfound] .privacy_policy_list {
  margin-top: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}
[data-category=privacy_policy] .privacy_policy_list dt,
[data-category=notfound] .privacy_policy_list dt {
  line-height: 1.2;
}
@media screen and (width <= 767px) {
  [data-category=privacy_policy] .privacy_policy_list dt,
  [data-category=notfound] .privacy_policy_list dt {
    font-size: 2rem;
  }
}
@media screen and (width > 767px), print {
  [data-category=privacy_policy] .privacy_policy_list dt,
  [data-category=notfound] .privacy_policy_list dt {
    font-size: 2.2rem;
  }
}

/* reCAPTCHA v3　表示位置 */
.grecaptcha-badge {
  margin-bottom: 60px;
}