@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700&family=Oswald:wght@600&family=Zen+Old+Mincho:wght@500;700;900&display=swap');



/*-----------------------------------------
-------------------------------------------
-------------------------------------------
-------------------------------------------

目次　※各々レスポンシブ対応あり

01 共通部分設定＆リセットCSS
02 ヘッダーの設定
03 コンテンツの設定
04 フッターの設定

-------------------------------------------
-------------------------------------------
-----------------------------------------*/

/*-----------------------------------------
01 共通部分設定＆リセットCSS
-------------------------------------------*/
body {
  padding: 0;
  margin: 0;
}

div.body {
  margin: auto;
  min-width: 1100px;
  overflow: hidden;
}

@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% - 40px);
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

@media screen and (max-width:768px) {
  .center {
    max-width: 400px;
  }
}

.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: "Zen Old Mincho", serif;
  font-style: normal;
  line-height: 1.5;
}

.body h1,
.body h2,
.body h3,
.body h4 {
  font-weight: 700;
}

.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: #01AFB8;
  --green02: #46bec8;
  --sky01: #C0F1F2;
  --sky02: #e5f7f8;
  --blue01: #009fe8;
  --gray01: #f2f2f2;
  --orange01: #fff1e1;
  --orange02: #f46e0b;
}

/*-----------------------------------------
01 共通部分設定＆リセットCSS　ここまで
-------------------------------------------*/

/*-----------------------------------------
02 ヘッダーの設定
-------------------------------------------*/
/*タブ切替え*/
div.tabGrp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
  width: calc(100% - 20px);
  max-width: 900px;
  margin: auto auto 0;
  padding: 20px 0 0;
}

div.tabGrp>div {
  display: block;
  width: 100%;
  text-align: center;
  margin: auto auto 0;
}

div.tabGrp>div>a {
  display: block;
  padding: 15px 18px;
  border-radius: 15px 15px 0 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
}

div.tabGrp>div.select-tab>a {
  padding: 20px 18px;
  pointer-events: none;
}

div.tabGrp>div.tab-curel>a {
  background: var(--sky01);
  color: var(--green02);
}

div.tabGrp>div.tab-seminar>a {
  background: var(--green02);
  color: #fff;
}

@media screen and (max-width:768px) {
  div.tabGrp{
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
    margin-bottom: 20px;
  }
  div.tabGrp>div>a{
    border-radius: 100px;
    font-size: 24px;
  }
}

@media screen and (max-width:350px) {
div.tabGrp>div>a{
    font-size: 20px;
  }
}


