@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  padding-top: 0;
  background-color: #fef5db;
}
body.no-scroll {
  overflow: hidden;
}

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

td,
th {
  color: #000;
}

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

.u-dsp-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-dsp-sp {
    display: block;
  }
}

/* ------------------------------------
  # ヘッダー
------------------------------------ */
.p-board-header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
}

.p-board-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 22px 9.7% 21.64px 50.99px;
}
@media screen and (max-width: 767px) {
  .p-board-header__inner {
    padding: 10px 8px 10px 18px;
  }
}

@media screen and (max-width: 767px) {
  .p-board-header__inner:has(.p-board-header__nav.is-active) {
    background-color: #fff;
    transition: background-color 0.3s ease;
  }
}
.p-board-header__logo img {
  width: 73px;
  height: 45px;
}

@media screen and (max-width: 767px) {
  .p-board-header__nav {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    width: 100%;
    height: calc(100% - 65px);
    background-color: #fff;
    flex-direction: column;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    overflow-y: auto;
    z-index: 999;
  }
  .p-board-header__nav.is-active {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }
}

.p-board-header__nav-list {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .p-board-header__nav-list {
    flex-direction: column;
    align-items: center;
  }
}

.p-board-header__nav-link {
  color: #444;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
}

.p-board-header__nav-button {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .p-board-header__nav-button {
    display: block;
  }
  .p-board-header__nav-button span {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px;
    background-color: #333;
    transition: 0.3s;
  }
  .p-board-header__nav-button.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .p-board-header__nav-button.is-active span:nth-child(2) {
    opacity: 0;
  }
  .p-board-header__nav-button.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* ------------------------------------
  # MV
------------------------------------ */
.p-board__headingLv1 img {
  width: 100%;
}

/* ------------------------------------
  # content
------------------------------------ */
.p-board__content {
  max-width: 1000px;
  box-sizing: content-box;
  margin: 24px auto 0;
  padding: 0 20px 115px;
}
@media screen and (max-width: 767px) {
  .p-board__content {
    margin-top: 24px;
    margin-bottom: 48px;
    padding: 0 16px;
  }
}

/* ------------------------------------
  # ナビゲーションタブ
------------------------------------ */
.p-board-nav {
  background-color: #fef5db;
  padding: 20px 0 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-board-nav {
    padding: 16px 0 0;
  }
}

.p-board-nav__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: 58px;
}
@media screen and (max-width: 767px) {
  .p-board-nav__text {
    font-size: 14px;
    margin-bottom: 16px;
  }
}

.p-board-nav__tab {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 19px;
}

.p-board-nav__tab-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 12px;
  padding: 16px 40px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.75;
  color: #000;
  border: none;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
  height: 80px;
  transition: height 0.2s ease;
}
.p-board-nav__tab-button:before {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.p-board-nav__tab-button#tab-tape {
  background-color: #f7f186;
}
.p-board-nav__tab-button#tab-tape:before {
  background-image: url(/product_wall/board/img/icon_tape.svg);
  width: 79px;
  height: 26px;
  top: -12px;
}
.p-board-nav__tab-button#tab-pin {
  background-color: #c7dfc2;
}
.p-board-nav__tab-button#tab-pin:before {
  background-image: url(/product_wall/board/img/icon_pin.svg);
  width: 24px;
  height: 24px;
  top: -10px;
}
.p-board-nav__tab-button#tab-tape.is-active, .p-board-nav__tab-button#tab-pin.is-active {
  background-color: #fff;
  height: 100px;
}
.p-board-nav__tab-button#tab-tape.is-active:hover, .p-board-nav__tab-button#tab-pin.is-active:hover {
  cursor: default;
}
.p-board-nav__tab-button:hover {
  height: 100px;
}
@media screen and (max-width: 767px) {
  .p-board-nav__tab-button {
    flex-direction: column;
    padding: 12px 24px;
    font-size: 16px;
    gap: 0;
    height: 70px;
  }
  .p-board-nav__tab-button#tab-tape.is-active, .p-board-nav__tab-button#tab-pin.is-active {
    height: 88px;
  }
  .p-board-nav__tab-button:hover {
    height: 88px;
  }
}

