@charset "utf-8";
:root {
  --base-color: #000;
  --bg-color: #f0f3f7;
  --main-color: #0f60a9;
  --sub-color: #103051;
  --button-color: #4ea0ea;
  --gradation-color: linear-gradient(45deg, #3d73e4, #6bd6ca);
  --default-font: "Noto Sans JP", sans-serif;
  --eng-font: "Red Hat Display", sans-serif;
  --normal: 400;
  --bold: 800;
  --google-icon: "Material Symbols Outlined";
  --bootstrap: "bootstrap-icons";
}
* {
  box-sizing: border-box;
}
:where(figure) {
  margin-bottom: 0em !important;
}
p,
a {
  font-size: 1em;
}
a:hover {
  text-decoration: none;
}
#main {
  overflow: hidden;
  position: relative;
}
header {
  position: fixed;
  padding: 0 5.5vw;
  width: 100%;
  height: 78px;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  border-bottom: 1px solid #dcddde;
}
header .logo {
  width: 186px;
  height: auto;
}
header #global-nav ul {
  display: flex;
  gap: 72px;
}
header #global-nav ul li {
  font-weight: 500;
}
header #global-nav ul li a {
  letter-spacing: 0;
  transition: all 0.2s ease-in-out;
}
header #global-nav ul li a:hover {
  color: var(--main-color);
}
header #global-nav ul li:last-of-type a {
  color: #fff;
  font-size: 0.9em;
  font-weight: 600;
  background-image: var(--gradation-color);
  background-repeat: no-repeat;
  padding: 10px 25px;
  border-radius: 999px;
}
#billboard {
  padding-top: 78px;
  width: 100%;
}
#billboard .swiper-group01 {
  background-color: var(--bg-color);
}
#billboard .main-swiper01 .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 90px;
  width: 100%;
  height: 78vh;
  padding-top: 70px;
  padding-bottom: 107px;
  position: relative;
}
#billboard .main-swiper01 .swiper-slide img {
  width: 40vw;
  max-width: 800px;
}
#billboard .main-swiper01 .swiper-slide.bg02 img {
  width: 28.5vw;
  max-width: 700px;
}

#billboard .main-swiper01 .swiper-slide.bg01 {
  background-image: url("../../img/index/top_bg01.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}
#billboard .main-swiper01 .swiper-slide.bg02 {
  background-image: url("../../img/index/top_bg02.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
#billboard .main-swiper01 .swiper-slide.bg03 {
  background-image: url("../../img/index/top_bg03.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#billboard .main-swiper01 .text-box {
  color: #555b5c;
}
#billboard .main-swiper01 .top-category-name {
  font-size: clamp(32px, 2.2vw, 50px);
}
#billboard .main-swiper01 .text-box h2 {
  font-size: clamp(54px, 3.8vw, 72px);
  font-weight: var(--normal);
  line-height: 1.25;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
#billboard .main-swiper01 .text-box p {
  font-size: clamp(20px, 1.4vw, 38px);
  margin-bottom: 52px;
}
ul.button-list li a {
  background-color: var(--button-color);
  color: #fff;
  font-weight: 500;
  padding: 16px 90px;
  border-radius: 5px;
  letter-spacing: 0.15em;
  position: relative;
  transition: all 0.2s ease-in-out;
}
ul.button-list li a::after {
  content: "keyboard_arrow_right";
  font-family: var(--google-icon);
  font-size: 1.8em;
  font-weight: 300;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
ul.button-list li a:hover {
  background-color: #fff;
  color: var(--button-color);
}
.thumb-swiper01 {
  width: 60vw;
  height: 80px;
  background-color: #fff;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  transform: translateY(-40px);
}
.thumb-swiper01 .swiper-slide {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  width: calc(60vw / 3);
  padding: 12px 0 12px 0;
  margin-right: 0 !important;
  cursor: pointer;
}
.thumb-swiper01 .swiper-slide img {
  aspect-ratio: 1/1;
  width: 56px;
  height: auto;
  margin-left: 14px;
}
.thumb-swiper01 .swiper-slide p {
  font-weight: 500;
  font-size: 0.9em;
}
.thumb-swiper01 .swiper-slide:not(:last-of-type) {
  border-right: 1px solid #eee;
}
.thumb-swiper01 .swiper-slide img,
.thumb-swiper01 .swiper-slide p {
  filter: opacity(0.5);
}
.thumb-swiper01 .swiper-slide-thumb-active img,
.thumb-swiper01 .swiper-slide-thumb-active p {
  filter: opacity(1) !important;
}
.thumb-swiper01 .swiper-slide-thumb-active {
  position: relative;
}
.thumb-swiper01 .swiper-slide-thumb-active::before {
  content: "";
  width: 100%;
  height: 2px;
  background-image: var(--gradation-color);
  position: absolute;
  left: 0px;
  bottom: 0;
}
.index-container > div > h2 {
  text-align: center;
  font-weight: var(--normal);
  font-size: 2.5em;
  line-height: 1.45;
  padding-bottom: 20px;
  margin-bottom: 65px;
  position: relative;
}
.index-container > div > h2::after {
  content: "";
  width: 60px;
  height: 5px;
  border-radius: 999px;
  background-image: var(--gradation-color);
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
#index-topics {
  padding: 90px 9.8vw 155px;
  background-color: var(--bg-color);
  position: relative;
}
#index-topics a {
  transition: all 0.2s ease-in-out;
}
#index-topics img {
  aspect-ratio: 262/162;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
#index-topics a:hover {
  text-decoration: underline;
}
#index-topics .main-swiper02 {
  overflow: hidden;
}

.main-slick02 {
  position: relative;
  overflow: visible;
}

/* Slick内部 */
.main-slick02 .slick-list {
  overflow: hidden;
}

/* スライド間余白（PC / SP 共通） */
.main-slick02 li {
  padding: 0 12px; /* = spaceBetween:24 */
  box-sizing: border-box;
}
.main-slick02 .slick-dots li button {
  border: none;
  outline: none;
  box-shadow: none;
  background-clip: padding-box;
  cursor: pointer;
}
/* ページネーション位置 */
.main-slick02 .slick-dots {
  position: absolute;
  bottom: -50px;
  z-index: 10;
  left:50%;
  transform: translateX(-50%);
  top: auto;
  display: flex;
  justify-content: center;
}

/* 各ドット（li） */
.main-slick02 .slick-dots li {
  margin-right: 10px;
  padding:0;
}

/* 最後の余白調整（お好み） */
.main-slick02 .slick-dots li:last-child {
  margin-right: 0;
}
/* ボタン＝実体（swiper-pagination-bullet 相当） */
.main-slick02 .slick-dots li button {
  width: 16px;
  height: 16px;
  padding: 0;
  border-radius: 50%;
  background: #fff;
  opacity: 1;
  text-indent: -9999px;
}

/* アクティブ（swiper-pagination-bullet-active 相当） */
.main-slick02 .slick-dots li.slick-active button {
  background: var(--main-color);
}



