@charset "UTF-8";
.accordion-box {
  display: block;
}
.accordion-box .accordion-item {
  display: block;
  width: 100%;
}
.accordion-box .accordion-item:nth-child(n+2) {
  margin-top: 20px;
}
.accordion-box .accordion-item summary::marker {
  content: "";
}
.accordion-box .accordion-item summary::-webkit-details-marker {
  display: none;
}
.accordion-box .accordion-item .accordion-summary {
  align-items: center;
  background-color: #333;
  border: 1px solid #ccc;
  box-sizing: border-box;
  color: #fff;
  display: flex;
  font-size: 17px;
  font-weight: 600;
  justify-content: space-between;
  padding: 10px 20px;
  position: relative;
  width: 100%;
}
.accordion-box .accordion-item .accordion-summary:hover {
  cursor: pointer;
}
.accordion-box .accordion-item .accordion-summary .triangle {
  display: flex;
  height: 10px;
  position: relative;
  transform: rotate(180deg);
  transition: 0.2s;
  width: 14px;
}
.accordion-box .accordion-item .accordion-summary .triangle:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 10.5px solid #fff;
  border-top: 0;
  position: absolute;
}
.accordion-box .accordion-item[open] > .accordion-summary .triangle {
  transform: rotate(0deg);
}
.accordion-box .accordion-detail {
  background-color: #6D6A67;
  border-top: unset;
  box-sizing: border-box;
  display: block;
  margin-top: 2px;
  padding: 8px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .accordion-box {
    flex-direction: column;
  }
  .accordion-box .accordion-item {
    width: 100%;
  }
}

.button-menu {
  background-color: #555;
  bottom: 0;
  display: block;
  padding: 10px 8px;
  position: absolute;
  width: 100%;
}