/*ヘッダー*/
section.headGrp {
  background: url(https://d11w49g8ylcixs.cloudfront.net/resource/20250630/bg.png)no-repeat center 37% / 2870px, var(--green02);
  position: relative;
}

section.headGrp::before {
  content: "";
  display: block;
  width: 180px;
  height: 180px;
  background: url(https://d11w49g8ylcixs.cloudfront.net/resource/20250630/plant02.png)no-repeat center / contain;
  position: absolute;
  top: -20px;
  left: calc(50% + 600px);
  transform: translateX(-50%);
}

section.headGrp:after {
  content: "";
  display: block;
  width: 100%;
  height: 80%;
  background: url(../img/bg-bottom.svg)no-repeat center bottom / 110%;
  position: absolute;
  bottom: -1px;
  left: 0;
}

section.headGrp>div {

  position: relative;
  z-index: 10;
}

/*タイトル全体*/
section.headGrp div.wrap01 {
  padding: 40px 0 0;
}

section.headGrp div.wrap01 div.center {
  max-width: 800px;
}

@media screen and (max-width:768px) {
  section.headGrp div.wrap01{
    padding-top: 60px;
  }
  section.headGrp div.wrap01 div.center{
    max-width: 500px;
  }
}

/*花王のロゴ*/
section.headGrp div.wrap01 div.logo {
  max-width: 175px;
  margin: 0 auto 0 20px;
}

@media screen and (max-width:768px) {
  section.headGrp div.wrap01 div.logo{
    max-width: 125px;
    margin-left: 25px;
  }
}
@media screen and (max-width:340px) {
  section.headGrp div.wrap01 div.logo{
    max-width: 100px;
    margin-left: 15px;
  }
}


/*タイトル文字部分*/
section.headGrp div.wrap01 h1 {
  font-size: 86px;
  margin: 10px auto;
  line-height: 1;
  color: #fff;
  position: relative;
}
section.headGrp div.wrap01 h1:after{
  content: "";
  display: block;
      width: 155px;
    height: 95px;
  background: url(https://d11w49g8ylcixs.cloudfront.net/resource/20250630/header-lines.png)no-repeat center / contain;
  position: absolute;
  top: -95px;
  right: 10px;
}

section.headGrp div.wrap01 p {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
}

@media screen and (max-width:768px) {
  section.headGrp div.wrap01 h1{
    font-size: 50px;
  }
  section.headGrp div.wrap01 p{
    font-size: 20px;
  }
  section.headGrp div.wrap01 h1:after{
    width: 135px;
    height: 82px;
  }
}
@media screen and (max-width:500px) {
section.headGrp div.wrap01 h1{
  font-size: 9vw;
}
section.headGrp div.wrap01 p{
  font-size: 16px;
}
}
@media screen and (max-width:340px) {
  section.headGrp div.wrap01 p br{
  display: none;
}
section.headGrp div.wrap01 h1:after{
    width: 115px;
        height: 71px;
        top: -80px;
  }
}
/*商品と3つの円*/
section.headGrp div.wrap02 div.center {
  display: grid;
  grid-template-columns: 1fr 1.75fr;
  gap: 0 20px;
}

div.header-point {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: auto auto 10px;
}

div.header-point div.item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  border-radius: 200px;
  border: 1px solid var(--green02);
  background: rgba(255, 255, 255, 0.8);
}

div.header-point div.item p {
  font-size: 20px;
  font-weight: 900;
  color: var(--green01);
}

div.header-point div.item p>span {
  display: block;
  font-size: 175%;
  font-weight: 900;
  color: var(--green01);
}


@media screen and (max-width:768px) {
  section.headGrp div.wrap02{
    padding: 20px 0 0;
  }
  section.headGrp div.wrap02 div.center{
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 500px;
  }
  div.header-point{
    gap: 10px;
  }
  div.header-point div.item{
    width: 150px;
    height: 150px;
  }
  div.header-point div.item p{
    font-size: 16px;
  }
  
}


@media screen and (max-width:500px) {
div.header-point{
  grid-template-columns: 1fr 1fr;
gap: 0 10px;
margin-bottom: 20px;
}
div.header-point div.item:last-of-type{
    grid-column: 1/3;
  }
}

@media screen and (max-width:350px) {
div.header-point{
  width: 100%;
  grid-template-columns: 1fr;
  gap: 10px 0;
}
div.header-point div.item{
  grid-column: 1/2;
  width: 100%;
  height: auto;
  padding: 20px 30px;
}
div.header-point div.item p br{
  display: none;
}
div.header-point div.item p span{
  display: inline-block;
  font-size: 130%;
}
}

/*-----------------------------------------
02 ヘッダーの設定　ここまで
-------------------------------------------*/

/*-----------------------------------------
03 コンテンツの設定
-------------------------------------------*/


/*トップのチラシを見るボタン*/
div.top_dlbtn{
  position: fixed;
  right: -35px;
  bottom: 175px;
  width: 140px;
  z-index: 998;
  transition: all 0.3s ease 0s;
}
div.top_dlbtn a{
  display: block;
  background: #fff;
  padding: 10px 40px 10px 10px;
  border-radius: 15px;
  border: 3px solid var(--green01);
}
div.top_dlbtn:hover{
right: -25px;
}
div.top_dlbtn:hover a{
  background-color: #fffab0;
}
@media (max-width: 768px) {
  div.top_dlbtn{
    width: 130px;
    bottom: 145px;
  }
  div.top_dlbtn a{
    padding: 5px 35px 5px 5px;
  }
}

/*キュレル特集ページボタン*/
div.top_dlbtn.curel{
  bottom: 300px;
}
div.top_dlbtn.curel a{
  padding: 27px 40px 10px 10px;
  position: relative;
}
div.top_dlbtn.curel a::after{
  content: "";
  display: block;
  width: 100%;
  height: 15px;
  background: var(--green01);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px 0 0 0;
}
div.top_dlbtn.curel:hover a{
  background: #fff;
}
div.top_dlbtn.curel:hover a img{
  opacity: 0.7;
}

/*メニュー 一覧 追従メニュー用 ----------------*/
div.menu_Button {
  background: #fff;
  display: block;
  width: 100%;
  position: fixed;
  left: 0;
  top: -150px;
  z-index: 999;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
  transition: all 0.3s ease 0s;
}

div.menu_Button.fixed_menu_Button {
  top: 0;
}

div.menu_Button ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 7px;
  width: calc(100% - 30px);
  max-width: 800px;
  margin: 0 auto;
  padding: 8px 0;
}

div.menu_Button ul li {
  display: block;
  width: 100%;
}

div.menu_Button ul li a {
  display: block;
  width: 100%;
  padding: 0.5em;
  font-size: 18px;
  font-weight: 700;
  color: var(--green01);
  text-align: center;
  border-radius: 7px;
}

div.menu_Button ul li a:hover {
  background: #d9f5f2;
}

/*メニュー 一覧 ハンバーガーメニュー用 ----------------*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -120%;
  width: 25%;
  height: 100vh;
  /*ナビの高さ*/
  background: var(--sky01);
  /*動き*/
  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: calc(100% - 30px);
  max-width: 400px;
  padding-left: 0;
}