.p-board-nav__tab-new {
  display: inline-block;
  padding: 0 7px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background-color: #e97474;
}

/* -------------------------------------
  # タブパネル
------------------------------------- */
.p-board-tab-panel__item {
  display: none;
  padding: 32px 4% 68px;
  background-color: #fff;
}
.p-board-tab-panel__item.is-active {
  display: block;
}
@media screen and (max-width: 767px) {
  .p-board-tab-panel__item {
    padding: 24px 16px;
  }
}

.p-board-tab-panel__item-inner {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.p-board-tab-panel__item-inner.is-fade-in {
  opacity: 1;
}

/* ------------------------------------
  # テープタイプセクション
------------------------------------ */
.p-board-type-tape__description {
  position: relative;
  margin-bottom: 140px;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .p-board-type-tape__description {
    margin-bottom: 24px;
  }
}

.p-board-type-tape__logo {
  flex-shrink: 0;
}
.p-board-type-tape__logo img {
  width: 197px;
  height: 62px;
}
@media screen and (max-width: 767px) {
  .p-board-type-tape__logo img {
    width: 150px;
    /* SPでのサイズ調整 */
    height: auto;
  }
}

.p-board-type-tape__text-box {
  position: absolute;
  bottom: -119px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 720px;
  padding: 30px 5.56% 0;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-board-type-tape__text-box {
    position: static;
    transform: none;
    padding: 30px 0 0;
  }
}

.p-board-type-tape__text {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .p-board-type-tape__text {
    font-size: 14px;
    margin-bottom: 16px;
  }
}

.p-board-type-tape__note {
  font-size: 12px;
  line-height: 1.75;
  color: #4f4f4f;
}

.p-board-type-tape__items {
  display: flex;
  gap: 7.48%;
  max-width: 856px;
}
@media screen and (max-width: 767px) {
  .p-board-type-tape__items {
    flex-direction: column;
    gap: 20px;
  }
}

.p-board-type-tape__item {
  width: calc(50% - 10px);
}
.p-board-type-tape__item.-bouka {
  width: 55.96%;
}
.p-board-type-tape__item.-danmen {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-board-type-tape__item {
    width: 100%;
  }
  .p-board-type-tape__item.-bouka {
    width: 100%;
  }
}

.p-board-type-tape__item-title {
  font-size: 16px;
  /* Figmaのデザインに合わせる */
  font-weight: 500;
  color: #000;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .p-board-type-tape__item-title {
    font-size: 14px;
  }
}

.p-board-type-tape__item-title-label {
  color: #5eb0b1;
}

.p-board-type-tape__item.-bouka .p-board-type-tape__item-body {
  margin-top: 9px;
}
.p-board-type-tape__item.-bouka .p-board-type-tape__item-body .p-board-type-tape__table th,
.p-board-type-tape__item.-bouka .p-board-type-tape__item-body .p-board-type-tape__table td {
  font-size: 16px;
  padding: 0 1px;
  height: 59px;
}

.p-board-type-tape__danmen-img {
  margin-top: 9px;
}

.p-board-type-tape__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .p-board-type-tape__table {
    margin-bottom: 8px;
  }
}
.p-board-type-tape__table th,
.p-board-type-tape__table td {
  border-top: 1px solid #9b9b9b;
  border-bottom: 1px solid #9b9b9b;
  padding: 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .p-board-type-tape__table th,
.p-board-type-tape__table td {
    padding: 6px;
    font-size: 12px;
  }
}
.p-board-type-tape__table th {
  border-right: 1px solid #9b9b9b;
  background-color: #f4f6d3;
  width: 50.1%;
}
.p-board-type-tape__table td {
  background-color: #fff;
}

.p-board-type-tape__table-note {
  color: #cc555d;
  font-size: 14px;
  display: block;
}

.p-board-type-tape__info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .p-board-type-tape__info {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
  }
}

