:root {
  /* Colors: */
  --color-text: #333333;
  --color-main: #0067ae;
  --color-sub: #685044;
  --color-bggreen: #f3f7ec;
  --color-bgglay: #f1f1f1;
  --color-footer: #f4f6f8;
  /* Font/text values */
  --font-zenkaku: "Zen Kaku Gothic New", sans-serif;
  --font-mont: "Montserrat", sans-serif;
}

body {
  font-family: var(--font-zenkaku);
  color: var(--color-text);
  line-height: 1.6;
}

.container {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (min-width: 1025px) {
  .container {
    width: 100%;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1080px) {
  .container {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media screen and (min-width: 768px) and (max-width:1024px) {
  .container {
    padding: 0 15px;
    width: 100%;
  }
}
@media screen and (min-width: 577px) and (max-width:767px) {
  .container {
    padding: 0 15px;
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .container {
    padding: 0 15px;
    width: 100%;
  }
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

a {
  color: var(--color-text);
  transition: all 0.3s ease;
}
a:hover {
  color: var(--color-sub);
}

input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  background: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-radius: 5px;
  overflow: hidden;
}
input[type=checkbox]:checked {
  border: none;
  background-image: url("data:image/svg+xml;utf8,<svg version='1.1' xmlns='http://www.w3.org/2000/svg' width='16' height='16'><rect fill='%231dad12' width='16' height='16'/><path fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M12.6,5.17l-5.66,5.66L3.4,7.29'/></svg>");
  background-repeat: no-repeat;
  background-size: cover;
}

.mt24 {
  margin-top: 24px;
}

.mt17 {
  margin-top: 17px;
}

.mt27 {
  margin-top: 27px;
}

.mb100 {
  margin-bottom: 100px !important;
}

.mb40 {
  margin-bottom: 40px;
}

.mb60 {
  margin-bottom: 60px;
}

.button {
  display: flex;
  position: relative;
  font-size: 13px;
  font-weight: bold;
  align-items: center;
}
.button::before {
  content: url("../images/top/btn-arrow.svg");
  width: 51px;
  height: 51px;
  border-radius: 100vh;
  background: var(--color-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 11px;
  border: 1px solid var(--color-green);
  transition: all 0.3s ease;
}
.button.back::before {
  content: url("../images/common/btn-arrow-prev.svg");
}

.btn-round {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100vh;
  width: 100%;
  max-width: 320px;
  height: 56px;
  font-size: 18px;
  position: relative;
  font-weight: 500;
  background: var(--color-main);
  border: 1px solid var(--color-main);
  color: #fff;
  position: relative;
  margin: auto;
}
.btn-round::after {
  content: "";
  display: block;
  width: 7px;
  height: 14px;
  position: absolute;
  right: 16px;
  background: url("../images/top/arrow_s-on.png") no-repeat center/cover;
}
.btn-round:hover {
  background: #fff;
  color: var(--color-main);
}
.btn-round:hover::after {
  background: url("../images/top/arrow_s.png") no-repeat center/cover;
}
.btn-round.btn-white {
  background: #fff;
  color: var(--color-main);
}
.btn-round.btn-white::after {
  background: url("../images/top/arrow_s.png") no-repeat center/cover;
}
.btn-round.btn-white:hover {
  background: var(--color-main);
  color: #fff;
}
.btn-round.btn-white:hover::after {
  background: url("../images/top/arrow_s-on.png") no-repeat center/cover;
}

.breadcrumb {
  background: var(--color-bgglay);
  padding: 10px 0;
}
@media screen and (min-width: 577px) and (max-width:767px) {
  .breadcrumb {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .breadcrumb {
    display: none;
  }
}
.breadcrumb ul {
  display: flex;
  max-width: 1280px;
  padding-right: 16px;
  padding-left: 16px;
  margin: auto;
}
.breadcrumb ul li {
  font-size: 13px;
  color: #333;
  display: flex;
  align-items: center;
}
.breadcrumb ul li a {
  font-size: 14px;
  color: #333;
}
.breadcrumb ul li:not(:last-child)::after {
  content: url(../images/page/bc-arrow.svg);
  margin: 0 8px;
}

@media screen and (min-width: 1025px) {
  .pcdn {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width:1024px) {
  .pcdn {
    display: block;
  }
}
@media screen and (min-width: 577px) and (max-width:767px) {
  .pcdn {
    display: block;
  }
}
@media screen and (max-width: 576px) {
  .pcdn {
    display: block;
  }
}

@media screen and (min-width: 1025px) {
  .spdn {
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width:1024px) {
  .spdn {
    display: none;
  }
}
@media screen and (min-width: 577px) and (max-width:767px) {
  .spdn {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .spdn {
    display: none;
  }
}

.ta-c {
  text-align: center;
}

.ta-r {
  text-align: right;
}

.ta-l {
  text-align: left;
}

.font-red {
  color: #de0000;
}

.font-blue {
  color: var(--color-blue);
}

.d-flex {
  display: flex;
}

.underline {
  text-decoration: underline;
}

.more-button {
  display: flex;
  position: relative;
  font-size: 13px;
  font-weight: bold;
  align-items: center;
}
.more-button::before {
  content: url("../images/top/btn-arrow.svg");
  width: 51px;
  height: 51px;
  border-radius: 100vh;
  background: var(--color-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 11px;
  border: 1px solid var(--color-green);
  transition: all 0.3s ease;
}
.more-button:hover {
  color: var(--color-green);
}
.more-button:hover::before {
  content: url("../images/top/btn-arrow-gr.svg");
  background: #fff;
}

.table-wrap {
  overflow: scroll;
}

table {
  width: 100%;
}
table.table01 {
  table-layout: fixed;
  border-collapse: collapse;
}
table.table01 thead th {
  background: var(--color-blue);
  color: #fff;
  text-align: center;
  vertical-align: middle;
  border: 3px solid #fff;
  padding: 15px 0;
}
table.table01 tbody tr:nth-child(odd) th,
table.table01 tbody tr:nth-child(odd) td {
  background: #f7f7f7;
  text-align: center;
  vertical-align: middle;
  border: 3px solid #fff;
  padding: 15px 0;
}
table.table01 tbody tr:nth-child(even) th,
table.table01 tbody tr:nth-child(even) td {
  background: #edf6fc;
  text-align: center;
  vertical-align: middle;
  border: 3px solid #fff;
  padding: 15px 0;
}

.rightfix {
  width: 70px;
  position: fixed;
  right: 0;
  top: 186px;
  z-index: 10;
  transition: all 0.3s ease;
}
.rightfix a {
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-main);
  color: #fff;
  font-size: 14px;
  text-align: center;
  flex-direction: column;
  gap: 6px;
  border-radius: 8px 0px 0px 8px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  display: none;
}
.overlay.active {
  display: block;
}

.scroll-prevent {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
}

a {
  transition: all 0.3s ease;
}
a img {
  opacity: 1;
  transition: all 0.3s ease;
}
a:hover img {
  opacity: 0.8;
}

.pagenation {
  padding: 48px 0 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.pagenation a,
.pagenation span {
  background: #fff;
  border: 1px solid var(--color-main);
  color: var(--color-main);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100vh;
  font-family: var(--font-mont);
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.pagenation a svg,
.pagenation span svg {
  fill: var(--color-main);
}
.pagenation a.current, .pagenation a:hover,
.pagenation span.current,
.pagenation span:hover {
  background: var(--color-main);
  color: #fff;
}
.pagenation a.current svg, .pagenation a:hover svg,
.pagenation span.current svg,
.pagenation span:hover svg {
  fill: #fff;
}
.pagenation a.current svg path, .pagenation a:hover svg path,
.pagenation span.current svg path,
.pagenation span:hover svg path {
  fill: #fff;
}
.pagenation .prev svg {
  position: relative;
  right: 1px;
}
.pagenation .next {
  position: relative;
}
.pagenation .next::before {
  content: url("../images/page/arrow_next.svg");
  width: 7px;
  height: 14px;
  font-size: 0px;
  position: relative;
  top: 2px;
  left: 2px;
}
.pagenation .next:hover::before {
  content: url("../images/page/arrow_next-on.svg");
}
.pagenation .prev {
  position: relative;
}
.pagenation .prev::before {
  content: url("../images/page/arrow_prev.svg");
  width: 7px;
  height: 14px;
  font-size: 0px;
  position: relative;
  top: 2px;
  right: 2px;
}
.pagenation .prev:hover::before {
  content: url("../images/page/arrow_prev-on.svg");
}

#item-lists {
  display: flex;
  gap: 60px;
}
@media screen and (min-width: 768px) and (max-width:1024px) {
  #item-lists {
    flex-direction: column;
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (min-width: 577px) and (max-width:767px) {
  #item-lists {
    flex-direction: column;
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 576px) {
  #item-lists {
    flex-direction: column;
    padding-right: 20px;
    padding-left: 20px;
  }
}
#item-lists .item-lists-sidebar {
  padding-top: 25px;
  text-align: left;
}
#item-lists .item-lists-sidebar h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

.item-lists-inner {
  max-width: 800px;
  text-align: left;
  padding-top: 25px;
}
.item-lists-inner .item-list-wrap {
  display: flex;
  flex-direction: column;
  gap: 50px 20px;
}
.item-lists-inner .item-list-wrap li {
  width: 100%;
  display: flex;
  background: #f7f7f7;
  padding: 30px;
  flex-wrap: wrap;
  gap: 40px;
}
@media screen and (min-width: 768px) and (max-width:1024px) {
  .item-lists-inner .item-list-wrap li {
    flex-direction: column;
  }
}
@media screen and (min-width: 577px) and (max-width:767px) {
  .item-lists-inner .item-list-wrap li {
    flex-direction: column;
  }
}
@media screen and (max-width: 576px) {
  .item-lists-inner .item-list-wrap li {
    flex-direction: column;
  }
}
.item-lists-inner .item-list-wrap li::after {
  display: none;
}
.item-lists-inner .item-list-wrap li .img {
  width: 150px;
}
@media screen and (min-width: 768px) and (max-width:1024px) {
  .item-lists-inner .item-list-wrap li .img {
    width: 100%;
  }
}
@media screen and (min-width: 577px) and (max-width:767px) {
  .item-lists-inner .item-list-wrap li .img {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .item-lists-inner .item-list-wrap li .img {
    width: 100%;
  }
}
.item-lists-inner .item-list-wrap li .img img {
  width: 100%;
}
.item-lists-inner .item-list-wrap li .title {
  flex: 1;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 25px;
}
.item-lists-inner .item-list-wrap li .title h2 {
  text-align: left;
}
.item-lists-inner .item-list-wrap li .text dl {
  display: flex;
  font-size: 14px;
  margin-bottom: 10px;
}
.item-lists-inner .item-list-wrap li .text dl dt {
  width: 52px;
}
.item-lists-inner .item-list-wrap li .text dl dt::after {
  content: ":";
  margin: 0 8px;
}
.item-lists-inner .item-list-wrap li .text dl dd {
  width: calc(100% - 52px);
}
.item-lists-inner .item-list-wrap li .text p {
  font-size: 14px;
}
.item-lists-inner .item-list-wrap li .text p a {
  text-decoration: underline;
  color: var(--color-main);
}
.item-lists-inner .item-list-wrap li .text p a:hover {
  text-decoration: none;
}
.item-lists-inner .item-list-wrap li .text .tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
}
.item-lists-inner .item-list-wrap li .text .tags img {
  display: inline-block;
  margin-right: 13px;
}
.item-lists-inner .item-list-wrap li .text .tags a {
  background-color: #fff;
  border: 1px solid var(--color-main);
  border-radius: 100vh;
  color: var(--color-main);
  padding: 6px 9px;
  font-size: 12px;
  line-height: 1;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 0;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 0;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: url("../images/page/arrow_next.svg");
  background: #fff;
  border-radius: 100vh;
  box-shadow: 0px 0px 10px rgba(51, 51, 51, 0.1);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0px;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: url("../images/page/arrow_prev.svg");
  background: #fff;
  border-radius: 100vh;
  box-shadow: 0px 0px 10px rgba(51, 51, 51, 0.1);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0px;
}

#item-detail {
  text-align: left;
  padding: 26px 0 66px;
}
#item-detail .item-detail-primary {
  display: flex;
  gap: 48px;
  margin-bottom: 100px;
}
@media screen and (min-width: 768px) and (max-width:1024px) {
  #item-detail .item-detail-primary {
    margin-bottom: 40px;
    gap: 20px;
  }
}
@media screen and (min-width: 577px) and (max-width:767px) {
  #item-detail .item-detail-primary {
    flex-direction: column-reverse;
    margin-bottom: 40px;
    gap: 20px;
  }
}
@media screen and (max-width: 576px) {
  #item-detail .item-detail-primary {
    flex-direction: column-reverse;
    margin-bottom: 40px;
    gap: 20px;
  }
}
#item-detail .item-detail-primary .pic {
  width: 100%;
  max-width: 460px;
}
@media screen and (min-width: 577px) and (max-width:767px) {
  #item-detail .item-detail-primary .pic {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 576px) {
  #item-detail .item-detail-primary .pic {
    width: 100%;
    max-width: 100%;
  }
}
#item-detail .item-detail-primary .text {
  flex: 1;
}
#item-detail .item-detail-primary .text .title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 21px;
}
#item-detail .item-detail-primary .text .tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  padding: 25px 0;
}
#item-detail .item-detail-primary .text .tags img {
  display: inline-block;
  margin-right: 13px;
}
#item-detail .item-detail-primary .text .tags a {
  background-color: #fff;
  border: 1px solid var(--color-main);
  border-radius: 100vh;
  color: var(--color-main);
  padding: 6px 9px;
  font-size: 12px;
  line-height: 1;
}
#item-detail .item-detail-primary .mySwiper {
  padding: 10px 15px;
}
#item-detail .item-detail-primary .mySwiper2 .swiper-slide img {
  width: 100%;
}
#item-detail .item-detail-primary .swiper-slide-thumb-active {
  border: 2px solid var(--color-main);
}
#item-detail table.tokusei {
  margin-bottom: 25px;
}
#item-detail table.tokusei thead th {
  background: var(--color-main);
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}
#item-detail table.tokusei tbody td {
  background: var(--color-bgglay);
  text-align: center;
  padding: 10px;
}
#item-detail table.tokusei tbody td ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
#item-detail table.tokusei tbody td ul li {
  position: relative;
  padding-left: 16px;
}
#item-detail table.tokusei tbody td ul li::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #ec724d;
  border-radius: 100vh;
}
@media screen and (min-width: 768px) and (max-width:1024px) {
  #item-detail .desc {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 577px) and (max-width:767px) {
  #item-detail .desc {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 576px) {
  #item-detail .desc {
    margin-bottom: 40px;
  }
}
#item-detail .item-detail-secondary {
  display: flex;
  gap: 48px;
  margin-bottom: 48px;
}
@media screen and (min-width: 577px) and (max-width:767px) {
  #item-detail .item-detail-secondary {
    flex-direction: column;
  }
}
@media screen and (max-width: 576px) {
  #item-detail .item-detail-secondary {
    flex-direction: column;
  }
}
#item-detail .item-detail-secondary--box {
  flex: 1;
}
#item-detail .item-detail-secondary--box h2 {
  text-align: center;
  background: var(--color-main);
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  padding: 10px;
  margin-bottom: 20px;
}
#item-detail .item-detail-secondary--box table tr th,
#item-detail .item-detail-secondary--box table tr td {
  padding: 10px 23px;
  border: 2px solid #fff;
  text-align: left;
}
#item-detail .item-detail-secondary--box table tr th {
  font-weight: 500;
}
#item-detail .item-detail-secondary--box table tr:nth-child(odd) th,
#item-detail .item-detail-secondary--box table tr:nth-child(odd) td {
  background: #f7f7f7;
}
#item-detail .item-detail-secondary--box table tr:nth-child(even) th,
#item-detail .item-detail-secondary--box table tr:nth-child(even) td {
  background: var(--color-bgglay);
}
#item-detail .item-detail-secondary--box:nth-child(1) table th {
  width: 128px;
}
#item-detail .item-detail-secondary--box:nth-child(2) table {
  table-layout: fixed;
}
#item-detail .item-detail-secondary--box:nth-child(2) table thead th {
  background: var(--color-sub);
  color: #fff;
  font-weight: bold;
  text-align: center;
}
#item-detail .item-detail-secondary--box .note {
  text-align: right;
  font-size: 12px;
}
#item-detail .pdf-link p {
  text-align: center;
  margin-bottom: 16px;
  font-weight: 500;
}
#item-detail .pdf-link .btn-round.pdf {
  max-width: 600px;
  background: linear-gradient(to bottom, #fff, #f1f1f1);
  border: 1px solid #cccccc;
  color: var(--color-text);
  font-weight: 500;
}
@media screen and (min-width: 577px) and (max-width:767px) {
  #item-detail .pdf-link .btn-round.pdf {
    padding: 0 30px;
    font-size: 12px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 576px) {
  #item-detail .pdf-link .btn-round.pdf {
    padding: 0 30px;
    font-size: 12px;
    line-height: 1.4;
  }
}
#item-detail .pdf-link .btn-round.pdf img {
  margin-right: 12px;
  width: 18px;
}
#item-detail .pdf-link .btn-round.pdf::after {
  background: url("../images/page/arrow_next.svg") no-repeat center/cover;
}
#item-detail .pdf-link .btn-round.pdf:hover {
  background: linear-gradient(to bottom, #fff, #fafafa);
}