#index-topics li.swiper-slide .tag {
  background-color: var(--main-color);
  color: #fff;
  font-size: 0.75em;
  line-height: 1.6;
  padding: 2px 12px 2px;
  border-radius: 999px;
  display: inline-block;
  margin: 10px auto;
}
#index-topics li.swiper-slide .text-box p {
  line-height: 1.4;
}

#index-product .product-title-box {
  padding-top: 5vw;
  padding-bottom: 9.5vw;
  height: 28.2vw;
  max-height: 650px;
  background-image: url(../../img/index/02.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 5;
}
#index-product .product-title-box::after {
  content: "";
  background-color: rgba(15, 96, 169, 0.65);
  display: block;
  width: 100%;
  height: 28.2vw;
  max-height: 650px;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
}
#index-product .product-title-box h2,
#index-product .product-title-box ul.button-list,
#index-product .product-title-box .search-box {
  position: relative;
  z-index: 80;
  text-align: center;
}
.product-title-box h2 {
  text-align: center;
  font-weight: var(--normal);
  font-size: 2.5em;
  line-height: 1.45;
  padding-bottom: 20px;
  margin-bottom: 3vw;
  position: relative;
  color: #fff;
}
.product-title-box h2::after {
  content: "";
  width: 60px;
  height: 5px;
  border-radius: 999px;
  background-image: var(--gradation-color);
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.product-title-box ul.button-list li a {
  padding: 16px 58px;
  letter-spacing: 0.06em;
  margin-bottom: 3.2vw;
  display: inline-block;
}
.product-title-box > .search-box {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  width: 80.5vw;
  max-width: 1600px;
  height: 11.3vw;
  max-height: 270px;
  margin: 0 auto;
  padding: 1.35vw 2.5vw 2.2vw;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-title-box .search-box h3 {
  text-align: left;
  font-size: 1.75em;
  font-weight: var(--normal);
  line-height: 1.6;
  margin-bottom: 0.6vw;
}
.search-box form {
  display: flex;
  gap: 10px;
  align-items: center;
}
.search-box input[type="text"] {
  border: 1px solid #dbdbdb;
  border-radius: 4px !important;
  text-align: left !important;
  height: 57px;
  font-size: 1.1em;
  font-weight: 600;
}
.search-box input[type="text"]::placeholder {
  color: #d6d6d6 !important;
}
.search-box input[type="submit"] {
  border-radius: 0;
  height: 57px;
  width: 100px;
  border-radius: 4px !important;
  background-color: var(--main-color);
  color: #fff;
  font-size: 1.1em;
  font-weight: var(--normal);
  position: relative;
  padding-left: 16px;
}
.search-box .submit-button {
  position: relative;
}
.search-box .submit-button::before {
  content: "";
  background-image: url("../../img/common/search_icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 52%;
  left: 21px;
  transform: translateY(-50%);
  aspect-ratio: 1/1;
  width: 16px;
  height: auto;
  z-index: 10;
  pointer-events: none;
}
#index-product > ul {
  display: flex;
  flex-wrap: wrap;
  padding: 8.6vw 9.8vw 6.7vw;
  gap: 72px 2.5vw;
  position: relative;
}
#index-product > ul li {
  width: calc((100% - 7.5vw) / 4);
  z-index: 10;
}
#index-product > ul::before {
  content: "";
  background-image: url("../../img/index/bg01.png");
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 1362/1282;
  width: 64.5vw;
  max-width: 1300px;
  height: auto;
  position: absolute;
  left: -112px;
  top: -455px;
}
#index-product > ul::after {
  content: "";
  background-image: url("../../img/index/bg02.png");
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 1367/1287;
  width: 65vw;
  max-width: 1350px;
  height: auto;
  position: absolute;
  right: -112px;
  bottom: -255px;
}
#index-product .figure-wrapper {
  position: relative;
  z-index: 20;
}
#index-product figure {
  aspect-ratio: 54/41;
  border: 1px solid #dcddde;
  background-color: #fff;
  overflow: hidden;
}
#index-product > ul li h3 {
  font-weight: var(--normal);
  margin-top: 12px;
  letter-spacing: 0.04em;
}
#index-product > ul li a img {
  transition: all 0.3s ease-in-out;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#index-product > ul li a:hover img {
  transform: scale(1.1);
  z-index: 5;
}
#index-product .figure-wrapper::before {
  content: "";
  aspect-ratio: 1/1;
  width: 3.4vw;
  height: 3.4vw;
  display: block;
  background-color: var(--main-color);
  position: absolute;
  bottom: -5%;
  right: -5%;
  z-index: 20;
}
#index-product .figure-wrapper::after {
  content: "\e5c8";
  color: #fff;
  font-size: 1.4vw;
  position: absolute;
  bottom: calc(-5% + 1.7vw); /* beforeの top + 高さの半分 */
  right: calc(-5% + 1.7vw); /* beforeの left + 幅の半分 */
  transform: translate(50%, 50%);
  font-family: var(--google-icon);
  z-index: 20;
}
#index-development {
  padding-top: 8vw;
  padding-bottom: 8vw;
  height: 32vw;
  max-height: 720px;
  background-image: url("../../img/index/03.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
#index-development::after {
  content: "";
  background-image: linear-gradient(90deg, #000000, transparent);
  opacity: 0.65;
  display: block;
  width: 100%;
  height: 32vw;
  max-height: 720px;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
}
.development-title-box {
  width: 34.5vw;
  margin-right: 9.8vw;
  margin-left: 9.8vw;
}
.development-title-box h2,
.development-title-box p,
.development-title-box ul.button-list {
  position: relative;
  z-index: 80;
  text-align: left;
}
.development-title-box h2 {
  font-weight: 500;
  font-size: clamp(2em, 2.8vw, 2.5em);
  line-height: 1.45;
  margin-bottom: 1.2vw;
  position: relative;
  color: #fff;
}
.development-title-box p {
  color: #fff;
  font-weight: 500;
  margin-bottom: 3vw;
  line-height: 1.5;
}
.development-title-box ul.button-list li a {
  padding: 14px 75px;
  letter-spacing: 0.06em;
  margin-bottom: 3.2vw;
  display: inline-block;
}
#index-button {
  padding: 100px 9.8vw 80px;
}
#index-button ul {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  max-width: 1600px;
  margin: 0 auto;
}
#index-button ul li {
  width: calc((100% - 24px) / 2);
  position: relative;
}
#index-button ul li a {
  position: relative;
}
#index-button ul li a::after {
  content: "";
  background-image: url(../../img/common/arrow_right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 10/18;
  width: 7px;
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translateY(-50%);
  transition: all 0.2s ease-in-out;
}
#index-button ul li a:hover::after {
  right: 28px;
  filter: brightness(0) saturate(100%) invert(23%) sepia(97%) saturate(1580%)
    hue-rotate(192deg) brightness(92%) contrast(88%);
}
#index-button ul li a {
  display: flex;
  align-items: center;
  gap: 26px;
  width: 100%;
  height: 84px;
  padding: 14px 22px;
  border: 1px solid #eeeeee;
  border-radius: 5px;
}
#index-button ul li a p {
  line-height: 1.6;
}
#index-button ul li:first-of-type img {
  aspect-ratio: 158/83;
  width: 105px;
  height: auto;
}
#index-button ul li:nth-of-type(2) img {
  aspect-ratio: 1/1;
  width: 50px;
  height: auto;
}
#footer-contact {
  background-color: var(--main-color);
  padding: 40px 9.8vw;
  display: flex;
  align-items: center;
  color: #fff;
}
#footer-contact h2 {
  font-weight: 500;
  font-size: 1.1em;
  padding-right: 72px;
  display: block;
}
#footer-contact .text-box {
  padding-left: 72px;
  position: relative;
}
#footer-contact .text-box::before {
  content: "";
  width: 1px;
  height: 140px;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-10px);
}
#footer-contact .text-box ul {
  display: flex;
  align-items: center;
}
#footer-contact .text-box ul.mail-list {
  gap: 24px;
  margin-bottom: 15px;
}
#footer-contact .text-box ul.mail-list li a {
  background-color: #fff;
  color: var(--main-color);
  font-weight: 500;
  padding: 8px 30px 8px;
  border-radius: 5px;
  letter-spacing: 0.04em;
  display: inline-block;
  transition: all 0.2s ease-out;
}
header #global-nav ul li:last-of-type a {
  transition: all 0.2s ease-out;
}
header #global-nav ul li:last-of-type a:hover {
  box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.2);
  animation: blink-once 0.1s ease-out 1 forwards;
}
@keyframes blink-once {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}
ul.button-list li a {
  transition: all 0.2s ease-out;
}
#footer-contact .text-box ul.mail-list li a:hover {
  box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.2);
  animation: blink-once 0.1s ease-out 1 forwards;
}
#footer-contact .text-box ul.tel-list {
  gap: 38px;
}
#footer-contact .text-box ul.tel-list h3 {
  font-size: clamp(1.6em, 2.2vw, 2em);
  padding-left: 1.2em;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
}
#footer-contact .text-box ul.tel-list h3::before {
  content: "";
  background-image: url(../../img/common/tel_icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 1/1;
  width: 26px;
  height: auto;
  position: absolute;
  left: 0;
  top: 56%;
  transform: translateY(-50%);
}
footer #footer-menu {
  background-color: #fafafb;
  padding: 55px 13.9vw 60px 9.8vw;
  display: flex;
  justify-content: space-between;
  gap: 17vw;
}
footer #footer-menu .footer-address h2 img {
  width: 197px;
  height: auto;
  margin-bottom: 62px;
}
footer #footer-menu .footer-address > p {
  font-size: 0.85em;
  line-height: 1.6;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
