@charset "UTF-8";
/*====================================================================================
1. START COMMON ONLY CHILD PAGE.
====================================================================================*/
/*---------- START BREADCRUMB ----------*/
.breadcrumb {
  position: relative;
  padding: 0 0 2rem;
  z-index: 3;
}
.breadcrumb ul {
  display: flex;
}
.breadcrumb ul li {
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 3.5rem;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1;
}
.breadcrumb ul li:after {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 0;
  right: 1.6rem;
  margin: auto;
  width: 0;
  height: 0;
  border: solid var(--dark_blue);
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 2px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.breadcrumb ul li:last-child {
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding-right: 0;
}
.breadcrumb ul li:last-child:after {
  content: none;
}
.breadcrumb ul li:nth-child(2) {
  white-space: nowrap;
}
.breadcrumb ul li a {
  line-height: 1.2;
  text-decoration: none;
  color: var(--red);
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .breadcrumb {
    display: none;
  }
}

/*---------- START TITLE PAGE ----------*/
.ttl-page {
  position: relative;
  height: 15rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  letter-spacing: 0.5rem;
  z-index: 2;
}
.ttl-page h1 {
  color: #fff;
  font-family: var(--font-NotoSerifJP);
  font-size: 3rem;
  font-weight: normal;
}
@media only screen and (max-width: 767px) {
  .ttl-page {
    margin-bottom: 4rem;
  }
}
@media only screen and (min-width: 768px) {
  .ttl-page {
    height: 30rem;
    margin-bottom: 2rem;
  }
  .ttl-page h1 {
    font-size: 6rem;
  }
}

/*---------- PADDING SECTION ----------*/
.sec-cont {
  padding: 4rem 0 5rem;
}
@media only screen and (min-width: 768px) {
  .sec-cont {
    padding: 8rem 0 10rem;
  }
}

@media only screen and (max-width: 767px) {
  .main-cont {
    padding-bottom: 5rem;
  }
  .main-cont .sec-cont:first-child {
    padding-top: 0;
  }
}
@media only screen and (min-width: 768px) {
  .main-cont {
    padding-bottom: 10rem;
  }
}

/*---------- START BACKGROUND ----------*/
.bg_light_blue {
  position: relative;
  background: var(--light_blue);
  z-index: 2;
}
.bg_light_blue--haft {
  background: none;
}
.bg_light_blue--haft:after {
  position: absolute;
  content: "";
  background: var(--light_blue);
  width: 100%;
  height: 45%;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.list-indent1 li {
  text-indent: -2.1rem;
  margin-left: 2.1rem;
}
@media only screen and (min-width: 768px) {
  .list-indent1 li {
    text-indent: -2.5rem;
    margin-left: 2.5rem;
  }
}

/*---------- START list-dot ----------*/
.list-dot li {
  text-indent: -1.6rem;
  margin-left: 1.6rem;
}
@media only screen and (min-width: 768px) {
  .list-dot li {
    text-indent: -1.8rem;
    margin-left: 1.8rem;
  }
}

.list-dot_blue li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
}
.list-dot_blue li:after {
  position: absolute;
  content: "";
  background: var(--blue);
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  top: 0.7rem;
  left: 0;
}
@media only screen and (min-width: 768px) {
  .list-dot_blue li {
    padding-left: 2.5rem;
    margin-bottom: 2rem;
  }
  .list-dot_blue li:after {
    width: 1.5rem;
    height: 1.5rem;
  }
}

/*====================================================================================
2. START PAGE contact
====================================================================================*/
.p-contact .ttl-page {
  background: url("../contact/images/bg-ttlpage.webp") no-repeat center;
}

/*---------- START form ----------*/
.form {
  display: block;
  width: 100%;
}
.form .form-content {
  background: #fff;
  padding: 1.5rem;
}
.form .form-content__dl {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid var(--gray);
  padding: 0.5rem 0;
}
.form .form-content__dl:last-child {
  border-bottom: 1px solid var(--gray);
}
.form .form-content__dt {
  background: var(--dark_gray);
  position: relative;
  display: flex;
  align-items: flex-start;
  font-weight: bold;
}
.form .form-content__dd {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.form .form-content__title {
  position: relative;
  width: 100%;
  font-weight: bold;
}
.form .form-content__title:after {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  text-align: center;
  line-height: 1;
  font-weight: normal;
  width: 4.4rem;
  height: 2.4rem;
  font-size: 1.6rem;
  color: #fff;
}
.form .form-content__title.hissu:after {
  background: var(--red);
  content: "必須";
}
.form .form-content__title.ninni:after {
  background: var(--dark_blue);
  content: "任意";
}
.form .form-content .list-cont {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}
.form .form-content .list-cont li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-width: 20%;
  gap: 3px;
}
.form .form-content .list-cont li input {
  margin-right: 0 !important;
}
.form .form-content .selectable {
  width: 50%;
  min-width: 30rem;
  appearance: auto;
}
.form .form-content .error {
  color: #ff0000;
  font-size: 1.2rem;
  font-weight: normal;
}
.form .form-content .ipt-error {
  background: #f9e6db;
}
.form .form-content .p-postal-code {
  width: 25rem;
  margin: 0 1rem;
}
.form .form-content .list-input {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.form .form-content .sec-address {
  width: 100%;
}
.form .form-content .sec-address__item {
  width: 100%;
}
.form .form-content .sec-address__item.list-input {
  gap: 1rem;
  padding-left: 2.6rem;
  margin-top: 1.5rem;
}
.form .form-content .sec-address__item.list-input input {
  width: 25rem;
}
.form .form-content .list-radio01 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 5rem;
}
.form .form-content .date-input-group {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.form .form-content .date-input-group__item {
  width: calc((100% - 4rem) / 3);
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media only screen and (max-width: 767px) {
  .form {
    margin: 2rem auto 0;
  }
  .form .form-content dl {
    position: relative;
  }
  .form .form-content__dt, .form .form-content__dd {
    display: block;
    width: 100% !important;
    padding: 1rem;
  }
  .form .form-content dt:after {
    height: 2px;
  }
  .form .form-content__title {
    display: block;
    width: 100%;
    font-size: 1.4rem;
  }
  .form .form-content__title:after {
    width: 5rem;
    height: 2.5rem;
  }
  .form .form-content .list-input__ttl {
    width: 100% !important;
  }
  .form .form-content .list-input p {
    width: 48%;
  }
  .form #formEnd {
    margin-top: 3rem;
  }
}
@media only screen and (min-width: 768px) {
  .form {
    margin: 5rem auto 0;
  }
  .form .form-content {
    padding: 3rem;
  }
  .form .form-content__dl {
    padding: 1rem 0;
  }
  .form .form-content__dt {
    width: 38rem;
    padding: 2rem;
  }
  .form .form-content__dd {
    width: calc(100% - 38rem);
    padding: 2rem;
  }
  .form .form-content__title {
    font-size: 1.6rem;
    padding-right: 8rem;
  }
  .form .form-content__title:after {
    width: 5.8rem;
    height: 2.9rem;
  }
  .form .form-content .list-cont {
    gap: 1rem 5rem;
  }
  .form .form-content .list-input {
    gap: 3rem;
  }
  .form .form-content .list-input input {
    min-width: 27rem;
  }
  .form .form-content .sec-address__item.list-input input {
    width: calc((100% - 2rem) / 3);
    min-width: auto;
  }
  .form .form-content .sec-address__item.list-input input.p-extended-address {
    width: 100%;
  }
  .form .form-content .date-input-group {
    display: flex;
    align-items: center;
    gap: 4rem;
  }
  .form .form-content .date-input-group__item {
    width: calc((100% - 8rem) / 3);
  }
  .form #formEnd {
    margin-top: 5rem;
  }
}

/*---------- START contact-group-btn ----------*/
.contact-group-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2.5rem auto 0;
  gap: 2rem;
}
.contact-group-btn .contact-btn {
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  margin-top: 0;
  overflow: hidden;
  z-index: 3;
}
.contact-group-btn .contact-btn input {
  outline: none;
  border: none;
  cursor: pointer;
  padding: 1rem;
  font-weight: 500;
}
.contact-group-btn #submitButton.disabled {
  background: none;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .contact-group-btn .contact-btn {
    min-width: 25rem;
  }
  .contact-group-btn .contact-btn input {
    padding: 1.5rem 2rem 1.5rem 4rem;
  }
  .contact-group-btn .contact-btn .cm-arr {
    right: 1rem;
  }
  .contact-group-btn .cm-btn__link {
    width: 25rem;
  }
}
@media only screen and (min-width: 768px) {
  .contact-group-btn {
    margin: 5rem auto 0;
    gap: 5rem;
  }
  .contact-group-btn .contact-btn {
    width: 42rem;
  }
  .contact-group-btn .contact-btn input {
    width: 100%;
    font-size: 1.6rem;
    padding: 2.5rem 6rem 2.5rem 3rem;
  }
  .contact-group-btn .cm-btn__link {
    width: 42rem;
  }
}

