@charset "UTF-8";

*{
  box-sizing: border-box;
}

body {
  font-family: YuGothic, "Yu Gothic Medium", "Yu Gothic", Meiryo, sans-serif;
}

.pane-contents{
  padding-bottom: 0;
}

img{
  max-width: 100%;
}

.container a{
  text-decoration: none;
}

.pc{
  display: block;
}

.sp {
  display: none;
}

#mv {
  margin-bottom: 100px;
}

p {
  line-height: 1.5em;
}

#intro{
  margin-bottom: 100px;
  font-size: 32px;
}

/* <!-- #nav --> */
#nav-container {
  display: block; /* flexをblockに変更 */
}

#nav-container ul {
  display: flex;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: stretch; /* これで高さが揃う */
}

.nav-card {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s;
}

.nav-card a {
  display: flex; /* aタグをflexに */
  flex-direction: column; /* 縦並び */
  height: 100%; /* 親要素いっぱいに */
  text-decoration: none;
  color: inherit;
}

.nav-card:hover {
  transform: translateY(-5px);
}

.icon-area {
  background-color: white;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1; /* 残りスペースを埋める */
  min-height: 180px;
  /* max-height: 340px; これは削除 */
}

.action-area {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  font-size: 28px;
  font-weight: bold;
  flex-shrink: 0; /* 縮まないように */
}

.icon-label {
  font-size: 20px;
  text-align: center;
  line-height: 1.3;
  font-weight: bold;
  margin-bottom: 15px;
}

.pink .icon-area .icon-label{
  color: #c68a8a!important;
}

.blue .icon-area .icon-label{
  color: #6a9bc5!important;
}

.green .icon-area .icon-label{
  color: #5a8c4a!important;
}

.action-area {
  padding: 0 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  font-size: 28px;
  font-weight: bold;
}

.green {
  background-color: #5a8c4a;
}

.pink {
  background-color: #c68a8a;
}

.blue {
  background-color: #6a9bc5;
}

.green .icon-area {
  border: 15px solid #5a8c4a;
  border-radius: 30px;
}

.pink .icon-area {
  border: 15px solid #c68a8a;
  border-radius: 30px;
}

.blue .icon-area {
  border: 15px solid #6a9bc5;
  border-radius: 30px;
}

/* 下向き3本線マーク (CSSで作成) */
.chevron-down {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 5px;
  position: relative;
}

.chevron-down span {
  width: 16px;
  height: 16px;
  border-left: 2.5px solid rgba(255, 255, 255, 0.9);
  border-bottom: 2.5px solid rgba(255, 255, 255, 0.9);
  transform: rotate(-45deg);
  margin-top: -5px;
}

.chevron-down span:nth-child(2) {
  opacity: 0.75;
}

.chevron-down span:nth-child(3) {
  opacity: 0.6;
}

/* arrow */

.arrow{
  text-align: center;
    margin: 100px 0;
}


/* <!-- #item --> */

#item{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

#scissors{
  background-color: #F4CDCE;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}

#ruler{
  background-color: #BBD7ED;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}

#clipboard{
  background-color: #C9E1A5;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}

#item h3{
  font-size:18px;
  text-align: left;
  line-height: 1.2;
  margin-bottom: 5px;
}

#item img {
  vertical-align: bottom;
  margin: 0;
  padding: 0;
}

#item .name {
  margin-top: 20px;
  /* text-align-last: left; */
  text-align-last: left;
  font-size: 23px;
  color: #FFF;
}

#item .value {
  margin-top: 10px;
  font-size: 40px;
  color: #FFF;
}

#item .value span {
  font-size: 20px;
}

#item .detail {
  font-size: 28px;
  font-weight: bold;
  text-decoration: none;
  background-color: #fff;
  padding: 15px;
  display: block;
  color: #c68a8a;
}

#item #ruler .detail {
  color: #6699C7;
}

#item #clipboard .detail {
  color: #638D46;
}

.item_box{
  margin: 0 auto 30px;
  width: 1024px;
  padding: 0 30px;
}

