@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;600;700&display=swap');



/*-----------------------------------------
-------------------------------------------
-------------------------------------------
-------------------------------------------

目次　※各々レスポンシブ対応あり

01 共通部分設定＆リセットCSS
02 ヘッダーの設定
03 コンテンツの設定
04 フッターの設定

-------------------------------------------
-------------------------------------------
-----------------------------------------*/

/*-----------------------------------------
01 共通部分設定＆リセットCSS
-------------------------------------------*/
body {
  padding: 0;
  margin: 0;
}

div.body {
  margin: auto;
  min-width: 1100px;
}

@media screen and (max-width:768px) {
  div.body {
    min-width: auto;
  }
}

div.body * {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.center {
  width: calc(100% - 30px);
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.center2 {
  width: calc(100% - 30px);
  max-width: 1100px;
  margin: auto;
  text-align: center;
}


@media screen and (max-width:768px) {
  .center {
    max-width: 500px;
  }

  .center2 {
    max-width: 500px;
  }
}

.body a {
  transition: all 0.3s ease 0s;
  text-decoration: none;
}

.body a:hover {
  opacity: 1;
}

.body img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

.body p,
.body a,
.body h1,
.body h2,
.body h3,
.body h4,
.body li,
.body span,
.body div {
  text-shadow: none;
  margin: auto;
  padding: 0;
  font-family: 'Noto Sans JP', sans-serif !important;
  color: var(--gray01);
}

.body li {
  list-style: none;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width:768px) {
  .sp {
    display: block;
  }

  .pc {
    display: none;
  }
}


.fnt-main {
  font-family: 'Noto Sans JP', sans-serif;
}

:root {
  --green01: #00AE8D;
  --green02: #AAE8DB;
  --black01: #3E3A39;
  --black02: #3E4E57;
}

/*-----------------------------------------
01 共通部分設定＆リセットCSS　ここまで
-------------------------------------------*/

/*-----------------------------------------
02 ヘッダーの設定
-------------------------------------------*/
.lp-banner a:hover {
  opacity: 0.7;
}

.headGrp .wrap01 {
  padding: 40px 0;
}

.headGrp .wrap02 {
  padding-bottom: 30px;
}

h2.title_h2 {
  color: var(--green01);
  display: inline-block;
  width: auto;
  margin: auto auto 40px;
  padding: 20px 0px;
  font-size: 40px;
  font-weight: 700;
  position: relative;
  background: none;
}

h2.title_h2::after {
  content: "";
  display: block;
  width: 220px;
  height: 10px;
  background: var(--green02);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.headGrp .wrap02 div.grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 20px;
}

div.kao-about p {
  text-align: left;
  font-weight: 600;
  font-size: 17px;
  color: var(--black01);
  margin-bottom: 1em;
  line-height: 1.75;
}

div.kao-about p.grn {
  color: var(--green01);
}

.headGrp .wrap03 div.flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

div.kao-illust {
  width: 25%;
  margin: 0;
  padding: 2% 1%;
}

div.kao-illust p {
  font-size: 18px;
  font-weight: 700;
  color: var(--black02);
}

div.wrap09 div.center {
  max-width: 800px;
}

@media screen and (max-width:768px) {
  h2.title_h2 {
    font-size: 30px;
  }

  h2.title_h2::after {
    width: 120px;
    height: 7px;
  }
}

@media screen and (max-width:500px) {
  h2.title_h2 {
    font-size: 7vw;
  }

  h2.title_h2::after {
    width: 30vw;
    height: 2vw;
  }
}



/*まとめ買い*/
div.label_inner {
  position: absolute;
  top: -6px;
  left: -6px;
  width: 100px;
  height: 100px;
  overflow: hidden;
}

p.ribbon {
  display: inline-block;
  position: absolute;
  padding: 4px 0;
  right: -18px;
  top: 22px;
  width: 160px;
  text-align: center;
  font-size: 14px;
  background: #FF1E21;
  color: #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

p.ribbon:before,
.ribbon:after {
  position: absolute;
  content: "";
  border-top: 4px solid #A20002;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  bottom: -4px;
}

p.ribbon:before {
  left: 12px;
}

p.ribbon:after {
  right: 15px;
}


@media screen and (max-width:1080px) {}

@media screen and (max-width:768px) {
  .headGrp div.wrap01 div.center {
    max-width: 400px;
  }

  .headGrp .wrap02 div.grid {
    grid-template-columns: 1fr;
  }

  div.kao-logo {
    width: 75%;
    max-width: 350px;
  }

  div.kao-about p br {
    display: none;
  }

  div.kao-illust {
    width: 48%;
  }

  div.kao-illust p {
    font-size: 16px;
  }

  div.wrap09 div.center {
    max-width: 500px;
  }
}

@media screen and (max-width:500px) {
  div.kao-illust p {
    font-size: 3.3vw;
  }
}

/*-----------------------------------------
02 ヘッダーの設定　ここまで
-------------------------------------------*/

/*-----------------------------------------
03 コンテンツの設定
-------------------------------------------*/

/*こんなところでお役立ち*/

.mainGrp div.wrap {
  margin: 100px auto 0;
}

.mainGrp div.wrap01 {
  margin-top: 60px;
}

.mainGrp div.wrap02 {
  margin-top: 60px;
}

div.circleGrp {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 15px;
  margin-bottom: 40px;
}

a.circle-item {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3.5px solid var(--green01);
  border-radius: 250px;
  width: 125px;
  height: 125px;
  font-size: 20px;
  font-weight: 700;
  color: var(--black02);
}

a.circle-item:hover {
  transform: translateY(-10px);
}

a.circle-item:nth-of-type(even) {
  background: #fff;
}

a.circle-item:nth-of-type(odd) {
  background: var(--green02);
}

@media screen and (max-width:768px) {
  div.circleGrp {
    grid-template-columns: repeat(3, 1fr);
  }

  a.circle-item {
    width: 100%;
    border-radius: 10px;
  }
}

@media screen and (max-width:500px) {
  div.circleGrp {
    grid-template-columns: 1fr;
    gap: 8px;
    max-width: 300px;
  }

  a.circle-item {
    width: 100%;
    height: fit-content;
    border-radius: 10px;
    padding: 1em;
  }

  a.circle-item br {
    display: none;
  }

  a.circle-item:hover {
    transform: translateY(-5px);
  }
}

/*共通部分*/
h3.title_h3 {
  display: block;
  position: relative;
  margin-bottom: 60px;
}

h3.title_h3::after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background: var(--green01);
}

h3.title_h3 span {
  display: inline-block;
  padding: 10px;
  font-size: 40px;
  background: #fff;
  line-height: 1.35;
  color: var(--green01);
  position: absolute;
  top: 49%;
  left: 50%;
  transform: translate(-50%, -50%);
}

div.contents-text {
  margin-bottom: 40px;
}

div.contents-text p {
  text-align: left;
  font-size: 20px;
}

div.contents-grid {
  display: grid;
  gap: 15px;
}

div.contents-grid p {
  color: var(--black02);
  font-weight: 700;
}

div.contents-img-illust p {
  font-size: 22px;
}

div.contents-img-item p {
  font-size: 14px;
}

div.contents-img-item.wide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 10px;
}

div.contents-img-item.wide a,
div.contents-img-item.wide img {
  grid-column: 1/3;
}

div.contents-img-item.wide a:hover {
  transform: scale(1.03);
  opacity: 0.7;
}

div.contents-grid.dot {
  border-top: 5px dotted var(--green02);
  padding-top: 40px;
  margin-top: 40px;
}

p.math {
  display: inline-block;
  padding: 7px;
  margin-top: 10px;
  line-height: 1;
  border: 1px solid var(--black02);
}

@media screen and (max-width:768px) {
  div.contents-text p {
    font-size: 16px;
  }

  div.contents-img-illust p {
    font-size: 20px;
  }
}

@media screen and (max-width:400px) {
  div.contents-img-item p {
    font-size: 3.5vw;
  }

  div.contents-img-illust p {
    font-size: 4.75vw;
  }
}

/*タイパ・ラク清掃*/
div.wrap02 div.contents-grid {
  grid-template-columns: 250px 2fr 1fr 1fr;
}

@media screen and (max-width:768px) {
  div.wrap02 div.contents-grid {
    grid-template-columns: 1fr 1fr;
  }

  div.wrap02 div.contents-img-illust,
  div.wrap02 div.contents-img-item.wide {
    grid-column: 1/4;
  }
}



/*ニオイケア*/
div.wrap03 div.contents-grid {
  grid-template-columns: 250px 1fr 250px 1fr;
}

div.wrap03 div.contents-grid.dot {
  grid-template-columns: 250px 1fr 1fr 1fr 1fr;
}

@media screen and (max-width:768px) {
  div.wrap03 div.contents-grid {
    grid-template-columns: 1fr 1fr;
  }

  div.wrap03 div.contents-grid.dot {
    grid-template-columns: 1fr 1fr;
  }
}



/*入浴ケア*/
div.wrap04 div.contents-grid {
  grid-template-columns: 250px 2fr 1fr 1fr;
}

div.wrap04 div.contents-img-item.wide p {
  grid-column: 1/3;
}


@media screen and (max-width:768px) {
  div.wrap04 div.contents-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/*シートでケア*/
div.wrap05 div.contents-grid {
  grid-template-columns: 230px 1fr 230px 1fr 1fr;
}

@media screen and (max-width:768px) {
  div.wrap05 div.contents-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/*排泄ケア*/
div.wrap06 div.contents-grid {
  grid-template-columns: 1fr 2fr;
  gap: 25px;
}

div.wrap06 div.contents-img-illust {
  grid-row: 1/3;
}

div.wrap06 div.contents-img-illust img {
  max-width: 264px;
}

div.tape,
div.pants {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  gap: 15px;
  grid-column: 2/3;
}

div.tape h4,
div.pants h4 {
  display: block;
  width: 100%;
  border: 3px solid var(--green01);
  padding: 7px 15px;
  line-height: 1.25;
  color: var(--green01);
  border-radius: 100px;
  grid-column: 1/4;
}

div.tape h4 {
  background: #fff;
}

div.pants h4 {
  background: var(--green02);
}

div.wrap06 div.contents-grid.dot {
  grid-template-columns: 1fr 2fr;
  gap: 25px;
}

div.wrap06 div.contents-grid.dot div.contents-img-item {
  margin: auto auto auto 0;
}

div.wrap06 div.contents-grid.dot div.contents-img-illust img {
  max-width: 264px;
}

@media screen and (max-width:768px) {
  div.wrap06 div.contents-grid {
    grid-template-columns: 1fr;
  }

  div.wrap06 div.contents-img-illust {
    grid-column: 1/2;
  }

  div.tape,
  div.pants {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    grid-column: 1/2;
  }

  div.tape h4,
  div.pants h4 {
    grid-column: 1/3;
  }

  div.contents-img-item {
    width: 100%;
    max-width: 230px;
  }
}

/*衛生管理*/
div.wrap07 div.contents-grid {
  grid-template-columns: 250px 1fr 1fr 1fr;
}


@media screen and (max-width:768px) {
  div.wrap07 div.contents-grid {
    grid-template-columns: 1fr 1fr;
  }

  div.wrap07 div.contents-img-illust {
    grid-column: 1/3;
  }
}

/*介護士ケア*/
div.wrap08 div.contents-grid {
  grid-template-columns: 250px 1fr 250px 1fr;
}



div.body {
  padding-bottom: 80px;
}


/*吹き出し*/
div.fukidashi {
  display: block;
  margin: auto auto 10px;
  text-align: center;
}

div.fukidashi p {
  display: inline-block;
  margin: 0 auto;
  font-size: 24px;
  font-weight: 700;
  padding: 0 25px;
  text-align: center;
  position: relative;
  color: #EA6D8D;
}

div.fukidashi p::before,
div.fukidashi p::after {
  content: "";
  display: block;
  width: 3px;
  height: 25px;
  border-left: 2px solid #EA6D8D;
  border-right: 2px solid #EA6D8D;
  position: absolute;
  bottom: 5px;
}

div.fukidashi p::before {
  left: 0;
  transform: rotate(-15deg);
}

div.fukidashi p::after {
  right: 0;
  transform: rotate(15deg);
}

div.rakuraku a {
  display: block;
}

div.rakuraku a img {
  border: 1px solid #dbdbdb;
}

div.rakuraku a:hover {
  opacity: 0.8;
}

@media screen and (max-width:768px) {
  div.wrap08 div.contents-grid {
    grid-template-columns: 1fr 1fr;
  }

  div.fukidashi p {
    font-size: 20px;
  }
}

@media screen and (max-width:500px) {

  div.fukidashi p {
    font-size: 5.5vw;
    padding: 0 0.75em;
  }
}


/*商品一覧*/
div.productGrp {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin: 40px 0;
}

div.c-items5Col__item {
  display: flex;
  margin: 0;
  width: 100%;
}

div.c-items5Col__item:nth-child(n+6) {
  margin-top: 0;
}

figure.c-items5Col__figure {
  height: auto;
}

figure.c-items5Col__figure img {
  width: 95%;
  max-width: fit-content;
  max-height: fit-content;
}

div.c-items5Col__item a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 15px;
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 10px;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.1));
  margin: 0;
  width: 100%;
}