/*---------- START box-pp ----------*/
.box-pp {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--gray);
  padding: 2rem 0 2rem 2rem;
  height: auto;
  max-height: 50rem;
  overflow-y: auto;
}
.box-pp p {
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.box-pp p a {
  text-decoration: none;
  color: var(--blue);
}
.box-pp section {
  padding-top: 1.5rem;
}
.box-pp section h3 {
  border-bottom: 1px solid var(--dark_blue);
  color: var(--dark_blue);
  font-size: 1.6rem;
  font-weight: bold;
  padding-bottom: 5px;
  margin-bottom: 3rem;
}
.box-pp section ol li {
  overflow: hidden;
  margin-bottom: 1rem;
}
.box-pp section ol li .list_no {
  width: 3.8rem;
  margin: 0 0 5px;
  padding: 0 2px;
  background: var(--dark_blue);
  color: #fff;
  display: inline-block;
  font-size: 1.2rem;
  text-align: center;
}
.box-pp section ul {
  padding-bottom: 1rem;
}
.box-pp section ul li {
  margin-left: 2rem;
  margin-bottom: 1rem;
  line-height: 1.8;
  list-style: lower-alpha;
}
@media only screen and (min-width: 768px) {
  .box-pp {
    padding: 4rem 2rem 4rem 4rem;
  }
  .box-pp p {
    margin-bottom: 2.5rem;
  }
  .box-pp section {
    padding-top: 2.5rem;
  }
  .box-pp section h3 {
    font-size: 1.8rem;
  }
  .box-pp section ol li .list_no {
    float: left;
    margin: 5px 0 0;
  }
  .box-pp section ol li p {
    margin: 0 0 15px 45px;
  }
}

/*====================================================================================
3. START PAGE products
====================================================================================*/
.p-products .ttl-page {
  background: url("../products/images/bg-ttlpage.webp") no-repeat center;
}
.p-products .main-cont > .sec-cont:nth-child(even) {
  background: var(--light_blue);
}

/*---------- START list-products ----------*/
.list-products {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem 1.5rem;
}
.list-products__item {
  width: calc((100% - 1.5rem) / 2);
}
.list-products__link {
  display: inline-block;
  width: 100%;
  text-decoration: none;
}
.list-products__img {
  width: 100%;
  height: 13rem;
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.list-products__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.list-products__txt {
  padding: 0 0.5rem;
  line-height: normal;
}
@media only screen and (min-width: 768px) {
  .list-products {
    gap: 6rem 1.5rem;
  }
  .list-products__link:hover .list-products__img img {
    transform: scale(1.1);
  }
  .list-products__item {
    width: calc((100% - 6rem) / 5);
  }
  .list-products__img {
    height: 18rem;
    margin-bottom: 3rem;
  }
}

.list-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.list-btn li {
  width: 100%;
}
.list-btn li a {
  display: inline-block;
  width: 100%;
  min-width: auto;
}
@media only screen and (min-width: 768px) {
  .list-btn {
    gap: 4rem;
  }
  .list-btn li {
    width: 38rem;
  }
  .list-btn li a {
    width: 100%;
  }
}

.btn_pdf a {
  border: #333 solid 1px;
  display: block;
  background: #fff;
  width: 100%;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  padding: 1.5rem;
}
.btn_pdf a span {
  padding: 5px 40px 5px 60px;
  background: url("../products/images/icon_pdf_g.png") no-repeat left top 2px;
  background-size: 20px auto;
}
@media only screen and (min-width: 768px) {
  .btn_pdf a {
    padding: 2.5rem;
  }
  .btn_pdf a:hover {
    border-color: #E60012;
  }
}

/*====================================================================================
4. START PAGE supplier
====================================================================================*/
.p-supplier .ttl-page {
  background: url("../products/images/supplier/bg-ttlpage.webp") no-repeat center;
}

/*---------- START list-supplier ----------*/
.list-supplier {
  width: 100%;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3rem 1.5rem;
}
.list-supplier__item {
  position: relative;
  width: calc((100% - 1.5rem) / 2);
  border: 1px solid var(--gray);
  transition: height 0.3s ease;
}
.list-supplier__img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1rem 1rem 0.5rem;
  height: 7rem;
}
.list-supplier__img img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.list-supplier__arr {
  position: relative;
  height: 4rem;
  cursor: pointer;
}
.list-supplier__arr:after {
  position: absolute;
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  border: 2px solid #000;
  border-bottom: none;
  border-left: none;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transform: rotate(135deg);
  margin: auto;
}
.list-supplier__arr.active:after {
  transform: rotate(135deg) scale(-1, -1);
}
.list-supplier__txt {
  display: none;
  padding: 0 1rem 1rem;
  border-bottom: 1px solid var(--gray);
  font-size: 1.4rem;
  letter-spacing: 0.05rem;
}
@media only screen and (min-width: 768px) {
  .list-supplier {
    gap: 5rem 1.5rem;
  }
  .list-supplier__item {
    width: calc((100% - 4.5rem) / 4);
  }
  .list-supplier__img {
    height: 11rem;
    padding: 2rem 2rem 1rem;
  }
  .list-supplier__txt {
    padding: 0 2rem 2rem;
  }
  .list-supplier__arr {
    height: 5rem;
  }
  .list-supplier__arr:hover {
    background: var(--red);
  }
  .list-supplier__arr:hover:after {
    border-color: var(--white);
  }
}

/*====================================================================================
5. START PAGE contents
====================================================================================*/
.p-contents .ttl-page {
  background: url("../contents/images/bg-ttlpage.webp") no-repeat center;
}

/*---------- START list-category ----------*/
.list-category {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
}
.list-category__item {
  width: calc((100% - 1.5rem) / 2);
}
.list-category__item a {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
  border: 1px solid var(--gray);
  font-weight: 500;
  color: var(--dark_blue);
  padding: 1rem 0.5rem;
}
.list-category__item a.active {
  background: var(--dark_blue);
  border-color: var(--dark_blue);
  color: var(--white);
}
@media only screen and (min-width: 768px) {
  .list-category {
    gap: 3rem;
  }
  .list-category__item {
    width: calc((100% - 9rem) / 4);
  }
  .list-category__item a {
    padding: 2.4rem 1rem;
  }
  .list-category__item a:hover {
    border-color: var(--dark_blue);
    color: var(--white);
  }
}

/*---------- START list-contents ----------*/
.list-contents {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 4rem;
}
.list-contents__item {
  width: calc((100% - 1rem) / 2);
  background: var(--dark_gray);
  padding: 1rem 1rem 1.5rem;
}
.list-contents__img {
  width: 100%;
  height: 9rem;
}
.list-contents__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.list-contents__txt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-weight: 500;
  margin-top: 1rem;
  gap: 0.5rem;
}
.list-contents__txt .cat {
  width: auto;
  min-width: 7rem;
  background: var(--metallic_blue);
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
}
.list-contents__txt .ttl {
  width: 100%;
  font-size: 1.4rem;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  .list-contents {
    gap: 3rem;
    margin-top: 8rem;
  }
  .list-contents__item {
    width: calc((100% - 6rem) / 3);
    padding: 2rem 2rem 3rem;
  }
  .list-contents__img {
    height: 20rem;
  }
  .list-contents__txt {
    margin-top: 2rem;
    gap: 0.8rem;
  }
  .list-contents__txt .cat {
    min-width: 10rem;
  }
  .list-contents__txt .ttl {
    font-size: 1.6rem;
  }
}