footer #footer-menu .footer-menu-wrapper {
  display: flex;
  gap: 11.4vw;
}
footer #footer-menu .footer-menu-wrapper > ul > li {
  font-weight: 500;
  font-size: 0.9em;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
footer #footer-menu .footer-menu-wrapper > ul > li:first-of-type {
  margin-bottom: 28px;
}
footer #footer-menu .footer-menu-wrapper ul.sub-menu {
  font-size: 0.8em;
  font-weight: 300;
  margin-top: 22px;
}
footer #footer-menu .footer-menu-wrapper ul.sub-menu li {
  line-height: 1.4;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
footer #footer-menu a {
  transition: all 0.2s ease-in-out;
}
footer #footer-menu a:hover {
  color: var(--main-color);
}
#footer-copyright {
  background-color: var(--sub-color);
  padding: 20px 5.5vw 25px;
  display: flex;
  justify-content: space-between;
  color: #fff;
}
#footer-copyright ul {
  display: flex;
  align-items: center;
  font-size: 0.8em;
  font-weight: 300;
  letter-spacing: 0.04em;
}
#footer-copyright ul li:not(:last-of-type) {
  padding-right: 20px;
  position: relative;
}
#footer-copyright ul li:not(:last-of-type)::after {
  content: "";
  background-color: #fff;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
}
#footer-copyright ul li:not(:first-of-type) {
  padding-left: 20px;
}
#footer-copyright ul li img {
  width: 25px;
}
#footer-copyright p {
  font-size: 0.8em;
  font-weight: 300;
  letter-spacing: 0.04em;
}
#scrollUp {
  bottom: 0px;
  right: 0;
  width: 64px;
  height: 64px;
  text-indent: -9999px;
  background: var(--sub-color);
  position: fixed;
  z-index: 999;
  display: none;
  /* 初期は非表示 */
  padding: 10px 15px;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  /* 矢印サイズ */
  text-align: center;
  transition: bottom 0.2s ease;
}
#scrollUp:before {
  content: "";
  width: 64px;
  height: 64px;
  background-image: url(../../img/common/top_arrow.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 18px auto;
  position: absolute;
  top: 0;
  left: 0;
}
/*製品ページ*/
.product-category-list-box > ul {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 9.8vw;
  gap: 72px 2.5vw;
  position: relative;
}

.product-category-list-box > ul li {
  width: calc((100% - 7.5vw) / 4);
  z-index: 10;
}

.product-category-list-box .figure-wrapper {
  position: relative;
  z-index: 20;
}

.product-category-list-box figure {
  aspect-ratio: 54/41;
  border: 1px solid #dcddde;
  overflow: hidden;
}

.product-category-list-box > ul li h3 {
  font-weight: var(--normal);
  margin-top: 12px;
  letter-spacing: 0.04em;
}

