@charset "utf-8";

/*--調整--*/
.h_bar, 
#beltbnr {
	display: none;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
} 
.clearfix:before {
  content: "";
  display: block;
  clear: both;
} 
.clearfix {
  display: block;
}
#specialty a {
  text-decoration: none;
}

/*--フォント--*/
:root {
  --leading-trim: calc((1em - 1lh) / 2);
}

@supports not (top: 1lh) {
  :root {
    --leading-trim: 0px;
  }
}

/*--SP--*/
@media only screen and (max-width: 767px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }  
}

/*--PC--*/
@media only screen and (min-width: 768px) {
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
}  


/*=====MAIN=====*/
/*--main__wrapper--*/
.main__wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 40px 30px;
  background-color: #F3F4F0;
  text-align: center;
}

@media only screen and (min-width: 768px) {
  .main__wrapper {
    padding: 60px 0;
  }
}  

.main__wrapper .title {
  width: 100%;
  margin: 0 auto;
}

.main__wrapper .title h2 {
  font-family: "garamond-premier-pro", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 3.4rem;
  line-height: 2;
  color: #000000;
  margin-block: var(--leading-trim);
}

.main__wrapper .title p {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 2;
  color: #000000;
  margin-block: var(--leading-trim);
}

.main__wrapper .lead {
  width: 100%;
  margin: 40px auto 0;
}

.main__wrapper .lead p {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.4rem;
  line-height: 2;
  color: #000000;
  margin-block: var(--leading-trim);
  text-align: left;
}

@media only screen and (min-width: 768px) {
  .main__wrapper .lead p {
    text-align: center;
  }
}  


/*=====SORT=====*/
/*--gender__nav--*/
.gender__nav {
  width: 100%;
  margin: 40px auto 0;
}

@media only screen and (min-width: 768px) {
  .gender__nav {
    width: 900px;
  }
}  

.gender__nav ul {
  border-bottom: 1px solid #cccccc;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
}

.gender__nav li {
  position: relative;
  padding: 0 0 10px 0;
}

.gender__nav li a {
  font-family: "garamond-premier-pro", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2.0rem;
  line-height: 2;
  color: #cccccc;
  margin-block: var(--leading-trim);
}

.gender__nav li a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  background-color: transparent;
  left: 0;
  bottom: -1px;
}

.gender__nav li a:hover, 
.gender__nav li a.selected {
  color: #000000;
}

.gender__nav li a:hover::after, 
.gender__nav li a.selected::after {
  background-color: #000000;
}

/*--category__nav--*/
.category__nav {
  width: 300px;
  margin: 40px auto 0;
}

.category__nav .sortBtn {
  width: 300px;
  height: 40px;
  position: relative;
  border: 1px solid #707070;
  border-radius: 50px;
  cursor: pointer;
}

.category__nav .sortBtn.js-active {
  border-top: 1px solid #707070;
  border-bottom: none;
  border-left: 1px solid #707070;
  border-right: 1px solid #707070;
  border-radius: 20px 20px 0 0;
  cursor: pointer;
}

.category__nav .sortBtn p {
  width: calc(100% - 40px);
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 1.2rem;
  line-height: 40px;
  color: #000000;
  text-align: center;
}

.category__nav .sortBtn.js-active p {
  border-bottom: 1px solid #cccccc;
}

.category__nav .sortBtn svg {
  width: 10px;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}

.category__nav .sortBtn svg path {
  fill: #000000;
}

.category__nav .sortItem {
  border-bottom: 1px solid #707070;
  border-left: 1px solid #707070;
  border-right: 1px solid #707070;
  border-radius: 0 0 20px 20px;
  display: none;
}

.category__nav .sortItem.js-active {
  display: block;
}

.category__nav .sortItem li {
  width: calc(100% - 40px);
  margin: 0 auto;
  padding: 15px 0;
  border-bottom: 1px solid #cccccc;
  position: relative;
}

.category__nav .sortItem li:last-child {
  border: none;
}

.category__nav .sortItem li a {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 1.2rem;
  line-height: 2;
  color: #000000;
  text-align: center;
  margin-block: var(--leading-trim);
}

.category__nav .sortItem li a svg {
  width: 10px;
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  display: none;
}

.category__nav .sortItem li a svg path {
  fill: #000000;
}

.category__nav .sortItem li a.selected svg {
  display: block;
}