/*---------- START pagination ----------*/
.pagination {
  position: relative;
  width: auto;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 5rem;
}
.pagination a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--gray);
  border-radius: 50%;
  text-align: center;
  font-weight: normal;
  text-decoration: none;
  color: var(--dark_blue);
  font-size: 2rem;
  padding-bottom: 0.2rem;
}
.pagination a.current {
  border: 1px solid var(--dark_blue);
  background: var(--dark_blue);
  color: #fff;
  font-weight: bold;
}
.pagination .cm-btn {
  width: 15rem;
  min-width: auto;
}
.pagination .cm-btn__link {
  min-width: auto;
  margin-top: 0;
}
.pagination .prev a, .pagination .next a {
  width: 100%;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--dark_blue);
  text-align: center;
  color: var(--white);
  border-radius: 0;
  border: none;
  top: 0;
  font-size: 1.4rem;
  padding: 0.5rem 3rem !important;
  z-index: 3;
  border-radius: 0;
}
.pagination .next:before {
  transform: rotate(45deg);
}
.pagination .prev:before {
  transform: rotate(-135deg);
}
@media only screen and (max-width: 767px) {
  .pagination .prev, .pagination .next {
    width: 100%;
  }
  .pagination .prev a, .pagination .next a {
    width: 15rem;
    margin: 1rem auto;
  }
}
@media only screen and (min-width: 768px) {
  .pagination {
    padding: 0 20rem;
    margin-top: 10rem;
  }
  .pagination a {
    width: 4rem;
    height: 4rem;
    font-size: 3rem;
    padding-bottom: 0.5rem;
  }
  .pagination a:hover {
    background: #000;
    border-color: #000;
    color: #fff;
  }
  .pagination .prev, .pagination .next {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 18rem;
    height: 5rem;
    font-size: 1.6rem;
    margin: auto;
  }
  .pagination .prev a, .pagination .next a {
    height: 100%;
  }
  .pagination .prev:before, .pagination .next:before {
    width: 1rem;
    height: 1rem;
  }
  .pagination .prev:hover, .pagination .next:hover {
    background: #000;
    border-color: #000;
  }
  .pagination .prev {
    left: 0;
  }
  .pagination .prev .cm-arr {
    right: auto;
    left: 2rem;
  }
  .pagination .next {
    right: 0;
  }
}

/*====================================================================================
6. START PAGE quality
====================================================================================*/
.p-quality .ttl-page {
  background: url("../quality/images/bg-ttlpage.webp") no-repeat center;
}

/*---------- START sec-quality ----------*/
.sec-quality {
  position: relative;
  width: 100%;
}
.sec-quality__txt {
  position: relative;
  background: var(--white);
  border-radius: 1rem;
  width: 94%;
  padding: 2rem 1.5rem;
  margin: -2rem auto 0;
}
@media only screen and (min-width: 768px) {
  .sec-quality__txt {
    width: 90%;
    border-radius: 3rem;
    padding: 4rem;
    margin: -10rem auto 0;
  }
}

/*---------- START list-card ----------*/
.list-card {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.list-card__item {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 40rem;
  background: var(--dark_blue);
  color: #fff;
  font-weight: 500;
  font-size: 1.6rem;
  padding: 1.5rem 0.5rem;
}
.list-card__item a {
  display: inline-block;
  width: 100%;
  color: #fff;
  text-decoration: none;
}
@media only screen and (min-width: 768px) {
  .list-card {
    gap: 4rem;
    margin-top: 4rem;
  }
  .list-card__item {
    width: 45%;
    max-width: 40rem;
    font-size: 2rem;
    padding: 3rem 1rem;
  }
}

/*---------- START box-light_blue ----------*/
.box-light_blue {
  width: 100%;
  background: var(--light_blue);
  border-radius: 1rem;
  padding: 2rem;
  margin-top: 2rem;
}
@media only screen and (min-width: 768px) {
  .box-light_blue {
    border-radius: 3rem;
    padding: 4rem;
    margin-top: 3rem;
  }
}

/*====================================================================================
7. START PAGE faq
====================================================================================*/
.p-faq .ttl-page {
  background: url("../faq/images/bg-ttlpage.webp") no-repeat center;
}

/*====================================================================================
8. START PAGE company
====================================================================================*/
.p-company .main-cont > .sec-cont:nth-child(even) {
  background: var(--light_blue);
}
.p-company .ttl-page {
  background: url("../company/images/bg-ttlpage.webp") no-repeat center;
}
.p-company .name {
  font-weight: bold;
}
.p-company .name span {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.p-company .name__txt-2 {
  color: var(--red);
  font-size: 1.5rem;
  margin-top: 1rem;
}
.p-company .name__txt-2 strong {
  margin-left: 1rem;
}
.p-company #company-05 .style-table01 tr th, .p-company #company-05 .style-table01 tr td {
  vertical-align: middle;
}
.p-company #company-05 .style-table01 tr th {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-company .name__txt-2 strong img {
    width: 12rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-company .name strong {
    margin-left: 2rem;
  }
  .p-company .name__txt-2 {
    font-size: 1.8rem;
  }
}