.button-list {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.button-list__item {
  align-items: center;
  display: flex;
  width: 48.7804878049%;
}
.button-list__item:nth-child(n+3) {
  margin-top: 8px;
}
.button-list__item .item-button {
  align-items: center;
  background-color: #f0f0f0;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  padding: 10px 5px;
  min-height: 42px;
  width: 100%;
}
.button-list__item .item-button .icon {
  display: block;
}
.button-list__item .item-button .icon.assignment {
  height: 18px;
  width: 16px;
}
.button-list__item .item-button .icon.system {
  height: 14px;
  width: 19px;
}
.button-list__item .item-button .icon.copy {
  height: 19px;
  width: 19px;
}
.button-list__item .item-button .icon.print {
  height: 16px;
  width: 17px;
}
.button-list__item .item-button .icon svg {
  display: block;
  height: 100%;
  width: 100%;
}
.button-list__item .item-button .text {
  color: #000;
  display: block;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  margin-left: 8px;
  text-align: center;
}
.button-list__item .item-button:hover {
  cursor: pointer;
  opacity: 0.7;
}

.item-tab {
  display: block;
  height: 100%;
}
.item-tab .tab-button {
  display: flex;
  justify-content: space-between;
  height: 56px;
  width: 100%;
}
.item-tab .tab-button__item {
  background-color: #8C8884;
  border-bottom: 1px solid #fff;
  display: block;
  width: 50%;
}
.item-tab .tab-button__item:nth-child(n+2) {
  border-left: 1px solid #fff;
}
.item-tab .tab-button__item:hover {
  cursor: pointer;
}
.item-tab .tab-button__item .item-frame {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  height: 100%;
  justify-content: center;
  padding: 0px 7px;
  width: 100%;
}
.item-tab .tab-button__item .item-frame .text {
  color: #D8D8D8;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}
.item-tab .tab-button__item.is-active {
  background-color: #555;
  border-bottom: unset;
}
.item-tab .tab-button__item.is-active .item-frame .text {
  color: #fff;
}
.item-tab .tab-contents {
  box-sizing: border-box;
  display: block;
  height: calc(100% - 143px);
  overflow-y: auto;
  width: 100%;
}
.item-tab .tab-contents__item {
  display: none;
}
.item-tab .tab-contents__item .item-frame {
  padding: 16px 8px;
  width: 100%;
}
.item-tab .tab-contents__item .item-frame .text {
  color: #fff;
}
.item-tab .tab-contents__item.is-active {
  background-color: #555;
  display: block;
}
@media screen and (max-width: 575px) {
  .item-tab .tab-button {
    height: auto;
  }
  .item-tab .tab-button__item .item-frame {
    padding: 10px 7px;
  }
  .item-tab .tab-contents {
    height: calc(100% - 47px);
    overflow-y: scroll;
  }
}

html {
  background: #F0F0F0;
}

body {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
  min-height: 100vh;
  position: relative;
  word-break: break-all;
}
body.no-scroll {
  overflow: hidden;
}

main {
  display: block;
  margin-top: 60px;
  padding-bottom: 15em;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 575px) {
  main {
    padding-bottom: 10em;
  }
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

p {
  display: block;
  margin: 0;
  padding: 0;
}

span {
  display: block;
}

figure {
  width: -moz-fit-content;
  width: fit-content;
}

img {
  display: block;
}

.single-box {
  display: block;
  width: 100%;
}

.flex-box {
  align-items: center;
  display: flex;
}
@media screen and (max-width: 575px) {
  .flex-box {
    flex-direction: column;
    justify-content: unset;
  }
}

.button-box {
  display: block;
}

/* パンくずリスト*/
.l-breadcrumb {
  display: block;
}
.l-breadcrumb .breadcrumb-nav .nav-list {
  display: flex;
  flex-wrap: wrap;
}
.l-breadcrumb .breadcrumb-nav .nav-list__item {
  align-items: center;
  display: flex;
  font-size: 12px;
  justify-items: center;
}
.l-breadcrumb .breadcrumb-nav .nav-list__item:not(:first-child) {
  margin-left: 0.5em;
  padding-left: 0.9em;
  position: relative;
}
.l-breadcrumb .breadcrumb-nav .nav-list__item:not(:first-child):before {
  content: "";
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  height: 0.35em;
  left: 0;
  position: absolute;
  transform: rotate(45deg);
  width: 0.35em;
}
.l-breadcrumb .breadcrumb-nav .nav-list__item .link {
  color: #000;
  text-decoration: underline;
}
.l-breadcrumb .breadcrumb-nav .nav-list__item .link:hover {
  text-decoration: none;
}
@media screen and (max-width: 1300px) {
  .l-breadcrumb .breadcrumb-nav .nav-list__item {
    font-size: 10px;
  }
}

/* コンテンツ枠 */
.l-wrapper {
  display: block;
  margin: 0 auto;
  position: relative;
  width: 1130px;
}
@media screen and (max-width: 1024px), print {
  .l-wrapper {
    padding: 0 20px;
    width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .l-wrapper {
    flex-direction: column;
    position: relative;
    width: 100%;
  }
}

/* ページ共通head */
.l-head {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25), inset 0px -3px 6px -2px rgba(0, 0, 0, 0.25);
  display: block;
  position: relative;
  z-index: 2;
}
.l-head__menu {
  display: block;
  position: relative;
  width: 100%;
}
.l-head__menu.yellow {
  background-color: #E7DAB4;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25), inset 0px -3px 6px -2px rgba(0, 0, 0, 0.25);
  padding: 5px 0 7px;
  z-index: 2;
}
.l-head__menu.gray {
  background: #EAE9E9;
  padding: 12px 0 8px;
  z-index: 1;
}
.l-head__menu .l-wrapper {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
  padding: 0 20px;
  width: 100%;
}
.l-head__menu .other-box {
  width: -moz-fit-content;
  width: fit-content;
}
.l-head__menu .other-box .button-bord {
  align-items: center;
  background-color: #60514B;
  border-radius: 20px;
  display: flex;
  height: 36px;
  justify-content: center;
  padding: 0 20px;
}
.l-head__menu .other-box .button-bord .icon {
  display: block;
  height: 24px;
  width: 24px;
}
.l-head__menu .other-box .button-bord .icon .icon-bord {
  display: block;
  height: 100%;
  width: 100%;
}
.l-head__menu .other-box .button-bord .text {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  margin-left: 4px;
  padding-top: 2px;
}
.l-head__menu .other-box .button-bord:hover {
  cursor: pointer;
  opacity: 0.8;
}
.l-head__menu .other-box .link-return {
  align-items: center;
  display: flex;
  font-size: 15px;
  line-height: 1;
  margin-left: 50px;
}
.l-head__menu .other-box .link-return .icon {
  display: block;
  height: 12px;
  width: 16px;
}
.l-head__menu .other-box .link-return .icon .icon-arrow {
  display: block;
  height: 100%;
  width: 100%;
}
.l-head__menu .other-box .link-return .text {
  color: #444;
  margin-left: 7px;
}
.l-head__menu .select-detail,
.l-head__menu .arrow-box,
.l-head__menu .check-price,
.l-head__menu .copy-url,
.l-head__menu .button-choice {
  width: -moz-fit-content;
  width: fit-content;
}
.l-head__menu .select-detail .text,
.l-head__menu .arrow-box .text,
.l-head__menu .check-price .text,
.l-head__menu .copy-url .text,
.l-head__menu .button-choice .text {
  font-weight: 600;
  margin-left: 4px;
}
@media screen and (max-width: 575px) {
  .l-head__menu .select-detail,
  .l-head__menu .arrow-box,
  .l-head__menu .check-price,
  .l-head__menu .copy-url,
  .l-head__menu .button-choice {
    flex-direction: unset !important;
  }
}
.l-head__menu .arrow-box:hover,
.l-head__menu .check-price:hover,
.l-head__menu .copy-url:hover,
.l-head__menu .button-choice:hover {
  cursor: pointer;
  opacity: 0.8;
}
.l-head__menu .select-detail .series {
  color: #60514B;
  display: flex;
  font-size: 17px;
  font-weight: 600;
}
.l-head__menu .select-detail .series:nth-child(n+2) {
  margin-left: 30px;
}
.l-head__menu .select-detail .series .name {
  color: #333;
}
.l-head__menu .arrow-box__item {
  align-items: center;
  display: flex;
  flex-direction: column;
}
.l-head__menu .arrow-box__item .text {
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  margin: 0;
}
.l-head__menu .arrow-box__item.rerun {
  margin-left: 14px;
}
.l-head__menu .check-price {
  margin-left: 40px;
}
.l-head__menu .check-price .icon {
  display: block;
  height: 18px;
  width: 15px;
}
.l-head__menu .check-price .icon .icon-dentaku {
  display: block;
  height: 100%;
  width: 100%;
}
.l-head__menu .copy-url {
  margin-left: 40px;
}
.l-head__menu .button-box {
  margin-left: 100px;
}
.l-head__menu .button-box .button-choice {
  align-items: center;
  background-color: #AC8F37;
  border-radius: 20px;
  padding: 7px 20px;
}
.l-head__menu .button-box .button-choice .text {
  color: #fff;
  font-size: 15px;
  line-height: 1;
}
@media screen and (max-width: 1300px) {
  .l-head__menu .other-box .button-bord .text {
    font-size: 0.9em;
  }
  .l-head__menu .other-box .link-return {
    margin-left: 1em;
  }
  .l-head__menu .check-price,
  .l-head__menu .copy-url {
    margin-left: 1.2em;
  }
  .l-head__menu .select-detail .series {
    font-size: 0.9em;
  }
  .l-head__menu .select-detail .series:nth-child(n+2) {
    margin-left: 1em;
  }
  .l-head__menu .button-box {
    margin-left: 1.5em;
  }
  .l-head__menu .button-box .button-choice .text {
    font-size: 0.9em;
  }
}
@media screen and (max-width: 1095px), print {
  .l-head__menu .l-wrapper {
    flex-wrap: wrap;
    gap: 10px;
  }
  .l-head__menu .other-box .button-bord .text {
    font-size: 0.89em;
  }
  .l-head__menu .other-box .link-return {
    font-size: 0.89em;
  }
  .l-head__menu .select-detail,
  .l-head__menu .arrow-box,
  .l-head__menu .check-price,
  .l-head__menu .copy-url,
  .l-head__menu .button-choice {
    font-size: 0.89em;
  }
  .l-head__menu.yellow {
    padding: 7px 0 11px;
  }
  .l-head__menu.gray .l-wrapper {
    width: 100%;
  }
  .l-head__menu .select-detail {
    width: -moz-fit-content;
    width: fit-content;
  }
  .l-head__menu .select-detail .menu-box {
    flex-direction: column;
  }
}
@media screen and (max-width: 575px) {
  .l-head__menu .l-wrapper {
    align-items: unset;
  }
  .l-head__menu.yellow {
    padding: 12px 0 10px;
  }
  .l-head__menu.gray {
    padding: 15px 0 14px;
  }
  .l-head__menu .other-box {
    align-items: unset;
    flex-direction: unset;
    margin-top: 10px;
    width: 100%;
  }
  .l-head__menu .other-box .button-bord {
    width: -moz-fit-content;
    width: fit-content;
  }
  .l-head__menu .other-box .button-bord .text {
    font-size: 11px;
  }
  .l-head__menu .other-box .link-return {
    margin-left: 1em;
    width: -moz-fit-content;
    width: fit-content;
  }
  .l-head__menu .other-box .link-return .text {
    font-size: 11px;
  }
  .l-head__menu .select-detail,
  .l-head__menu .arrow-box,
  .l-head__menu .check-price,
  .l-head__menu .copy-url,
  .l-head__menu .button-choice {
    flex-direction: unset !important;
  }
  .l-head__menu .menu-box {
    align-items: unset;
    flex-direction: unset;
    flex-wrap: wrap;
    margin-top: 10px;
  }
  .l-head__menu .button-box {
    margin-left: 0;
    margin-top: 10px;
    width: 100%;
  }
}

.l-lg {
  display: block;
}
@media screen and (max-width: 575px) {
  .l-lg {
    display: none;
  }
}

.l-sm {
  display: none !important;
}
@media screen and (max-width: 575px) {
  .l-sm {
    display: block !important;
  }
}

.l-header {
  align-items: center;
  background-color: #AAABAA;
  box-shadow: unset;
  display: flex;
  height: 58px;
  justify-content: center;
}
.l-header .l-wrapper {
  align-items: center;
  display: flex;
  height: 100%;
}
.l-header__item {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
}
.l-header__item.link {
  height: 40px;
  margin-left: 26px;
}
.l-header .nav-list {
  background-color: transparent;
  display: flex;
  height: 100%;
  overflow: hidden;
}
.l-header .nav-list__item {
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
  padding-right: 2px;
}
.l-header .nav-list__item .link {
  align-items: center;
  background-color: #333;
  border: 1px solid #AAABAA;
  border-radius: 10px;
  color: #333;
  display: flex;
  font-weight: 600;
  height: 100%;
  justify-content: center;
  padding: 0 20px;
  position: relative;
  z-index: 10;
  min-width: 180px;
}
.l-header .nav-list__item .link .text {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 15px;
  height: 100%;
  line-height: 1;
  position: relative;
  width: auto;
}
.l-header .nav-list__item .link.next {
  background-color: #CDCAC7;
}
.l-header .nav-list__item .link.next .text {
  color: #fff;
}
.l-header .nav-list__item.prev .link {
  background-color: #CDCAC7;
}
.l-header .nav-list__item.prev .link .text {
  color: #fff;
}
.l-header .nav-list__item.prev:hover .link {
  background-color: #333;
}
.l-header .nav-list__item:first-child {
  z-index: 30;
}
.l-header .nav-list__item:nth-child(n+2) {
  margin-left: -20px;
}
.l-header .nav-list__item:nth-child(n+2) .link .text {
  padding: 0 5px 0 30px;
}
.l-header .nav-list__item:nth-child(2n) {
  z-index: 20;
}
@media screen and (max-width: 575px) {
  .l-header {
    height: auto;
  }
  .l-header .l-wrapper {
    align-items: unset;
    padding: 0;
  }
  .l-header__item {
    align-items: center;
    display: flex;
    justify-content: unset;
    width: 100%;
  }
  .l-header__item.logo {
    padding: 8px 20px 5px;
  }
  .l-header__item.link {
    background-color: #555;
    height: 44px;
    justify-content: space-between;
    margin-left: 0;
    padding: 0 10px;
    width: 100%;
  }
  .l-header__item .nav-list {
    height: unset;
  }
  .l-header__item .nav-list__item .link {
    border: 1px solid #555;
    min-width: unset;
    padding: 8px 10px;
  }
  .l-header__item .nav-list__item .link .text {
    font-size: 14px;
  }
}
.l-header .nav-box {
  display: none;
}
@media screen and (max-width: 575px) {
  .l-header .nav-box {
    align-items: center;
    display: flex;
    height: 50px;
    flex-direction: column;
    justify-content: center;
    margin-right: 10px;
    position: relative;
    width: 40px;
  }
  .l-header .nav-box:hover {
    cursor: pointer;
    opacity: 0.8;
  }
  .l-header .nav-box .triangle {
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 12px solid #ffffff;
    height: 0;
    width: 0;
  }
  .l-header .nav-box .text {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    margin-top: 5px;
  }
}
.l-header .button-menu {
  display: none;
}
@media screen and (max-width: 575px) {
  .l-header .button-menu {
    background: rgba(255, 255, 255, 0.7);
    bottom: unset;
    box-sizing: border-box;
    padding: 30px 30px;
    position: absolute;
    right: 0;
    top: 96px;
    width: 66.7%;
    z-index: 10;
  }
  .l-header .button-menu .menu-text {
    color: #333;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
  }
  .l-header .button-menu .button-list {
    border: none;
    flex-direction: column;
    margin: 10px auto 0;
    width: 90%;
  }
  .l-header .button-menu .button-list__item {
    background-color: #fff;
    border: 2px solid #555;
    width: 100%;
  }
  .l-header .button-menu .button-list__item:nth-child(n+2) {
    margin-top: 10px;
  }
  .l-header .button-menu .button-list__item .item-button {
    background-color: #fff;
    width: 100%;
  }
  .l-header .button-menu .button-list__item .item-button .text {
    color: #000;
    font-size: 15px;
    line-height: 1;
  }
  .l-header .button-menu.is-active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 319px;
  }
}

.l-pageHead {
  align-items: center;
  background-color: #AAABAA;
  box-shadow: unset;
  display: flex;
  height: 58px;
  justify-content: center;
}
.l-pageHead .l-wrapper {
  height: 100%;
}
.l-pageHead__item {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
}
.l-pageHead__item.link {
  height: 40px;
  margin-left: 26px;
}
.l-pageHead .nav-list {
  background-color: transparent;
  display: flex;
  height: 100%;
  overflow: hidden;
}
.l-pageHead .nav-list__item {
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
  padding-right: 2px;
}
.l-pageHead .nav-list__item .link {
  align-items: center;
  background-color: #333;
  border: 1px solid #AAABAA;
  border-radius: 10px;
  color: #333;
  display: flex;
  font-weight: 600;
  height: 100%;
  justify-content: center;
  padding: 0 20px;
  position: relative;
  z-index: 10;
  min-width: 180px;
}
.l-pageHead .nav-list__item .link .text {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 15px;
  height: 100%;
  line-height: 1;
  position: relative;
  width: auto;
}
.l-pageHead .nav-list__item.prev .link {
  background-color: #CDCAC7;
}
.l-pageHead .nav-list__item.prev .link .text {
  color: #fff;
}
.l-pageHead .nav-list__item.prev:hover .link {
  background-color: #333;
}
.l-pageHead .nav-list__item:first-child {
  z-index: 30;
}
.l-pageHead .nav-list__item:nth-child(n+2) {
  margin-left: -20px;
}
.l-pageHead .nav-list__item:nth-child(n+2) .link .text {
  padding: 0 5px 0 30px;
}
.l-pageHead .nav-list__item:nth-child(2n) {
  z-index: 20;
}
@media screen and (max-width: 575px) {
  .l-pageHead {
    height: auto;
  }
  .l-pageHead .l-wrapper {
    align-items: unset;
  }
  .l-pageHead__item {
    align-items: center;
    display: flex;
    justify-content: unset;
    width: 100%;
  }
  .l-pageHead__item.logo {
    padding: 8px 20px 5px;
  }
  .l-pageHead__item.link {
    background-color: #555;
    height: 44px;
    justify-content: space-between;
    margin-left: 0;
    padding: 0 10px;
    width: 100%;
  }
  .l-pageHead__item .nav-list {
    height: unset;
  }
  .l-pageHead__item .nav-list__item .link {
    border: 1px solid #666;
    min-width: unset;
    padding: 8px 10px;
  }
  .l-pageHead__item .nav-list__item .link .text {
    font-size: 14px;
  }
}
.l-pageHead .nav-box {
  display: none;
}
@media screen and (max-width: 575px) {
  .l-pageHead .nav-box {
    align-items: center;
    display: flex;
    height: 50px;
    flex-direction: column;
    justify-content: center;
    margin-right: 10px;
    position: relative;
    width: 40px;
  }
  .l-pageHead .nav-box:hover {
    cursor: pointer;
    opacity: 0.8;
  }
  .l-pageHead .nav-box .triangle {
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 12px solid #ffffff;
    height: 0;
    width: 0;
  }
  .l-pageHead .nav-box .text {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    margin-top: 5px;
  }
}
.l-pageHead .button-menu {
  display: none;
}
@media screen and (max-width: 575px) {
  .l-pageHead .button-menu {
    background: rgba(255, 255, 255, 0.7);
    bottom: unset;
    box-sizing: border-box;
    padding: 30px 30px;
    position: absolute;
    right: 0;
    top: 96px;
    width: 66.7%;
    z-index: 10;
  }
  .l-pageHead .button-menu .menu-text {
    color: #333;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
  }
  .l-pageHead .button-menu .button-list {
    border: none;
    flex-direction: column;
    margin: 10px auto 0;
    width: 90%;
  }
  .l-pageHead .button-menu .button-list__item {
    background-color: #fff;
    border: 2px solid #555;
    width: 100%;
  }
  .l-pageHead .button-menu .button-list__item:nth-child(n+2) {
    margin-top: 10px;
  }
  .l-pageHead .button-menu .button-list__item .item-button {
    background-color: #fff;
    width: 100%;
  }
  .l-pageHead .button-menu .button-list__item .item-button .text {
    color: #000;
    font-size: 15px;
    line-height: 1;
  }
  .l-pageHead .button-menu.is-active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 319px;
  }
}

#footer {
  bottom: 0;
  position: absolute;
  width: 100%;
}

.l-footer {
  background-color: #AAABAA;
  display: block;
}
.l-footer .l-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 12px 20px;
  width: 100%;
}
.l-footer .link-list {
  display: flex;
}
.l-footer .link-list__item {
  align-items: center;
  display: flex;
}
.l-footer .link-list__item:nth-child(n+2) {
  margin-left: 12px;
  padding-left: 12px;
  position: relative;
}
.l-footer .link-list__item:nth-child(n+2):before {
  background-color: #fff;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  width: 1px;
}
.l-footer .link-list__item .link {
  color: #fff;
  font-size: 15px;
}
.l-footer .link-list__item .link:hover {
  opacity: 0.8;
}
@media screen and (max-width: 575px) {
  .l-footer .l-wrapper {
    justify-content: center;
  }
  .l-footer .link-list {
    margin: 0 auto;
  }
  .l-footer .link-list__item .link {
    font-size: 13px;
  }
}

/* モーダルの背景 */
.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  z-index: 1000;
  transition: opacity 0.3s ease;
}
.modal-container.active {
  display: flex;
}

/* モーダル本体 */
.modal-body {
  animation: fadeIn 0.3s ease;
  background-color: rgba(255, 255, 255, 0.85);
  box-sizing: border-box;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: 124px;
  overflow: hidden;
  padding: 20px 20px 80px;
  position: relative;
  width: 90%;
  max-height: 90vh;
  max-width: 1130px;
}