.p-board-type-tape__functions {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .p-board-type-tape__functions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

.p-board-type-tape__function-icons {
  display: flex;
  gap: 8px;
}

.p-board-type-tape__function-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 9px 19px;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  color: #000;
  border: 1px solid #9e9e9e;
}
.p-board-type-tape__function-icon.-junhunen {
  background-color: #717070;
  color: #fff;
  border: none;
}
@media screen and (max-width: 767px) {
  .p-board-type-tape__function-icon {
    width: auto;
    height: 32px;
    padding: 8px 6px;
    font-size: 14px;
  }
}

.p-board-type-tape__material {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .p-board-type-tape__material {
    font-size: 14px;
  }
}

.p-board-type-tape__standard {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}
.p-board-type-tape__standard p {
  margin-bottom: -4px;
}
.p-board-type-tape__standard p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-board-type-tape__standard {
    font-size: 14px;
  }
  .p-board-type-tape__standard p {
    margin-bottom: 4px;
  }
}

.p-board-type-tape__standard-price {
  color: #000;
  font-size: 24px;
  font-weight: 700;
  line-height: 175%;
}
@media screen and (max-width: 767px) {
  .p-board-type-tape__standard-price {
    font-size: 20px;
  }
}

.p-board-type-tape__standard-unit {
  color: #000;
  font-size: 16px;
  font-weight: 700;
  line-height: 175%;
}

.p-board-type-tape__products {
  text-align: center;
  margin-bottom: 38px;
}
@media screen and (max-width: 767px) {
  .p-board-type-tape__products {
    margin-bottom: 24px;
  }
}

.p-board-type-tape__product-list {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .p-board-type-tape__product-list {
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
  }
}

.p-board-type-tape__product-item {
  max-width: 215px;
}
@media screen and (max-width: 767px) {
  .p-board-type-tape__product-item {
    width: calc(50% - 8px);
  }
}

.p-board-type-tape__product-item img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .p-board-type-tape__product-item img {
    margin-bottom: 8px;
  }
}

.p-board-type-tape__product-name {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-board-type-tape__product-name {
    font-size: 14px;
    gap: 8px;
  }
}

.p-board-type-tape__product-new {
  display: inline-block;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background-color: #e97474;
}
@media screen and (max-width: 767px) {
  .p-board-type-tape__product-new {
    font-size: 10px;
    padding: 2px 6px;
  }
}

.p-board-type-tape__product-link {
  display: inline-block;
  padding: 14px 80px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
  color: #000;
  background-color: #f7f186;
  border-radius: 40px;
  text-decoration: none;
  transition: opacity 0.3s;
}
.p-board-type-tape__product-link:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .p-board-type-tape__product-link {
    padding: 16px 70px;
    font-size: 16px;
  }
}

/* ------------------------------------
  # 機能説明セクション
------------------------------------ */
.p-board-function {
  margin-bottom: 17px;
}
@media screen and (max-width: 767px) {
  .p-board-function {
    margin-bottom: 24px;
  }
}

.p-board-function__title {
  position: relative;
  padding-bottom: 4px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: 24px;
  border-bottom: 1px solid #8e8e8e;
}
@media screen and (max-width: 767px) {
  .p-board-function__title {
    font-size: 18px;
    margin-bottom: 16px;
  }
}

@media screen and (max-width: 767px) {
  .p-board-function__item {
    width: 100%;
  }
}

.p-board-function__item.-koukin {
  margin-top: 45px;
}

.p-board-function__item.-boukabi {
  margin-top: 30px;
}

.p-board-function__item-head {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .p-board-function__item-head {
    margin-bottom: 12px;
  }
}

.p-board-function__item-icon {
  width: 48px;
}

.p-board-function__item-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.75;
  color: #5eb0b1;
}
@media screen and (max-width: 767px) {
  .p-board-function__item-title {
    font-size: 18px;
  }
}

.p-board-function__table-container--yogore {
  max-width: 640px;
}

.p-board-function__table-container--koukin {
  width: 55.43%;
}
@media screen and (max-width: 767px) {
  .p-board-function__table-container--koukin {
    width: 100%;
  }
}