#search-area {
  padding: 48px 0;
  background: var(--color-bgglay);
}
#search-area .search-area-wrap {
  max-width: 870px;
  margin: auto;
}
#search-area .search-area-wrap .search-items {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 30px;
}
#search-area .search-area-wrap .search-items .search-item {
  width: 100%;
  display: flex;
}
#search-area .search-area-wrap .search-items .search-item:nth-child(2) {
  align-items: flex-start;
}
#search-area .search-area-wrap .search-items .search-item h3 {
  width: 200px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
#search-area .search-area-wrap .search-items .search-item .search-item-inner {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#search-area .search-area-wrap .search-items .search-item .search-item-inner label {
  width: calc((100% - 40px) / 5);
  font-size: 14px;
  height: 32px;
  display: flex;
  align-items: center;
}
#search-area .search-area-wrap .search-items .search-item .searchbar {
  background: #fff;
  display: flex;
  flex: 1;
  border-radius: 100vh;
  width: 100%;
  height: 50px;
  box-shadow: 0px 3px 6px rgba(51, 51, 51, 0.3);
}
#search-area .search-area-wrap .search-items .search-item .searchbar input[type=text] {
  background: transparent;
  border: 0;
  flex: 1;
}
#search-area .search-area-wrap .search-items .search-item .searchbar button {
  background: transparent;
  border: 0;
  margin-right: 20px;
  width: 50px;
}