.flex_item{
  width: 49%;
  margin-bottom: 20px;
}

.flex_item:nth-of-type(odd){
  margin-right: 16px;
}

.title{
  padding: 40px;
  color: #FFF;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  margin-bottom: 50px;
}

.title h2{
  font-size: 60px;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.title span{
  display: block;
  width: 125px;
  background: #FFF;
  padding: 15px;
  margin-right: 20px;
  border-radius: 50%;
}

.point-card {
  width: 100%;
  background: white;
  border-left: 12px solid #c68a8a;
  border-radius: 40px;
  position: relative;
  margin: 0 auto 50px;
  padding: 10px;
}

#ruler .point-card{
  border-left: 12px solid #6a9bc5;
}

#clipboard .point-card{
  border-left: 12px solid #5a8c4a;
}

.point-card_inner{
  border: 2px solid #c68a8a;
  padding: 20px;
  border-radius: 30px;
}

#ruler .point-card_inner{
  border: 2px solid #6a9bc5;
}

#clipboard .point-card_inner{
  border: 2px solid #5a8c4a;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  position: relative;
}

.icon-circle {
  position: absolute;
  left: 0;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#scissors .icon-circle{
  background-color: #F4CDCE;
}

#ruler .icon-circle{
  background-color: #BBD7ED;
}

#clipboard .icon-circle{
  background-color: #C9E1A5;
}

.icon-circle::before {
  content: '';
  display: block;
  width: 75%;
  height: 75%;
  background-image: url('https://www.infirmiere.co.jp/img/usr/feature/fea-left-handed-nurseitems/scissors_icon.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  font-size: 3rem;
  color: white;
}

#ruler .icon-circle::before{
  background-image: url('https://www.infirmiere.co.jp/img/usr/feature/fea-left-handed-nurseitems/ruler_icon.png');
}

#clipboard .icon-circle::before{
  background-image: url('https://www.infirmiere.co.jp/img/usr/feature/fea-left-handed-nurseitems/clipboard_icon.png');
}

.header-badge {
  color: white;
  padding: 10px 100px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 2rem;
  font-weight: bold;
}

.point-icon {
  width: 50px;
  height: 50px;
}

.point-icon::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-image: url('https://www.infirmiere.co.jp/img/usr/feature/fea-left-handed-nurseitems/point.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.main-title {
  padding: 25px 40px;
}

.main-title h2 {
  font-size: 2.2rem;
  font-weight: bold;
  color: #333;
  line-height: 1.4;
  position: relative;
  display: block;
  text-align: center;
}

.highlight {
  background: linear-gradient(transparent 60%, #fff59d 60%);
  padding: 0 5px;
}

.description {
  font-size: 1.15rem;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.8;
}

.tags {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.tag {
  background-color: #F5F5F5;
  color: #333;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
}

.tag::before {
  content: '#';
  margin-right: 5px;
  color: #c68a8a;
}

#ruler .tag::before {
  color: #6699C7;
}

#clipboard .tag::before {
  color: #638D46;
}

#item .button p{
  font-family: YuGothic, "Yu Gothic Medium", "Yu Gothic", Meiryo, sans-serif;
  text-align: center;
}

.flex_box{
  display: flex;
  flex-wrap: wrap;
}

#scissors .flex_box{
  align-items: flex-start;
}

.flex_item{
  border-radius: 30px;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  padding: 20px;
  width: 49%;
}

.flex_item:nth-of-type(n+5){
  background-color: #005599;
}

.flex_item:last-of-type{
  margin-bottom: 0;
  white-space: nowrap;
}


/* <!-- .click_banner --> */

.click_banner{
  padding: 100px 0;
}

.click_banner_inner{
  background-color: #F26522;
  padding: 30px;
  border-radius: 40px;
  width: 800px;
  margin: 0 auto;
}

.click_banner p{
  font-weight: bold;
  color: #fff;
  margin-bottom: 5px;
  font-size: 28px;
}


/* SP */