.product-category-list-box > ul li a img {
  transition: all 0.3s ease-in-out;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-category-list-box > ul li a:hover img {
  transform: scale(1.1);
  z-index: 5;
}

.product-category-list-box .figure-wrapper::before {
  content: "";
  aspect-ratio: 1/1;
  width: 3.4vw;
  height: 3.4vw;
  display: block;
  background-color: var(--main-color);
  position: absolute;
  bottom: -5%;
  right: -5%;
  z-index: 20;
}

.product-category-list-box .figure-wrapper::after {
  content: "\e5c8";
  color: #fff;
  font-size: 1.4vw;
  position: absolute;
  bottom: calc(-5% + 1.7vw);
  /* beforeの top + 高さの半分 */
  right: calc(-5% + 1.7vw);
  /* beforeの left + 幅の半分 */
  transform: translate(50%, 50%);
  font-family: var(--google-icon);
  z-index: 20;
}
/*製品カテゴリーページ*/
ul.crumb {
  padding-top: 97px;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1125px;
  margin: 0 auto 4vw;
}
ul.crumb li {
  line-height: 1.2;
  position: relative;
  font-size: 0.75em;
  color: #555b5c;
  letter-spacing: 0.02em;
}
ul.crumb li:last-of-type a {
  pointer-events: none;
}
ul.crumb li:not(:last-of-type)::after {
  content: "\e5cc";
  font-family: var(--google-icon);
  font-size: 1.2em;
  color: #000;
  position: absolute;
  right: -9px;
  top: 56%;
  transform: translateY(-50%);
}
ul.crumb li:not(:last-of-type) {
  padding-right: 11px;
}
ul.crumb li:not(:first-of-type) {
  padding-left: 11px;
}
span.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  color: #555b5c;
  line-height: 1.2;
  font-size: 1.3em;
  font-variation-settings:
    "FILL" 1,
    "wght" 400,
    "GRAD" 0,
    "opsz" 48;
}
main {
  margin: 0 calc((100% 1130px) / 2);
}
section {
  width: 100%;
  max-width: 1125px;
  margin: 0 auto;
}
#product-category,
#product-detail {
  display: flex;
  justify-content: space-between;
  gap: 95px;
}
#product-category .container {
  width: 68%;
  flex: 1;
}
.container h1 {
  padding: 0.8em 0 1em;
  position: relative;
  font-size: 2.5em;
  font-weight: var(--normal);
  color: var(--main-color);
  letter-spacing: 0.06em;
}
.container h1::before {
  content: "";
  background-color: var(--main-color);
  height: 4px;
  width: 32px;
  position: absolute;
  top: 0;
  left: 0;
}
ul.circle-list li {
  position: relative;
  padding-left: 1.3em;
}
ul.circle-list li a {
  text-decoration: underline;
  color: var(--main-color);
}
ul.circle-list li::before {
  content: "";
  background-color: var(--main-color);
  aspect-ratio: 1/1;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  position: absolute;
  left: 0;
  top: 7px;
}
#product-category > .container > p {
  margin-top: 1em;
}
#product-category > .container > p > a {
  color: var(--main-color);
}
#product-category ul.category-type-list {
  margin: 80px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em 0.5em;
}
#product-category ul.category-type-list li {
  width: calc((100% - 1.8em) / 4);
  font-size: 0.9em;
}
#product-category ul.category-type-list li img {
  border: 1px solid #dcddde;
  aspect-ratio: 3/2;
  object-fit: contain;
  box-sizing: content-box;
}
#product-category ul.category-type-list li p {
  position: relative;
  padding-top: 4px;
  padding-left: 1.4em;
}
#product-category ul.category-type-list li p::before {
  content: "";
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  background-color: var(--main-color);
  aspect-ratio: 4/3;
  width: 14px;
  height: auto;
  position: absolute;
  left: 1px;
  top: 12px;
}
#product-category ul.category-type-list li p::after {
  content: "";
  background-color: var(--main-color);
  height: 0.1em;
  width: 16px;
  position: absolute;
  left: 0;
  top: 24px;
}
#product-category .category-box {
  margin-bottom: 80px;
}
#product-category .category-box h2 {
  color: var(--main-color);
  font-size: 1.1em;
  font-weight: var(--normal);
  padding-bottom: 8px;
  border-bottom: 1px solid #dcddde;
  margin-bottom: 24px;
}
#product-category .category-box > ul > li {
  margin-bottom: 40px;
}
#product-category .category-box > ul > li > a {
  display: flex;
  align-items: flex-start;
  gap: 1.8em;
}
#product-category .category-box ul li figure {
  aspect-ratio: 3/2;
  width: 235px;
  height: auto;
}
#product-category .category-box ul li figure img {
  aspect-ratio: 3/2;
  width: 235px;
  height: auto;
  object-fit: contain;
  box-sizing: content-box;
  border: 1px solid #dcddde;
}
#product-category .category-box ul li h3 {
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 0.5em;
}
#product-category .category-box ul li .text-box ul {
  font-size: 0.9em;
}
#product-category .category-box ul li .text-box ul li {
  margin-bottom: 0.7em;
}
#product-category .category-box ul li .text-box p {
  line-height: 1.6;
}
.product-search-box {
  padding-top: 80px;
  padding-bottom: 80px;
  border-top: 1px solid #dcddde;
  border-bottom: 1px solid #dcddde;
}
.product-search-box > h2 {
  border-bottom: none;
  font-size: 1.8em;
  font-weight: var(--normal);
  margin-bottom: 0.3em;
}
.product-tag-box {
  padding: 20px 0 40px;
}
.product-tag-box ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 5px;
}
.product-tag-box ul li {
  margin-right: 5px;
  background: #f1f1f1;
}
.product-tag-box ul li a {
  display: block;
  width: 100%;
  padding: 2px 5px;
}
.product-tag-box ul li h3 {
  font-weight: normal;
  font-size: 1em;
}
ul.product-button-list {
  margin: 80px auto 150px;
  display: flex;
  gap: 1.5em;
}
ul.product-button-list li {
  width: calc((100% - 1.5em) / 2);
}
ul.product-button-list li a {
  display: block;
  text-align: center;
}
ul.product-button-list li:first-of-type a {
  border: 2px solid var(--button-color);
  padding: 16px 0;
}
ul.product-button-list li:nth-of-type(2) a {
  border: 2px solid var(--main-color);
  background-color: var(--main-color);
  padding: 16px 0;
}
ul.product-button-list li:nth-of-type(2) a:hover {
  background-color: #fff;
  color: var(--main-color);
}
aside {
  width: 100%;
  max-width: 265px;
  margin-bottom: 80px;
}
aside .search-category a {
  display: block;
  padding: 55px 0;
  border-top: 1px solid #dcddde;
  border-bottom: 1px solid #dcddde;
  font-size: 1.25em;
  position: relative;
  transition: all 0.2s ease-in-out;
}
aside ul li a {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid #dcddde;
  position: relative;
  transition: all 0.2s ease-in-out;
  letter-spacing: 0.04em;
}
aside .search-category a::after,
aside ul li a::after {
  content: "\e5cc";
  font-size: 2em;
  font-family: var(--google-icon);
  font-weight: 300;
  color: var(--main-color);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
aside ul li.active a {
  border-bottom: 6px solid var(--main-color);
}
aside .search-category a::after {
  font-size: 1.7em;
}
aside .search-category a:hover,
aside ul li a:hover {
  color: var(--main-color);
}
.product-category-menu {
  background-color: var(--bg-color);
  padding: 85px 14vw 85px 9.7vw;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 11.4vw;
}
.product-category-menu h2 {
  font-weight: var(--normal);
  font-size: 1.25em;
  width: 200px;
}
.product-category-menu ul li:not(:last-of-type) {
  margin-bottom: 40px;
}
.product-category-menu ul li a {
  width: 19vw;
  position: relative;
  display: block;
  transition: all 0.2s ease-in-out;
}
.product-category-menu ul li a:hover {
  color: var(--main-color);
}
.product-category-menu ul li a::after {
  content: "\e5cc";
  font-size: 2em;
  font-family: var(--google-icon);
  font-weight: 300;
  color: var(--main-color);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
/*製品情報　検索ページ*/
#product-search-result .container h1 {
  padding-bottom: 0.5em;
}
#product-search-result .category-box {
  padding-bottom: 80px;
}
#product-search-result .category-box h2 {
  font-weight: var(--normal);
  font-size: 1.9em;
  margin-bottom: 80px;
}
#product-search-result em {
  color: var(--main-color);
}
#product-search-result .search-text {
  margin-right: 15px;
}
#product-search-result .result-text {
  font-size: 0.55em;
  margin-right: 5px;
}
.size55 {
  font-size: 0.55em;
  margin-left: 5px;
}
.page {
  font-size: 0.55em;
}
#product-search-result .category-box ul {
  display: flex;
  flex-wrap: wrap;
  gap: 56px 1.5em;
}
#product-search-result .category-box ul li {
  width: calc((100% - 4.5em) / 4);
}
#product-search-result .category-box ul li figure {
  aspect-ratio: 3/2;
  width: 100%;
  height: auto;
  overflow: hidden;
  border: 1px solid #dcddde;
}
#product-search-result .category-box ul li figure img {
  aspect-ratio: 3/2;
  width: 100%;
  height: auto;
  object-fit: contain;
}
#product-search-result .category-box .text-box {
  margin-top: 1em;
}
#product-search-result .category-box .text-box h3 {
  font-weight: 500;
  font-size: 1.1em;
  margin-bottom: 0.6em;
}
#product-search-result .product-search-box,
#product-search-result ul.product-button-list {
  max-width: 767px;
  width: 100%;
}
#product-search-result ul.product-button-list {
  margin: 80px 0 150px;
}
#product-search-result .product-search-box-container {
  border-top: 1px solid #dcddde;
  border-bottom: 1px solid #dcddde;
}
#product-search-result .product-search-box {
  border-top: none;
  border-bottom: none;
  position: relative;
}