/*---------- START box-white ----------*/
.box-white {
  background: var(--white);
  padding: 2rem;
}
.box-white--border {
  border: 1px solid var(--gray);
}
.box-white + .box-white {
  margin-top: 2rem;
}
@media only screen and (min-width: 768px) {
  .box-white {
    padding: 4rem;
  }
  .box-white + .box-white {
    margin-top: 3rem;
  }
}

/*---------- START box-boder ----------*/
.box-boder {
  width: 100%;
  border: 2px solid var(--gray);
  padding: 1rem;
}
@media only screen and (min-width: 768px) {
  .box-boder {
    max-width: 105rem;
    padding: 2rem;
    margin: auto;
  }
}

/*---------- START style-table01 ----------*/
.style-table01 tr:nth-child(odd) {
  background: var(--dark_gray);
}
.style-table01 tr th, .style-table01 tr td {
  text-align: left;
  padding: 1.5rem 1rem;
}
.style-table01 tr td {
  padding-top: 0;
}
.style-table01 tr td p + p {
  margin-top: 1rem;
}
@media only screen and (max-width: 767px) {
  .style-table01 tr th, .style-table01 tr td {
    display: block;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .style-table01 tr th, .style-table01 tr td {
    padding: 1.5rem 2rem;
    vertical-align: top;
  }
  .style-table01 tr th {
    width: 22rem;
  }
  .style-table01 tr td {
    width: calc(100% - 22rem);
  }
  .style-table01 tr td p + p {
    margin-top: 2rem;
  }
  .style-table01 tr td ul {
    display: flex;
    justify-content: space-between;
  }
  .style-table01 tr td ul li {
    width: 48%;
  }
}

/*---------- START two_col ----------*/
.two_col {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 5rem;
}
.two_col__col {
  width: 100%;
}
.two_col__col .box-white {
  padding: 1rem 2rem;
  margin-top: 1rem;
}
.two_col__col .iframe-map {
  width: 100%;
  height: 35rem;
  margin-top: 2rem;
}
.two_col__col .iframe-map iframe {
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 768px) {
  .two_col {
    gap: 10rem;
  }
  .two_col__col {
    width: calc((100% - 10rem) / 2);
  }
  .two_col__col .box-white {
    display: flex;
    align-items: center;
    margin-top: 2rem;
    min-height: 11rem;
  }
  .two_col__col .iframe-map {
    height: 35rem;
    margin-top: 5rem;
  }
}

/*====================================================================================
9. START PAGE recruit
====================================================================================*/
.p-recruit .ttl-page {
  background: url("../recruit/images/bg-ttlpage.webp") no-repeat center;
}
.p-recruit #recruit-02 {
  background: url("../recruit/images/s2-bg.webp") no-repeat top center/cover;
}

/*---------- START sec-link2 second page ----------*/
.sec-link2 .list-link2 {
  padding: 0;
}

/*---------- START c-box ----------*/
.c-box01 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}
.c-box01__left, .c-box01__right {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .c-box01 {
    gap: 5rem;
  }
  .c-box01__left {
    width: 42%;
  }
  .c-box01__right {
    width: 50%;
  }
}

.c-box02 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.c-box02__txt {
  width: 100%;
}
.c-box02__img {
  width: 100%;
}
.c-box02__img img {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .c-box02 {
    flex-direction: column-reverse;
    gap: 2rem;
  }
  .c-box02__txt {
    padding: 0 1rem;
  }
}
@media only screen and (min-width: 768px) {
  .c-box02__txt {
    width: 52%;
    display: flex;
    justify-content: flex-end;
  }
  .c-box02__txt .inner-txt {
    max-width: 59rem;
  }
  .c-box02__img {
    width: 45%;
    min-height: 70rem;
  }
  .c-box02__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 70rem;
  }
}

.c-box03 {
  width: 100%;
  background: #fff;
  padding: 2rem 1.5rem;
  margin-top: 3rem;
}
.c-box03__main {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.c-box03__main-img {
  width: 100%;
}
.c-box03__main-img img {
  width: 100%;
}
.c-box03__main-txt {
  width: 100%;
  padding-top: 1rem;
}
.c-box03__main-txt .txt-ttl {
  background: var(--dark_blue);
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 0.5rem;
  padding-left: 2rem;
  margin-bottom: 1rem;
}
.c-box03__detail {
  margin-top: 3rem;
}
.c-box03__detail h4 {
  margin-bottom: 1rem;
}
.c-box03__detail p + h4 {
  margin-top: 2rem;
}
@media only screen and (min-width: 768px) {
  .c-box03 {
    padding: 5rem;
    margin-top: 5rem;
  }
  .c-box03__main-img {
    width: 50%;
  }
  .c-box03__main-txt {
    width: 50%;
    padding-top: 2rem;
  }
  .c-box03__main-txt .txt-ttl {
    font-size: 2.4rem;
    padding-left: 4rem;
    margin-bottom: 2rem;
  }
  .c-box03__main-txt .txt-body {
    padding-left: 4rem;
  }
  .c-box03__detail {
    margin-top: 6rem;
  }
  .c-box03__detail p + h4 {
    margin-top: 4rem;
  }
}

/*---------- START two-box ----------*/
.two-box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
}
.two-box__box {
  width: 100%;
  border: 2px solid #fff;
  padding: 1.5rem;
  color: #fff;
}
.two-box__head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.two-box__head .img {
  width: 8rem;
}
.two-box__head .img img {
  width: 100%;
}
.two-box__head .ttl {
  width: calc(100% - 10rem);
  font-weight: bold;
  font-size: 1.8rem;
}
@media only screen and (min-width: 768px) {
  .two-box {
    gap: 6rem;
  }
  .two-box__box {
    width: calc((100% - 6rem) / 2);
    padding: 3rem 5rem;
  }
  .two-box__head {
    margin-bottom: 1.5rem;
  }
  .two-box__head .ttl {
    font-size: 2.4rem;
  }
}

/*---------- START two-box2 ----------*/
.two-box2 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
}
.two-box2__item {
  width: 100%;
  color: var(--dark_blue);
}
.two-box2__link {
  text-decoration: none;
}
.two-box2__img {
  width: 100%;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.two-box2__img img {
  width: 100%;
  transition: all 0.5s;
}
.two-box2--white .two-box2__item {
  background: #fff;
  padding: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .two-box2 {
    gap: 4rem;
  }
  .two-box2__item {
    width: calc((100% - 4rem) / 2);
  }
  .two-box2__link:hover .two-box2__img img {
    transform: scale(1.1);
  }
  .two-box2__img {
    margin-bottom: 3rem;
  }
  .two-box2--white .two-box2__item {
    padding: 3rem;
  }
}

/*====================================================================================
9. START PAGE recruit_system
====================================================================================*/
.p-recruit_system .ttl-page {
  background: url("../recruit_system/images/bg-ttlpage.webp") no-repeat center;
}
.p-recruit_system #recruit_system-02 {
  background: url("../recruit_system/images/s2-bg.webp") no-repeat center/cover;
}