.p-board-function__item-body p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .p-board-function__item-body p {
    font-size: 14px;
    margin-bottom: 12px;
  }
}
.p-board-function__item-body .p-board-function__table-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 175%;
}
@media screen and (max-width: 767px) {
  .p-board-function__item-body .p-board-function__table-title {
    font-size: 14px;
    margin-bottom: 8px;
  }
}
.p-board-function__item-body .p-board-function__table-title-label {
  color: #5eb0b1;
}

.p-board-function__item.-yogoeboushi .p-board-function__table-title {
  margin-bottom: 9px;
}
.p-board-function__item.-yogoeboushi .p-board-function__table th,
.p-board-function__item.-yogoeboushi .p-board-function__table td {
  font-size: 14px;
  padding: 2px 1px;
}
@media screen and (max-width: 767px) {
  .p-board-function__item.-yogoeboushi .p-board-function__table th,
.p-board-function__item.-yogoeboushi .p-board-function__table td {
    font-size: 12px;
  }
}
.p-board-function__item.-yogoeboushi .p-board-function__table-wrap {
  margin-bottom: 0;
}
.p-board-function__item.-yogoeboushi .p-board-function__table {
  margin-bottom: 4px;
}

.p-board-function__table-wrap .p-board-function__table.-hantei th,
.p-board-function__table-wrap .p-board-function__table.-hantei td {
  font-size: 12px;
}
.p-board-function__table-wrap .p-board-function__table.-hantei td:nth-child(2) {
  text-align: left;
  padding-left: 10px;
}

.p-board-function__table-container--koukin .p-board-function__table-title {
  margin-bottom: 8px;
}

.p-board-function__item.-boukabi .p-board-function__table-title {
  margin-bottom: 9px;
}

.p-board-function__item.-koukin .p-board-function__item-body {
  display: flex;
  gap: 3.26%;
}
@media screen and (max-width: 767px) {
  .p-board-function__item.-koukin .p-board-function__item-body {
    flex-direction: column;
  }
}

.p-board-function__notes {
  margin-bottom: 26px;
}

.p-board-function__table-wrap {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.p-board-function__table-wrap:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-board-function__table-wrap {
    flex-direction: column;
    margin-bottom: 16px;
  }
}

.p-board-function__table-container--koukin .p-board-function__table-wrap,
.p-board-function__item.-boukabi .p-board-function__table-wrap {
  flex-direction: column;
  gap: 0;
}

.p-board-function__item.-koukin .p-board-function__item-body-text {
  flex: 1;
}
.p-board-function__item.-koukin .p-board-function__table {
  margin-bottom: 7px;
}

.p-board-function__item.-boukabi .p-board-function__table-wrap {
  max-width: 740px;
  margin-bottom: 0;
}
.p-board-function__item.-boukabi th,
.p-board-function__item.-boukabi td {
  font-size: 14px;
  padding: 7px 1px;
}
.p-board-function__item.-boukabi td:nth-child(1) {
  text-align: left;
  padding-inline: 10px;
}