/* モーダルのフェードイン */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* 閉じるボタン */
.modal-close {
  align-items: center;
  background-color: #8C8884;
  color: #fff;
  display: flex;
  margin-left: auto;
  padding: 12px 20px;
}
.modal-close .closs {
  display: flex;
  height: 14px;
  position: relative;
  width: 14px;
}
.modal-close .closs:before, .modal-close .closs:after {
  background-color: #fff;
  content: "";
  height: 100%;
  position: absolute;
  width: 2px;
}
.modal-close .closs:before {
  transform: rotate(45deg);
}
.modal-close .closs:after {
  transform: rotate(-45deg);
}
.modal-close .text {
  font-size: 16px;
  line-height: 1;
}

.modal-content {
  margin: 30px auto 0;
  max-width: 956px;
}
.modal-content .item-head {
  align-items: center !important;
  justify-content: unset !important;
  padding-left: 10px;
}
.modal-content .item-head .text {
  font-size: 24px;
  font-weight: 600;
  margin-left: 8px;
}
@media screen and (max-width: 575px) {
  .modal-content .item-head {
    flex-direction: unset !important;
    justify-content: center !important;
    align-items: center !important;
    padding-left: 0;
  }
  .modal-content .item-head .text {
    font-size: 20px;
    font-weight: 600;
    margin-left: 8px;
  }
}
@media screen and (max-width: 575px) {
  .modal-content .item-box {
    margin-top: 20px;
  }
}
.modal-content.price .item-head .icon {
  width: 24px;
}
.modal-content.price .item-head .icon .icon-dentaku {
  display: block;
  height: auto;
  width: 100%;
}
.modal-content.price .simple-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  border-radius: 20px;
  overflow: hidden;
}
.modal-content.price .simple-table col.col-label {
  width: 28%;
}
.modal-content.price .simple-table col.col-value {
  width: 50%;
}
.modal-content.price .simple-table col.col-price {
  width: 22%;
}
.modal-content.price .simple-table th,
.modal-content.price .simple-table td {
  padding: 8px 12px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid #e5e5e5;
  font-size: 16px;
}
@media screen and (max-width: 575px) {
  .modal-content.price .simple-table th,
  .modal-content.price .simple-table td {
    font-size: 0.78em;
    line-height: 1.2;
    padding: 10px 8px;
  }
}
.modal-content.price .simple-table thead th:first-child,
.modal-content.price .simple-table tbody td:first-child {
  border-left: none;
}
.modal-content.price .simple-table thead th:last-child,
.modal-content.price .simple-table tbody td:last-child {
  border-right: none;
}
.modal-content.price .simple-table thead tr:first-child th {
  border-top: none;
}
.modal-content.price .simple-table tbody tr:last-child td {
  border-bottom: none;
}
.modal-content.price .simple-table .category-price {
  border-left: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
  text-align: center;
}
.modal-content.price .simple-table .category-price .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.modal-content.price .simple-table .category-price .inner span {
  font-size: 0.9em;
  color: #666;
}
.modal-content.price .simple-table thead th[colspan="2"] {
  border-bottom: 2px solid #ccc;
}
.modal-content.price .simple-table .total {
  border-left: 2px solid #ccc;
  border-bottom: none;
  vertical-align: middle;
  text-align: center;
  white-space: nowrap;
  width: 120px;
}
.modal-content.price .simple-table thead {
  background-color: #E7E7E7;
}
.modal-content.price .simple-table thead th {
  text-align: center;
  font-weight: bold;
}
.modal-content.price .simple-table tbody tr:nth-child(odd) {
  background-color: #f7f7f7;
}
.modal-content.price .simple-table tbody tr:nth-child(even) {
  background-color: #F0F0F0;
}
.modal-content.price .simple-table td:first-child {
  text-align: center;
}
.modal-content.price .simple-table td:nth-child(2) {
  border-left: 1px solid #e5e5e5;
}
.modal-content.copy .obi-box {
  background-color: #AC8F37;
  display: flex;
  justify-content: center;
  padding: 30px 0 24px;
}
.modal-content.copy .obi-box__item {
  align-items: center;
  display: flex;
  justify-content: center;
  padding-left: 30px;
  position: relative;
}
.modal-content.copy .obi-box__item:before {
  content: "";
  width: 20px;
  height: 10px;
  border-left: 4px solid #ffffff;
  border-bottom: 4px solid #ffffff;
  left: 0;
  position: absolute;
  top: 3px;
  transform: rotate(-45deg);
}
.modal-content.copy .obi-box__item .text {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}
.modal-content.copy .item-box {
  margin-top: 70px;
}
.modal-content.copy .item-box__caption .text {
  font-size: 16px;
}
.modal-content.copy .item-box .copy-box {
  display: block;
  margin-top: 30px;
  width: 100%;
}
.modal-content.copy .item-box .copy-box__text {
  font-size: 15px;
  line-height: 1;
}
.modal-content.copy .item-box .copy-box__url {
  background-color: #CDCAC7;
  color: #666;
  padding: 10px;
  border-radius: 4px;
  font-size: 14px;
  overflow-x: auto;
  margin-top: 10px;
  white-space: nowrap;
  width: 100%;
}
.modal-content.copy .item-box .copy-button {
  background: none;
  border: none;
  color: #0a58ca;
  font-size: 14px;
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-left: auto;
  margin-top: 10px;
  width: -moz-fit-content;
  width: fit-content;
}
.modal-content.copy .item-box .copy-button .icon {
  width: 16px;
  height: 16px;
  margin-right: 4px;
}
@media screen and (max-width: 999px) {
  .modal-content.copy .obi-box {
    padding: 30px 20px 24px;
  }
  .modal-content.copy .obi-box .text {
    font-size: 20px;
  }
  .modal-content.copy .item-box {
    margin-top: 50px;
  }
  .modal-content.copy .item-box__caption .text {
    font-size: 14px;
  }
  .modal-content.copy .item-box .copy-box__url {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .modal-content.copy .item-box .copy-box {
    flex-direction: column;
  }
  .modal-content.copy .item-box .copy-box__url {
    width: 100%;
  }
  .modal-content.copy .item-box .copy-button {
    margin-top: 20px;
  }
}
.modal-content.taste .item-head .icon {
  height: 21px;
  width: 26px;
}
@media screen and (max-width: 680px) {
  .modal-content.taste .item-head {
    align-items: baseline !important;
    padding-left: 0;
  }
}
.modal-content.taste .item-taste {
  display: block;
  margin-top: 30px;
  overflow-y: auto;
  max-height: 70vh;
}
.modal-content.taste .item-taste__box {
  display: block;
}
.modal-content.taste .item-taste__box:nth-child(n+2) {
  margin-top: 30px;
}
.modal-content.taste .item-taste__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1em 0.8em;
  margin-top: 5px;
}
.modal-content.taste .item-taste__item {
  background-color: #fff;
  display: block;
  padding: 8px;
  position: relative;
  width: calc(25% - 10px);
}
.modal-content.taste .item-taste__item .item-frame {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2), inset 0px 1px 2px 1px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  overflow: hidden;
  width: 100%;
}
.modal-content.taste .item-taste__item .image-box {
  aspect-ratio: 16/9;
  display: block;
  width: 100%;
  height: 100%;
}
.modal-content.taste .item-taste__item .image-box .image {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.modal-content.taste .item-taste__item .name-box {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 10px;
}
.modal-content.taste .item-taste__item .name-box .name {
  font-size: 14px;
  letter-spacing: -0.065em;
}
.modal-content.taste .item-taste__item.is-choice:before {
  content: "";
  border: 4px solid #D9C586;
  border-radius: 14px;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.modal-content.taste .item-taste__item:hover {
  cursor: pointer;
}
.modal-content.taste .item-taste__item:hover:before {
  content: "";
  border: 4px solid #D9C586;
  border-radius: 14px;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.modal-content.taste .item-taste .name {
  font-size: 18px;
  line-height: 1;
}
@media screen and (max-width: 1080px) {
  .modal-content.taste .item-taste__box:nth-child(n+2) {
    margin-top: 50px;
  }
  .modal-content.taste .item-taste__item {
    width: calc(33% - 10px);
  }
  .modal-content.taste .item-taste__item .name-box {
    height: 46px;
  }
}
@media screen and (max-width: 680px) {
  .modal-content.taste .item-taste {
    max-height: 65vh;
  }
  .modal-content.taste .item-taste__item {
    width: calc(50% - 10px);
  }
  .modal-content.taste .item-taste__item .name-box {
    height: 46px;
  }
}

.global-loading {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #D1CECC;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.global-loading.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.global-loading.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.global-loading .loading-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.global-loading .loading-spinner {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}
.global-loading .dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #9A7846;
  border-radius: 50%;
  animation: blink 1.2s infinite ease-in-out both;
  top: 50%;
  left: 50%;
  margin: -6px 0 0 -6px;
}
.global-loading .dot:nth-child(1) {
  transform: rotate(0deg) translate(35px) rotate(-0deg);
  animation-delay: 0s;
}
.global-loading .dot:nth-child(2) {
  transform: rotate(45deg) translate(35px) rotate(-45deg);
  animation-delay: 0.15s;
}
.global-loading .dot:nth-child(3) {
  transform: rotate(90deg) translate(35px) rotate(-90deg);
  animation-delay: 0.3s;
}
.global-loading .dot:nth-child(4) {
  transform: rotate(135deg) translate(35px) rotate(-135deg);
  animation-delay: 0.45s;
}
.global-loading .dot:nth-child(5) {
  transform: rotate(180deg) translate(35px) rotate(-180deg);
  animation-delay: 0.6s;
}
.global-loading .dot:nth-child(6) {
  transform: rotate(225deg) translate(35px) rotate(-225deg);
  animation-delay: 0.75s;
}
.global-loading .dot:nth-child(7) {
  transform: rotate(270deg) translate(35px) rotate(-270deg);
  animation-delay: 0.9s;
}
.global-loading .dot:nth-child(8) {
  transform: rotate(315deg) translate(35px) rotate(-315deg);
  animation-delay: 1.05s;
}
.global-loading .loading-text {
  font-size: 16px;
  color: #333;
  display: none;
  transition: opacity 0.3s;
}
.global-loading .loading-text .icon-frame {
  display: block;
  margin: 0 auto;
  width: 82px;
}
.global-loading .loading-text .text {
  color: #372204;
  font-size: 18px;
  font-weight: 600;
  margin-top: 10px;
}
.global-loading.show-text .loading-text {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@keyframes blink {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}
.p-top .l-head__menu.yellow {
  height: 48px;
}
.p-top .l-head__menu.gray {
  height: 56px;
}
.p-top .title {
  color: #000;
  font-size: 26px;
  font-weight: 600;
}
.p-top .item-contents {
  display: block;
}
.p-top .item-contents:nth-of-type(n+2) {
  margin-top: 64px;
}
.p-top .item-contents .title-box {
  display: flex;
}
.p-top .item-contents .title-box .title {
  font-size: 24px;
  line-height: 1;
}
.p-top .item-contents .title-box .explanation {
  font-size: 16px;
  margin-left: 40px;
}
@media screen and (max-width: 1030px) {
  .p-top .item-contents .title-box {
    flex-direction: column;
  }
  .p-top .item-contents .title-box .explanation {
    margin-left: 0;
    margin-top: 10px;
  }
}
@media screen and (max-width: 575px) {
  .p-top .item-contents .title-box {
    flex-direction: column;
    width: 100%;
  }
  .p-top .item-contents .title-box .title {
    font-size: 20px;
    line-height: 1;
  }
  .p-top .item-contents .title-box .explanation {
    font-size: 14px;
  }
}
.p-top .flex-box {
  align-items: unset;
  justify-content: space-between;
  margin-top: 25px;
}
.p-top .flex-box .item-box {
  box-sizing: border-box;
  width: 31.746031746%;
}
.p-top .flex-box .item-box__frame {
  align-items: center;
  display: flex;
  flex-direction: column;
  position: relative;
}
.p-top .flex-box .item-box__frame:before {
  content: "";
  height: 100%;
  position: absolute;
  transition: all 0.3s 0s ease;
  width: 100%;
}
.p-top .flex-box .item-box__image {
  box-sizing: border-box;
  display: block;
  position: relative;
  width: 100%;
  z-index: 1;
}
.p-top .flex-box .item-box__image .image {
  width: 100%;
}
.p-top .flex-box .item-box__category {
  align-items: center;
  background-color: rgba(51, 51, 51, 0.6);
  box-sizing: border-box;
  bottom: 0;
  display: flex;
  margin-top: 5px;
  padding: 15px 20px;
  position: absolute;
  width: 100%;
  z-index: 2;
}
.p-top .flex-box .item-box__category .category {
  color: #fff;
  font-size: 20px;
  line-height: 1;
}
.p-top .flex-box .item-box .text-box {
  display: block;
  margin-top: 10px;
}
.p-top .flex-box .item-box .text-box .text {
  font-size: 14px;
}
.p-top .flex-box .item-box.is-choice .item-box__frame:before {
  background-color: rgba(51, 51, 51, 0.48);
  z-index: 10;
}
.p-top .flex-box .item-box:hover {
  cursor: pointer;
}
.p-top .flex-box .item-box:hover .item-box__frame:before {
  background-color: rgba(51, 51, 51, 0.48);
  z-index: 10;
}
.p-top .flex-box.layout .item-box__frame {
  align-items: center;
  display: flex;
  justify-content: center;
}
.p-top .flex-box.layout .item-box__image {
  align-items: center;
  background-color: #fff;
  display: flex;
  justify-content: center;
  padding: 32px 0;
  width: 100%;
}
.p-top .flex-box.layout .item-box__image .image-frame {
  display: block;
  height: auto;
  width: 52.5%;
}
.p-top .flex-box.layout .item-box__detail {
  display: block;
  margin-top: 20px;
}
.p-top .flex-box.layout .item-box__detail .category {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}
.p-top .flex-box.layout .item-box.is-choice .item-box__frame:before {
  background-color: rgba(51, 51, 51, 0.4);
}
.p-top .flex-box.layout .item-box:hover {
  cursor: pointer;
}
.p-top .flex-box.layout .item-box:hover .item-box__frame:before {
  background-color: rgba(51, 51, 51, 0.4);
}
@media screen and (max-width: 575px) {
  .p-top .flex-box {
    flex-direction: column;
  }
  .p-top .flex-box .item-box {
    width: 100%;
  }
  .p-top .flex-box .item-box__category .category {
    font-size: 18px;
  }
  .p-top .flex-box .item-box:nth-child(n+2) {
    margin-top: 30px;
  }
  .p-top .flex-box.layout .item-box__detail .category {
    font-size: 18px;
  }
}

.p-tab .l-main {
  display: block;
  height: calc(100vh - 108px);
  overflow: hidden;
  margin-top: 0;
  padding-bottom: 0;
  position: relative;
  width: 100%;
}
.p-tab .l-main .l-wrapper {
  align-items: center;
  display: flex;
}
.p-tab .l-main .flex-box {
  align-items: unset;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 575px) {
  .p-tab .l-main .flex-box {
    flex-direction: column;
  }
}
.p-tab .item-contents {
  display: block;
  height: 100%;
}
.p-tab .item-monitor {
  display: block;
  height: 590px;
  position: sticky;
  top: 0;
  width: 787px;
  z-index: 1;
}
.p-tab .item-monitor__detail {
  display: block;
  padding: 7px 0;
  width: 100%;
}
.p-tab .item-monitor__detail .detail-box {
  display: flex;
}
.p-tab .item-monitor__detail .detail-box__item {
  display: flex;
}
.p-tab .item-monitor__detail .detail-box__item:nth-child(n+2) {
  margin-left: 20px;
}
.p-tab .item-monitor__detail .detail-box__item .category,
.p-tab .item-monitor__detail .detail-box__item .detail {
  font-size: 15px;
  font-weight: 600;
}
.p-tab .item-monitor__detail .detail-box__item .category {
  color: #AAABAA;
}
.p-tab .item-monitor__image {
  display: block;
  height: 100%;
  width: 100%;
}
.p-tab .item-monitor__image .image {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media screen and (max-width: 1024px), print {
  .p-tab .item-monitor {
    width: 70%;
  }
}
@media screen and (max-width: 575px) {
  .p-tab .item-monitor {
    height: 400px;
    position: sticky;
    width: 100%;
  }
}
.p-tab .item-menu {
  background-color: #555;
  display: block;
  height: calc(100vh - 108px);
  /*
  padding-bottom: 48px;
  */
  padding-bottom: 30px;
  padding-top: 0;
  overflow-y: unset;
  max-height: unset;
  position: sticky;
  top: 0;
  width: 342px;
}
.p-tab .item-menu__frame {
  padding: 20px 8px;
  max-height: calc(100% - 88px);
  overflow-y: auto;
}
.p-tab .item-menu .button-box {
  display: block;
}
.p-tab .item-menu .button-box .button-taste {
  align-items: center;
  background-color: #D8D8D8;
  display: flex;
  padding: 10px 15px;
  width: -moz-fit-content;
  width: fit-content;
}
.p-tab .item-menu .button-box .button-taste .border {
  align-items: center;
  border-bottom: 2px solid #000;
  border-top: 2px solid #000;
  display: flex;
  height: 14px;
  position: relative;
  width: 14px;
}
.p-tab .item-menu .button-box .button-taste .border:before, .p-tab .item-menu .button-box .button-taste .border:after {
  background-color: #000;
  content: "";
  height: 2px;
  position: absolute;
  width: 100%;
}
.p-tab .item-menu .button-box .button-taste .border:before {
  top: 2px;
}
.p-tab .item-menu .button-box .button-taste .border:after {
  top: 6px;
}
.p-tab .item-menu .button-box .button-taste .text {
  color: #333;
  display: block;
  font-size: 14px;
  line-height: 1;
  margin-left: 5px;
  padding-top: 2px;
}
.p-tab .item-menu .button-box .button-taste:hover {
  background-color: #fff;
  cursor: pointer;
}
.p-tab .item-menu .item-category {
  display: block;
}
.p-tab .item-menu .item-category__box {
  position: relative;
}
.p-tab .item-menu .item-category__box:nth-child(n+2) {
  margin-top: 20px;
}
.p-tab .item-menu .item-category__box .title {
  color: #fff;
}
.p-tab .item-menu .item-category__frame {
  box-sizing: border-box;
  display: block;
  width: 100%;
}
.p-tab .item-menu .item-category__frame .select-box {
  display: block;
  margin-bottom: 20px;
}
.p-tab .item-menu .item-select {
  display: flex;
  width: 100%;
}
.p-tab .item-menu .item-select .label {
  align-items: center;
  background-color: #555;
  color: #fff;
  display: flex;
  font-size: 15px;
  justify-content: center;
  width: 80px;
}
.p-tab .item-menu .item-select .custom-select {
  position: relative;
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}
.p-tab .item-menu .item-select .custom-select .selected {
  background-color: #fff;
  font-size: 13px;
  line-height: 1.2;
  padding: 13px 28px 10px 14px;
  position: relative;
  width: 100%;
}
.p-tab .item-menu .item-select .custom-select .selected::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 5px solid #555;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
.p-tab .item-menu .item-select .custom-select .option-list {
  background-color: #EFEEEE;
  border: 1px solid #D8D8D8;
  border-radius: 8px;
  display: none;
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  position: absolute;
  width: 100%;
  z-index: 10;
  overflow: hidden;
}
.p-tab .item-menu .item-select .custom-select .option-list__item {
  background-color: #EFEEEE;
  font-size: 13px;
  padding: 10px 14px;
  transition: background-color 0.2s;
}
.p-tab .item-menu .item-select .custom-select .option-list__item:hover {
  background-color: #E6E5E3;
}
.p-tab .item-menu .item-select .custom-select .option-list__item.active {
  background-color: #C5C2BF;
  font-weight: bold;
}
.p-tab .item-menu .item-select .custom-select.open .option-list {
  display: block;
}
.p-tab .item-menu .item-select:nth-child(n+2) {
  margin-top: 14px;
}
.p-tab .item-menu .list-sample {
  border-bottom: 1px solid #fff;
  border-top: 1px solid #fff;
  display: block;
  margin-top: 12px;
  padding: 7px 0;
  width: 100%;
}
.p-tab .item-menu .list-sample.margin {
  margin-top: 2px;
}
.p-tab .item-menu .list-sample__item {
  display: block;
  width: 100%;
}
.p-tab .item-menu .list-sample__item:nth-child(n+2) {
  border-top: 1px solid #fff;
  margin-top: 5px;
  padding-top: 5px;
}
.p-tab .item-menu .list-sample__item .sample-box {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  padding-right: 25px;
  position: relative;
  width: 100%;
}
.p-tab .item-menu .list-sample__item .sample-box:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10.5px solid #fff;
  border-right: 0;
  position: absolute;
  right: 10px;
}
.p-tab .item-menu .list-sample__item .sample-box:hover {
  cursor: pointer;
  opacity: 0.8;
}
.p-tab .item-menu .list-sample__item .sample-box__image {
  display: block;
  height: 56px;
  width: 56px;
}
.p-tab .item-menu .list-sample__item .sample-box__image img {
  display: block;
  width: 100%;
}
.p-tab .item-menu .list-sample__item .sample-box .detail-box {
  color: #fff;
  display: block;
  margin-top: 3px;
  width: calc(100% - 70px);
}
.p-tab .item-menu .list-sample__item .sample-box .detail-box .category {
  font-size: 16px;
  line-height: 1.1;
}
.p-tab .item-menu .list-sample__item .sample-box .detail-box .name {
  font-size: 11px;
  line-height: 1.1;
  margin-top: 10px;
}
.p-tab .item-menu .list-sample.choice .list-sample__item .sample-box:before {
  content: unset;
}
.p-tab .item-menu .list-sample.choice .list-sample__item .sample-box:hover {
  cursor: unset;
  opacity: unset;
}
.p-tab .item-menu .choice-frame {
  background-color: #6D6A67;
  padding: 8px 7px;
}
.p-tab .item-menu .choice-frame .category-name {
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  margin-top: 20px;
}
.p-tab .item-menu .choice-frame .link-back {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 14px;
  font-weight: 500;
  justify-items: center;
  padding-left: 12px;
  position: relative;
}
.p-tab .item-menu .choice-frame .link-back:before {
  background: #fff;
  border-radius: 2px;
  content: "";
  display: inline-block;
  height: 11px;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  left: 0;
  position: absolute;
  width: 5px;
}
.p-tab .item-menu .choice-frame .list-choice {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 3.2px;
  margin-top: 10px;
}
.p-tab .item-menu .choice-frame .list-choice__item {
  width: 23.8663484487%;
}
.p-tab .item-menu .choice-frame .list-choice__item .choice-box {
  display: block;
}
.p-tab .item-menu .choice-frame .list-choice__item .choice-box__border {
  align-items: center;
  display: flex;
  height: auto;
  justify-content: center;
  width: 100%;
}
.p-tab .item-menu .choice-frame .list-choice__item .choice-box__image {
  box-sizing: border-box;
  display: block;
  height: auto;
  padding: 3px;
  width: 100%;
}
.p-tab .item-menu .choice-frame .list-choice__item .choice-box__image .image {
  display: block;
  height: 100%;
  width: 100%;
}
.p-tab .item-menu .choice-frame .list-choice__item .choice-box__name {
  display: block;
  margin-top: 10px;
}
.p-tab .item-menu .choice-frame .list-choice__item .choice-box__name .name {
  color: #fff;
  font-size: 10px;
  font-weight: 600;
}
.p-tab .item-menu .choice-frame .list-choice__item.is-choice .choice-box__border {
  border: 2px solid #E7DAB4;
}
.p-tab .item-menu .taste-box {
  display: block;
}
.p-tab .item-menu .taste-box .category {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
.p-tab .item-menu .taste-box:nth-of-type(n+2) {
  margin-top: 20px;
}
.p-tab .item-menu .taste-box__frame {
  display: block;
  margin-top: 5px;
}
.p-tab .item-menu .taste-box__item {
  display: block;
}
.p-tab .item-menu .taste-box__item:nth-child(n+2) {
  margin-top: 20px;
}
.p-tab .item-menu .taste-box .taste-list {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.p-tab .item-menu .taste-box .taste-list__item {
  display: block;
  padding: 8px;
  position: relative;
  width: 49.2610837438%;
}
.p-tab .item-menu .taste-box .taste-list__item .item-frame {
  background-color: #fff;
  box-sizing: border-box;
  overflow: hidden;
  padding: 0;
  width: 100%;
}
.p-tab .item-menu .taste-box .taste-list__item .image-box {
  aspect-ratio: 16/9;
  display: block;
  width: 100%;
  height: 100%;
}
.p-tab .item-menu .taste-box .taste-list__item .image-box .image {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.p-tab .item-menu .taste-box .taste-list__item .name-box {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 10px 8px;
  min-height: 50px;
}
.p-tab .item-menu .taste-box .taste-list__item .name-box .name {
  font-size: 13px;
  letter-spacing: -0.065em;
  line-height: 1.2;
}
.p-tab .item-menu .taste-box .taste-list__item.is-choice:before {
  content: "";
  border: 4px solid #D9C586;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.p-tab .item-menu .taste-box .taste-list__item:hover {
  cursor: pointer;
}
.p-tab .item-menu .taste-box .taste-list__item:hover:before {
  content: "";
  border: 4px solid #D9C586;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.p-tab .item-menu .taste-box .taste-list__item:nth-child(n+3) {
  margin-top: 8px;
}
.p-tab .item-menu .taste-box .name {
  font-size: 18px;
  line-height: 1;
}
@media screen and (max-width: 575px) {
  .p-tab .l-main {
    height: calc(100% - 146px);
  }
  .p-tab .l-main .l-wrapper {
    height: 100%;
    padding: 0;
  }
  .p-tab .flex-box {
    justify-content: unset;
    overflow: hidden;
    position: relative;
    width: 100%;
  }
  .p-tab .item-monitor {
    height: 325px;
  }
  .p-tab .item-monitor__detail {
    padding: 8px 16px;
    width: 100%;
  }
  .p-tab .item-monitor__detail .detail-box__item .category,
  .p-tab .item-monitor__detail .detail-box__item .detail {
    font-size: 14px;
    line-height: 1;
  }
  .p-tab .item-monitor__image {
    height: 295px;
  }
  .p-tab .item-menu {
    height: calc(100vh - 402px);
    padding-bottom: 0;
    position: relative;
    width: 100%;
  }
  .p-tab .item-menu__frame {
    max-height: unset;
    height: 100%;
  }
  .p-tab .item-menu .item-tab {
    height: 100%;
  }
  .p-tab .item-menu .item-category {
    margin-top: 0;
  }
  .p-tab .item-menu .choice-frame {
    padding: 20px;
  }
}

.p-choice {
  background-color: #F0F0F0;
  border-top: unset;
}
.p-choice .l-main {
  display: block;
  height: calc(100vh - 108px);
  overflow: hidden;
  margin-top: 0;
  padding-bottom: 0;
  position: relative;
  width: 100%;
}
.p-choice .l-main .flex-box {
  align-items: unset;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 575px) {
  .p-choice .l-main .flex-box {
    flex-direction: column;
  }
}
.p-choice .l-wrapper {
  align-items: center;
  display: flex;
}
.p-choice .l-head {
  align-items: center;
  background-color: #AAABAA;
  box-shadow: unset;
  display: flex;
  height: 58px;
  justify-content: center;
}
.p-choice .l-head .l-wrapper {
  height: 100%;
}
.p-choice .l-head__item {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
}
.p-choice .l-head__item.link {
  margin-left: 26px;
}
.p-choice .l-head .nav-list {
  background-color: transparent;
  display: flex;
  height: 100%;
  overflow: hidden;
}
.p-choice .l-head .nav-list__item {
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
  padding-right: 2px;
}
.p-choice .l-head .nav-list__item:after {
  border: 31px solid transparent;
  border-right-width: 0;
  border-left-width: 22px;
  border-left-color: #aaabaa;
  content: "";
  height: 0;
  margin: 0;
  right: 4px;
  transform: translateX(4px);
  position: absolute;
  width: 0;
  z-index: 1;
}
.p-choice .l-head .nav-list__item .link {
  align-items: center;
  color: #333;
  display: flex;
  font-weight: 600;
  height: 100%;
  padding-right: 20px;
  position: relative;
  z-index: 10;
}
.p-choice .l-head .nav-list__item .link:after {
  border: 29px solid transparent;
  border-right-width: 0;
  border-left-width: 20px;
  border-left-color: #e7dab4;
  content: "";
  position: absolute;
  height: 0;
  right: 0;
  width: 0;
  z-index: 2;
}
.p-choice .l-head .nav-list__item .link .text {
  align-items: center;
  background-color: #E7DAB4;
  display: flex;
  font-size: 15px;
  height: 100%;
  justify-content: center;
  padding: 0 0 0 10px;
  position: relative;
  width: auto;
}
.p-choice .l-head .nav-list__item .link:hover {
  cursor: pointer;
}
.p-choice .l-head .nav-list__item .link:hover::after {
  border-left-color: #ccc;
}
.p-choice .l-head .nav-list__item .link:hover .text {
  background-color: #ccc;
}
.p-choice .l-head .nav-list__item.prev .link .text {
  background-color: #CDCAC7;
  color: #A8A49F;
}
.p-choice .l-head .nav-list__item.prev .link:after {
  border-left-color: #CDCAC7;
}
.p-choice .l-head .nav-list__item:first-child {
  z-index: 30;
}
.p-choice .l-head .nav-list__item:nth-child(n+2) {
  margin-left: -20px;
}
.p-choice .l-head .nav-list__item:nth-child(n+2) .link .text {
  padding: 0 5px 0 30px;
}
.p-choice .l-head .nav-list__item:nth-child(2n) {
  z-index: 20;
}
.p-choice .item-contents {
  display: block;
  height: 100%;
}
.p-choice .item-monitor {
  display: block;
  height: 590px;
  position: sticky;
  top: 0;
  width: 787px;
  z-index: 1;
}
.p-choice .item-monitor__image {
  display: block;
  height: 100%;
  width: 100%;
}
.p-choice .item-monitor__image .image {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media screen and (max-width: 1024px), print {
  .p-choice .item-monitor {
    width: 70%;
  }
}
@media screen and (max-width: 575px) {
  .p-choice .item-monitor {
    height: 400px;
    position: sticky;
    width: 100%;
  }
}
.p-choice .item-menu {
  background-color: #555;
  display: block;
  height: calc(100vh - 108px);
  padding-top: 0;
  overflow-y: unset;
  max-height: unset;
  position: sticky;
  top: 0;
  width: 342px;
}
.p-choice .item-menu__frame {
  padding: 20px 8px;
  max-height: calc(100% - 88px);
  overflow-y: auto;
}
.p-choice .item-menu .item-fukidashi {
  align-items: center;
  background-color: #8C8884;
  display: flex;
  margin-bottom: 20px;
  padding: 5px 10px;
  position: relative;
  width: 100%;
}
.p-choice .item-menu .item-fukidashi .close {
  align-items: center;
  border: none;
  background-color: #D9D9D9;
  border-radius: 50%;
  display: flex;
  height: 18px;
  justify-content: center;
  position: absolute;
  right: 10px;
  width: 18px;
}
.p-choice .item-menu .item-fukidashi .close:before, .p-choice .item-menu .item-fukidashi .close:after {
  background-color: #8C8884;
  content: "";
  height: 10px;
  position: absolute;
  width: 2px;
}
.p-choice .item-menu .item-fukidashi .close:before {
  transform: rotate(45deg);
}
.p-choice .item-menu .item-fukidashi .close:after {
  transform: rotate(-45deg);
}
.p-choice .item-menu .item-fukidashi .text {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}
.p-choice .item-menu .button-box {
  display: block;
}
.p-choice .item-menu .button-box .button-taste {
  align-items: center;
  background-color: #D8D8D8;
  display: flex;
  padding: 10px 15px;
  width: -moz-fit-content;
  width: fit-content;
}
.p-choice .item-menu .button-box .button-taste .border {
  align-items: center;
  border-bottom: 2px solid #000;
  border-top: 2px solid #000;
  display: flex;
  height: 14px;
  position: relative;
  width: 14px;
}
.p-choice .item-menu .button-box .button-taste .border:before, .p-choice .item-menu .button-box .button-taste .border:after {
  background-color: #000;
  content: "";
  height: 2px;
  position: absolute;
  width: 100%;
}
.p-choice .item-menu .button-box .button-taste .border:before {
  top: 2px;
}
.p-choice .item-menu .button-box .button-taste .border:after {
  top: 6px;
}
.p-choice .item-menu .button-box .button-taste .text {
  display: block;
  font-size: 14px;
  line-height: 1;
  margin-left: 5px;
  padding-top: 2px;
}
.p-choice .item-menu .button-box .button-taste:hover {
  background-color: #fff;
  cursor: pointer;
}
.p-choice .item-menu .category-box {
  display: block;
  margin: 14px 0;
}
.p-choice .item-menu .category-box .category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 10px;
  width: 100%;
}
.p-choice .item-menu .category-box .category-list__item {
  align-items: center;
  display: flex;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
}
.p-choice .item-menu .category-box .category-list__item .item-frame {
  border: 1px solid #fff;
  padding: 5px 12px;
}
.p-choice .item-menu .category-box .category-list__item .item-frame .name {
  color: #d8d8d8;
  font-size: 14px;
  font-weight: 600;
}
.p-choice .item-menu .category-box .category-list__item.is-choice .item-frame {
  background-color: #AC8F37;
  border-color: #AC8F37;
}
.p-choice .item-menu .category-box .category-list__item.is-choice .item-frame .name {
  color: #fff;
}
.p-choice .item-menu .category-box .category-list__item:hover {
  cursor: pointer;
}
.p-choice .item-menu .category-box .category-list__item:hover .item-frame {
  background-color: #AC8F37;
  border-color: #AC8F37;
}
.p-choice .item-menu .category-box .category-list__item:hover .item-frame .name {
  color: #fff;
  font-weight: 600;
}
.p-choice .item-menu .item-category {
  display: block;
}
.p-choice .item-menu .item-category__box {
  position: relative;
}
.p-choice .item-menu .item-category__box:nth-child(n+2) {
  margin-top: 20px;
}
.p-choice .item-menu .item-category__box .title {
  color: #fff;
}
.p-choice .item-menu .item-category__frame {
  box-sizing: border-box;
  display: block;
  width: 100%;
}
.p-choice .item-menu .item-category__frame .select-box {
  display: block;
  margin-bottom: 20px;
}
.p-choice .item-menu .item-category__frame .item-select {
  display: flex;
  width: 100%;
}
.p-choice .item-menu .item-category__frame .item-select .label {
  align-items: center;
  background-color: #333;
  color: #fff;
  display: flex;
  font-size: 15px;
  justify-content: center;
  width: 80px;
}
.p-choice .item-menu .item-category__frame .item-select .custom-select {
  position: relative;
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}
.p-choice .item-menu .item-category__frame .item-select .custom-select .selected {
  background-color: #fff;
  font-size: 13px;
  line-height: 1.2;
  padding: 13px 28px 10px 14px;
  position: relative;
  width: 100%;
}
.p-choice .item-menu .item-category__frame .item-select .custom-select .selected::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 5px solid #555;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
.p-choice .item-menu .item-category__frame .item-select .custom-select .option-list {
  background-color: #EFEEEE;
  border: 1px solid #D8D8D8;
  border-radius: 8px;
  display: none;
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  position: absolute;
  width: 100%;
  z-index: 10;
  overflow: hidden;
}
.p-choice .item-menu .item-category__frame .item-select .custom-select .option-list__item {
  background-color: #EFEEEE;
  font-size: 13px;
  padding: 10px 14px;
  transition: background-color 0.2s;
}
.p-choice .item-menu .item-category__frame .item-select .custom-select .option-list__item:hover {
  background-color: #E6E5E3;
}
.p-choice .item-menu .item-category__frame .item-select .custom-select .option-list__item.active {
  background-color: #C5C2BF;
  font-weight: bold;
}
.p-choice .item-menu .item-category__frame .item-select .custom-select.open .option-list {
  display: block;
}
.p-choice .item-menu .item-category__frame .item-select:nth-child(n+2) {
  margin-top: 14px;
}
.p-choice .item-menu .list-sample {
  border-bottom: 1px solid #fff;
  border-top: 1px solid #fff;
  display: block;
  padding: 7px 0;
  width: 100%;
}
.p-choice .item-menu .list-sample__item {
  display: block;
  width: 100%;
}
.p-choice .item-menu .list-sample__item:nth-child(n+2) {
  border-top: 1px solid #fff;
  margin-top: 5px;
  padding-top: 5px;
}
.p-choice .item-menu .list-sample__item .sample-box {
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 100%;
}
.p-choice .item-menu .list-sample__item .sample-box__image {
  display: block;
  height: 56px;
  width: 56px;
}
.p-choice .item-menu .list-sample__item .sample-box__image img {
  display: block;
  width: 100%;
}
.p-choice .item-menu .list-sample__item .sample-box .detail-box {
  color: #fff;
  display: block;
  margin-top: 3px;
  width: calc(100% - 70px);
}
.p-choice .item-menu .list-sample__item .sample-box .detail-box .category {
  font-size: 16px;
  line-height: 1.1;
}
.p-choice .item-menu .list-sample__item .sample-box .detail-box .name {
  font-size: 11px;
  line-height: 1.1;
  margin-top: 10px;
}
@media screen and (max-width: 575px) {
  .p-choice .l-wrapper {
    height: 100%;
  }
  .p-choice .l-head {
    height: auto;
  }
  .p-choice .l-head .l-wrapper {
    align-items: unset;
  }
  .p-choice .l-head__item {
    align-items: center;
    display: flex;
    justify-content: unset;
    width: 100%;
  }
  .p-choice .l-head__item.logo {
    padding: 8px 20px 5px;
  }
  .p-choice .l-head__item.link {
    background-color: #555;
    height: 50px;
    justify-content: space-between;
    margin-left: 0;
    width: 100%;
  }
  .p-choice .l-main {
    height: calc(100% - 146px);
  }
  .p-choice .flex-box {
    justify-content: unset;
    overflow: hidden;
    position: relative;
    width: 100%;
  }
  .p-choice .item-monitor {
    height: 295px;
  }
  .p-choice .item-menu {
    height: calc(100vh - 441px);
    position: relative;
    width: 100%;
  }
  .p-choice .item-menu__frame {
    max-height: unset;
    height: 100%;
  }
  .p-choice .item-menu .item-tab {
    height: 100%;
  }
  .p-choice .item-menu .item-category {
    margin-top: 0;
  }
}

.p-colorchoice .l-main {
  margin-top: 0;
}
.p-colorchoice .l-main .flex-box {
  align-items: unset;
  justify-content: space-between;
}
@media screen and (max-width: 575px) {
  .p-colorchoice .l-main .flex-box {
    flex-direction: column;
  }
}
.p-colorchoice .item-contents {
  display: block;
  height: calc(100vh - 108px);
}
.p-colorchoice .item-monitor {
  display: block;
  height: 590px;
  position: relative;
  width: 787px;
  z-index: 1;
}
.p-colorchoice .item-monitor__image {
  display: block;
  height: 100%;
  width: 100%;
}
.p-colorchoice .item-monitor__image .image {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media screen and (max-width: 1024px), print {
  .p-colorchoice .item-monitor {
    width: 70%;
  }
}
@media screen and (max-width: 575px) {
  .p-colorchoice .item-monitor {
    height: 400px;
    position: sticky;
    width: 100%;
  }
}
.p-colorchoice .item-menu {
  display: block;
  padding-top: 20px;
  position: relative;
  width: calc(100% - 787px);
  max-height: 90vh;
  overflow-y: auto;
}
.p-colorchoice .item-menu__box {
  box-sizing: border-box;
  display: block;
  padding-left: 15px;
  width: 100%;
}
.p-colorchoice .item-menu__box .item-head {
  display: flex;
  justify-content: space-between;
}
.p-colorchoice .item-menu__box .item-head .title {
  font-size: 20px;
}
.p-colorchoice .item-menu__box .item-head .link-return {
  align-items: center;
  display: flex;
}
.p-colorchoice .item-menu__box .item-head .link-return .text {
  color: #555;
  font-size: 13px;
  font-weight: 600;
  margin-left: 4px;
}
.p-colorchoice .item-menu__box .item-head .link-return:hover {
  opacity: 0.8;
}
.p-colorchoice .item-menu__box .item-select {
  display: block;
  margin-top: 14px;
}
.p-colorchoice .item-menu__box .item-select .tips-box {
  align-items: end;
  display: flex;
  position: relative;
}
.p-colorchoice .item-menu__box .item-select .tips-box .item-fukidashi {
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
  width: 65%;
}
.p-colorchoice .item-menu__box .item-select .tips-box .item-fukidashi .triangle {
  background-image: url(../image/icon_triangle.png);
  background-size: contain;
  bottom: 10px;
  display: block;
  height: 19px;
  left: 0;
  position: absolute;
  width: 14px;
  z-index: 1;
}
.p-colorchoice .item-menu__box .item-select .tips-box .item-fukidashi__box {
  align-items: center;
  background-color: #8C8884;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  padding: 10px;
  position: relative;
  width: calc(100% - 20px);
}
.p-colorchoice .item-menu__box .item-select .tips-box .item-fukidashi .close {
  align-items: center;
  border: none;
  background-color: #D9D9D9;
  border-radius: 50%;
  display: flex;
  height: 18px;
  justify-content: center;
  position: absolute;
  right: 7px;
  top: 7px;
  width: 18px;
}
.p-colorchoice .item-menu__box .item-select .tips-box .item-fukidashi .close:before, .p-colorchoice .item-menu__box .item-select .tips-box .item-fukidashi .close:after {
  background-color: #8C8884;
  content: "";
  height: 10px;
  position: absolute;
  width: 2px;
}
.p-colorchoice .item-menu__box .item-select .tips-box .item-fukidashi .close:before {
  transform: rotate(45deg);
}
.p-colorchoice .item-menu__box .item-select .tips-box .item-fukidashi .close:after {
  transform: rotate(-45deg);
}
.p-colorchoice .item-menu__box .item-select .tips-box .item-fukidashi .text {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}
.p-colorchoice .item-menu__box .item-select .tips-box .title {
  font-size: 16px;
  line-height: 1;
  margin-bottom: 10px;
}
.p-colorchoice .item-menu__box .item-select .category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 7px;
  margin-top: 10px;
}
.p-colorchoice .item-menu__box .item-select .category-list__item {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
.p-colorchoice .item-menu__box .item-select .category-list__item .item-frame {
  border: 1px solid #CDCAC7;
  border-radius: 20px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
}
.p-colorchoice .item-menu__box .item-select .category-list__item .item-frame__box {
  display: flex;
  align-items: center;
}
.p-colorchoice .item-menu__box .item-select .category-list__item .item-frame__box .icon {
  color: #76736F;
  display: block;
  height: 20px;
  width: 20px;
}
.p-colorchoice .item-menu__box .item-select .category-list__item .item-frame__box .icon svg {
  display: block;
  height: 20px;
  width: 20px;
}
.p-colorchoice .item-menu__box .item-select .category-list__item .item-frame__box .name {
  color: #76736F;
  font-size: 15px;
  line-height: 1;
  margin-left: 5px;
}
.p-colorchoice .item-menu__box .item-select .category-list__item .item-frame__mark {
  align-items: center;
  display: flex;
  height: 16px;
  justify-content: center;
  margin-left: 5px;
  position: relative;
  width: 16px;
}
.p-colorchoice .item-menu__box .item-select .category-list__item .item-frame__mark:before, .p-colorchoice .item-menu__box .item-select .category-list__item .item-frame__mark:after {
  background-color: #76736F;
  content: "";
  position: absolute;
}
.p-colorchoice .item-menu__box .item-select .category-list__item .item-frame__mark:before {
  height: 3px;
  margin-top: -1px;
  width: 100%;
}
.p-colorchoice .item-menu__box .item-select .category-list__item .item-frame__mark:after {
  height: 100%;
  width: 3px;
}
.p-colorchoice .item-menu__box .item-select .category-list__item:hover {
  cursor: pointer;
}
.p-colorchoice .item-menu__box .item-select .category-list__item.active .item-frame {
  background-color: #CEB464;
  border: 1px solid #CEB464;
}
.p-colorchoice .item-menu__box .item-select .category-list__item.active .item-frame__box .icon {
  color: #fff;
  display: block;
  height: 20px;
  width: 20px;
}
.p-colorchoice .item-menu__box .item-select .category-list__item.active .item-frame__box .name {
  color: #fff;
}
.p-colorchoice .item-menu__box .item-select .category-list__item.active .item-frame__mark:before, .p-colorchoice .item-menu__box .item-select .category-list__item.active .item-frame__mark:after {
  background-color: #fff;
  content: "";
  position: absolute;
}
.p-colorchoice .item-menu__box .item-select .category-list__item.active .item-frame__mark:before {
  height: 3px;
  margin-top: -1px;
  width: 100%;
}
.p-colorchoice .item-menu__box .item-select .category-list__item.active .item-frame__mark:after {
  display: none;
}
.p-colorchoice .item-menu__box .item-select .list-sample {
  display: flex;
  gap: 8px 6px;
  margin-top: 10px;
}
.p-colorchoice .item-menu__box .item-select .list-sample__item {
  display: block;
  width: calc(33.3333333333% - 4px);
}
.p-colorchoice .item-menu__box .item-select .list-sample__item .sample-color {
  box-sizing: border-box;
  display: flex;
  padding: 10px;
  position: relative;
  width: 100%;
}
.p-colorchoice .item-menu__box .item-select .list-sample__item .sample-color .image {
  display: block;
  width: 100%;
}
.p-colorchoice .item-menu__box .item-select .list-sample__item .sample-color .image img {
  display: block;
  width: 100%;
}
.p-colorchoice .item-menu__box .item-select .list-sample__item .name {
  font-size: 11px;
  line-height: 1.1;
  margin-top: 10px;
  padding: 0 10px;
}
.p-colorchoice .item-menu__box .item-select .list-sample__item.is-choice .sample-color:before {
  border: 4px solid #D9C586;
  border-radius: 16px;
  content: "";
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.p-colorchoice .item-menu__box .item-select .list-sample__item:hover {
  cursor: pointer;
}
.p-colorchoice .item-menu__box .item-select .list-sample__item:hover .sample-color:before {
  border: 4px solid #D9C586;
  border-radius: 16px;
  content: "";
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.p-colorchoice .item-menu__box .item-category {
  display: block;
  margin-top: 20px;
}
.p-colorchoice .item-menu__box .item-category__box {
  position: relative;
  z-index: 1;
}
.p-colorchoice .item-menu__box .item-category__box:before {
  background-color: #AC8F37;
  border-radius: 4px;
  content: "";
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  z-index: 2;
}
.p-colorchoice .item-menu__box .item-category__box:nth-child(n+2) {
  margin-top: 20px;
}
.p-colorchoice .item-menu__box .item-category__box .title {
  background-color: #F1EBD6;
  display: block;
  padding: 10px 20px;
  width: 100%;
}
.p-colorchoice .item-menu__box .item-category__frame {
  box-sizing: border-box;
  display: block;
  padding-left: 15px;
  width: 100%;
}
.p-colorchoice .item-menu__box .item-category__frame .item-select {
  display: flex;
  flex-direction: column;
}
.p-colorchoice .item-menu__box .item-category__frame .item-select .label {
  font-size: 14px;
  padding-left: 2px;
  margin-bottom: 6px;
}
.p-colorchoice .item-menu__box .item-category__frame .item-select .custom-select {
  position: relative;
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}
.p-colorchoice .item-menu__box .item-category__frame .item-select .custom-select .selected {
  background-color: #F9F5EC;
  border: 1px solid #D8D8D8;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.2;
  padding: 11px 28px 8px 14px;
  position: relative;
  width: 100%;
}
.p-colorchoice .item-menu__box .item-category__frame .item-select .custom-select .selected::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 5px solid #555;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
.p-colorchoice .item-menu__box .item-category__frame .item-select .custom-select .option-list {
  background-color: #EFEEEE;
  border: 1px solid #D8D8D8;
  border-radius: 8px;
  display: none;
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  position: absolute;
  width: 100%;
  z-index: 10;
  overflow: hidden;
}
.p-colorchoice .item-menu__box .item-category__frame .item-select .custom-select .option-list__item {
  background-color: #EFEEEE;
  font-size: 13px;
  padding: 10px 14px;
  transition: background-color 0.2s;
}
.p-colorchoice .item-menu__box .item-category__frame .item-select .custom-select .option-list__item:hover {
  background-color: #E6E5E3;
}
.p-colorchoice .item-menu__box .item-category__frame .item-select .custom-select .option-list__item.active {
  background-color: #C5C2BF;
  font-weight: bold;
}
.p-colorchoice .item-menu__box .item-category__frame .item-select .custom-select.open .option-list {
  display: block;
}
.p-colorchoice .item-menu__box .item-category__frame .item-select {
  display: flex;
  flex-direction: column;
}
.p-colorchoice .item-menu__box .item-category__frame .item-select .label {
  font-size: 14px;
  padding-left: 2px;
  margin-bottom: 6px;
}
.p-colorchoice .item-menu__box .item-category__frame .item-select .select-frame {
  align-items: center;
  display: flex;
  position: relative;
  width: 100%;
}
.p-colorchoice .item-menu__box .item-category__frame .item-select .select-frame:before {
  content: "";
  position: absolute;
  height: 0;
  width: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #555555;
  right: 10px;
  z-index: 3;
}
.p-colorchoice .item-menu__box .item-category__frame .item-select select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #F9F5EC;
  border: 1px solid #D8D8D8;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.2;
  padding: 11px 28px 8px 14px;
  width: 100%;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.p-colorchoice .item-menu__box .item-category__frame .item-select select:focus {
  outline: none;
  border-color: #aaa;
  box-shadow: 0 0 0 2px rgba(216, 216, 216, 0.4);
}
.p-colorchoice .item-menu__box .item-category__frame .item-select .list-sample {
  flex-wrap: wrap;
  margin-top: 0;
}
.p-colorchoice .item-menu__box .item-category__frame .item-select .list-sample__item {
  border: 4px solid #D9D9D9;
  border-radius: 16px;
  width: calc(50% - 4px);
}
.p-colorchoice .item-menu__box .item-category__frame .item-select .list-sample__item .sample-color {
  flex-direction: column;
}
.p-colorchoice .item-menu__box .item-category__frame .item-select .list-sample__item .sample-color:before {
  display: none;
  position: unset;
}
.p-colorchoice .item-menu__box .item-category__frame .item-select .list-sample__item .sample-color .category {
  font-size: 14px;
}
.p-colorchoice .item-menu__box .item-category__frame .item-select .list-sample__item .sample-color .image {
  height: auto;
  width: 68%;
}
.p-colorchoice .item-menu__box .item-category__frame .item-select .list-sample__item .name {
  padding: 0;
}
.p-colorchoice .item-menu__box .item-category__frame .item-select .list-sample__item.is-choice {
  border: 4px solid #D9C586;
}
.p-colorchoice .item-menu__box .item-category__frame .item-select .list-sample__item:hover {
  border: 4px solid #D9C586;
}
@media screen and (max-width: 1024px), print {
  .p-colorchoice .item-menu {
    width: 30%;
  }
  .p-colorchoice .item-menu .item-head {
    flex-direction: column;
    width: 100%;
  }
  .p-colorchoice .item-menu .item-select,
  .p-colorchoice .item-menu .item-category {
    margin-top: 20px;
  }
  .p-colorchoice .item-menu__box .item-category__frame .item-select .list-sample__item .sample-color .image {
    height: auto;
    width: 100%;
  }
}
@media screen and (max-width: 860px) {
  .p-colorchoice .item-menu .item-select .list-sample {
    flex-wrap: wrap;
  }
  .p-colorchoice .item-menu .item-select .list-sample__item {
    width: 45.4545454545%;
  }
}
@media screen and (min-width: 576px) and (max-width: 1040px) {
  .p-colorchoice .item-menu .item-select .tips-box {
    align-items: unset;
    flex-direction: column;
  }
  .p-colorchoice .item-menu .item-select .tips-box .item-fukidashi {
    margin-top: 7px;
    padding-top: 10px;
    justify-content: unset;
    width: 100%;
  }
  .p-colorchoice .item-menu .item-select .tips-box .item-fukidashi .triangle {
    left: 10px;
    top: 3px;
    transform: rotate(-30deg);
  }
  .p-colorchoice .item-menu .item-select .tips-box .item-fukidashi__box {
    width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .p-colorchoice .item-menu {
    height: calc(100vh - 406px);
    margin: 0;
    position: sticky;
    width: 100%;
  }
  .p-colorchoice .item-menu .item-select .tips-box {
    flex-direction: unset;
  }
  .p-colorchoice .item-menu .item-select .list-sample {
    flex-wrap: wrap;
  }
  .p-colorchoice .item-menu .item-select .list-sample__item {
    width: 31.25%;
  }
  .p-colorchoice .item-menu__box .item-category__frame .item-select .list-sample__item {
    width: calc(33.3333333333% - 4px);
  }
}
.p-colorchoice.new {
  background-color: #F0F0F0;
  border-top: unset;
}
.p-colorchoice.new .l-main {
  height: calc(100vh - 108px);
  overflow: hidden;
  padding-bottom: 0;
  position: relative;
}
.p-colorchoice.new .l-main .flex-box {
  position: relative;
}
.p-colorchoice.new .l-wrapper {
  align-items: center;
  display: flex;
}
.p-colorchoice.new .l-head {
  align-items: center;
  background-color: #AAABAA;
  box-shadow: unset;
  display: flex;
  height: 58px;
  justify-content: center;
}
.p-colorchoice.new .l-head .l-wrapper {
  height: 100%;
}
.p-colorchoice.new .l-head__item {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
}
.p-colorchoice.new .l-head__item.link {
  margin-left: 26px;
}
.p-colorchoice.new .l-head .nav-list {
  background-color: transparent;
  display: flex;
  height: 100%;
  overflow: hidden;
}
.p-colorchoice.new .l-head .nav-list__item {
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
  padding-right: 2px;
}
.p-colorchoice.new .l-head .nav-list__item:after {
  border: 31px solid transparent;
  border-right-width: 0;
  border-left-width: 22px;
  border-left-color: #ffffff;
  content: "";
  height: 0;
  margin: 0;
  right: 4px;
  top: -2px;
  transform: translateX(4px);
  position: absolute;
  width: 0;
  z-index: 1;
}
.p-colorchoice.new .l-head .nav-list__item .link {
  align-items: center;
  color: #333;
  display: flex;
  font-weight: 600;
  height: 100%;
  padding-right: 20px;
  position: relative;
  z-index: 10;
}
.p-colorchoice.new .l-head .nav-list__item .link:after {
  border: 29px solid transparent;
  border-right-width: 0;
  border-left-width: 20px;
  border-left-color: #e7dab4;
  content: "";
  position: absolute;
  height: 0;
  right: 0;
  top: 0;
  width: 0;
  z-index: 2;
}
.p-colorchoice.new .l-head .nav-list__item .link .text {
  align-items: center;
  background-color: #E7DAB4;
  display: flex;
  height: 100%;
  justify-content: center;
  padding: 0 5px 0 10px;
  position: relative;
  width: auto;
}
.p-colorchoice.new .l-head .nav-list__item .link:hover {
  cursor: pointer;
}
.p-colorchoice.new .l-head .nav-list__item .link:hover::after {
  border-left-color: #ccc;
}
.p-colorchoice.new .l-head .nav-list__item .link:hover .text {
  background-color: #ccc;
}
.p-colorchoice.new .l-head .nav-list__item:first-child {
  z-index: 30;
}
.p-colorchoice.new .l-head .nav-list__item:nth-child(n+2) {
  margin-left: -20px;
}
.p-colorchoice.new .l-head .nav-list__item:nth-child(n+2) .link .text {
  padding-left: 30px;
}
.p-colorchoice.new .l-head .nav-list__item:nth-child(2n) {
  z-index: 20;
}
.p-colorchoice.new .item-contents {
  height: 100%;
}
.p-colorchoice.new .item-monitor {
  position: sticky;
  top: 0;
}
.p-colorchoice.new .item-menu {
  background-color: #555;
  display: block;
  height: calc(100vh - 108px);
  padding-top: 0;
  overflow-y: unset;
  max-height: unset;
  position: sticky;
  top: 0;
  width: 342px;
}
.p-colorchoice.new .item-menu .item-fukidashi {
  align-items: center;
  background-color: #8C8884;
  display: flex;
  margin-bottom: 20px;
  padding: 10px;
  position: relative;
  width: 100%;
}
.p-colorchoice.new .item-menu .item-fukidashi .close {
  align-items: center;
  border: none;
  background-color: #D9D9D9;
  border-radius: 50%;
  display: flex;
  height: 18px;
  justify-content: center;
  position: absolute;
  right: 10px;
  width: 18px;
}
.p-colorchoice.new .item-menu .item-fukidashi .close:before, .p-colorchoice.new .item-menu .item-fukidashi .close:after {
  background-color: #8C8884;
  content: "";
  height: 10px;
  position: absolute;
  width: 2px;
}
.p-colorchoice.new .item-menu .item-fukidashi .close:before {
  transform: rotate(45deg);
}
.p-colorchoice.new .item-menu .item-fukidashi .close:after {
  transform: rotate(-45deg);
}
.p-colorchoice.new .item-menu .item-fukidashi .text {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}
.p-colorchoice.new .item-menu .item-category {
  display: block;
}
.p-colorchoice.new .item-menu .item-category__box {
  position: relative;
}
.p-colorchoice.new .item-menu .item-category__box:nth-child(n+2) {
  margin-top: 20px;
}
.p-colorchoice.new .item-menu .item-category__box .title {
  color: #fff;
}
.p-colorchoice.new .item-menu .item-category__frame {
  box-sizing: border-box;
  display: block;
  width: 100%;
}
.p-colorchoice.new .item-menu .item-category__frame .item-select {
  display: flex;
  width: 100%;
}
.p-colorchoice.new .item-menu .item-category__frame .item-select .label {
  align-items: center;
  background-color: #333;
  color: #fff;
  display: flex;
  font-size: 15px;
  justify-content: center;
  width: 80px;
}
.p-colorchoice.new .item-menu .item-category__frame .item-select .custom-select {
  position: relative;
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}
.p-colorchoice.new .item-menu .item-category__frame .item-select .custom-select .selected {
  background-color: #fff;
  font-size: 13px;
  line-height: 1.2;
  padding: 13px 28px 10px 14px;
  position: relative;
  width: 100%;
}
.p-colorchoice.new .item-menu .item-category__frame .item-select .custom-select .selected::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 5px solid #555;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
.p-colorchoice.new .item-menu .item-category__frame .item-select .custom-select .option-list {
  background-color: #EFEEEE;
  border: 1px solid #D8D8D8;
  border-radius: 8px;
  display: none;
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  position: absolute;
  width: 100%;
  z-index: 10;
  overflow: hidden;
}
.p-colorchoice.new .item-menu .item-category__frame .item-select .custom-select .option-list__item {
  background-color: #EFEEEE;
  font-size: 13px;
  padding: 10px 14px;
  transition: background-color 0.2s;
}
.p-colorchoice.new .item-menu .item-category__frame .item-select .custom-select .option-list__item:hover {
  background-color: #E6E5E3;
}
.p-colorchoice.new .item-menu .item-category__frame .item-select .custom-select .option-list__item.active {
  background-color: #C5C2BF;
  font-weight: bold;
}
.p-colorchoice.new .item-menu .item-category__frame .item-select .custom-select.open .option-list {
  display: block;
}
.p-colorchoice.new .item-menu .item-category__frame .item-select:nth-child(n+2) {
  margin-top: 20px;
}
.p-colorchoice.new .item-menu .list-sample {
  border-bottom: 1px solid #fff;
  border-top: 1px solid #fff;
  display: block;
  margin-top: 10px;
  padding: 7px 0;
  width: 100%;
}
.p-colorchoice.new .item-menu .list-sample__item {
  display: block;
  width: 100%;
}
.p-colorchoice.new .item-menu .list-sample__item:nth-child(n+2) {
  border-top: 1px solid #fff;
  margin-top: 5px;
  padding-top: 5px;
}
.p-colorchoice.new .item-menu .list-sample__item .sample-box {
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 100%;
}
.p-colorchoice.new .item-menu .list-sample__item .sample-box .image {
  display: block;
  height: 56px;
  width: 56px;
}
.p-colorchoice.new .item-menu .list-sample__item .sample-box .image img {
  display: block;
  width: 100%;
}
.p-colorchoice.new .item-menu .list-sample__item .sample-box .detail-box {
  color: #fff;
  display: block;
  margin-top: 3px;
  width: calc(100% - 70px);
}
.p-colorchoice.new .item-menu .list-sample__item .sample-box .detail-box .category {
  font-size: 16px;
  line-height: 1.1;
}
.p-colorchoice.new .item-menu .list-sample__item .sample-box .detail-box .name {
  font-size: 11px;
  line-height: 1.1;
  margin-top: 10px;
}
@media screen and (max-width: 575px) {
  .p-colorchoice.new .l-wrapper {
    height: 100%;
  }
  .p-colorchoice.new .l-head {
    height: auto;
  }
  .p-colorchoice.new .l-head .l-wrapper {
    align-items: unset;
  }
  .p-colorchoice.new .l-head__item {
    align-items: center;
    display: flex;
    justify-content: unset;
    width: 100%;
  }
  .p-colorchoice.new .l-head__item.logo {
    padding: 8px 20px 5px;
  }
  .p-colorchoice.new .l-head__item.link {
    background-color: #555;
    height: 50px;
    justify-content: space-between;
    margin-left: 0;
    width: 100%;
  }
  .p-colorchoice.new .l-main {
    height: calc(100% - 146px);
  }
  .p-colorchoice.new .flex-box {
    justify-content: unset;
    overflow: hidden;
    position: relative;
    width: 100%;
  }
  .p-colorchoice.new .item-monitor {
    height: 295px;
  }
  .p-colorchoice.new .item-menu {
    height: calc(100vh - 441px);
    position: relative;
    width: 100%;
  }
  .p-colorchoice.new .item-menu .item-tab {
    height: 100%;
  }
  .p-colorchoice.new .item-menu .item-category {
    margin-top: 0;
  }
}
.p-colorchoice.tab {
  background-color: #F0F0F0;
  border-top: unset;
}
.p-colorchoice.tab .l-main {
  height: calc(100vh - 108px);
  overflow: hidden;
  padding-bottom: 0;
  position: relative;
}
.p-colorchoice.tab .l-main .flex-box {
  position: relative;
}
.p-colorchoice.tab .l-wrapper {
  align-items: center;
  display: flex;
}
.p-colorchoice.tab .l-head {
  align-items: center;
  background-color: #AAABAA;
  box-shadow: unset;
  display: flex;
  height: 58px;
  justify-content: center;
}
.p-colorchoice.tab .l-head .l-wrapper {
  height: 100%;
}
.p-colorchoice.tab .l-head__item {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
}
.p-colorchoice.tab .l-head__item.link {
  margin-left: 26px;
}
.p-colorchoice.tab .l-head .nav-list {
  background-color: transparent;
  display: flex;
  height: 100%;
  overflow: hidden;
}
.p-colorchoice.tab .l-head .nav-list__item {
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
  padding-right: 2px;
}
.p-colorchoice.tab .l-head .nav-list__item:after {
  border: 31px solid transparent;
  border-right-width: 0;
  border-left-width: 22px;
  border-left-color: #ffffff;
  content: "";
  height: 0;
  margin: 0;
  right: 4px;
  top: -2px;
  transform: translateX(4px);
  position: absolute;
  width: 0;
  z-index: 1;
}
.p-colorchoice.tab .l-head .nav-list__item .link {
  align-items: center;
  color: #333;
  display: flex;
  font-weight: 600;
  height: 100%;
  padding-right: 20px;
  position: relative;
  z-index: 10;
}
.p-colorchoice.tab .l-head .nav-list__item .link:after {
  border: 29px solid transparent;
  border-right-width: 0;
  border-left-width: 20px;
  border-left-color: #e7dab4;
  content: "";
  position: absolute;
  height: 0;
  right: 0;
  top: 0;
  width: 0;
  z-index: 2;
}
.p-colorchoice.tab .l-head .nav-list__item .link .text {
  align-items: center;
  background-color: #E7DAB4;
  display: flex;
  height: 100%;
  justify-content: center;
  padding: 0 5px 0 10px;
  position: relative;
  width: auto;
}
.p-colorchoice.tab .l-head .nav-list__item .link:hover {
  cursor: pointer;
}
.p-colorchoice.tab .l-head .nav-list__item .link:hover::after {
  border-left-color: #ccc;
}
.p-colorchoice.tab .l-head .nav-list__item .link:hover .text {
  background-color: #ccc;
}
.p-colorchoice.tab .l-head .nav-list__item:first-child {
  z-index: 30;
}
.p-colorchoice.tab .l-head .nav-list__item:nth-child(n+2) {
  margin-left: -20px;
}
.p-colorchoice.tab .l-head .nav-list__item:nth-child(n+2) .link .text {
  padding-left: 30px;
}
.p-colorchoice.tab .l-head .nav-list__item:nth-child(2n) {
  z-index: 20;
}
.p-colorchoice.tab .item-contents {
  height: 100%;
}
.p-colorchoice.tab .item-monitor {
  position: sticky;
  top: 0;
}
.p-colorchoice.tab .item-menu {
  background-color: #555;
  display: block;
  height: calc(100vh - 108px);
  padding-top: 0;
  overflow-y: unset;
  max-height: unset;
  position: sticky;
  top: 0;
  width: 342px;
}
.p-colorchoice.tab .item-menu .item-fukidashi {
  align-items: center;
  background-color: #8C8884;
  display: flex;
  margin-bottom: 20px;
  padding: 10px;
  position: relative;
  width: 100%;
}
.p-colorchoice.tab .item-menu .item-fukidashi .close {
  align-items: center;
  border: none;
  background-color: #D9D9D9;
  border-radius: 50%;
  display: flex;
  height: 18px;
  justify-content: center;
  position: absolute;
  right: 10px;
  width: 18px;
}
.p-colorchoice.tab .item-menu .item-fukidashi .close:before, .p-colorchoice.tab .item-menu .item-fukidashi .close:after {
  background-color: #8C8884;
  content: "";
  height: 10px;
  position: absolute;
  width: 2px;
}
.p-colorchoice.tab .item-menu .item-fukidashi .close:before {
  transform: rotate(45deg);
}
.p-colorchoice.tab .item-menu .item-fukidashi .close:after {
  transform: rotate(-45deg);
}
.p-colorchoice.tab .item-menu .item-fukidashi .text {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}
.p-colorchoice.tab .item-menu .item-category {
  display: block;
}
.p-colorchoice.tab .item-menu .item-category__box {
  position: relative;
}
.p-colorchoice.tab .item-menu .item-category__box:nth-child(n+2) {
  margin-top: 20px;
}
.p-colorchoice.tab .item-menu .item-category__box .title {
  color: #fff;
}
.p-colorchoice.tab .item-menu .item-category__frame {
  box-sizing: border-box;
  display: block;
  width: 100%;
}
.p-colorchoice.tab .item-menu .item-category__frame .item-select {
  display: flex;
  width: 100%;
}
.p-colorchoice.tab .item-menu .item-category__frame .item-select .label {
  align-items: center;
  background-color: #333;
  color: #fff;
  display: flex;
  font-size: 15px;
  justify-content: center;
  width: 80px;
}
.p-colorchoice.tab .item-menu .item-category__frame .item-select .custom-select {
  position: relative;
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}
.p-colorchoice.tab .item-menu .item-category__frame .item-select .custom-select .selected {
  background-color: #fff;
  font-size: 13px;
  line-height: 1.2;
  padding: 13px 28px 10px 14px;
  position: relative;
  width: 100%;
}
.p-colorchoice.tab .item-menu .item-category__frame .item-select .custom-select .selected::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 5px solid #555;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
.p-colorchoice.tab .item-menu .item-category__frame .item-select .custom-select .option-list {
  background-color: #EFEEEE;
  border: 1px solid #D8D8D8;
  border-radius: 8px;
  display: none;
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  position: absolute;
  width: 100%;
  z-index: 10;
  overflow: hidden;
}
.p-colorchoice.tab .item-menu .item-category__frame .item-select .custom-select .option-list__item {
  background-color: #EFEEEE;
  font-size: 13px;
  padding: 10px 14px;
  transition: background-color 0.2s;
}
.p-colorchoice.tab .item-menu .item-category__frame .item-select .custom-select .option-list__item:hover {
  background-color: #E6E5E3;
}
.p-colorchoice.tab .item-menu .item-category__frame .item-select .custom-select .option-list__item.active {
  background-color: #C5C2BF;
  font-weight: bold;
}
.p-colorchoice.tab .item-menu .item-category__frame .item-select .custom-select.open .option-list {
  display: block;
}
.p-colorchoice.tab .item-menu .item-category__frame .item-select:nth-child(n+2) {
  margin-top: 20px;
}
.p-colorchoice.tab .item-menu .list-sample {
  border-bottom: 1px solid #fff;
  border-top: 1px solid #fff;
  display: block;
  margin-top: 10px;
  padding: 7px 0;
  width: 100%;
}
.p-colorchoice.tab .item-menu .list-sample__item {
  display: block;
  width: 100%;
}
.p-colorchoice.tab .item-menu .list-sample__item:nth-child(n+2) {
  border-top: 1px solid #fff;
  margin-top: 5px;
  padding-top: 5px;
}
.p-colorchoice.tab .item-menu .list-sample__item .sample-box {
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 100%;
}
.p-colorchoice.tab .item-menu .list-sample__item .sample-box .image {
  display: block;
  height: 56px;
  width: 56px;
}
.p-colorchoice.tab .item-menu .list-sample__item .sample-box .image img {
  display: block;
  width: 100%;
}
.p-colorchoice.tab .item-menu .list-sample__item .sample-box .detail-box {
  color: #fff;
  display: block;
  margin-top: 3px;
  width: calc(100% - 70px);
}
.p-colorchoice.tab .item-menu .list-sample__item .sample-box .detail-box .category {
  font-size: 16px;
  line-height: 1.1;
}
.p-colorchoice.tab .item-menu .list-sample__item .sample-box .detail-box .name {
  font-size: 11px;
  line-height: 1.1;
  margin-top: 10px;
}
@media screen and (max-width: 575px) {
  .p-colorchoice.tab .l-wrapper {
    height: 100%;
  }
  .p-colorchoice.tab .l-head {
    height: auto;
  }
  .p-colorchoice.tab .l-head .l-wrapper {
    align-items: unset;
  }
  .p-colorchoice.tab .l-head__item {
    align-items: center;
    display: flex;
    justify-content: unset;
    width: 100%;
  }
  .p-colorchoice.tab .l-head__item.logo {
    padding: 8px 20px 5px;
  }
  .p-colorchoice.tab .l-head__item.link {
    background-color: #555;
    height: 50px;
    justify-content: space-between;
    margin-left: 0;
    width: 100%;
  }
  .p-colorchoice.tab .l-main {
    height: calc(100% - 146px);
  }
  .p-colorchoice.tab .flex-box {
    justify-content: unset;
    overflow: hidden;
    position: relative;
    width: 100%;
  }
  .p-colorchoice.tab .item-monitor {
    height: 295px;
  }
  .p-colorchoice.tab .item-menu {
    height: calc(100vh - 441px);
    position: relative;
    width: 100%;
  }
  .p-colorchoice.tab .item-menu .item-tab {
    height: 100%;
  }
  .p-colorchoice.tab .item-menu .item-category {
    margin-top: 0;
  }
}/*# sourceMappingURL=style.css.map */