/*リストのレイアウト設定*/
#g-nav li {
  list-style: none;
  text-align: center;
  padding: 10px;
}

#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: 20px;
  background: #fff;
  border-radius: 5px;
}
#g-nav li.btn a{
background: var(--green01);
color: #fff;
}
/*ボタンのための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 screen and (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%;
  }

}
@media screen and (max-width:350px) {
#g-nav li a{
  font-size: 6vw;
}
}
/*メニュー 一覧 コンテンツ用 ----------------*/
.mainGrp div.wrap02{
  margin-bottom: 30px;
}
.mainGrp div.wrap02 div.center{
  max-width: 950px;
}
div.main-menu{
  padding: 30px 0 0;
}

div.main-menu ul{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  padding: 0;
  margin: 0;
}
div.main-menu ul li{
  padding: 0;
  margin: 0;
}
div.main-menu ul li,
div.main-menu ul li a{
  display: block;
  width: 100%;
}
div.main-menu ul li a{
  padding: 1.25em 1.5em;
  border: 1px solid var(--green01);
  font-size: 22px;
  font-weight: 700;
  color: var(--green01);
  position: relative;
}
div.main-menu ul li a::before,
div.main-menu ul li a::after{
  content: "";
  display: block;
  position: absolute;
}
div.main-menu ul li a::before{
  width: 15px;
  height: 20px;
  bottom: -9px;
  left: 50%;
  background: #fff;
  border-bottom: 1px solid var(--green01);
  transform: translateX(-50%)rotate(-45deg);
}
div.main-menu ul li a::after{
  width: 100%;
  height: 100%;
  background: rgba(2, 147, 155, 0.1);
  top: calc(50% + 5px);
  left: calc(50% + 5px);
  transform: translate(-50%,-50%);
}
div.main-menu ul li a:hover{
  transform: translateY(-8px);
  opacity: 0.7;
}

@media screen and (max-width:768px) {
  .mainGrp div.wrap02 div.center{
    max-width: 400px;
  }
  div.main-menu{
    padding: 10px 0;
  }
  div.main-menu ul{
    grid-template-columns: 1fr;
    gap: 30px;
  }
  div.main-menu ul li a{
    font-size: 20px;
  }
}
/*開催エリアの確認もこちらから ----------------*/
div.offerGrp {
  padding: 40px 0;
}