div.c-items5Col__item a:hover {
  transform: translateY(-10px);
  background: #f5f3df;
}

div.c-items5Col__item a>div,
div.c-items5Col__item a>p {
  margin: 0;
}

figure.c-items5Col__figure {
  margin: 0 0 10px 0;
  padding: 10px;
  border: none;
  background: #fff;
}

figure.c-items5Col__figure img {
  width: 95%;
}

p.procd,
div.c-items5Col__price {
  font-size: 14px;
  color: var(--black02);
}

div.c-items5Col__priceTax {
  font-size: 18px;
  font-weight: bold;
  color: #F9743A !important;
  padding: 5px 0 0;
}

div.c-items5Col__name {
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  color: #0a4ca4 !important;
}


div.menu_Button {
  position: fixed;
  top: -200px;
  left: 0;
  display: block;
  width: 100%;
  padding: 10px;
  z-index: 99;
  background: var(--green02);
  transition: all 0.3s ease 0s;
}

div.menu_Button.fixed_menu_Button {
  top: 0;
}

div.menu_Button .menu_ul {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0;
}

div.menu_Button .menu_ul li {
  width: 100%;
}

div.menu_Button .menu_ul a {
  display: block;
  padding: 1.25em 1em;
  width: 100%;
  height: auto;
  border: none;
  border-radius: 10px;
  white-space: nowrap;
  background: #fff;
  font-size: 18px;
  text-align: center;
}