#product-search-result .container h1 + .product-search-box-container {
  border-bottom: 1px solid #dcddde;
  border-top: none !important;
  padding-bottom: 20px;
  margin-bottom: 40px;
}
#product-search-result
  .container
  h1
  + .product-search-box-container
  .product-search-box {
  padding-top: 0 !important;
  padding-bottom: 20px !important;
}
#product-search-result .product-search-box.product-tag-box {
  max-width: 100% !important;
}
/*製品詳細ページ*/
#product-detail .container {
  flex: 1;
}
#product-detail .container h1 {
  padding: 0.8vw 0 0.4vw;
  line-height: 1.4;
}
#product-detail .container h1 + ul.product-feature {
  margin-top: 1.5rem;
}
#product-detail .container h1::before {
  height: 0;
  width: 0;
  background-color: transparent;
}
#product-detail .container .category-name-box {
  display: flex;
  font-size: 0.9em;
  padding-top: 2.2vw;
  position: relative;
}
#product-detail .container .category-name-box::before {
  content: "";
  background-color: var(--main-color);
  height: 4px;
  width: 32px;
  position: absolute;
  top: 0;
  left: 0;
}
#product-detail .container .category-name-box p:first-of-type {
  position: relative;
  padding-right: 12px;
}
#product-detail .container .category-name-box p:nth-of-type(2) {
  padding-left: 12px;
}
#product-detail .container .category-name-box p:first-of-type::after {
  content: "";
  background-color: var(--main-color);
  height: 14px;
  width: 1px;
  background-color: #b0b3b5;
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
}
#product-detail h2.item-number {
  color: var(--main-color);
  font-weight: var(--normal);
  margin-bottom: 2.6vw;
  letter-spacing: 0;
}
#product-detail ul.tag-list {
  display: flex;
  gap: 0.15vw;
  margin-bottom: 40px;
}
#product-detail ul.tag-list li {
  font-size: 0.75em;
  background-color: var(--bg-color);
}
#product-detail ul.tag-list li a {
  display: block;
  padding: 2px 4px;
}
#product-detail ul.product-feature li::before {
  left: 0;
  top: 7px;
}
#product-detail ul.item-gallery-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 44px;
}
#product-detail ul.item-gallery-list + #related-products-box {
  margin-top: 80px;
}
#product-detail ul.item-gallery-list li {
  width: calc((100% - 44px) / 2);
  font-size: 0.8em;
}
#product-detail ul.item-gallery-list figure {
  aspect-ratio: 3/2;
  overflow: hidden;
  border: 1px solid #dcddde;
  margin-top: 40px;
}
#product-detail ul.item-gallery-list figure img {
  aspect-ratio: 3/2;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}