div.offerGrp>p {
  display: inline-block;
  padding: 12px;
  margin-bottom: 1.5em;
  font-size: 24px;
  color: var(--green01);
  position: relative;
}

div.offerGrp>p::before,
div.offerGrp>p::after {
  content: "";
  display: block;
  position: absolute;
  border-bottom: 1px solid var(--green01);
  left: 50%;

}

div.offerGrp>p::before {
  width: 100%;
  bottom: 0;
  transform: translateX(-50%);
}

div.offerGrp>p::after {
  width: 15px;
  height: 20px;
  bottom: -8px;
  background: #fff;
  transform: translateX(-50%)rotate(-45deg);
}

div.offerGrp>a,
div.curelGrp>a {
  display: block;
  padding: 1.25em 2em 1.25em 1.25em;
  max-width: 600px;
  font-size: 24px;
  font-weight: 700;
  position: relative;
}
div.offerGrp>a:hover,
div.curelGrp>a:hover{
opacity: 0.8;
}
div.offerGrp>a:after,
div.curelGrp>a::after{
content: "";
display: block;
width: 10px;
height: 10px;
position: absolute;
top: 50%;
right: 30px;
transform: translateY(-50%)rotate(-45deg);
}
div.offerGrp>a{
  background: var(--green01);
  color: #fff;
}
div.offerGrp>a::after{
border-bottom: 2px solid #fff;
border-right: 2px solid #fff;
}

div.curelGrp>a{
  background: var(--sky01);
  color: var(--green01);
}
div.curelGrp>a::after{
border-bottom: 2px solid var(--green01);
border-right: 2px solid var(--green01);
}


@media screen and (max-width:768px) {
  div.offerGrp>p{
    font-size: 20px;
  }
  div.offerGrp>a,
  div.curelGrp>a{
    font-size: 20px;
  }
}
@media screen and (max-width:500px) {
div.offerGrp>a,
  div.curelGrp>a{
    font-size: 4.75vw;
  }
}

/*年齢を重ねたお肌のための～ ----------------*/
.mainGrp div.wrap03{
  padding: 50px 0 0;
}

.mainGrp h3{
  font-size: 33px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--green01);
  margin-bottom: 1.5em;
}
.mainGrp h3.arrow{
  position: relative;
  margin-bottom: 100px;
}
.mainGrp h3.arrow::after{
  content: "";
  display: block;
  width: 30px;
  height: 40px;
  background: url(https://d11w49g8ylcixs.cloudfront.net/resource/20250630/arrow.png)no-repeat center / contain;
  position: absolute;
  left: 50%;
  bottom: -65px;
  transform: translateX(-50%);
}


div.problem-grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  width: 100%;
  max-width: 750px;
  margin: auto auto 40px;
}
div.problemGrp div.circle{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 240px;
  height: 240px;
  background: var(--gray01);
  border-radius: 500px;
}
div.problemGrp div.circle p{
  font-size: 22px;
  font-weight: 500;
 font-family: "Noto Sans JP", sans-serif;
  color: var(--green01);
}
div.problemGrp div.illust {
  display: flex;
}
div.problemGrp div.illust img{
  width: 50%;
}
@media screen and (min-width:769px) {
div.problemGrp div.circle.circle01,
div.problemGrp div.circle.circle03{
  transform: translateY(100px);
}
div.problemGrp div.illust{
  grid-column: 1/4;
}

}
@media screen and (max-width:768px) {
  .mainGrp div.wrap03{
    padding-top: 30px;
  }
  .mainGrp h3{
    font-size: 26px;
  }
  div.problemGrp div.center{
    max-width: 400px;
  }
  div.problem-grid{
    grid-template-columns: repeat(2,1fr);
  }
  div.problemGrp div.circle{
    width: 180px;
    height: 180px;
  }
  div.problemGrp div.circle p{
    font-size: 18px;
  }
}
@media screen and (max-width:400px) {
div.problem-grid{
    grid-template-columns:1fr;
  }
}
@media screen and (max-width:370px) {
  .mainGrp h3{
    font-size: 6.25vw;
  }
}
/*施設でスキンケアセミナーを実施～ ----------------*/
div.solutionGrp{
padding: 0;
margin: 0 auto 100px;
position: relative;
}
div.solutionGrp::before{
content: "";
display: block;
width: 100%;
height: calc(100% - 40px);
background: var(--orange01);
position: absolute;
top: 50%;
left: 0;
transform: translateY(-50%);
}
div.solutionGrp div.center{
  max-width: 700px;
}
div.solution-grid{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  position: relative;
  z-index: 9;
}
div.solution-text{
  padding: 40px 0;
}
div.solution-text h3,
div.solution-text p{
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--orange02);
}
div.solution-text h3{
  font-size: 33px;
  font-weight: 700;
  margin-bottom: 0.75em;
}
div.solution-text p{
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.1em;
}