.top-products-item .inner {
  max-width: 800px;
  margin: 0 auto 60px;
  background: #f3f7ec;
  padding: 40px;
}
.top-products-item h2 {
  font-size: 30px;
  line-height: 1.25;
  color: #0067ae;
  font-weight: 600;
  margin-bottom: 40px;
}
.top-products-item .products-item-wrap {
  display: flex;
  gap: 60px;
}
.top-products-item .products-item-wrap .text {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.top-products-item .products-item-wrap .text p {
  font-weight: 16px;
  line-height: 2;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
}
.top-products-item .products-item-wrap .text a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100vh;
  width: 100%;
  max-width: 320px;
  height: 56px;
  font-size: 18px;
  font-weight: 500;
  border: 1px solid var(--color-main);
  position: relative;
  margin-top: auto;
  margin-right: auto;
  margin-left: auto;
  background: var(--color-main);
  color: #fff;
}
.top-products-item .products-item-wrap .text a::after {
  content: "";
  display: block;
  width: 7px;
  height: 14px;
  position: absolute;
  right: 16px;
  background: url(../images/top/arrow_s-on.png) no-repeat center/cover;
}
.top-products-item .products-item-wrap .text a:hover {
  background: #fff;
  color: var(--color-main);
}
.top-products-item .products-item-wrap .img {
  width: 100%;
}
.top-products-item .products-item-wrap .img img {
  max-width: 100%;
  width: auto;
}
.top-products-item .products-item-wrap .swiper-slide {
  width: 100% !important;
}
.top-products-item .products-item-wrap .swiper-pagination-bullet-active {
  background-color: #0067ae;
}/*# sourceMappingURL=products.css.map */