/*====================================================================================
9. START PAGE recruit_job
====================================================================================*/
.p-recruit_job .ttl-page {
  background: url("../recruit_job/images/bg-ttlpage.webp") no-repeat center;
}

/*---------- START list-job ----------*/
.list-job {
  display: flex;
  flex-flow: column;
  gap: 3rem;
}
.list-job__job {
  width: 100%;
  border-width: 1px;
  border-color: rgb(173, 179, 185);
  border-style: solid;
  box-shadow: 0px 5px 10px 0px rgba(75, 89, 119, 0.2);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 1.5rem;
}
.list-job__img {
  width: 100%;
}
.list-job__img img {
  width: 100%;
}
.list-job__infor {
  width: 100%;
}
.list-job__name {
  font-size: 2rem;
  color: var(--dark_blue);
  margin-bottom: 1.5rem;
}
.list-job__name + .list-job__sub span {
  margin-top: 0;
}
.list-job__sub span {
  display: inline-block;
  background: var(--dark_blue);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .list-job__job {
    padding: 3rem;
  }
  .list-job__img {
    width: 40%;
  }
  .list-job__infor {
    width: 52%;
  }
  .list-job__name {
    font-size: 3rem;
    margin-bottom: 3rem;
  }
  .list-job__sub span {
    font-size: 1.8rem;
    padding: 0.5rem 2rem;
    margin-top: 3rem;
  }
}

/*---------- START style-table02 ----------*/
.style-table02 {
  width: 100%;
}
.style-table02 tr th, .style-table02 tr td {
  border: 1px solid var(--gray);
}
.style-table02 tr th {
  background: var(--dark_blue);
  color: #fff;
  text-align: center;
}
.style-table02 tr td {
  background: #fff;
}
@media only screen and (max-width: 767px) {
  .style-table02 tr th, .style-table02 tr td {
    display: block;
    width: 100%;
    padding: 1rem;
  }
}
@media only screen and (min-width: 768px) {
  .style-table02 tr th, .style-table02 tr td {
    padding: 1.5rem;
  }
  .style-table02 tr th {
    width: 23rem;
  }
  .style-table02 tr td {
    width: calc(100% - 23rem);
    padding-left: 5rem;
  }
}

/*---------- START list-step ----------*/
.list-step {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.list-step__step {
  position: relative;
}
.list-step__step:after {
  position: absolute;
  content: "";
  background: var(--dark_blue);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  margin: auto;
}
.list-step__step:last-child:after {
  display: none;
}
.list-step__number {
  width: 15rem;
  background: var(--dark_blue);
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 5px;
  padding-bottom: 0.3rem;
  margin: auto;
}
.list-step__img {
  background: #fff;
  width: 15rem;
  height: 15rem;
  border: 1px solid var(--dark_blue);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem auto 0.5rem;
}
.list-step__ttl {
  font-weight: bold;
  color: var(--dark_blue);
  font-size: 1.8rem;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .list-step {
    gap: 6rem;
  }
  .list-step__step {
    text-align: center;
    width: 100%;
  }
  .list-step__step:after {
    width: 2rem;
    height: 4rem;
    right: 0;
    left: 0;
    bottom: -5rem;
    transform: rotate(90deg);
  }
  .list-step__img img {
    width: auto;
    height: 40%;
  }
}
@media only screen and (min-width: 768px) {
  .list-step {
    gap: 9rem;
  }
  .list-step__step {
    width: calc((100% - 27rem) / 4);
  }
  .list-step__step:after {
    width: 4rem;
    height: 8.5rem;
    top: 0;
    bottom: 0;
    bottom: 5rem;
    right: -7rem;
  }
  .list-step__number {
    font-size: 3rem;
  }
  .list-step__img {
    width: 23rem;
    height: 23rem;
    margin: 1.5rem auto 1rem;
  }
  .list-step__ttl {
    font-size: 2.4rem;
  }
}

/*====================================================================================
10. START PAGE introduction
====================================================================================*/
.p-introduction .ttl-page {
  background: url("../introduction/images/bg-ttlpage.webp") no-repeat center;
}

/*---------- START list-box02 ----------*/
.list-box02 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem 4rem;
}
.list-box02__item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 1rem;
}
.list-box02__img {
  width: 42%;
}
.list-box02__img img {
  width: 100%;
}
.list-box02__txt {
  width: 55%;
}
@media only screen and (min-width: 768px) {
  .list-box02__item {
    width: calc((100% - 4rem) / 2);
    padding: 2rem;
  }
  .list-box02__img {
    width: 44%;
  }
  .list-box02__txt {
    width: 50%;
  }
}

/*---------- START three-box ----------*/
.three-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.three-box:last-child {
  margin-bottom: 0;
}
.three-box__item {
  width: 100%;
  border: 1px solid var(--gray);
  padding: 1.5rem;
  overflow: hidden;
}
.three-box__ttl {
  position: relative;
  background: var(--light_blue);
  color: var(--dark_blue);
  font-weight: bold;
  font-size: 1.5rem;
  padding: 0.5rem 0;
  margin-bottom: 0.5rem;
  z-index: 2;
}
.three-box__ttl:after {
  position: absolute;
  content: "";
  background: var(--light_blue);
  width: 3rem;
  height: 100%;
  top: 0;
  left: -3rem;
  z-index: -1;
}
@media only screen and (min-width: 768px) {
  .three-box {
    margin-bottom: 6rem;
  }
  .three-box__item {
    width: calc((100% - 3rem) / 3);
    padding: 3rem;
  }
  .three-box__ttl {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
}

/*====================================================================================
11. START PAGE temco
====================================================================================*/
.p-temco .ttl-page {
  background: url("../temco/images/bg-ttlpage.webp") no-repeat center;
  height: 100dvh;
  max-height: 40rem;
  color: #fff;
  text-align: left;
}
.p-temco .ttl-page h1 {
  font-weight: normal;
  font-size: 2.4rem;
  font-family: var(--font-NotoSerifJP);
  margin-bottom: 1.5rem;
}
.p-temco .ttl-page p {
  font-weight: 500;
  font-size: 1.6rem;
}
@media only screen and (min-width: 768px) {
  .p-temco .ttl-page {
    max-height: 80rem;
  }
  .p-temco .ttl-page h1 {
    font-size: 6rem;
    margin-bottom: 3rem;
  }
  .p-temco .ttl-page p {
    font-size: 3rem;
  }
  .p-temco .c-box02__img {
    min-height: 39rem;
  }
  .p-temco .c-box02__img img {
    min-height: 39rem;
  }
}

/*---------- START list-banner ----------*/
.list-banner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3rem;
}
.list-banner li {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  width: calc((100% - 1rem) / 2);
  height: 6rem;
  font-weight: bold;
  color: var(--dark_blue);
}
@media only screen and (min-width: 768px) {
  .list-banner {
    margin-top: 6rem;
  }
  .list-banner li {
    width: calc((100% - 5rem) / 6);
    height: 10rem;
  }
}