#product-detail ul.item-gallery-list figcaption {
  margin-top: 0.2em;
}
#product-detail ul.in-page-navi {
  background-color: var(--bg-color);
  display: flex;
  gap: 6%;
  justify-content: flex-start;
  padding: 27px 34px 27px 34px;
  width: 100%;
  margin: 80px 0;
}
#product-detail ul.in-page-navi li {
  font-size: 0.9em;
  padding-left: 1.2em;
}
#product-detail ul.in-page-navi li a {
  position: relative;
}
#product-detail ul.in-page-navi li a::before {
  content: "";
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  background-color: var(--main-color);
  aspect-ratio: 3/2;
  width: 9px;
  height: auto;
  position: absolute;
  left: -15px;
  top: 7px;
}
#product-detail ul.in-page-navi li a::after {
  content: "";
  background-color: var(--main-color);
  height: 1px;
  width: 11px;
  position: absolute;
  left: -16px;
  top: 15px;
}
#product-detail
  .container
  > div:not(.category-name-box):not(.product-search-box) {
  position: relative;
  padding: 24px 0 80px;
}
#product-detail .container > div h2 {
  font-weight: var(--normal);
  font-size: 1.75em;
  line-height: 1.2;
  margin-bottom: 40px;
}
#product-detail
  .container
  > div:not(.search-box):not(.category-name-box):not(.product-feature-free):not(
    .product-search-box
  )::before {
  content: "";
  height: 1px;
  width: 100%;
  background-color: #dcddde;
  position: absolute;
  top: 0px;
  left: 0;
}
#product-detail
  .container
  > div:not(.search-box):not(.category-name-box):not(.product-feature-free):not(
    .product-search-box
  )::after {
  content: "";
  height: 1px;
  width: 55px;
  background-color: var(--main-color);
  position: absolute;
  top: 0px;
  left: 0;
}
#product-detail .product-feature-free {
  padding: 10px 0 0 !important;
}
#product-detail .product-feature + .product-tag-box {
  margin-top: 80px;
}
#product-detail .product-feature-free + .product-tag-box {
  margin-top: 80px;
}
#product-detail #composition-box ul.circle-list li::before,
#product-detail #pharmacy-law-box ul.circle-list li::before {
  background-color: var(--bg-color);
  top: 8px;
}
#specification-box > p {
  margin-bottom: 40px;
}
#specification-box .table-wrapper h3 {
  font-weight: 500;
  font-size: 1.25em;
  margin-bottom: 10px;
}
#specification-box .table-wrapper:not(:last-of-type) {
  margin-bottom: 40px;
}
#specification-box .table-wrapper table {
  margin-bottom: 1em;
}
#specification-box .table-wrapper table tr th {
  width: 125px;
  background-color: var(--bg-color);
  font-weight: var(--normal);
  text-align: center;
  padding: 0 0.4em;
}
#specification-box .table-wrapper table tr td {
  padding-left: 1.2vw;
}
#catalog-box ul li {
  padding-left: 12px;
  position: relative;
}
#catalog-box ul li::before {
  content: "";
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background-color: var(--main-color);
  aspect-ratio: 2/3;
  width: 6px;
  height: auto;
  position: absolute;
  left: 0;
  top: 52%;
  transform: translateY(-50%);
}
ul li.pdf-icon a {
  position: relative;
}
ul li.pdf-icon a:hover {
  text-decoration: underline;
}
ul li.pdf-icon a::after {
  content: "";
  background-image: url(../../img/common/pdf_icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 1/1;
  width: 18px;
  height: auto;
  position: absolute;
  right: -24px;
  top: 55%;
  transform: translateY(-50%);
}
#product-movie-box .movie-list {
  display: flex;
  gap: 1.6em;
}
#product-movie-box .movie-list li {
  display: block;
  width: calc((100% - 1.8vw) / 2);
}
#product-movie-box .movie-list li a {
  display: block;
}
#product-movie-box .movie-list li iframe {
  aspect-ratio: 371/208;
}
#product-movie-box .movie-list li a:hover {
  text-decoration: underline;
}
#product-movie-box .movie-list li span.item-name {
  margin-right: 0.4em;
}
#product-movie-box .movie-list li figure {
  position: relative;
}
#product-movie-box .movie-list li figure::before {
  content: "";
  background-image: url(../../img/common/movie_button.png);
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 1/1;
  width: 60px;
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#product-movie-box .movie-list li img {
  aspect-ratio: 371/208;
  max-width: 370px;
  width: 100%;
  height: auto;
}
#product-movie-box .movie-list li p {
  margin-top: 5px;
}
#related-products-box ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 0.5em;
}
#related-products-box ul li {
  width: calc((100% - 1.5em) / 4);
}
#related-products-box ul li figure {
  border: 1px solid #dcddde;
  aspect-ratio: 3/2;
  overflow: hidden;
}
#related-products-box ul li figure img {
  object-fit: cover;
  aspect-ratio: 3/2;
  width: 100%;
  height: auto;
  object-position: center;
}
#related-products-box ul li a {
  color: var(--main-color);
}
#related-products-box ul li a p {
  margin-top: 2px;
  letter-spacing: 0;
}
/*企業情報ページ*/
#about .table-wrapper table {
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 180px;
}
#about .table-wrapper table tr th {
  padding: 32px 0;
  font-weight: var(--normal);
  text-align: center;
  vertical-align: top;
  width: 264px;
  max-width: 264px;
  border-top: 1px solid var(--main-color);
}
#about .table-wrapper table tr:last-of-type th {
  border-bottom: 1px solid var(--main-color);
}
#about .table-wrapper table tr td {
  padding: 32px 0.5vw 32px 90px;
  font-weight: var(--normal);
  border-top: 1px solid #dcddde;
}
#about .table-wrapper table tr:last-of-type td {
  border-bottom: 1px solid #dcddde;
}
#about .table-wrapper table tr td ul {
  display: flex;
  align-items: center;
}
#about .table-wrapper table tr:nth-of-type(3) td ul.license-list {
  margin-top: 35px;
  gap: 5px;
}
#about
  .table-wrapper
  table
  tr:nth-of-type(3)
  td
  ul.license-list
  li:first-of-type
  img {
  aspect-ratio: 300/191;
  width: 136px;
}
#about
  .table-wrapper
  table
  tr:nth-of-type(3)
  td
  ul.license-list
  li:nth-of-type(2)
  img {
  aspect-ratio: 51/63;
  width: 51px;
}
#about .table-wrapper ul.address-list {
  gap: 16px;
}
#about .table-wrapper table a {
  color: var(--main-color);
  text-decoration: underline;
}
/*最新情報*/
#news {
  margin-bottom: 200px;
}
#news .container {
  margin: 0 auto;
}
#news .container .date-wrapper {
  position: relative;
  padding-top: 2em;
  display: flex;
  align-items: center;
  gap: 1.5em;
}
#news .container .date-wrapper::before {
  content: "";
  background-color: var(--main-color);
  height: 4px;
  width: 32px;
  position: absolute;
  top: 0;
  left: 0;
}
#news .container .date-wrapper .date {
  letter-spacing: 0em;
  font-size: 0.9em;
}
#news .container .date-wrapper .cat-tag {
  background-color: var(--main-color);
  padding: 2px 12px;
  border-radius: 999px;
  font-size: 0.8em;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.5;
}
#news .container h1 {
  padding-top: 1.5em;
  color: var(--base-color);
  font-size: 1.75em;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #dcddde;
  padding-bottom: 2.5em;
  margin-bottom: 80px;
}
#news .container h1::before {
  content: "";
  background-color: transparent;
  height: 0;
  width: 0;
}

#news .container .news-contents p {
  margin-bottom: 40px;
}
#news .container .news-contents figure {
  margin: 0 auto 40px !important;
}
#news .container .news-contents figure img {
  margin: 0 auto;
  width: 100%;
}
#news .container .news-contents a {
  color: var(--main-color);
  font-weight: 500;
}
#news .container .news-contents h1,
#news .container .news-contents h2,
#news .container .news-contents h3,
#news .container .news-contents h4 {
  font-weight: 600;
  margin: 2em 0;
}
#news-article .news-contents h5,
#news-article .news-contents h6 {
  font-weight: 600;
  margin: 1em 0;
}
#news .container .news-contents ul,
#news .container .news-contents ol {
  padding-left: 2em;
}
#news .container .news-contents ul li {
  list-style: disc;
}
#news .container .news-contents ol li {
  list-style: decimal;
}
#news .container .news-contents em {
  font-style: italic;
}

#news ul.button-list {
  display: flex;
  justify-content: center;
}
#news ul.button-list li {
  display: inline-block;
}
#news ul.button-list li a {
  display: inline-block;
  background-color: #fff;
  border: 1px solid var(--main-color);
  color: var(--main-color);
  letter-spacing: 0.06em;
  padding: 16px 113px;
}
#news ul.button-list li a::after {
  content: "";
}
#news ul.button-list li a:hover {
  background-color: var(--main-color);
  color: #fff;
}

/*最新情報ブロックエディタ*/
#news .container .news-contents .wp-block-gallery {
  gap: 2em;
}
#news .container .news-contents .wp-block-file__button {
  color: #fff !important;
}
#news .container .news-contents .wp-block-embed__wrapper iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

@media (min-width: 600px) {
  .wp-block-gallery.has-nested-images.columns-default
    figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2),
  .wp-block-gallery.has-nested-images.columns-default
    figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2)
    ~ figure.wp-block-image:not(#individual-image) {
    width: calc((50% - 2em) / 2) !important;
  }
}

/*お問い合わせフォーム*/