@media screen and (max-width: 520px) { /* SP */

.pc {
    display: none;
}

.sp {
    display: block;
}

#scissors,
#ruler,
#clipboard {
  scroll-margin-top: 60px;
}

.pane-main > div:last-child{
  padding-bottom: 0;
}

#mv {
  margin-bottom: 50px;
}

h1 {
  margin-bottom: 10px;
}

h2 {
  background-color: transparent;
  font-weight: normal;
  padding-left: 0;
}

.heading{
  margin-bottom: 30px;
}

/* <!-- navi --> */
/* <!-- navi --> */
#nav-container ul {
  gap: 7px;
  margin: 0 calc(50% - 50vw);
  padding: 0 10px;
}

.nav-card {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.icon-label {
  margin-bottom: 7px;
  font-size: 10px;
}

.icon-area {
  padding: 5px;
  min-height: 0;
}

.pink .icon-area {
  border: 7px solid #c68a8a;
  border-radius: 22px;
}

.blue .icon-area {
  border: 7px solid #6a9bc5;
  border-radius: 22px;
}

.green .icon-area {
  border: 7px solid #5a8c4a;
  border-radius: 22px;
}

.action-area {
  font-size: 12px;
  padding: 0px 10px 10px 10px;
}

.action-area span {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.chevron-down span {
  width: 10px;
  height: 10px;
  margin-top: -4px;
}

/* <!-- #intro --> */

#intro{
  margin-bottom: 50px;
}

#intro p{
  font-size: 20px;
}

/* <!-- #item --> */

.title span{
  width: 35px;
  padding: 3.5px;
  margin-right: 10px;
  display: flex;
}

.point-card {
  padding: 10px;
  border-radius: 30px;
  margin: 0 auto 30px;
  border-left: 7px;
}

#scissors .point-card{
  border-left: 7px solid #c68a8a;
}

#ruler .point-card{
  border-left: 7px solid #6a9bc5;
}

#clipboard .point-card{
  border-left: 7px solid #5a8c4a;
}

.point-card_inner{
  padding: 10px;
}

.icon-circle {
  width: 40px;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
}

.icon-circle::before {
  font-size: 2rem;
}

.header-badge {
  padding: 5px 10px;
  font-size: 12px;
  gap: 0;
}

.header-badge span{
  font-size: 16px;
}

.point-icon {
  width: 25px;
  height: 25px;
  margin-right: 5px;
}

.main-title{
  padding: 0;
}

.main-title h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.highlight{
  padding: 0;
}

.description {
  font-size: 1rem;
  line-height: 1.5;
}

.tags{
  gap: 8px;
}

.tag {
  font-size: 0.9rem;
  padding: 6px 15px;
}

.item_box{
  margin: 0;
  width: 100%;
}

#item .name {
  margin-top: 10px;
  font-size: 16px;
  letter-spacing: 0.03em;
  text-align: left;
}

#item .value {
  margin-top: 10px;
  font-size: 26px;
  line-height: 1;
}

#item .value span {
  font-size: 16px;
  letter-spacing: 0.01em;
}

#item .detail {
  margin-top: 10px;
  font-size: 20px;
  padding: 10px;
}

#item .flex_item{
  width: 100%;
  margin-bottom: 20px;
  }

  .flex_item:nth-of-type(odd){
    margin-right: 0;
  }

  .flex_item:last-of-type{
  white-space: normal;
}

  .title{
    padding: 20px;
    margin-bottom: 30px;
  }

  .title h2{
    font-size: 6.5vw;
  }

  /* <!-- .click_banner --> */

  .click_banner{
    padding: 30px 0;
  }

  .click_banner_inner{
    padding: 10px;
    border-radius: 20px;
    width: 100%;
  }

  .click_banner p{
    font-size: 4.5vw;
    line-height: 1.2;
    margin-bottom: 3px;
  }

/* 在庫切れ商品のスタイル */
  .flex_item.sold-out .item_img::after {
    font-size: 20px;
    line-height: 1.4;
  }
	
  .flex_item.sold-out .item_img::after{
    width: 90%;
  }

}