@media screen and (max-width:768px) {
  div.solutionGrp{
    margin-bottom: 50px;
  }
  div.solutionGrp div.center{
    max-width: 400px;
  }
  div.solutionGrp::before{
    height: calc(100% - 20px);
  }
  div.solution-grid{
    grid-template-columns:4fr 1fr;
    gap: 5px;
  }
  div.solution-text h3{
    font-size: 22px;
  }

  div.solution-text p{
    font-size: 18px;
  }
}
@media screen and (max-width:400px) {
  div.solutionGrp::before{
    height: 100%;
  }
  div.solution-grid{
    width: 95%;
    grid-template-columns: 1fr;
  }
  div.solution-text h3{
    font-size: 20px;
  }
  div.solution-text p{font-size: 16px;}
div.solution-illust{
  display: none;
}
}
/*セミナーを受講された利用者様の～ ----------------*/
div.thoughtsGrp{
  position: relative;
}
div.thoughtsGrp:after{
content: "";
display: block;
width: 100%;
height: 100px;
background: var(--sky02);
position: absolute;
bottom: -1px;
left: 0;
}
div.thoughtsGrp div.center{
  position: relative;
  z-index: 9;
  background: url(https://d11w49g8ylcixs.cloudfront.net/resource/20250630/photo-ai.jpg)no-repeat center bottom / contain;
}
div.thoughts-grid{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
  max-width: 800px;
  margin: auto;
  padding-bottom: 230px;
}
div.thoughts-item{
  display: grid;
  grid-template-columns: 1fr 1.75fr;
  width: 100%;
  padding: 25px;
  background: #fff;
  outline: 2px solid #d3ebeb;
  outline-offset: -8px;
  filter: drop-shadow(0 5px 7px rgba(87, 87, 87, 0.2));
  position: relative;
}
div.thoughts-item::before,
div.thoughts-item::after{
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  left: 0;
}
div.thoughts-item::before{
  clip-path: polygon(0 0, 100% 0, 0 100%);
  background: #e3f5f5;
}
div.thoughts-item::after{
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  background: #83c4cf;
}
div.item-text {
  padding:0 0.5em;
  background: linear-gradient(#ada287 2px, transparent 2px) #fff;
  background-position: center bottom;
  background-size: auto 2.25em;
  border-bottom: 2px solid #ada287;
  overflow: hidden;
}
div.item-text p{
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  color: #4e4e4e;
  line-height: 1.9;
  font-size: 18px;
}


@media screen and (max-width:768px) {
  div.thoughtsGrp div.center{
    max-width: 100%;
  }
  div.thoughts-grid{
    /* grid-template-columns: 1fr;
    max-width: 280px; */
    padding-bottom: 130px;
  }
}
@media screen and (max-width:500px) {
div.thoughts-grid{
    grid-template-columns: 1fr;
    max-width: 280px;
  }
  div.thoughts-item{
    grid-template-columns: 1fr;
    gap: 15px;
  }
  div.item-text{
        background-size: auto 2.6em;
  }
}
/*スキンケアセミナーの流れ ----------------*/
.mainGrp div.wrap04{
  background: var(--sky02);
  padding-top: 80px;
  position: relative;
}
.mainGrp div.wrap04::after{
  content: "";
  display: block;
  width: 100%;
  height: 100px;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
}
.mainGrp div.wrap04>div{
  position: relative;
  z-index: 99;
}

div.flow-contents-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  max-width: 1000px;
  margin: auto;
}
div.flow-contents-grid div.box{
  display: grid;
  grid-template-columns: 150px 250px 1fr;
  gap: 10px;
  background: #fff;
  padding: 25px 30px;
  filter: drop-shadow(0 3px 4px rgba(11, 36, 73, 0.1));
  position: relative;
}
div.flow-contents-grid div.box::after{
  content: "";
  display: block;
  width: 50px;
  height: 25px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  bottom: -24px;
  left: 77px;
  background: #fff;
}
div.flow-contents-grid div.box:nth-of-type(1){
  z-index: 99;
}
div.flow-contents-grid div.box:nth-of-type(2){
  z-index: 98;
}
div.flow-contents-grid div.box:nth-of-type(3){
  z-index: 97;
}
div.flow-contents-grid div.box:nth-of-type(4){
  z-index: 96;
}
div.flow-contents-grid div.box:nth-of-type(5){
  z-index: 95;
}
div.flow-contents-grid div.box:nth-of-type(6){
  z-index: 94;
}
div.flow-contents-grid div.box:nth-of-type(6)::after{
  display: none;
}

div.box-numbers p.number{
  display: block;
  text-align: center;
  line-height: 1;
  margin-bottom: 30px;
   font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 55px;
  color: var(--blue01);
  position: relative;
}
div.box-numbers p.number::after{
  content: "";
  display: block;
  background: var(--blue01);
  position: absolute;
}
div.box-numbers p.number-text,
div.box-text p{
    font-family: "Noto Sans JP", sans-serif;
    color: var(--blue01);
}
div.box-numbers p.number-text{
  font-size: 18px;
  font-weight: 700;
}
div.box-text{
  padding-left: 20px;
}
div.box-text p{
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: left;
}


@media screen and (min-width:769px) {
div.box-numbers p.number::after{
  width: 3px;
  height: 15px;
  bottom:-23px;
  left:50%;
  transform: translateX(-50%);
}
}
@media screen and (max-width:768px) {
  .mainGrp div.wrap04{
    padding-top: 40px;
  }
  div.flow-contents-grid div.box{
    grid-template-columns: 1fr;
  }
  div.flow-contents-grid div.box::after{
    left: 50%;
    transform: translateX(-50%);
  }
  div.box-numbers{
    display: flex;
  }
  div.box-numbers p.number{
    font-size: 40px;
    margin: auto 50px auto auto;
  }
  div.box-numbers p.number::after{
width: 1px;
  height: 40px;
  top:50%;
  right: -25px;
  transform: translateY(-50%);
  }
  div.box-numbers p.number-text{
    font-size: 16px;
    line-height: 1.35;
    text-align: left;
  }
  div.box-text{
    padding: 10px 0 0 0;
  }
  div.box-text p{
    font-size: 16px;
  }
}
/*セミナーの流れ全体を見る　仕組み*/
div.flowGrp{
  position: relative;
  margin: 50px auto 0;
  padding: 0px 0px 90px;
}
div.flow-contents{
  position: relative;
  height: 350px;
  transition: all .4s;
  overflow: hidden;
  padding: 0 0 20px;
}
div.flow-contents::before {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100px;
  transition: all .4s;
  background: linear-gradient( rgba(255,255,255,0) 0%,  var(--sky02) 100% );
  z-index: 100;
}

div.flow-contents.is_open:before{
  display: none;
}

button.flow-btn{
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 400px;
  padding: 15px 30px 15px 15px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  text-align: center;
  border: none;
  border-radius: 5px;
  background:var(--blue01);
  position: absolute;
  left: 50%;
  bottom: 0px;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 1;
  transition: all .4s;
}
button.flow-btn:hover{
  opacity: 0.8;
}
button.flow-btn::after{
  content: "";
  display: block;
  width: 15px;
  height: 10px;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
button.flow-btn.opn::after{
transform: translateY(-50%)rotate(180deg);
}
@media screen and (max-width:768px) {
  div.flowGrp{
    margin: 0 auto 0;
  }
}
/*花王キュレル商品の体験・お試しタイム -----------------*/
div.tryGrp{
  padding: 80px 0 0;
}
div.tryGrp div.center{
  max-width: 1300px;
}
div.try-grid{
  display: grid;
  grid-template-columns: 600px 1fr;
  gap: 20px;
}
div.try-item:nth-of-type(2){
    margin: 13% auto auto;
}
div.try-item h3{
  text-align: left;
  margin-bottom: 0.25em;
}
div.try-item p.come{
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #747474;
  padding-left: 1em;
  text-indent: -1em;
}

@media screen and (max-width:768px) {
  div.tryGrp{
    padding: 40px 0 0;
  }
  div.tryGrp div.center{
    max-width: 400px;
  }
  div.try-grid{
    display: flex;
    flex-direction: column-reverse;
  }
  div.try-item h3{
    font-size: 22px;
  }
  div.try-item p.come{
    font-size: 16px;
  }
  div.try-item:nth-of-type(2){
    margin: 0 auto;
  }
  .mainGrp div.wrap04::after{
    height: 67px;
  }
}

@media screen and (max-width:400px) {
  div.try-item h3{
    font-size: 20px;
  }
}
/*実施条件・概要 ---------------------*/
.mainGrp div.wrap05{
  padding-top: 100px;
}
div.listGrp div.center{
  max-width: 1000px;
  position: relative;
}
div.list-grid{
  display: grid;
  grid-template-columns: 1fr 3.5fr;
  gap: 1px;
  border: 2px solid var(--green01);
  border-radius: 10px 10px 0 0;
}
div.list-grid>div{
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 10px 10px 20px;
  margin: 0;
}
div.list-grid>div>p,
div.list-grid>div>p span{
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  margin: auto 0;
  line-height: 1.75;
}
div.list-grid>div.list-contents>p{
  color: #4e4e4e;
}
div.list-grid>div>p span{
  display: inline-block;
  color: #999999;
}
div.list-title{
  justify-content: center;
  background: var(--green01);
  grid-column: 1/3;
  border-radius: 8px 8px 0 0;
}
div.list-title>p,
div.list-item>p{
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  text-align: center;
}
div.list-item{
  display: flex!important;
  justify-content: center;
  align-items: center;
  background:#5bcbd1;
}

div.list-contents:nth-of-type(4n-1){
  background: var(--sky02);
}
div.list-contents>p{
  font-size: 16px;
text-align: left!important;
}
div.list-contents>p>strong{
  font-size: 20px;
  font-weight: 700;
  color: var(--green01);
}
div.list-contents>p>span{
  padding-left:1em;
  text-indent: -1em;
}
div.list-illust{
  position: absolute;
  bottom: -10px;
  right: -100px;
}
@media screen and (max-width:768px) {
  .mainGrp div.wrap05{
    padding-top: 40px;
  }
  div.listGrp div.center{
    max-width: 400px;
  }
  div.list-grid{
    grid-template-columns: 1fr 3fr;
  }
  div.list-grid>div{
    padding: 6px 10px;
  }
  /* div.list-title{
    grid-column: 1/2;
  } */
  div.list-title>p{
    font-size: 20px;
  }
  div.list-item>p{
    font-size: 16px;
  }
  div.list-contents>p>strong{
    font-size: 18px;
  }
  div.list-illust{
    display: none;
  }
}
@media screen and (max-width:400px) {
div.list-grid{
    grid-template-columns: 1fr 2.5fr;
  }
  div.list-item>p{
    font-size: 15px;
  }
  div.list-contents>p{
    font-size: 14px;
  }
  div.list-contents>p>strong{
    font-size: 15px;
  }
}
/**/
.mainGrp div.wrap06{
  padding-bottom: 100px;
}
@media screen and (max-width:1080px) {}

@media screen and (max-width:768px) {}


/*-----------------------------------------
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
  }
}