#contact .contact-wrapper {
  margin-top: 75px;
  margin-bottom: 195px;
}
#contact .contact-wrapper tr {
  vertical-align: top;
}
#contact .contact-wrapper tr:not(:last-of-type) th,
#contact .contact-wrapper tr:not(:last-of-type) td {
  padding-bottom: 35px;
}
#contact .contact-wrapper tr th {
  font-weight: 500;
  display: flex;
  align-items: center;
  padding-right: 120px;
  width: 100%;
}
#contact .contact-wrapper tr td {
  max-width: 480px;
}
#contact .contact-wrapper tr th .hissu {
  font-size: 0.65em;
  font-weight: var(--normal);
  line-height: 1.8;
  color: #fff !important;
  letter-spacing: 0.04em;
  background-color: var(--button-color);
  display: inline-block;
  margin-left: 12px;
  padding: 0px 8px 0.1em;
}
#contact .contact-wrapper .input-text {
  height: 48px;
}
#contact .contact-wrapper .input-text,
#contact .contact-wrapper textarea {
  border: 1px solid #c7c7c7;
  border-radius: 0;
}
#contact .contact-wrapper .wpcf7-list-item {
  display: block !important;
  margin: 0;
}
#contact .contact-wrapper .details-check {
  font-size: 0.9em;
}
#contact .contact-wrapper input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid #c7c7c7;
  border-radius: 3px;
  background-color: #fff;
  position: relative;
}
#contact .contact-wrapper input[type="checkbox"]:checked {
  border-color: var(--button-color);
  background-color: var(--button-color);
}
#contact .contact-wrapper input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
#contact .contact-wrapper .details-check label {
  display: flex;
  align-items: center;
  gap: 6px;
}
#contact .contact-wrapper .details-check .wpcf7-list-item {
  margin-bottom: 1em;
}
#contact .contact-wrapper .details-check .wpcf7-list-item.last {
  margin-bottom: 0;
}
#contact .contact-wrapper .caution {
  font-size: 0.9em;
  line-height: 1.6;
  margin-bottom: 1em;
}
#contact .contact-wrapper .caution a {
  color: var(--main-color);
  text-decoration: underline;
}
#contact .contact-wrapper .acceptance {
  font-size: 0.9em;
  font-weight: 500;
  margin-bottom: 55px;
}
#contact .contact-wrapper .acceptance label {
  display: flex;
  align-items: center;
  gap: 6px;
}
#contact .contact-wrapper .submit-wrapper {
  text-align: left;
}
#contact .contact-wrapper .input-submit {
  border-radius: 8px;
  height: 82px;
  width: 408px;
  font-weight: 500;
  font-size: 1.25em;
  line-height: 1;
  color: #fff;
  background-color: var(--button-color);
}
#contact .contact-wrapper .input-submit:disabled {
  color: #666;
  background: #ccc;
}
.grecaptcha-badge {
  bottom: 100px !important;
  z-index: 100 !important;
}
.gglcptch_error_text {
  text-align: center;
}
/*お問い合わせ完了ページ*/
#contact-complete {
  margin-bottom: 180px;
}
#contact-complete p {
  margin-bottom: 75px;
}
#contact-complete ul.button-list a {
  display: inline-block;
  background-color: var(--main-color);
  border: 2px solid var(--main-color);
  width: 370px;
  text-align: center;
}
#contact-complete ul.button-list a:hover {
  background-color: #fff;
  color: var(--main-color);
}
/*共同開発*/
#joint-development {
  margin-bottom: 140px;
}
#joint-development h2 {
  font-weight: var(--normal);
  font-size: 1.75em;
  margin-bottom: 0.6em;
}
#joint-development > .container > div:not(.other-achivement) > h2 {
  margin-bottom: 1.5em;
}
#joint-development > .container > div {
  margin-top: 125px;
  padding-top: 40px;
  position: relative;
}
#joint-development > .container > div:not(.other-achivement)::before {
  content: "";
  height: 1px;
  width: 100%;
  background-color: #dcddde;
  position: absolute;
  top: 0px;
  left: 0;
}
#joint-development > .container > div:not(.other-achivement)::after {
  content: "";
  height: 1px;
  width: 55px;
  background-color: var(--main-color);
  position: absolute;
  top: 0px;
  left: 0;
}
#joint-development .feature ul {
  display: flex;
  flex-wrap: wrap;
  gap: 68px 6.5em;
}
#joint-development .feature ul li {
  width: calc((100% - 6.5em) / 2);
  position: relative;
  padding-left: 12px;
}
#joint-development .feature ul li::before {
  content: "";
  aspect-ratio: 1 / 1;
  width: 74px;
  height: 74px;
  display: block;
  background-color: var(--main-color);
  position: absolute;
  top: -12px;
  left: 0px;
  z-index: 20;
}
#joint-development .feature ul li::after {
  content: "";
  font-family: var(--eng-font);
  font-size: 2em;
  font-weight: 700;
  color: #fff;
  position: absolute;
  top: calc(-12px + 37px);
  left: 0;
  z-index: 20;
}
#joint-development .feature ul li:first-of-type::after {
  content: "01";
  transform: translate(50%, -50%);
}
#joint-development .feature ul li:nth-of-type(2)::after {
  content: "02";
  transform: translate(38%, -50%);
}
#joint-development .feature ul li:nth-of-type(3)::after {
  content: "03";
  transform: translate(36%, -50%);
}
#joint-development .feature ul li:nth-of-type(4)::after {
  content: "04";
  transform: translate(34%, -50%);
}
#joint-development .feature ul li p {
  margin-top: 12px;
  line-height: 1.7;
}
#joint-development .feature h2 {
  margin-bottom: 1.6em;
}
#joint-development .process > p {
  margin-bottom: 50px;
}
#joint-development .process ol li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #dcddde;
  border-radius: 2px;
  padding: 35px 36px 35px 72px;
  position: relative;
}
#joint-development .process ol li:not(:last-of-type)::after {
  content: "";
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  background-color: var(--main-color);
  aspect-ratio: 44/19;
  width: 44px;
  height: auto;
  position: absolute;
  bottom: -31px;
  left: 50%;
  transform: translateX(-50%);
}
#joint-development .process ol li:not(:last-of-type) {
  margin-bottom: 42px;
}
#joint-development .process ol li .step-num {
  font-family: var(--eng-font);
  font-weight: 700;
  font-size: 2.5em;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-right: 72px;
  margin-right: 95px;
  position: relative;
}
#joint-development .process ol li .step-num::after {
  content: "";
  background-color: #dcddde;
  height: 170px;
  width: 1px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