.p-board-function__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .p-board-function__table {
    margin-bottom: 8px;
  }
}
.p-board-function__table th,
.p-board-function__table td {
  border-top: 1px solid #9b9b9b;
  border-bottom: 1px solid #9b9b9b;
  padding: 0;
  text-align: center;
  font-size: 12px;
  line-height: 1.75;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-board-function__table th,
.p-board-function__table td {
    padding: 6px;
    font-size: 12px;
  }
}
.p-board-function__table th {
  background-color: #f4f6d5;
}
.p-board-function__table td {
  background-color: #fff;
}
.p-board-function__table.-yogore th {
  width: 25%;
}
.p-board-function__table.-yogore td {
  width: 18.75%;
}
.p-board-function__table.-yogore tr:nth-child(3) th {
  background-color: #d5e6f6;
}
.p-board-function__table.-yogore tr:nth-child(4) th {
  background-color: #bdbdbd;
}
.p-board-function__table.-yogore tr:nth-child(3) td {
  background-color: #f4f9fc;
}
.p-board-function__table.-yogore tr:nth-child(4) td {
  background-color: #ececeb;
}
.p-board-function__table.-yogore td:not(:last-child) {
  border-right: 1px solid #9b9b9b;
}
.p-board-function__table.-hantei {
  width: 32.81%;
}
.p-board-function__table.-hantei th:nth-child(1) {
  border-right: 1px solid #9b9b9b;
  width: 23.81%;
  background-color: #f2f3cb;
}
.p-board-function__table.-hantei th:nth-child(2) {
  background-color: #f2f3cb;
}
.p-board-function__table.-hantei td:nth-child(1) {
  border-right: 1px solid #9b9b9b;
}
.p-board-function__table.-hantei tbody tr:nth-child(1) td {
  background-color: #f9fbec;
}
.p-board-function__table.-hantei tbody tr:nth-child(2) td {
  background-color: #f9fbec;
}
@media screen and (max-width: 767px) {
  .p-board-function__table.-hantei {
    width: 100%;
  }
}
.p-board-function__table.-koukin th {
  background-color: #f4f5d6;
}
.p-board-function__table.-koukin th,
.p-board-function__table.-koukin td {
  font-size: 14px;
  padding: 2px 1px;
}
.p-board-function__table.-koukin tr:nth-child(1) th:nth-child(1) {
  width: 29.41%;
}
.p-board-function__table.-koukin tbody tr:nth-child(1) td:not(:first-child) {
  width: 23.53%;
}
.p-board-function__table.-koukin th:not(:last-child),
.p-board-function__table.-koukin td:not(:last-child) {
  border-right: 1px solid #9b9b9b;
}
.p-board-function__table.-koukin td:nth-child(3),
.p-board-function__table.-koukin td:nth-child(4) {
  background-color: #dae7e8;
}
.p-board-function__table.-koukin sup {
  font-size: 0.8em;
  vertical-align: super;
}
.p-board-function__table.-boukabi tr:nth-child(1) th:nth-child(2) {
  width: 18.92%;
}
.p-board-function__table.-boukabi th:nth-child(1),
.p-board-function__table.-boukabi td:nth-child(1) {
  border-right: 1px solid #9b9b9b;
}
.p-board-function__table.-boukabi th {
  background-color: #f2f3cb;
}
.p-board-function__table.-boukabi tbody tr:nth-child(1) td {
  background-color: #d9e8e8;
}

.p-board-function__item-body .p-board-function__table-note,
.p-board-function__test-method p {
  font-size: 12px;
  line-height: 1.5;
  /* Figma参照 */
  color: #4f4f4f;
}

.p-board-function__test-method {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.p-board-function__test-method dl {
  display: flex;
  gap: 6px;
}
.p-board-function__test-method dt {
  width: 72px;
  font-size: 12px;
  font-weight: 400;
  line-height: 175%;
  /* 21px */
}
.p-board-function__test-method dd {
  flex: 1;
  font-size: 12px;
  font-weight: 400;
  line-height: 175%;
  /* 21px */
}

.p-board-function__notes p {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
}
.p-board-function__notes li {
  font-size: 14px;
  line-height: 1.5;
  color: #000;
}
@media screen and (max-width: 767px) {
  .p-board-function__notes li {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .p-board-function__notes p,
.p-board-function__notes li {
    font-size: 12px;
  }
}

.p-board-function__danmen-img img {
  display: block;
  margin: 0 auto;
  /* 中央寄せ */
}
@media screen and (max-width: 767px) {
  .p-board-function__danmen-img img {
    max-width: 200px;
    /* SPでのサイズ調整 */
  }
}

/* ------------------------------------
  # 注意事項セクション
------------------------------------ */
.p-board-caution {
  background-color: #fffbee;
  padding: 35px 4.35%;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .p-board-caution {
    padding: 24px 16px;
  }
}

.p-board-caution__inner {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.p-board-caution__item h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1px;
}
@media screen and (max-width: 767px) {
  .p-board-caution__item h3 {
    font-size: 16px;
  }
}
.p-board-caution__item li {
  font-size: 14px;
  line-height: 1.75;
  color: #333;
  margin-bottom: 0;
}
.p-board-caution__item li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-board-caution__item li {
    font-size: 12px;
  }
}

.p-board-caution__sub-item {
  margin-top: 9px;
}
.p-board-caution__sub-item + .p-board-caution__sub-item {
  margin-top: 17px;
}
.p-board-caution__sub-item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-board-caution__sub-item {
    margin-bottom: 16px;
  }
}
.p-board-caution__sub-item h4 {
  display: inline-block;
  padding: 1px 20px;
  margin-bottom: 9px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
  color: #fff;
  background-color: #5eb0b1;
}
@media screen and (max-width: 767px) {
  .p-board-caution__sub-item h4 {
    padding: 6px 16px;
    margin-bottom: 12px;
    font-size: 12px;
  }
}