div.menu_Button .menu_ul a:hover {
  transform: translateY(0);
  background: var(--green01);
  color: #fff;
}


div.c-items5Col__item.icon-new {
  position: relative;
}

div.c-items5Col__item.icon-new:after {
  content: "";
  position: absolute;
  top: 13px !important;
  right: 13px !important;
  width: 50px;
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 100;
  background: url(https://d11w49g8ylcixs.cloudfront.net/resource/20201009/new.png);
  background-size: contain;
}

@media screen and (max-width:1080px) {}

@media screen and (max-width:768px) {

  #contents01 div.center2,
  #contents01 div.center3,
  #contents01 div.center4,
  #contents01 div.center5,
  #contents01 div.center6,
  #contents01 div.center7 {
    width: calc(100% - 14px);
  }

  div.productGrp {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  div.c-items5Col__item a:hover {
    transform: translateY(0px);
  }
}


@media screen and (max-width:500px) {

  div.c-items5Col__priceTax,
  div.c-items5Col__name {
    font-size: 14px;
  }

  p.ribbon {
    font-size: 11px;
  }
}






/*ハンバーガーメニュー-----------------------------*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -120%;
  width: 25%;
  height: 100vh;
  /*ナビの高さ*/
  background: var(--green02);
  /*動き*/
  transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 25%;
  height: 100vh;
  /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  padding-left: 0;
}