#joint-development .process ol li .step {
  font-weight: 600;
  font-size: 0.4em;
  letter-spacing: 0em;
  display: block;
}
#joint-development .process ol li figure img {
  aspect-ratio: 253/167;
  width: 253px;
  height: auto;
  overflow: hidden;
}
#joint-development .process ol li .text-box {
  margin-right: 120px;
}
#joint-development .process ol li .text-box h3 {
  color: var(--main-color);
  font-weight: var(--normal);
  font-size: 1.5em;
  margin-bottom: 0.3em;
}
#joint-development .achivement > p {
  margin-bottom: 0.8em;
}
#joint-development ul.achivement-example {
  display: flex;
  margin-top: 50px;
}
#joint-development ul.achivement-example li {
  width: 50%;
  height: auto;
}
#joint-development ul.achivement-example li.text-box {
  background-color: var(--main-color);
  color: #fff;
  position: relative;
}
#joint-development ul.achivement-example li.text-box .text-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 470px;
}
#joint-development ul.achivement-example li.text-box .text-wrapper p {
  line-height: 1.5;
}
#joint-development ul.achivement-example li.text-box .tag {
  background-color: #fff;
  color: var(--main-color);
  font-size: 0.75em;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: inline-block;
  padding: 2px 12px;
  margin-bottom: 0.4em;
  border-radius: 999px;
}
#joint-development ul.achivement-example li.text-box h3 {
  font-size: 2em;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 1.25em;
}
#joint-development ul.achivement-example li.image-box img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
#joint-development .achivement > h3 {
  font-size: 1.25em;
  font-weight: 500;
  position: relative;
  padding-left: 20px;
  margin-top: 42px;
  margin-bottom: 0.5em;
}
#joint-development .achivement > h3::before {
  content: "";
  width: 4px;
  height: 20px;
  background-color: var(--main-color);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-40%);
}
#joint-development .achivement ul.circle-list li::before {
  background-color: var(--bg-color);
  top: 8px;
}
#joint-development .achivement > figure {
  background-color: var(--bg-color);
  aspect-ratio: 1129/483;
  width: 100%;
  height: auto;
  margin-top: 40px;
}
#joint-development .other-achivement {
  margin-top: 65px !important;
}
#joint-development .other-achivement > h2 {
  margin-bottom: 1em;
}
.main-slick03 li {
  padding: 0 12px; /* 24px */
}
#joint-development .main-slick03{
  overflow: hidden;
  padding-bottom: 75px;
}
#joint-development .swiper-arrow-container {
  position: relative;
}
#joint-development .main-slick03 figure img {
  aspect-ratio: 264/175;
  width: 100%;
  height: auto;
  border: 1px solid #dcddde;
}

#joint-development .main-slick03 li h3 {
  font-size: 1.1em;
  font-weight: var(--normal);
  color: var(--main-color);
  line-height: 1.5;
  margin-top: 4px;
}
#joint-development .main-slick03 li .tag {
  color: var(--main-color);
  font-size: 0.75em;
  font-weight: 600;
  background-color: var(--bg-color);
  letter-spacing: 0;
  border-radius: 999px;
  display: inline-block;
  padding: 2px 12px;
  margin: 10px 0;
}
#joint-development .main-slick03 li p {
  font-size: 0.9em;
  line-height: 1.6;
}
#joint-development .slick-dots li button {
  border: 1px solid #dcddde;
  margin-right: 1em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  padding: 0;
  background: transparent;
  text-indent: -9999px;
}
#joint-development .slick-dots {
  display: flex;
  justify-content: center;
  margin-top: 1em;
}
#joint-development .slick-dots li.slick-active button {
  transform: scale(1.5);
  border: 1px solid var(--main-color);
  background-color: var(--main-color);
}
#joint-development .slick-dots li{
  padding:0;
}

/* 最後の余白調整（任意） */
#joint-development .slick-dots li:last-child button {
  margin-right: 0;
}

/* --- ナビゲーション（前後矢印） --- */
#joint-development .slick-prev,
#joint-development .slick-next {
  top: 22%;
  position: absolute;
  aspect-ratio: 1 / 1;
  width: 50px;
  height: auto;
  background-color: var(--main-color);
  color: #fff;
  z-index: 10;
  border: none;
  cursor: pointer;
}

/* 左右位置 */
#joint-development .slick-prev {
  left: -74px;
}

#joint-development .slick-next {
  right: -74px;
}
.slick-prev::after {
  content: "\e5cb";
  font-family: var(--google-icon);
  color: #fff;
  font-size: 1.5em;
  font-weight: 800;
  position: absolute;
  left:50%;
  transform: translateX(-50%);
  top:5px;
}

.slick-next::after {
  content: "\e5cc";
  font-family: var(--google-icon);
  color: #fff;
  font-size: 1.5em;
  font-weight: 800;
  position: absolute;
  left:50%;
  transform: translateX(-50%);
   top:5px;
}

.slick-prev::before,
.slick-next::before {
  content: none;
}
/* Slickのデフォルト矢印を上書き */
#joint-development .slick-prev:before,
#joint-development .slick-next:before {
  font-size: 0.8em;
  font-weight: 800;
  color: #fff;
}
/* pagenavi style */
.wp-pagenavi {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9em;
}
.wp-pagenavi span {
  line-height: 1;
  margin: 2px 12px !important;
  padding: 2px 2px !important;
  border: none !important;
  border-radius: 0px;
  color: var(--main-color);
}
.wp-pagenavi span.current {
  font-size: 1.2em;
  background-color: transparent;
  border-bottom: 2px solid var(--main-color) !important;
}
.wp-pagenavi a {
  line-height: 1;
  font-size: 1.2em;
  font-weight: 500;
  color: var(--main-color);
  padding: 2px 2px !important;
  margin: 2px 12px !important;
  border: none !important;
  border-radius: 2px;
}
.wp-pagenavi .pages {
  display: none;
}
.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
  color: transparent;
  position: relative;
}
.wp-pagenavi .nextpostslink::after {
  content: "\e5cc";
  font-size: 1.4em;
  font-family: var(--google-icon);
  font-weight: 300;
  color: var(--main-color);
  position: absolute;
  right: 0;
  top: 55%;
  transform: translateY(-50%);
}
.wp-pagenavi .previouspostslink::after {
  content: "\e5cb";
  font-size: 1.4em;
  font-family: var(--google-icon);
  font-weight: 300;
  color: var(--main-color);
  position: absolute;
  left: 0;
  top: 55%;
  transform: translateY(-50%);
}
/*404ページ*/
#notfound-page {
  margin-bottom: 180px;
}
#notfound-page p {
  margin-bottom: 75px;
}
#notfound-page ul.button-list a {
  display: inline-block;
  background-color: var(--main-color);
  border: 2px solid var(--main-color);
  width: 370px;
  text-align: center;
}
#notfound-page ul.button-list a:hover {
  background-color: #fff;
  color: var(--main-color);
}
/*プライバシーポリシー*/
#privacy-policy {
  margin-bottom: 150px;
}
#privacy-policy .container > p {
  margin-bottom: 20px;
}
#privacy-policy .container ol.decimal-list li {
  margin-bottom: 0.5em;
}
#privacy-policy .container ol.decimal-list li a {
  color: var(--main-color);
}
#privacy-policy .container ol.decimal-list li a:hover {
  text-decoration: underline;
}
/*製品情報ページ*/
.archive-products .figure-wrapper::before {
  background-color: transparent;
}
.archive-products .figure-wrapper::after {
  content: "";
}

/*製品情報許可　モーダル*/
.modal {
  display: none;
  /* 初期非表示 */
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* show() 時に flex にする */
.modal.show {
  display: flex;
}

.modal-content {
  background: #fff;
  padding: 50px;
  border-radius: 8px;
  max-width: 680px;
  width: 90%;
  text-align: center;
}

.modal-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
  /* ボタン間のスペース */
}

.btn {
  width: 140px;
  padding: 10px 25px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  background-color: #f0f3f7;
  color: var(--base-color);
  transition: all 0.2s ease;
}

.btn-ok:hover {
  filter: brightness(0.95);
}

.btn-ng:hover {
  filter: brightness(0.95);
}

#products-modal .modal-content p.modal-text {
  font-weight: bold;
  padding: 10px 0;
  font-size: 1.1em;
}