/* ------------------------------------
  # ピンタイプセクション
------------------------------------ */
.p-board-type-pin .p-board-type-tape__text-box {
  bottom: -28px;
}
.p-board-type-pin .p-board-type-tape__description {
  margin-bottom: 65px;
}
@media screen and (max-width: 767px) {
  .p-board-type-pin .p-board-type-tape__description {
    margin-bottom: 40px;
  }
}
.p-board-type-pin .p-board-type-tape__info {
  margin-top: 29px;
  margin-bottom: 20px;
}
.p-board-type-pin .p-board-type-tape__standard {
  display: flex;
  width: 100%;
  max-width: 780px;
}
@media screen and (max-width: 767px) {
  .p-board-type-pin .p-board-type-tape__standard {
    flex-direction: column;
  }
}
.p-board-type-pin .p-board-type-tape__standard-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 7px;
}
.p-board-type-pin .p-board-type-tape__standard-item:first-child {
  border-right: 1px solid #9b9b9b;
  padding-right: 24px;
}
.p-board-type-pin .p-board-type-tape__standard-item:last-child {
  padding-left: 24px;
}
@media screen and (max-width: 767px) {
  .p-board-type-pin .p-board-type-tape__standard-item {
    align-items: flex-start;
  }
  .p-board-type-pin .p-board-type-tape__standard-item:first-child {
    border-right: none;
    border-bottom: 1px solid #9b9b9b;
    padding-right: 0;
    padding-bottom: 12px;
  }
  .p-board-type-pin .p-board-type-tape__standard-item:last-child {
    padding-left: 0;
    padding-top: 12px;
  }
}
.p-board-type-pin .p-board-type-tape__standard-item-label {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 175%;
  /* 21px */
  background: #5eb0b1;
  padding: 0 4px;
}
.p-board-type-pin .p-board-type-pin__product-link {
  background-color: #c7dfc2;
}

.p-board-type-pin__products {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-board-type-pin__products {
    margin-bottom: 24px;
  }
}

.p-board-type-pin__product-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 27px 20px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .p-board-type-pin__product-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
  }
}

.p-board-type-pin__product-item img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 9px;
}
@media screen and (max-width: 767px) {
  .p-board-type-pin__product-item img {
    margin-bottom: 8px;
  }
}

.p-board-type-pin__product-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
  flex-wrap: wrap;
  row-gap: 5px;
  column-gap: 2px;
}
.p-board-type-pin__product-info:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-board-type-pin__product-info {
    row-gap: 5px;
    margin-bottom: 6px;
  }
}

.p-board-type-pin__product-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-board-type-pin__product-name {
    font-size: 10px;
    gap: 4px;
  }
}

.p-board-type-pin__product-label {
  display: flex;
  align-items: center;
  gap: 4px;
}

.p-board-type-pin__product-new {
  display: inline-block;
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 500;
  color: #fff;
  background-color: #e97474;
  /* Figmaから */
}
@media screen and (max-width: 767px) {
  .p-board-type-pin__product-new {
    padding: 2px 6px;
  }
}

.p-board-type-pin__product-wide {
  display: inline-block;
  padding: 4px;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  background-color: #5eb0b1;
}
@media screen and (max-width: 767px) {
  .p-board-type-pin__product-wide {
    padding: 2px 4px;
  }
}

.p-board-type-pin__product-empty {
  width: 38.3px;
}
@media screen and (max-width: 767px) {
  .p-board-type-pin__product-empty {
    width: 34.3px;
  }
}