.list-banner2 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.list-banner2__item {
  position: relative;
  width: 100%;
}
.list-banner2__item img {
  width: 100%;
}
.list-banner2__txt {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: bold;
  font-size: 1.6rem;
}
@media only screen and (min-width: 768px) {
  .list-banner2 {
    gap: 2.5rem;
  }
  .list-banner2__item {
    width: calc((100% - 2.5rem) / 2);
  }
  .list-banner2__txt {
    font-size: 2rem;
  }
}

/*====================================================================================
12. START PAGE camera
====================================================================================*/
.p-camera .ttl-page {
  background: url("../camera/images/bg-ttlpage.webp") no-repeat center;
}

.c-cont1 p + h5 {
  margin-top: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .c-cont1 p + h5 {
    margin-top: 2rem;
  }
}

/*---------- START box-border ----------*/
.box-border {
  width: 100%;
  background: #fff;
  border: 1px solid var(--gray);
  font-size: 1.5rem;
  padding: 2rem 1.5rem;
  margin-top: 3.5rem;
}
.box-border__cont {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.box-border__cont ul {
  position: relative;
  width: 100%;
  padding: 1rem;
}
.box-border__cont ul:after {
  position: absolute;
  content: "";
  background: var(--gray);
}
.box-border__cont ul:last-child:after {
  display: none;
}
.box-border__cont ul li {
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.box-border__inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.box-border__inner .inner-txt {
  width: 100%;
}
.box-border__inner .img {
  width: 23rem;
  min-width: 23rem;
  margin: auto;
}
.box-border__inner .img img {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .box-border__cont ul:after {
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
  }
  .box-border__inner {
    flex-direction: column-reverse;
  }
}
@media only screen and (min-width: 768px) {
  .box-border {
    font-size: 1.8rem;
    padding: 4rem 2rem;
    margin-top: 7rem;
  }
  .box-border__cont {
    justify-content: center;
    margin-top: 4rem;
  }
  .box-border__cont ul {
    width: 50%;
    padding: 0 4%;
  }
  .box-border__cont ul:after {
    width: 1px;
    height: 100%;
    top: 0;
    right: 0;
  }
  .box-border__cont ul li {
    margin-bottom: 1rem;
  }
  .box-border__inner {
    gap: 5rem;
    padding: 0 2rem;
  }
  .box-border__inner .inner-txt {
    flex: 1;
  }
}

/*---------- START style-table03 ----------*/
.style-table03 {
  width: 100%;
}
.style-table03 tr th, .style-table03 tr td {
  border: 1px solid var(--gray);
  text-align: center;
}
.style-table03 tr th {
  background: var(--light_blue);
  color: var(--dark_blue);
}
.style-table03 tr td {
  background: #fff;
}
@media only screen and (max-width: 767px) {
  .style-table03 tr th, .style-table03 tr td {
    width: 25%;
    padding: 1rem 0.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .style-table03 tr th, .style-table03 tr td {
    padding: 1.5rem;
  }
  .style-table03 tr th {
    width: 23rem;
  }
  .style-table03 tr td {
    width: calc(100% - 23rem);
    padding-left: 5rem;
  }
}

/*====================================================================================
13. START PAGE galvano
====================================================================================*/
.p-galvano .ttl-page {
  background: url("../galvano/images/bg-ttlpage.webp") no-repeat center;
}
@media only screen and (min-width: 768px) {
  .p-galvano #scanner-02 .c-box01 {
    gap: 3rem;
  }
  .p-galvano #scanner-02 .c-box01__left {
    width: 48%;
  }
  .p-galvano #scanner-02 .c-box01__right {
    width: 47%;
  }
}

/*---------- START list-box01 ----------*/
.list-box01 {
  display: flex;
  flex-flow: column;
  gap: 3rem;
  margin-top: 3rem;
}
.list-box01__item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  counter-increment: number;
}
.list-box01__img {
  width: 100%;
}
.list-box01__img img {
  width: 100%;
}
.list-box01__txt {
  width: 100%;
}
.list-box01__ttl {
  position: relative;
  background: var(--light_blue);
  font-weight: bold;
  font-size: 1.8rem;
  padding: 0.5rem;
  padding-left: 6rem;
  color: var(--dark_blue);
  margin-bottom: 1rem;
}
.list-box01__ttl:after {
  position: absolute;
  content: counter(number);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--dark_blue);
  color: #fff;
  font-weight: bold;
  font-size: 2.4rem;
  padding-bottom: 0.3rem;
}
@media only screen and (min-width: 768px) {
  .list-box01 {
    gap: 6rem;
    margin-top: 6rem;
  }
  .list-box01__item:nth-child(even) {
    flex-direction: row-reverse;
  }
  .list-box01__img {
    width: 50%;
  }
  .list-box01__txt {
    width: calc(50% - 5rem);
  }
  .list-box01__ttl {
    font-size: 2.4rem;
    padding-left: 11rem;
    margin-bottom: 2rem;
  }
  .list-box01__ttl:after {
    width: 9rem;
    font-size: 4rem;
    padding-bottom: 0.7rem;
  }
}

/*---------- START list-cart ----------*/
.list-card2 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.list-card2 li {
  width: calc((100% - 1rem) / 2);
}
.list-card2 li a {
  display: inline-block;
  width: 100%;
  text-decoration: none;
  background: var(--light_blue);
  font-weight: bold;
  color: var(--dark_blue);
  text-align: center;
  padding: 1rem 0.5rem;
}
@media only screen and (min-width: 768px) {
  .list-card2 {
    margin-top: 2rem;
    margin-bottom: 4rem;
  }
  .list-card2 li {
    width: calc((100% - 3rem) / 4);
  }
  .list-card2 li a:hover {
    background: var(--dark_blue);
    color: #fff;
  }
  .list-card2--two li {
    width: calc((100% - 1rem) / 2);
  }
  .list-card2--three li {
    width: calc((100% - 2rem) / 3);
  }
}