/*リストのレイアウト設定*/
#g-nav li {
  list-style: none;
  text-align: center;
  padding: 0;
  margin-bottom: 10px;
}

#g-nav li:last-of-type {
  margin-bottom: 0;
}

#g-nav li a {
  color: var(--green01);
  text-decoration: none;
  padding: 12px 0;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  font-size: 4.5vw;
  background: #fff;
  border-radius: 10px;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: fixed;
  z-index: 9999;
  /*ボタンを最前面に*/
  bottom: 60px;
  right: -4px;
  cursor: pointer;
  width: 70px;
  height: 70px;
  background: var(--green01);
  border: 3px solid #fff;
  border-radius: 3px 0 0 3px;
}

/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 17px;
  height: 3px;
  border-radius: 2px;
  background-color: #fff;
  width: 45%;
}

.openbtn span:nth-of-type(1) {
  top: 17px;
}

.openbtn span:nth-of-type(2) {
  top: 30px;
}

.openbtn span:nth-of-type(3) {
  top: 43px;
}

.openbtn.active span:nth-of-type(1) {
  top: 26px;
  left: 22px;
  transform: translateY(6px) rotate(-45deg);
  width: 40%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 38px;
  left: 22px;
  transform: translateY(-6px) rotate(45deg);
  width: 40%;
}

@media (max-width: 768px) {

  .openbtn {
    width: 60px;
    height: 55px;
    bottom: 80px;
  }

  .openbtn span {
    left: 15px;
  }

  .openbtn span:nth-of-type(1) {
    top: 15px;
  }

  .openbtn span:nth-of-type(2) {
    top: 25px;
  }

  .openbtn span:nth-of-type(3) {
    top: 35px;
  }

  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 17px;
  }

  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 17px;
  }

  #g-nav {
    width: 100%;
  }

  /*ナビゲーションの縦スクロール*/
  #g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    width: 100%;
  }

}

/*ハンバーガーメニューここまで---------------*/





/*-----------------------------------------
03 コンテンツの設定ここまで
-------------------------------------------*/

/*-----------------------------------------
04 フッターの設定
-------------------------------------------*/

@media screen and (max-width:1080px) {}

@media screen and (max-width:768px) {}

/*-----------------------------------------
04 フッターの設定ここまで
-------------------------------------------*/




/*スマ介_____EC-CUBE対策*/
main.l-container {
  width: 100%;
}

.c-main {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

#contentInner {
  width: auto;
  padding-bottom: 0;
}

#wide_main_contents {
  width: 100%;
}

.c-breadcrumb {
  width: 1200px;
  margin: auto;
}

@media (max-width: 1230px) {
  main.l-container {
    width: 123rem;
  }
}

@media (max-width: 768px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block;
  }

  .l-container {
    width: 120rem;
  }

  #contentInner {
    width: 1200px;
    padding-bottom: 0;
  }

  #wide_main_contents {
    width: 1200px
  }
}