.p-board-type-pin__product-link-title {
  text-align: center;
  font-size: 18px;
  /* Figmaのデザインに合わせる */
  font-weight: 500;
  color: #000;
  line-height: 1.75;
  margin-bottom: 25px;
}

.p-board-type-pin__product-link-box {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-board-type-pin__product-link-box {
    flex-direction: column;
  }
}

.p-board-type-pin__product-link {
  display: inline-block;
  padding: 24px 80px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: #000;
  background-color: #f7f186;
  /* Figmaから */
  border-radius: 40px;
  text-decoration: none;
  transition: opacity 0.3s;
}
.p-board-type-pin__product-link:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .p-board-type-pin__product-link {
    padding: 16px 40px;
  }
}

/* ------------------------------------
  # リンクボタン
------------------------------------ */
.p-board-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 40px 0;
  background-color: #877a62;
  margin: 0 -40px;
  /* 親のpaddingを相殺 */
}
@media screen and (max-width: 767px) {
  .p-board-links {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px 0;
    margin: 0 -16px;
  }
}

.p-board-links__button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 280px;
  height: 60px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  color: #fff;
  border: 1px solid #fff;
  text-decoration: none;
  transition: opacity 0.3s;
}
.p-board-links__button:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .p-board-links__button {
    width: calc(100% - 32px);
    /* 左右padding考慮 */
    max-width: 280px;
    height: 50px;
    font-size: 14px;
  }
}

/* ------------------------------------
  # footer
------------------------------------ */
.footer__inner {
  background-color: #877a62;
  padding: 49px 10px;
}

.footer__list {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .footer__list {
    flex-direction: column;
    align-items: center;
  }
}

.footer__list-item {
  max-width: 280px;
  padding: 20px 10px;
  width: 100%;
  border: 1px solid #fff;
}

.footer__list-item .footer__list-item-link {
  width: 100%;
  height: 100%;
  display: block;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
}

#p-footer-toTopBtn {
  cursor: pointer;
  position: fixed;
  right: 10px;
  bottom: 4%;
  width: 3.33vw;
  height: 2.33vw;
  z-index: 50;
  padding: 2.5vw;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 767px) {
  #p-footer-toTopBtn {
    width: 5.33vw;
    height: 4vw;
    right: 2.6vw;
    padding: 6vw;
  }
}
@media screen and (min-width: 1400px) {
  #p-footer-toTopBtn {
    width: 60px;
    height: 60px;
    padding: 30px;
  }
}

#p-footer-toTopBtn:before {
  content: "";
  display: block;
  width: 3vw;
  height: 0.16vw;
  position: absolute;
  top: 1.5vw;
  left: 1vw;
  background: #3d3d3d;
}
@media screen and (max-width: 767px) {
  #p-footer-toTopBtn:before {
    width: 6.33vw;
    height: 0.4vw;
    top: 4vw;
    left: 2.88vw;
  }
}
@media screen and (min-width: 1400px) {
  #p-footer-toTopBtn:before {
    width: 40px;
    height: 2px;
    top: 18px;
    left: 10px;
  }
}

#p-footer-toTopBtn span:before {
  content: "";
  display: block;
  width: 2vw;
  height: 2vw;
  border-top: 0.16vw solid #3d3d3d;
  border-left: 0.16vw solid #3d3d3d;
  transform: rotate(45deg);
  position: absolute;
  top: 2.6vw;
  left: 1.5vw;
}
@media screen and (max-width: 767px) {
  #p-footer-toTopBtn span:before {
    width: 4vw;
    height: 4vw;
    top: 6.5vw;
    left: 4vw;
    border-top: 0.4vw solid #3d3d3d;
    border-left: 0.4vw solid #3d3d3d;
  }
}
@media screen and (min-width: 1400px) {
  #p-footer-toTopBtn span:before {
    width: 24px;
    height: 24px;
    top: 32px;
    left: 18px;
    border-top: 2px solid #3d3d3d;
    border-left: 2px solid #3d3d3d;
  }
}

/*# sourceMappingURL=style.css.map */
