@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@400;500;700&display=swap");
@import url("https://use.typekit.net/jid5chq.css");
@keyframes flip {
  0% {
    transform: rotateY(0deg);
  }
  40% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(180deg);
  }
  90% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}
@keyframes flip2 {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
@keyframes down {
  0% {
    transform: rotate(0deg) translateY(0px);
  }
  10% {
    transform: rotate(0deg) translateY(0px);
  }
  40% {
    transform: rotate(0deg) translateY(10px);
  }
  60% {
    transform: rotate(0deg) translateY(10px);
  }
  90% {
    transform: rotate(0deg) translateY(0px);
  }
  100% {
    transform: rotate(0deg) translateY(0px);
  }
}
@keyframes line {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
section.mylist {
  width: 100%;
  padding: 120px 0;
  background-color: #FFF;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}
section.mylist > h3 {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 16px 0;
  margin-bottom: 40px;
}
section.mylist > h3::before {
  content: "";
  width: 120px;
  height: 120px;
  background-color: #009d96;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80px;
  border-radius: 60px;
  display: block;
}
section.mylist > h3 span {
  color: #009d96;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}
section.mylist .breadcrumb {
  width: calc(100% - 240px);
  max-width: 1280px;
  border-top: solid 1px #4E4E4E;
  border-bottom: solid 1px #4E4E4E;
}
section.mylist .breadcrumb:not(:last-child) {
  margin-bottom: 40px;
}
section.mylist .breadcrumb > div {
  padding: 16px 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0 8px;
}
section.mylist .breadcrumb > div a {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
}
section.mylist .breadcrumb > div span {
  color: #4E4E4E;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
}
section.mylist .sort {
  width: calc(100% - 240px);
  max-width: 1280px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}
section.mylist .sort:not(:last-child) {
  margin-bottom: 40px;
}
section.mylist .sort .category {
  width: 240px;
  position: relative;
}
section.mylist .sort .category.on > div {
  background-color: #009d96;
}
section.mylist .sort .category.on ul {
  opacity: 1;
  pointer-events: auto;
}
section.mylist .sort .category > div {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  width: 100%;
  height: 40px;
  border-radius: 4px;
  background-color: #4E4E4E;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  transition: all 0.25s ease-in 0s;
  position: relative;
  z-index: 1;
}
section.mylist .sort .category > div::before {
  content: "";
  width: 16px;
  height: 12px;
  background-image: url(../images/icon_list.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: block;
  position: absolute;
  top: calc(50% - 6px);
  left: 16px;
}
section.mylist .sort .category ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  background-color: #FFF;
  padding: 56px 16px 16px 16px;
  border: solid 1px #009d96;
  border-radius: 4px;
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease-in 0s;
}
section.mylist .sort .category ul li {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  text-align: left;
  width: 100%;
  padding: 4px;
  border-radius: 4px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0 8px;
  transition: all 0.25s ease-in 0s;
}
section.mylist .sort .category ul li:hover {
  color: #FFF;
  background-color: #009d96;
}
section.mylist .sort .category ul li:hover a {
  color: #FFF;
}
section.mylist .sort .search {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0 8px;
  margin: 0 0 0 auto;
}
section.mylist .sort .search p {
  color: #4E4E4E;
  font-family: "poppins", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
}
section.mylist .sort .search .form form {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}
section.mylist .sort .search .form form input {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
section.mylist .sort .search .form form input[type^=text] {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  width: 240px;
  height: 40px;
  padding: 8px;
  border: solid 1px #B6C0CA;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  box-sizing: border-box;
}
section.mylist .sort .search .form form input[type^=submit] {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  width: 120px;
  height: 40px;
  background-color: #4E4E4E;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
section.mylist .result {
  width: calc(100% - 240px);
  max-width: 1280px;
  padding: 16px 0;
  margin: 0 auto 24px auto;
  border-radius: 4px;
  background-color: #ECE7E0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 0 24px;
}
section.mylist .result h4 {
  color: #4E4E4E;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
}
section.mylist .result p {
  color: #4E4E4E;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
}
section.mylist .inner {
  width: calc(100% - 240px);
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 40px 24px;
}
section.mylist .inner:not(:last-child) {
  margin-bottom: 40px;
}
section.mylist .inner > div {
  width: calc((100% - 96px) / 5);
}
section.mylist .inner > div a {
  width: 100%;
}
section.mylist .inner > div a:hover figure img {
  transform: scale(1.05);
}
section.mylist .inner > div a figure {
  width: 100%;
  margin-bottom: 16px;
  overflow: hidden;
}
section.mylist .inner > div a figure img {
  width: 100%;
  transition: all 0.25s ease-in 0s;
}
section.mylist .inner > div a dl dt {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px 0;
  margin-bottom: 16px;
}
section.mylist .inner > div a dl dt span:nth-child(1) {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  padding: 4px 8px;
  background-color: #009d96;
  border-radius: 4px;
  order: 2;
}
section.mylist .inner > div a dl dt span:nth-child(2) {
  color: #009d96;
  font-family: neuzeit-grotesk, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  order: 1;
}
section.mylist .inner > div a dl dd {
  color: #4E4E4E;
  font-family: neuzeit-grotesk, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  text-align: left;
}
section.mylist .wp-pagenavi {
  width: calc(100% - 240px);
  padding: 16px;
  margin: 0 auto;
  border-radius: 4px;
  background-color: #ECE7E0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 0 8px;
}
section.mylist .wp-pagenavi:not(:last-child) {
  margin-bottom: 80px;
}
section.mylist .wp-pagenavi span {
  color: #4E4E4E;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  width: 24px;
  height: 24px;
  padding: 0px;
  margin: 0px;
  border: none;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
section.mylist .wp-pagenavi span.pages {
  display: none;
}
section.mylist .wp-pagenavi span.current {
  color: #009d96;
  background-color: #FFF;
  border-radius: 4px;
}
section.mylist .wp-pagenavi a {
  color: #4E4E4E;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  width: 24px;
  height: 24px;
  padding: 0px;
  margin: 0px;
  border: none;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  transition: all 0.25s ease-in 0s;
}
section.mylist .wp-pagenavi a:hover {
  color: #009d96;
}
section.mylist .wp-pagenavi a.previouspostslink {
  background-image: url(../../common/images/arrow_black.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  position: absolute;
  left: 16px;
  transform: rotate(180deg);
}
section.mylist .wp-pagenavi a.previouspostslink:hover {
  opacity: 0.5;
}
section.mylist .wp-pagenavi a.nextpostslink {
  background-image: url(../../common/images/arrow_black.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  position: absolute;
  right: 16px;
}
section.mylist .wp-pagenavi a.nextpostslink:hover {
  opacity: 0.5;
}
section.mylist .comingsoon {
  width: calc(100% - 240px);
  max-width: 1280px;
  margin: 0 auto;
}
section.mylist .comingsoon:not(:last-child) {
  margin-bottom: 40px;
}
section.mylist .comingsoon h4 {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 16px 0;
}
section.mylist .comingsoon h4::before {
  content: "";
  width: 80px;
  height: 80px;
  background-image: url(../../common/images/icon_cs.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border-radius: 40px;
  display: block;
}
section.mylist .comingsoon h4:not(:last-child) {
  margin-bottom: 40px;
}
section.mylist .comingsoon h4 span {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}
section.mylist .comingsoon .incs {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 32px 16px;
}
section.mylist .comingsoon .incs > div {
  width: calc((100% - 64px) / 5);
}
section.mylist .comingsoon .incs > div a {
  width: 100%;
}
section.mylist .comingsoon .incs > div a:hover figure img {
  transform: scale(1.05);
}
section.mylist .comingsoon .incs > div a figure {
  width: 100%;
  margin-bottom: 16px;
  overflow: hidden;
}
section.mylist .comingsoon .incs > div a figure img {
  width: 100%;
  transition: all 0.25s ease-in 0s;
}
section.mylist .comingsoon .incs > div a dl dt {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px 0;
  margin-bottom: 16px;
}
section.mylist .comingsoon .incs > div a dl dt span:nth-child(1) {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  padding: 4px 8px;
  background-color: #009d96;
  border-radius: 4px;
  order: 2;
}
section.mylist .comingsoon .incs > div a dl dt span:nth-child(2) {
  color: #009d96;
  font-family: neuzeit-grotesk, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  order: 1;
}
section.mylist .comingsoon .incs > div a dl dd {
  color: #4E4E4E;
  font-family: neuzeit-grotesk, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  text-align: left;
}
section.mylist .btn {
  width: 25%;
  margin: 0 auto;
}
section.mylist .btn a {
  width: 100%;
  height: 56px;
  background-color: #000;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  transition: all 0.25s ease-in 0s;
}
section.mylist .btn a:hover {
  background-color: #009d96;
}
section.mylist .btn a span {
  color: #FFF;
  font-family: neuzeit-grotesk-condensed, sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}
section.mylist#selldisc h3::before {
  background-image: url(../../common/images/icon_media.svg);
}
section.mylist#nowshow h3::before {
  background-image: url(../../common/images/icon_onshow.svg);
}

/* --------------------------------------- Media Queries Smartphone --------------------------------------- */
@media screen and (max-width: 768px) {
  section.mylist {
    padding: 56px 0;
  }
  section.mylist > h3 {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 16px 0;
    margin-bottom: 40px;
  }
  section.mylist > h3::before {
    width: 80px;
    height: 80px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40px;
    border-radius: 40px;
  }
  section.mylist > h3 span {
    color: #009d96;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.05em;
    font-feature-settings: "palt";
  }
  section.mylist .breadcrumb {
    width: calc(100% - 32px);
  }
  section.mylist .breadcrumb:not(:last-child) {
    margin-bottom: 24px;
  }
  section.mylist .breadcrumb > div {
    padding: 16px 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0 8px;
  }
  section.mylist .breadcrumb > div a {
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  section.mylist .breadcrumb > div span {
    color: #4E4E4E;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  section.mylist .sort {
    width: calc(100% - 32px);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
  }
  section.mylist .sort:not(:last-child) {
    margin-bottom: 40px;
  }
  section.mylist .sort .category {
    width: calc(40% - 16px);
    position: relative;
  }
  section.mylist .sort .category.on > div {
    background-color: #009d96;
  }
  section.mylist .sort .category.on ul {
    opacity: 1;
    pointer-events: auto;
  }
  section.mylist .sort .category > div {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
    height: 32px;
    padding: 0 16px 0 0;
    justify-content: flex-end;
  }
  section.mylist .sort .category > div::before {
    width: 13px;
    height: 10px;
    top: calc(50% - 5px);
    left: 8px;
  }
  section.mylist .sort .category ul {
    width: 200%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
    background-color: #FFF;
    padding: 56px 16px 16px 16px;
    border: solid 1px #009d96;
    border-radius: 4px;
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease-in 0s;
  }
  section.mylist .sort .category ul li {
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0em;
    font-feature-settings: "palt";
    text-align: left;
    width: 100%;
    padding: 4px;
    border-radius: 4px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 0 8px;
    transition: all 0.25s ease-in 0s;
  }
  section.mylist .sort .category ul li:hover {
    color: #FFF;
    background-color: #009d96;
  }
  section.mylist .sort .category ul li:hover a {
    color: #FFF;
  }
  section.mylist .sort .search {
    width: calc(60% - 16px);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 0 8px;
    margin: 0 0 0 auto;
  }
  section.mylist .sort .search p {
    color: #4E4E4E;
    font-family: "poppins", sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  section.mylist .sort .search .form form input[type^=text] {
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
    width: calc(100% - 64px);
    height: 32px;
    padding: 8px;
  }
  section.mylist .sort .search .form form input[type^=submit] {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
    width: 64px;
    height: 32px;
  }
  section.mylist .inner {
    width: calc(100% - 32px);
    max-width: 100%;
    gap: 24px 16px;
  }
  section.mylist .inner:not(:last-child) {
    margin-bottom: 40px;
  }
  section.mylist .inner > div {
    width: calc((100% - 16px) / 2);
  }
  section.mylist .inner > div a {
    width: 100%;
  }
  section.mylist .inner > div a:hover figure img {
    transform: scale(1);
  }
  section.mylist .inner > div a figure {
    width: 100%;
    margin-bottom: 16px;
    overflow: hidden;
  }
  section.mylist .inner > div a figure img {
    width: 100%;
    transition: all 0.25s ease-in 0s;
  }
  section.mylist .inner > div a dl dt {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px 0;
    margin-bottom: 16px;
  }
  section.mylist .inner > div a dl dt span:nth-child(1) {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
    padding: 4px 8px;
    background-color: #009d96;
    border-radius: 4px;
    order: 1;
  }
  section.mylist .inner > div a dl dt span:nth-child(2) {
    color: #009d96;
    font-family: neuzeit-grotesk, sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
    order: 2;
  }
  section.mylist .inner > div a dl dd {
    color: #4E4E4E;
    font-family: neuzeit-grotesk, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0em;
    font-feature-settings: "palt";
    text-align: left;
  }
  section.mylist .wp-pagenavi {
    width: calc(100% - 32px);
    padding: 8px;
  }
  section.mylist .wp-pagenavi:not(:last-child) {
    margin-bottom: 40px;
  }
  section.mylist .wp-pagenavi span {
    color: #4E4E4E;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
    width: 24px;
    height: 24px;
    padding: 0px;
    margin: 0px;
    border: none;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
  }
  section.mylist .wp-pagenavi span.pages {
    display: none;
  }
  section.mylist .wp-pagenavi span.current {
    color: #009d96;
    background-color: #FFF;
    border-radius: 4px;
  }
  section.mylist .wp-pagenavi a {
    color: #4E4E4E;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
    width: 24px;
    height: 24px;
    padding: 0px;
    margin: 0px;
    border: none;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    transition: all 0.25s ease-in 0s;
  }
  section.mylist .wp-pagenavi a:hover {
    color: #009d96;
  }
  section.mylist .wp-pagenavi a.previouspostslink {
    background-image: url(../../common/images/arrow_black.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    text-align: left;
    text-indent: 999%;
    white-space: nowrap;
    display: block;
    overflow: hidden;
    position: absolute;
    left: 16px;
    transform: rotate(180deg);
  }
  section.mylist .wp-pagenavi a.previouspostslink:hover {
    opacity: 0.5;
  }
  section.mylist .wp-pagenavi a.nextpostslink {
    background-image: url(../../common/images/arrow_black.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    text-align: left;
    text-indent: 999%;
    white-space: nowrap;
    display: block;
    overflow: hidden;
    position: absolute;
    right: 16px;
  }
  section.mylist .wp-pagenavi a.nextpostslink:hover {
    opacity: 0.5;
  }
  section.mylist .comingsoon {
    width: calc(100% - 32px);
    margin: 0 auto;
  }
  section.mylist .comingsoon:not(:last-child) {
    margin-bottom: 40px;
  }
  section.mylist .comingsoon h4 {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 16px 0;
  }
  section.mylist .comingsoon h4::before {
    content: "";
    width: 80px;
    height: 80px;
    background-image: url(../../common/images/icon_cs.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border-radius: 40px;
    display: block;
  }
  section.mylist .comingsoon h4:not(:last-child) {
    margin-bottom: 40px;
  }
  section.mylist .comingsoon h4 span {
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.05em;
    font-feature-settings: "palt";
  }
  section.mylist .comingsoon .incs {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: 24px 16px;
  }
  section.mylist .comingsoon .incs > div {
    width: calc((100% - 16px) / 2);
  }
  section.mylist .comingsoon .incs > div a {
    width: 100%;
  }
  section.mylist .comingsoon .incs > div a:hover figure img {
    transform: scale(1);
  }
  section.mylist .comingsoon .incs > div a figure {
    width: 100%;
    margin-bottom: 16px;
    overflow: hidden;
  }
  section.mylist .comingsoon .incs > div a figure img {
    width: 100%;
    transition: all 0.25s ease-in 0s;
  }
  section.mylist .comingsoon .incs > div a dl dt {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px 0;
    margin-bottom: 16px;
  }
  section.mylist .comingsoon .incs > div a dl dt span:nth-child(1) {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
    padding: 4px 8px;
    background-color: #009d96;
    border-radius: 4px;
    order: 1;
  }
  section.mylist .comingsoon .incs > div a dl dt span:nth-child(2) {
    color: #009d96;
    font-family: neuzeit-grotesk, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
    order: 2;
  }
  section.mylist .comingsoon .incs > div a dl dd {
    color: #4E4E4E;
    font-family: neuzeit-grotesk, sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.05em;
    font-feature-settings: "palt";
    text-align: left;
  }
  section.mylist .btn {
    width: 25%;
    margin: 0 auto;
  }
  section.mylist .btn a {
    width: 100%;
    height: 56px;
    background-color: #000;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    transition: all 0.25s ease-in 0s;
  }
  section.mylist .btn a:hover {
    background-color: #009d96;
  }
  section.mylist .btn a span {
    color: #FFF;
    font-family: neuzeit-grotesk-condensed, sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.1em;
    font-feature-settings: "palt";
  }
  section.mylist#selldisc h3::before {
    background-image: url(../../common/images/icon_media.svg);
  }
  section.mylist#nowshow h3::before {
    background-image: url(../../common/images/icon_onshow.svg);
  }
}

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