/*---------- START button show-more ----------*/
.btn-more button {
  position: relative;
  text-decoration: none !important;
  text-align: center;
  display: inline-block;
  background: var(--dark_blue);
  color: #fff;
  width: auto;
  min-width: 230px;
  max-width: 100%;
  font-weight: 500;
  padding: 1rem 5rem;
  line-height: normal;
  outline: 0;
  cursor: pointer;
}
.btn-more button:after {
  content: "もっと見る";
  transition: 0.2s;
}
.btn-more button .icon {
  position: absolute;
  content: "";
  width: 2rem;
  height: 2rem;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.btn-more button .icon:after, .btn-more button .icon:before {
  position: absolute;
  content: "";
  background: #fff;
  width: 1.2rem;
  height: 2px;
  top: 0;
  bottom: 0;
  right: 1.5rem;
  margin: auto;
  transition: all 0.3s;
}
.btn-more button .icon:before {
  transform: rotate(90deg);
}
.btn-more .more.on-click:after {
  content: "閉じる";
}
.btn-more .more.on-click .icon:before {
  transform: rotate(0deg);
}

.txt-more {
  display: none;
  padding-bottom: 2rem;
}
@media only screen and (min-width: 768px) {
  .txt-more {
    padding-bottom: 4rem;
  }
}

/*---------- START list-box03 ----------*/
.list-box03 {
  display: flex;
  flex-flow: column;
  gap: 3rem;
  margin-top: 3rem;
}
.list-box03__item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.list-box03__img {
  width: 100%;
}
.list-box03__img img {
  width: 100%;
}
.list-box03__txt {
  width: 100%;
  padding-top: 1rem;
}
.list-box03__ttl {
  position: relative;
  font-weight: bold;
  font-size: 1.8rem;
  color: var(--dark_blue);
  margin-bottom: 1rem;
}
@media only screen and (min-width: 768px) {
  .list-box03 {
    margin-top: 5rem;
  }
  .list-box03__img {
    width: 45%;
  }
  .list-box03__txt {
    width: 50%;
    padding-top: 3rem;
  }
  .list-box03__ttl {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
}

/*====================================================================================
13. START PAGE seminar
====================================================================================*/
.p-seminar .ttl-page {
  background: url("../products/images/bg-ttlpage.webp") no-repeat center;
}

.control_area {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.control_area .con_title {
  width: 100%;
  display: flex;
  align-items: center;
  font-size: 1.4rem;
}
.control_area .controls {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.control_area .controls .control {
  width: 100%;
  cursor: pointer;
  padding: 1rem 1.5rem;
  background: #fff;
  border: #ccc solid 1px;
  line-height: 1.2;
  outline: none;
  text-align: center;
  transition: 0.5s;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .control_area {
    gap: 0;
  }
  .control_area .con_title {
    width: 10rem;
  }
  .control_area .controls {
    width: calc(100% - 10rem);
    gap: 1.5rem;
  }
  .control_area .controls .control {
    width: auto;
  }
  .control_area .controls .control:hover,
  .control_area .controls .mixitup-control-active {
    background: #242E3E;
    border: #242E3E solid 1px;
    color: #fff;
  }
}

.list-seminar {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 3rem;
}
.list-seminar li {
  width: 100%;
}
.list-seminar li a {
  display: inline-block;
  width: 100%;
  text-decoration: none;
}
.list-seminar .title {
  color: #333;
  line-height: 1.8;
  font-size: 1.6rem;
  padding: 10px 0 0 0;
  font-weight: 500;
}
.list-seminar .category {
  padding: 5px 0 0;
  color: #b00000;
  font-size: 1.4rem;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .list-seminar {
    border-top: #DDD solid 1px;
  }
  .list-seminar li {
    padding: 20px 0;
    border-bottom: #DDD solid 1px;
  }
}
@media only screen and (min-width: 768px) {
  .list-seminar {
    gap: 4rem;
    margin-top: 5rem;
  }
  .list-seminar li {
    width: calc((100% - 8rem) / 3);
  }
  .list-seminar .title {
    font-size: 1.7rem;
  }
}

/*====================================================================================
14. START PAGE seminar detail
====================================================================================*/
.main-area {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.main-area__cont {
  width: 100%;
}
.main-area__side {
  width: 100%;
}
.main-area__side ul + ul {
  margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
  .main-area {
    gap: 3rem;
  }
}
@media only screen and (min-width: 768px) {
  .main-area__cont {
    width: calc(100% - 27rem);
  }
  .main-area__side {
    width: 22rem;
  }
  .main-area__side ul + ul {
    margin-top: 4rem;
  }
}

.archive_list {
  width: 100%;
}
.archive_list li {
  width: 100%;
  border-bottom: 1px solid #E6E6E6;
  text-align: center;
}
.archive_list__ttl {
  padding: 15px;
  font-size: 2.3rem;
}
.archive_list__link {
  display: block;
  padding: 1.5rem 0;
  font-size: 1.5rem;
  color: #333;
  text-decoration: none;
}
.archive_list.ja .archive_list__link {
  text-align: left;
}
@media only screen and (min-width: 768px) {
  .archive_list__ttl {
    padding: 0 0 2rem;
  }
  .archive_list__link {
    padding: 2rem 0;
  }
  .archive_list__link:hover {
    color: var(--red);
  }
}

.detail__head {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}
.detail__tag {
  width: auto;
  min-width: 8rem;
  background: var(--red);
  font-size: 1.1rem;
  text-align: center;
  color: #fff;
  font-weight: bold;
  padding: 0.2rem 1rem;
}
.detail__no {
  font-weight: bold;
  font-size: 1.5rem;
}
.detail__date {
  font-size: 1.5rem;
  color: #666;
}
.detail__cate {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-weight: bold;
  color: #b00000;
}
.detail__cate p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 1.5rem;
}
.detail__title {
  width: 100%;
  font-size: 2rem;
  font-weight: bold;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--red);
  margin-bottom: 2rem;
}
.detail__body-date {
  text-align: right;
}
.detail__body a {
  color: var(--blue);
}
.detail__body .news_img {
  margin: 2rem 0;
  text-align: center;
}
.detail__body ol {
  margin-top: 2rem;
}
.detail__body ol li {
  list-style: decimal;
  margin-left: 2rem;
}
.detail__body ul {
  margin-top: 2rem;
}
.detail__body ul li {
  list-style: inherit;
  margin-left: 2rem;
}
.detail__body h2 {
  margin: 3rem 0 1.5rem 0;
  padding: 1rem 2rem;
  background: #FCEBEB;
  font-size: 2rem;
  border-radius: 3px;
  color: #b00000;
}
.detail__body h3 {
  margin: 2rem 0 1.5rem 0;
  padding: 0 0 1rem;
  color: var(--red);
  font-size: 1.8rem;
}
.detail__body h4 {
  margin: 2rem 0 1.5rem 0;
  padding: 0 0 0 1rem;
  font-size: 1.6rem;
  position: relative;
}
.detail__body img {
  max-width: 100%;
  height: auto;
  display: block;
}
.detail__body img.aligncenter {
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .detail__cate {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .detail__head {
    gap: 2rem 3rem;
  }
  .detail__no {
    font-size: 1.8rem;
  }
  .detail__title {
    font-size: 2.8rem;
    padding-bottom: 2rem;
    border-bottom: 4px solid var(--red);
    margin-bottom: 4rem;
  }
  .detail__body .news_img {
    margin: 4rem 0;
  }
  .detail__body ol, .detail__body ul {
    margin-top: 4rem;
  }
  .detail__body h2 {
    margin: 5rem 0 3rem 0;
    padding: 1.5rem 3rem;
    font-size: 2.4rem;
    border-radius: 6px;
  }
  .detail__body h3 {
    font-size: 2.2rem;
    margin: 3rem 0 2rem 0;
  }
  .detail__body h4 {
    margin: 3rem 0 2rem 0;
    padding: 0 0 0 1.5rem;
    font-size: 2rem;
  }
  .detail__body img {
    max-width: 79rem;
  }
}

/*====================================================================================
15. START PAGE news
====================================================================================*/
.p-news .ttl-page {
  background: url("../products/images/bg-ttlpage.webp") no-repeat center;
}

/*====================================================================================
16. START PAGE content detail
====================================================================================*/
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.search-form {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.search-form label {
  width: calc(100% - 6rem);
}
@media only screen and (min-width: 768px) {
  .search-form {
    margin-bottom: 4rem;
  }
}

input.search-field[type=search] {
  border: 1px solid #ECEFF5;
  padding: 5px 10px;
  font-size: 1.5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #444;
  background: #ECEFF5;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 4rem;
  border-radius: 3px;
}
input.search-submit[type=submit] {
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #444;
  margin: 0 auto;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #FFF;
  font-size: 1.5rem;
  background: #242E3E;
  font-weight: bold;
  padding: 5px 10px;
  text-align: center;
  float: right;
  width: 6rem;
  height: 4rem;
  cursor: pointer;
  border-radius: 3px;
}

.tag_area {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem auto 1rem;
}
.tag_area__title {
  width: 100%;
  display: flex;
  align-items: center;
  font-size: 1.4rem;
}
.tag_area__list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.tag_area__link {
  display: inline-block;
  cursor: pointer;
  padding: 1rem 1.5rem;
  background: #fff;
  border: #ccc solid 1px;
  line-height: 1.2;
  outline: none;
  text-align: center;
  transition: 0.5s;
  cursor: pointer;
  text-decoration: none;
}
@media only screen and (min-width: 768px) {
  .tag_area {
    margin: 4rem auto 2rem;
  }
  .tag_area__title {
    width: auto;
  }
  .tag_area__list {
    flex: 1 1;
    gap: 1.5rem;
  }
  .tag_area__link:hover {
    background: #242E3E;
    border: #242E3E solid 1px;
    color: #fff;
  }
}

.btn-contact {
  margin-top: 2rem;
}
.btn-contact__link {
  background: var(--blue) !important;
  color: #fff !important;
}
.btn-contact__link .icon-mail {
  background: url("../common_img/mail.webp") no-repeat center left;
  background-size: 2.2rem;
  padding-left: 3.5rem;
}
@media only screen and (min-width: 768px) {
  .btn-contact {
    margin-top: 4rem;
  }
  .btn-contact .icon-mail {
    background-size: 3.2rem;
    padding-left: 5rem;
  }
}

.kanren_area {
  border: 1px solid var(--gray);
  padding: 2rem;
  margin: 3rem 0 0 0;
}
.kanren_area__title {
  padding: 0 0 0 1rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.kanren_area__title:before {
  position: absolute;
  display: block;
  content: "";
  width: 5px;
  height: calc(100% - 10px);
  background: #b00000;
  border-radius: 3px;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.kanren_area__list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.kanren_area__list li {
  width: 100%;
}
.kanren_area__link {
  width: 100%;
  display: inline-block;
  text-decoration: none;
  padding: 0.5rem;
  background: #F2F5F7;
}
.kanren_area__link .date {
  color: #b00000;
  padding: 0 0 5px;
  font-size: 1.4rem;
}
.kanren_area__link .title {
  font-weight: 500;
  color: #333;
  font-size: 1.4rem;
}
@media only screen and (min-width: 768px) {
  .kanren_area {
    padding: 4rem;
    margin: 6rem 0 0 0;
  }
  .kanren_area__title {
    font-size: 1.8rem;
    padding: 0 0 0 1.6rem;
    margin-bottom: 2rem;
  }
  .kanren_area__list {
    gap: 2rem;
  }
  .kanren_area__list li {
    width: calc((100% - 6rem) / 4);
  }
  .kanren_area__link {
    padding: 1rem;
  }
}

/*====================================================================================
15. START PAGE laser
====================================================================================*/
.p-laser .ttl-page {
  background: url("../products/images/bg-ttlpage.webp") no-repeat center;
}

.box-product {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.box-product__img {
  width: 100%;
}
.box-product__img img {
  width: 100%;
}
.box-product__txt {
  width: 100%;
}
.box-product__ttl {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 767px) {
  .box-product__img {
    text-align: center;
  }
  .box-product__img img {
    max-width: 25rem;
  }
}
@media only screen and (min-width: 768px) {
  .box-product {
    gap: 5rem;
  }
  .box-product__img {
    width: 20rem;
  }
  .box-product__txt {
    width: calc(100% - 25rem);
  }
  .box-product__ttl {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
}

.catelink {
  margin-top: 2rem;
}
.catelink__ttl {
  font-weight: bold;
  padding: 1rem 2rem;
}
.catelink__link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #000;
  gap: 1rem;
  text-decoration: none;
  padding: 1rem;
}
.catelink__link .img {
  position: relative;
  width: 5rem;
  height: 5rem;
}
.catelink__link .img img {
  position: absolute;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.catelink__link .txt {
  width: calc(100% - 6rem);
  font-size: 1.5rem;
  font-weight: 500;
}
.catelink__list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
@media only screen and (max-width: 767px) {
  .catelink {
    border: 1px solid #000;
  }
  .catelink__ttl {
    position: relative;
    padding-right: 3.5rem;
  }
  .catelink__ttl:after, .catelink__ttl:before {
    position: absolute;
    content: "";
    background: #000;
    width: 1.5rem;
    height: 2px;
    top: 0;
    right: 1rem;
    bottom: 0;
    margin: auto;
  }
  .catelink__ttl:after {
    transform: rotate(90deg);
  }
  .catelink__ttl.opened:after {
    transform: rotate(0deg);
  }
  .catelink__cont {
    display: none;
    padding: 1rem 2rem 2rem;
  }
  .catelink__item {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .catelink__ttl {
    padding: 1rem 0;
  }
  .catelink__list {
    margin-top: 1rem;
  }
  .catelink__item {
    width: 27rem;
  }
  .catelink__link:hover {
    color: #fff;
  }
  .catelink__link:hover .img img {
    opacity: 1;
  }
  .catelink__link:hover .cm-arr {
    background: #fff;
  }
  .catelink__link:hover .cm-arr:before {
    border-color: #fff;
  }
}

/*====================================================================================
16. START PAGE about
====================================================================================*/
.p-about .ttl-page {
  background: url("../about/images/bg-ttlpage.webp") no-repeat center;
}
@media only screen and (min-width: 768px) {
  .p-about .c-box02__img {
    min-height: 50rem;
  }
  .p-about .c-box02__img img {
    min-height: 50rem;
  }
}

.three-col {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.three-col__item {
  width: 100%;
}
.three-col__item img {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .three-col {
    gap: 1.5rem;
    margin-top: 4rem;
  }
  .three-col__item {
    width: calc((100% - 3rem) / 3);
  }
}