/*=====ITEM=====*/
/*--item__wrapper--*/
.item__wrapper {
  width: calc(100% - 60px);
  margin: 0 auto;
  padding: 40px 0;
}

@media only screen and (min-width: 768px) {
  .item__wrapper {
    width: 900px;
  }
}  

.item__wrapper .subTitle h3 {
  font-family: "garamond-premier-pro", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2.4rem;
  line-height: 2;
  color: #000000;
  text-align: center;
  margin-block: var(--leading-trim);
}

.item__wrapper .subTitle h3 span {
  font-family: "garamond-premier-pro", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2.4rem;
  line-height: 2;
  color: #000000;
  margin-block: var(--leading-trim);
}

/*--item__inner--*/
.item__inner {
  margin: 40px 0 0 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}

@media only screen and (min-width: 768px) {
  .item__inner {
    gap: 40px 15px;
  }
}

/*--monthHeader--*/
.monthHeader {
  width: 100%;
  margin: 20px 0;
  padding: 10px 0;
  border: 1px solid #cccccc;
  border-radius: 5px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 1.8rem;
  line-height: 2;
  color: #000000;
  text-align: center;
}

/*--item--*/
.item {
  width: 100%;
  margin: 0 0 40px 0;
  padding: 0 0 40px 0;
  border-bottom: 1px solid #cccccc;
}

@media only screen and (min-width: 768px) {
  .item {
    width: calc((100% - 30px) / 3);
    margin: 0;
    padding: 0;
    border-bottom: none;
  }
}  

.item:last-child {
  padding: 0;
  border-bottom: none;
}

.item .itemIcon {
  width: calc(100% - 20px);
  margin: 20px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.item .itemIcon span {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #000000;
  margin-block: var(--leading-trim);
}

.item .itemIcon span:nth-of-type(1) {
  padding: 7px 17px;
  border: 1px solid #000000;
  border-radius: 50px;
}

.item .itemIcon span:nth-of-type(2) {
  padding: 7px 17px;
  border: 1px solid #000000;
  border-radius: 5px;
}

.item .itemName {
  width: calc(100% - 20px);
  margin: 20px auto 0;
}

.item .itemName .name__inner {
  word-break: break-all;
}

.item .itemName h4 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 2.4rem;
  line-height: 1;
  color: #000000;
  text-align: left;
}

.item .itemName p {
  margin-top: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.4rem;
  line-height: 1;
  color: #666666;
  text-align: left;
}

@media only screen and (min-width: 768px) {
  .item .itemName {
    height: 70px;
    display: flex;
    justify-content: stretch;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .item .itemName h4 {
    font-size: 1.8rem;
  }
  
  .item .itemName p {
    font-size: 1.2rem;
  }
}  

.item .itemCredit {
  width: calc(100% - 20px);
  margin: 20px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.item .itemCredit .price p:nth-of-type(1) {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1;
  color: #000000;
  text-align: left;
}

.item .itemCredit .price p:nth-of-type(2) {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.4rem;
  line-height: 1;
  color: #666666;
  text-align: left;
}

@media only screen and (min-width: 768px) {
  .item .itemCredit .price p:nth-of-type(1) {
    font-size: 1.4rem;
  }
  
  .item .itemCredit .price p:nth-of-type(2) {
    font-size: 1.2rem;
  }
}  

.item .itemCredit .btn {
  position: relative;
}

.item .itemCredit .btn a {
  display: block;
  padding: 5px 45px;
  background-color: #000000;
  border: 1px solid #000000;
  border-radius: 20px;
  transition: .3s cubic-bezier(0.45, 0, 0.55, 1);
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #ffffff;
  margin-block: var(--leading-trim);
}

@media only screen and (min-width: 768px) {
  .item .itemCredit .btn a {
    font-size: 1.2rem;
  }
}  

.item .itemCredit .btn:hover a {
  background-color: #ffffff;
  color: #000000;
}

.item .itemCredit .btn svg {
  width: 10px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;;
}

.item .itemCredit .btn svg path {
  fill: #ffffff;
}

.item .itemCredit .btn:hover svg path {
  fill: #000000;
}


/*--アニメーション--*/
.fadeIn{
  opacity: 0;
  transform: translateY(50px);
}

.active.fadeIn {
  animation-name: fadeIn;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}