/* CSS Document */
@font-face {
  font-family: 'Sans';
  src: url('../font/NotoSansJP-medium.woff') format('woff'), url('../font/NotoSansJP-medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sans';
  src: url('../font/NotoSansJP-regular.woff') format('woff'), url('../font/NotoSansJP-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sans';
  src: url('../font/NotoSansJP-bold.woff') format('woff'), url('../font/NotoSansJP-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
body {
  color: #212020;
  font-family: 'Sans', 'Noto Sans JP', sans-serif;
  padding-top: 60px;
}
@media screen and (max-width: 767px), print {
  body {
    letter-spacing: normal;
  }
}
@media screen and (min-width: 768px), print {
  body {
    letter-spacing: normal;
  }
}

.body-container {
  width: 100%;
  overflow-x: hidden;
}
.inner1000 {
  max-width: 600px;
  padding: 0 19px;
  margin: auto;
}
img {
  max-width: 100%;
  height: auto;
}
.blue-btn {
  width: calc(100% - 38px);
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #101B75;
  color: #fff;
  height: 55px;
  border-radius: 100px;
  font-size: 19px;
  font-weight: bold;
  border: solid 1px #101B75;
}
@media screen and (min-width: 1025px) {
  a {
    transition: .2s;
  }
  body {
    padding-top: 0;
  }
  .inner1000 {
    max-width: 1040px;
    padding: 0 20px;
  }
  .blue-btn:hover {
    background: #fff;
    color: #101B75;
    text-decoration: none;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------------------------------------
//  splash
------------------------------------------------------------------------------------------------------------------------------------------------------ */
.top .body-container {
  opacity: 0;
  overflow: hidden;
  height: 100vh;
  position: fixed;
}
.top .body-container.show {
  opacity: 1;
}
.top .body-container.scroll-on {
  /*overflow: auto;*/
  height: auto;
  position: static;
}
.splash-logo {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10001;
  display: none;
}
.splash-logo.play {
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  object-fit: cover;
  display: none;
}
.top-splash.play {
  display: block;
}
/* ------------------------------------------------------------------------------------------------------------------------------------------------------
//  haeder
------------------------------------------------------------------------------------------------------------------------------------------------------ */
#logo img {
  max-width: 67px;
}
#logo {
  margin: auto;
}
nav {
  width: 100%;
  height: 60px;
  background: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  position: fixed;
  top: 69px;
  z-index: 1000;
}
.drawer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 100%;
}
.menu ul {
  border-top: 1px solid #101B75;
}
.menu ul li a {
  display: block;
  font-weight: bold;
  padding: 30px;
  border-bottom: 1px solid;
  text-decoration: none;
  color: #101B75;
  background: #fff;
}
.menu ul li a:hover {
  background-color: #CCC;
}
.menu {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.5);
  transition: 0.5s ease; /*滑らかに表示*/
  -webkit-transform: translateX(100%);
  /* transform: translateX(-100%);*/
  opacity: 0;
  visibility: hidden;
}
.menu.open {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  opacity: 1;
  visibility: visible
}
.Toggle {
  display: block;
  position: fixed;
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 3;
  right: 0;
  background: #101B75;
}
.Toggle span {
  display: block;
  position: absolute;
  width: 23px;
  border-bottom: solid 2px #fff;
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
  left: 0;
  right: 0;
  margin: auto;
}
.Toggle span:nth-child(1) {
  top: 22px;
}
.Toggle span:nth-child(2) {
  top: 28px;
}
.Toggle span:nth-child(3) {
  top: 34px;
  width: 15px;
  left: -8px;
}
.Toggle.active span:nth-child(1) {
  top: 28px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.Toggle.active span:nth-child(2), .Toggle.active span:nth-child(3) {
  top: 28px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 0;
}
.Toggle.active span:nth-child(3) {
  opacity: 0;
}
.fix-btn {
  display: none;
}
.cart-btn {
  position: absolute;
  top: 8px;
  left: 14px;
  display: block;
  z-index: 1001
}
@media screen and (min-width: 1200px) {
  #logo {
    width: 146px;
  }
  #logo img {
    max-width: 146px;
    transition: .2s;
  }
  nav.HeightMin #logo img {
    max-width: 100px;
  }
  nav {
    display: flex;
    justify-content: space-between;
    padding-left: 30px;
    height: 105px;
    transition: .2s;
  }
  nav.HeightMin {
    height: 61px;
  }
  .Toggle {
    display: none;
  }
  .menu {
    width: 100%;
    font-size: 16px;
    background-color: transparent;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
    visibility: visible
  }
  .menu ul {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-right: 183px;
    position: relative;
  }
  .menu ul {
    border: none;
  }
  .menu ul li {
    margin: 0 40px;
  }
  .menu ul li a {
    padding: 0;
    border-bottom: none;
    color: #101B75
  }
  .menu ul li.link-bathclin {
    padding-right: 23px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .menu ul li a:hover {
    background-color: transparent;
    color: #101B75;
    opacity: .7;
  }
  nav a:hover {
    opacity: .7;
  }
  .cart-btn {
    display: none;
  }
  .fix-btn {
    position: fixed;
    display: block;
    top: 213px;
    right: 0;
    z-index: 100;
  }
  .fix-btn:hover {
    opacity: .7;
  }
}
/* ---------------------------------------------------------------------------
//  footer-top
--------------------------------------------------------------------------- */
.footer-top {
  position: relative;
}
.footer-top .section-container {
  padding: 31px 0 35px;
  background: rgba(156, 181, 221, .79);
  text-align: center;
  color: #fff;
}
.footer-top .title01 {
  font-size: 19px;
  line-height: calc(27 / 19);
  font-weight: bold;
  margin-bottom: 20px;
}
.footer-top .shop-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 18px;
}
.footer-top .shop-list .shop-item {
  width: calc((100% - 54px) / 2);
  max-width: 140px;
  margin: 0 13.5px 17.5px;
}
.footer-top .shop-list .shop-item img {
  width: 100%;
}
.footer-top .sns-area {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-top .sns-area a {
  margin: 0 20px;
}
.to-top-btn {
  position: absolute;
  right: 19.5px;
  bottom: 35px;
  z-index: 1000;
  display: block;
}
@media screen and (min-width: 1025px) {
  footer a:hover {
    opacity: .7;
  }
  .footer-top .section-container {
    padding: 74px 0 95px;
  }
  .footer-top .title01 {
    font-size: 32px;
    line-height: calc(46 / 32);
    margin-bottom: 55px;
  }
  .footer-top .shop-list {
    justify-content: space-between;
    margin-bottom: 104px;
  }
  .footer-top .shop-list .shop-item {
    width: calc((100% - 124px) / 5);
    margin: 0;
  }
  .footer-top .sns-area a {
    margin: 0 23.5px;
  }
  .to-top-btn {
    right: 33px;
    bottom: 32px;
  }
}
/* ---------------------------------------------------------------------------
//  footer-bottom
--------------------------------------------------------------------------- */
.footer-bottom .section-container {
  padding: 40px 0 24px;
  text-align: center;
}
.footer-bottom .company {
  margin-bottom: 27px;
}
.footer-bottom .link-area {
  margin-bottom: 40px;
}
.footer-bottom .link-item {
  color: #0F1B75;
  font-size: 14px;
  line-height: calc(38 / 14);
  font-weight: 500;
}
.footer-bottom .copy {
  font-size: 11px;
  line-height: 2;
  color: #0F1B75;
  font-weight: 500;
}
@media screen and (min-width: 1025px) {
  .footer-bottom .section-container {
    padding: 15px 0 85px;
    text-align: left;
  }
  .footer-bottom .bathclin-area {
    display: flex;
    justify-content: space-between;
  }
  .footer-bottom .company {
    margin-bottom: 0;
  }
  .footer-bottom .link-area {
    margin-bottom: 14px;
    display: flex;
  }
  .footer-bottom .link-item {
    font-size: 14px;
    line-height: 1;
    padding: 1px 12px;
  }
  .footer-bottom .link-item + .link-item {
    border-left: solid 1px;
  }
  .footer-bottom .copy {
    font-size: 12px;
    text-align: right
  }
}
/* ------------------------------------------------------------------------------------------------------------------------------------------------------
//  トップページ
------------------------------------------------------------------------------------------------------------------------------------------------------ */
/* ---------------------------------------------------------------------------
//  top-mv
--------------------------------------------------------------------------- */
body.top {
  padding-top: 0;
}
.top-mv {
  overflow: hidden;
}
.top-mv .section-container {
  padding: 65.2px 31px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* min-height: calc(100vh - 60px); */
  min-height: 100vh;
  position: relative;
}
.top-mv .section-block {
  max-width: 515px;
  margin: auto;
  position: relative;
}
.top-mv .section-block::before {
  content: "";
  background: url("../img/top/top-mv-deco.png")no-repeat center;
  background-size: contain;
  width: 14.4vw;
  max-width: 100px;
  height: 100%;
  display: block;
  position: absolute;
  left: -7%;
  top: 0;
}
.top-mv .section-block {
  position: relative;
  z-index: 2;
}
.top-mv .mv-bg {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  /* background: url("../img/top/top-mv-bg.png") no-repeat center;
  background-size: cover; */
}
@media screen and (min-width: 1025px) {
  .top-mv .section-container {
    padding: 200px 70px;
    min-height: 798px;
    height: 100vh;
    /*display: flex;
    justify-content: center;
    align-items: center;*/
  }
  .top-mv .section-block {
    margin: auto;
    position: relative;
  }
  .top-mv .section-block::before {
    content: "";
    background: url("../img/top/top-mv-deco.png")no-repeat center;
    background-size: contain;
    width: 119px;
    height: 142px;
    display: block;
    position: absolute;
    left: -75px;
    top: 118px;
  }
  .top-mv .mv-title {
    position: relative;
    z-index: 2;
  }
  .top-mv .mv-bg {
    min-height: 100%;
    max-height: inherit;
  }
}
/* ---------------------------------------------------------------------------
//  top-01
--------------------------------------------------------------------------- */
.top-01 .section-container {
  background: url("../img/top/top-01-bg_spN.png") no-repeat right bottom;
  background-size: contain;
  padding-bottom: 50vw;
  position: relative;
}
.top-01 .section-container::before {
  content: "";
  background: url("../img/top/top-01-image01_sp.png") no-repeat right bottom;
  background-size: contain;
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.top-01 .section-block {
  padding: 60px 0 0 0;
  text-align: center;
  font-size: 19px;
  line-height: calc(29 /19);
  font-weight: bold;
  color: #101B75;
  display: flex;
  justify-content: center;
}
.top-01 .section-block .copy {
  position: relative;
}
.top-01 .section-block .copy::before, .top-01 .section-block .copy::after {
  content: "";
  position: absolute;
  display: block;
  z-index: 2;
  mix-blend-mode: multiply;
}
.top-01 .section-block .copy::before {
  background: url("../img/top/top-01-deco01_sp.svg")no-repeat;
  background-size: contain;
  width: 51px;
  height: 100px;
  top: -32px;
  left: -27px;
}
.top-01 .section-block .copy::after {
  background: url("../img/top/top-01-deco02_sp.svg")no-repeat;
  background-size: contain;
  width: 96px;
  height: 68px;
  bottom: -140px;
  right: 70px;
}
@media screen and (min-width: 1025px) {
  .top-01 .section-container {
    background: url("../img/top/top-01-bg.png") no-repeat right bottom;
    background-size: cover;
    padding-bottom: 293px;
  }
  .top-01 .section-container::before {
    background: url("../img/top/top-01-image01.png") no-repeat right bottom;
    background-size: contain;
    bottom: -30px;
    width: 1112px;
    height: 516px;
    z-index: 2;
    right: -196px;
  }
  .top-01 .section-block {
    padding: 102px 0 0 0;
    font-size: 25px;
    line-height: calc(58 /25);
  }
  .top-01 .section-block .copy::before {
    background: url("../img/top/top-01-deco01_pc.svg")no-repeat;
    background-size: contain;
    width: 158px;
    height: 777px;
    left: -160px;
    top: -70px;
  }
  .top-01 .section-block .copy::after {
    background: url("../img/top/top-01-deco02_pc.svg")no-repeat;
    background-size: contain;
    width: 207px;
    height: 145px;
    bottom: -130px;
    right: -35px;
  }
}
@media screen and (min-width: 1100px) {
  .top-01 .section-container::before {
    right: -86px;
  }
}
/* ---------------------------------------------------------------------------
//  top-02
--------------------------------------------------------------------------- */
.top-02 .section-container {
  padding-top: 122px;
  padding-bottom: 46px;
  text-align: center;
  position: relative;
  background: url("../img/top/top-02-deco02_sp.svg")no-repeat bottom left -75px;
  background-size: 412px;
  z-index: 2;
}
.top-02 .section-container::before {
  content: "";
  background: url("../img/top/top-02-deco.svg")no-repeat;
  background-size: contain;
  width: 50px;
  height: 59.1px;
  display: block;
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  margin: auto;
}
.top-02 .section-block .copy {
  font-size: 19px;
  font-weight: bold;
  line-height: calc(29 /19);
  color: #101B75;
  margin-bottom: 20px;
}
.top-02 .section-block .image {
  padding-right: 23px;
  margin-bottom: 27px;
}
.top-02 .section-block .image img {
  width: 100%;
}
.top-02 .section-block .description {
  font-size: 16px;
  line-height: calc(28 / 16);
  margin-bottom: 27px;
  font-weight: 500;
}
.top-02 .section-block .blue-btn {
  max-width: 543px;
}
@media screen and (min-width: 1025px) {
  .top-02 .section-container {
    padding-top: 284px;
    padding-bottom: 125px;
    background: none;
    position: relative;
  }
  .top-02 .section-container::before {
    width: 86.8px;
    height: 102.6px;
    top: 120px;
  }
  .top-02 .section-container::after {
    content: "";
    position: absolute;
    background: url("../img/top/top-02-deco02_pc.svg")no-repeat;
    background-size: contain;
    width: 1113px;
    height: 67px;
    display: block;
    bottom: 0;
  }
  .top-02 .section-block {
    position: relative
  }
  .top-02 .section-block::before {
    content: "";
    background: url("../img/top/top-02-image01_pc.png")no-repeat;
    background-size: contain;
    width: 1022px;
    height: 702px;
    display: block;
    position: absolute;
    left: 0;
    top: -56px;
  }
  .top-02 .section-block::after {
    content: "";
    background: url("../img/top/top-02-image02_pc.png")no-repeat;
    background-size: contain;
    width: 346.8px;
    height: 680px;
    display: block;
    position: absolute;
    right: 43px;
    top: -192px;
  }
  .top-02 .section-block .copy {
    font-size: 25px;
    position: relative;
    line-height: calc(36 /25);
    margin-bottom: 37px;
  }
  .top-02 .section-block .image {
    display: none;
  }
  .top-02 .section-block .description {
    margin-bottom: 60px;
    position: relative;
    line-height: calc(48 / 19);
    z-index: 2;
    font-size: 19px;
  }
  .top-02 .section-block .blue-btn {
    position: relative;
  }
}
/* ---------------------------------------------------------------------------
//  top-03
--------------------------------------------------------------------------- */
.top-03 .section-container {
  padding: 136px 0 70px;
  text-align: center;
  position: relative;
  background: url("../img/top/top-03-bg02_sp.png")no-repeat top center;
  background-size: cover;
}
.top-03 .section-container::before {
  content: "";
  background: url("../img/top/top-03-bg01_sp.png")no-repeat;
  background-size: contain;
  width: 428px;
  height: 256px;
  display: block;
  position: absolute;
  right: -64px;
  top: -62px;
  mix-blend-mode: multiply
}
.top-03 .section-container::after {
  content: "";
  background: url("../img/top/top-02-deco.svg")no-repeat;
  background-size: contain;
  width: 50px;
  height: 59.1px;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 58px;
  margin: auto;
  mix-blend-mode: multiply
}
.top-03 .copy {
  font-size: 25px;
  font-weight: bold;
  line-height: calc(36 / 25);
  color: #101B75;
  position: relative;
  margin-bottom: 20px;
}
.top-03 .obsession-item {
  background: #fff;
  border-radius: 23px;
  padding: 20px 20px 25px;
}
.top-03 .obsession-item + .obsession-item {
  margin-top: 28px;
}
.top-03 .obsession-item .title-area {
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("../img/top/top-03-shape_sp.svg")no-repeat center bottom;
  padding-bottom: 32px;
  margin-bottom: 32px;
  color: #101B75;
}
.top-03 .obsession-item .title-area .num {
  font-size: 28px;
  font-weight: 500;
  width: 57px;
  height: 57px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 1px #101B75;
  border-radius: 100%;
  margin-right: 7px;
}
.top-03 .obsession-item .title-area .title {
  text-align: left;
  font-size: 19px;
  line-height: calc(27 / 19);
  font-weight: bold;
}
.top-03 .obsession-item .description {
  font-size: 15px;
  text-align: left;
  line-height: calc(25 / 15);
  margin-bottom: 41px;
}
.top-03 .obsession-item .image {
  max-width: 164px;
  margin: auto;
}
.top-03 .sup {
  display: block;
  font-size: 12px;
  margin-top: 13px;
  text-align: right
}
@media screen and (min-width: 1025px) {
  .top-03 .section-container {
    padding: 169px 0 70px;
    background: url("../img/top/top-03-bg02_pc.png")no-repeat bottom -160px center;
    background-size: cover;
  }
  .top-03 .section-container::before {
    content: "";
    background: url("../img/top/top-03-bg01_pc.png")no-repeat;
    background-size: contain;
    width: 872px;
    height: 526px;
    right: -10px;
    top: -125px;
  }
  .top-03 .section-container::after {
    content: "";
    background: url("../img/top/top-02-deco.svg")no-repeat;
    background-size: contain;
    width: 86.81px;
    height: 102.61px;
    top: 60px;
  }
  .top-03 .copy {
    font-size: 32px;
    line-height: calc(46 / 32);
    margin-bottom: 111.4px;
  }
  .top-03 .obsession-item {
    border-radius: 30px;
    padding: 30px 20px 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 320px;
  }
  .top-03 .obsession-item .left {
    width: 466.5px;
    margin-right: 72px;
  }
  .top-03 .obsession-item .right {
    width: 264px;
  }
  .top-03 .obsession-item + .obsession-item {
    margin-top: 21px;
  }
  .top-03 .obsession-item .title-area {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    align-items: center;
    background: url("../img/top/top-03-shape_pc.svg")no-repeat center bottom;
    padding-bottom: 30px;
    margin-bottom: 20px;
  }
  .top-03 .obsession-item .title-area .num {
    font-size: 42px;
    width: 78px;
    height: 78px;
  }
  .top-03 .obsession-item .title-area .title {
    font-size: 25px;
    line-height: calc(36 / 25);
  }
  .top-03 .obsession-item .description {
    font-size: 16px;
    line-height: calc(25 / 16);
    margin-bottom: 0;
  }
  .top-03 .obsession-item .image {
    max-width: 100%;
  }
  .top-03 .sup {
    font-size: 12px;
    margin-top: 30px;
  }
}
/* ---------------------------------------------------------------------------
//  top-04
--------------------------------------------------------------------------- */
.top-04 .section-container .block01 {
  padding: 60px 0 0;
  text-align: center;
  position: relative;
  background: url("../img/top/top-04-bg01_spNNN.png")no-repeat center;
  background-size: cover;
}
.top-04 .section-container .block01 .title01 {
  font-size: 25px;
  font-weight: bold;
  line-height: calc(36 / 25);
  color: #101B75;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 1px;
  border-radius: 10px;
  margin-bottom: 40px;
}
.top-04 .section-container .block02 {
  position: relative;
  padding: 50px 0 4px;
  text-align: center;
}
.top-04 .section-container .block02::before {
  content: "";
  background: url("../img/top/top-04-shape01_sp.svg")no-repeat;
  background-size: contain;
  width: 352px;
  height: 38px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.top-04 .section-container .block02 .title02 {
  color: #101B75;
  font-size: 21px;
  font-weight: bold;
  line-height: calc(30 / 21);
  margin-bottom: 12px;
}
.top-04 .section-container .block02 .link-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.top-04 .section-container .block02 .link-list .link-item {
  margin-bottom: 3px;
  width: calc((100% - 6px) / 3);
}
.top-04 .section-container .block02 .link-list .link-item a {
  height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  line-height: calc(16 / 13);
  font-weight: bold;
  color: #fff;
}
/*.top-04 .section-container .block02 .link-list .link-item.item01 {
  width: calc((100% - 3px) / 2);
}*/
.top-04 .section-container .block02 .link-list .link-item.item01 a {
  background: #90DCDE;
}
.top-04 .section-container .block02 .link-list .link-item.item02 {
  width: calc((100% - 3px) / 2);
}
.top-04 .section-container .block02 .link-list .link-item.item02 a {
  background: #E6C785;
}
.top-04 .section-container .block02 .link-list .link-item.item03 a {
  background: #69BCEA;
}
.top-04 .section-container .block02 .link-list .link-item.item04 a {
  background: #E89FBB;
}
.top-04 .section-container .block02 .link-list .link-item.item05 a {
  background: #B5B3EF;
}
@media screen and (min-width: 1025px) {
  .top-04 .section-container .block01 {
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    background: url("../img/top/top-04-bg01_pc.png")no-repeat center bottom;
    background-size: 100%;
  }
  .top-04 .section-container .block01 .title01 {
    font-size: 32px;
    height: 97px;
    margin-bottom: 56px;
    border: solid 2px;
  }
  .top-04 .section-container .block02 {
    position: relative;
    padding-top: 50px;
    padding-bottom: 67px;
    text-align: center;
  }
  .top-04 .section-container .block02::before {
    background: url("../img/top/top-04-shape01_pc.svg")no-repeat;
    background-size: contain;
    width: 1115px;
    height: 72px;
    mix-blend-mode: multiply;
    top: -30px;
  }
  .top-04 .section-container .block02 .title02 {
    font-size: 28px;
    line-height: calc(40 / 28);
    margin-bottom: 36px;
  }
  .top-04 .section-container .block02 .link-list {
    justify-content: center;
  }
  .top-04 .section-container .block02 .link-list .link-item {
    margin-bottom: 0;
    margin-left: 15px;
    margin-right: 15px;
    width: calc((100% - 108px) / 5) !important;
  }
  .top-04 .section-container .block02 .link-list .link-item a {
    height: auto;
    font-size: 0;
    padding-top: 108.988764%;
  }
  .top-04 .section-container .block02 .link-list .link-item.item01 a {
    background: url("../img/top/top-04-link01_pc.png")no-repeat;
    background-size: contain;
  }
  .top-04 .section-container .block02 .link-list .link-item.item02 a {
    background: url("../img/top/top-04-link02_pc.png")no-repeat;
    background-size: contain;
  }
  .top-04 .section-container .block02 .link-list .link-item.item03 a {
    background: url("../img/top/top-04-link03_pc.png")no-repeat;
    background-size: contain;
  }
  .top-04 .section-container .block02 .link-list .link-item.item04 a {
    background: url("../img/top/top-04-link04_pc.png")no-repeat;
    background-size: contain;
  }
  .top-04 .section-container .block02 .link-list .link-item.item05 a {
    background: url("../img/top/top-04-link05_pc.png")no-repeat;
    background-size: contain;
  }
  .top-04 .section-container .block02 .link-list .link-item a:hover {
    opacity: .8;
  }
}
/* ---------------------------------------------------------------------------
//  top-05
--------------------------------------------------------------------------- */
.top-05-slide {
  padding-bottom: 84px;
}
.top-05.forSP {
  position: relative;
}
.top-05-slide .slick-slide {
  margin: 0 7px;
}
.top-05-slide .slick-slide img {
  max-width: 322px;
}
.top-05-slide .slick-prev {
  position: absolute;
  bottom: 37px;
  left: 20px;
  padding-top: 37px;
  width: 128px;
  height: 0;
  overflow: hidden;
  background-color: #dbd9c9;
  background-image: url(../img/top/top-05-prev-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.top-05-slide .slick-next {
  position: absolute;
  bottom: 37px;
  right: 20px;
  padding-top: 37px;
  width: 128px;
  height: 0;
  overflow: hidden;
  background-color: #dbd9c9;
  background-image: url(../img/top/top-05-next-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.top-05-slide-num {
  position: absolute;
  bottom: 37px;
  left: 50%;
  transform: translateX(-50%);
}
.top-05-slide-num .num {
  font-size: 14px;
  line-height: 18px;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .top-05.forPC .section-block {
    padding: 51px 0 120px;
    position: relative
  }
  .top-05.forPC .section-block::before {
    content: "";
    height: 519px;
    width: 100%;
    display: block;
    position: absolute;
    z-index: -1;
    top: 0;
  }
  .top-05.forPC .section-block.block01::before {
    background: #D6F1F2;
    opacity: .43;
  }
  .top-05.forPC .section-block.block02::before {
    background: #FAF7F0;
    opacity: 1;
  }
  .top-05.forPC .section-block.block03::before {
    background: #BFE5FA;
    opacity: .45;
  }
  .top-05.forPC .section-block.block04::before {
    background: #FAE4ED;
    opacity: .6;
    height: 610px;
  }
  .top-05.forPC .section-block.block05::before {
    background: #E4E4FA;
    opacity: .45;
  }
  .top-05.forPC .section-block.block01 {
    color: #60B8BA;
  }
  .top-05.forPC .section-block.block02 {
    color: #9F843D;
  }
  .top-05.forPC .section-block.block03 {
    color: #2666AF;
  }
  .top-05.forPC .section-block.block04 {
    color: #E58DAF;
  }
  .top-05.forPC .section-block.block05 {
    color: #817ED1;
  }
  .top-05.forPC .section-block .title01 {
    font-size: 32px;
    font-weight: bold;
    border-radius: 9px;
    height: 97px;
    border: solid 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 17px;
  }
  .top-05.forPC .product-area {
    display: flex;
    justify-content: space-between;
  }
  .top-05.forPC .product-area .left {
    width: 50%;
    position: relative;
    height: 632px;
  }
  .top-05.forPC .product-area.new .left::before {
    content: "";
    background: url("../img/top/top-05-label-new.svg")no-repeat;
    background-size: contain;
    display: block;
    position: absolute;
    width: 97px;
    height: 71px;
    z-index: 2;
    top: 20px;
    left: 0;
  }
  .top-05.forPC .product-area .left .image {
    position: absolute;
    width: 632px;
    height: 632px;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 0;
  }
  .top-05.forPC .product-area .left .image::before {
    content: "";
    position: absolute;
    display: block;
    width: 974px;
    height: 632px;
    right: 0;
    top: 0;
  }
  .top-05.forPC .block01 .product-area .left .image::before {
    background: url("../img/top/top-05-bg01_pc.svg")no-repeat;
    background-size: contain;
  }
  .top-05.forPC .block02 .product-area .left .image::before {
    background: url("../img/top/top-05-bg02_pc.svg")no-repeat;
    background-size: contain;
  }
  .top-05.forPC .block03 .product-area .left .image::before {
    background: url("../img/top/top-05-bg03_pc.svg")no-repeat;
    background-size: contain;
  }
  .top-05.forPC .block04 .product-area .left .image::before {
    background: url("../img/top/top-05-bg04_pc.svg")no-repeat;
    background-size: contain;
  }
  .top-05.forPC .block05 .product-area .left .image::before {
    background: url("../img/top/top-05-bg05_pc.svg")no-repeat;
    background-size: contain;
  }
  .top-05.forPC .product-area .left img {
    position: relative;
    z-index: 2;
  }
  .top-05.forPC .product-area .left .ribbon-text {
    position: absolute;
    bottom: 0;
  }
  .top-05.forPC .product-area .left .circle-text {
    position: absolute;
    width: 198px;
    height: 198px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 19px;
    line-height: calc(32 / 19);
    font-weight: bold;
    color: #fff;
    border-radius: 100%;
    right: -120px;
    top: 0;
    z-index: 1;
  }
  .top-05.forPC .block01 .product-area .left .circle-text {
    background: #60B8BA;
  }
  .top-05.forPC .block02 .product-area .left .circle-text {
    background: #9F843D;
  }
  .top-05.forPC .block03 .product-area .left .circle-text {
    background: #2666AF;
  }
  .top-05.forPC .block04 .product-area .left .circle-text {
    background: #E58DAF;
  }
  .top-05.forPC .block05 .product-area .left .circle-text {
    background: #817ED1;
  }
  .top-05.forPC .product-area .left .circle-text::before {
    content: "";
    width: 175px;
    height: 181px;
    position: absolute;
    bottom: -90px;
    left: -50px;
  }
  .top-05.forPC .block01 .product-area .left .circle-text::before {
    background: url("../img/top/top-05-item01-deco01_pc.svg")no-repeat;
    background-size: contain;
  }
  .top-05.forPC .block02 .product-area .left .circle-text::before {
    background: url("../img/top/top-05-item02-deco01_pc.svg")no-repeat;
    background-size: contain;
  }
  .top-05.forPC .block03 .product-area .left .circle-text::before {
    background: url("../img/top/top-05-item03-deco01_pc.svg")no-repeat;
    background-size: contain;
  }
  .top-05.forPC .block04 .product-area .left .circle-text::before {
    background: url("../img/top/top-05-item04-deco01_pc.svg")no-repeat;
    background-size: contain;
  }
  .top-05.forPC .block05 .product-area .left .circle-text::before {
    background: url("../img/top/top-05-item05-deco01_pc.svg")no-repeat;
    background-size: contain;
  }
  .top-05.forPC .product-area .right {
    width: 401px;
    position: relative;
  }
  .top-05.forPC .product-area .right .title02 {
    font-size: 28px;
    font-weight: bold;
    line-height: calc(43 /28);
    margin-bottom: 5px;
    padding-left: 24px;
    height: 126px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .top-05.forPC .product-area .right .title02 .smaller {
    font-size: 20px;
    display: block;
  }
  #product01 .smaller {
    color: #60989A;
  }
  #product03 .smaller {
    color: #C7A344;
  }
  .top-05.forPC .product-area .right .title02-sub {
    display: flex;
    padding-left: 24px;
    font-weight: 500;
    margin-bottom: 23px;
  }
  .top-05.forPC .product-area .right .title02-sub .label {
    font-size: 13px;
    border: solid 1px;
    width: 77px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
  }
  .top-05.forPC .product-area .right .title02-sub .label + p {
    font-size: 12px;
    font-weight: 400;
    flex-grow: 2;
    color: #212020;
    display: flex;
    line-height: 2;
    position: relative;
    top: -2px;
  }
  .top-05.forPC .product-area .right .description {
    padding-left: 24px;
    font-size: 16px;
    line-height: calc(25 / 16);
    color: #212020;
  }
  .top-05.forPC .product-area .right .description + .sup {
    font-size: 12px;
    line-height: calc(25 / 12);
    text-align: right;
    color: #212020;
    margin-bottom: 29px;
  }
  .top-05.forPC .flex-area {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  .top-05.forPC .flex-area.is-mild {
    margin-left: -65px;
  }
  .top-05.forPC .flex-item {
    width: 180px;
    text-align: center;
  }
  .top-05.forPC .flex-item:first-of-type {
    width: 212px;
  }
  .top-05.forPC .flex-item .image {
    width: 106px;
    margin: 0 auto 5px;
  }
  .top-05.forPC .flex-item.double .image.double {
    width: 212px;
  }

  .top-05.forPC .flex-item.triple {
    width: 340px;
  }
  .top-05.forPC .flex-item.triple .image.triple {
    width: 340px;
  }
  .top-05.forPC .flex-item p {
    font-size: 13px;
    line-height: calc(21 / 13);
    font-weight: bold;
  }
  .top-05.forPC .efficacy-area {
    border: solid 2px;
    border-radius: 5px;
  }
  .top-05.forPC .efficacy-area .title03 {
    text-align: center;
    ;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 19px;
    font-weight: bold;
    border-bottom: solid 2px;
  }
  .top-05.forPC .efficacy-area p {
    font-size: 16px;
    line-height: calc(25 / 16);
    font-weight: 500;
    padding: 8px 15px;
  }
  .top-05.forPC .btn {
    font-size: 19px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 55px;
    text-align: center;
    border-radius: 100px;
    color: #fff;
    margin-top: 60px;
  }
  .top-05.forPC .block01 .btn {
    background: #60B8BA;
    border: solid 1px #60B8BA;
  }
  .top-05.forPC .block01 .btn:hover {
    background: #fff;
    color: #60B8BA;
    border: solid 1px #60B8BA;
    text-decoration: none;
  }
  .top-05.forPC .block02 .btn {
    background: #9F843D;
    border: solid 1px #9F843D;
  }
  .top-05.forPC .block02 .btn:hover {
    background: #fff;
    color: #9F843D;
    border: solid 1px #9F843D;
    text-decoration: none;
  }
  .top-05.forPC .block03 .btn {
    background: #2666AF;
    border: solid 1px #2666AF;
  }
  .top-05.forPC .block03 .btn:hover {
    background: #fff;
    color: #2666AF;
    text-decoration: none;
  }
  .top-05.forPC .block04 .btn {
    background: #E58DAF;
    border: solid 1px #E58DAF;
  }
  .top-05.forPC .block04 .btn:hover {
    background: #fff;
    color: #E58DAF;
    text-decoration: none;
  }
  .top-05.forPC .block05 .btn {
    background: #817ED1;
    border: solid 1px #817ED1;
  }
  .top-05.forPC .block05 .btn:hover {
    background: #fff;
    color: #817ED1;
    text-decoration: none;
  }
}
/* ---------------------------------------------------------------------------
//  top-06
--------------------------------------------------------------------------- */
.top-06 .section-container {
  background: #F8F8F7;
  padding: 33px 0 51px;
}
.top-06 .title-area {
  text-align: center;
  margin-bottom: 26px;
}
.top-06 .title-area .logo {
  width: 138px;
  margin: auto;
}
.top-06 .title-area .title01 {
  font-size: 21px;
  line-height: calc(31 / 21);
  font-weight: bold;
  color: #2E3886;
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-06 .title-area .title01::before, .top-06 .title-area .title01::after {
  content: "";
  width: 42.5px;
  height: 42.5px;
  position: relative;
  margin:
    0 8px;
}
.top-06 .title-area .title01::before {
  background: url("../img/top/top-06-Q.svg")no-repeat;
  background-size: contain;
}
.top-06 .title-area .title01::after {
  background: url("../img/top/top-06-A.svg")no-repeat;
  background-size: contain;
}
.top-06 .blue-btn {
  margin: 0;
  width: 100%;
  font-size: 18px;
}
.accordion-container {
  margin-bottom: 46px;
}
.accordion-list:not(:first-child) {
  margin-top: 16px;
}
.accordion-title {
  background: #fff;
  cursor: pointer;
  font-size: 15px;
  line-height: calc(25 / 15);
  color: #101B75;
  font-weight: bold;
  padding: 16px 50px 16px 60px;
  position: relative;
  border: solid 1px #2E3886;
}
.product .accordion-title {
  color: inherit;
  border: none;
  border: solid 1px;
}
.accordion-title h3::before {
  content: "";
  background: url("../img/top/top-06-Q.svg")no-repeat;
  background-size: contain;
  width: 39px;
  height: 39px;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  margin: auto;
}
.product01 .accordion-title h3::before {
  background: url("../img/product/product01-02-Q.svg")no-repeat;
  background-size: contain;
}
.product02 .accordion-title h3::before {
  background: url("../img/product/product02-02-Q.svg")no-repeat;
  background-size: contain;
}
.product03 .accordion-title h3::before {
  background: url("../img/product/product03-02-Q.svg")no-repeat;
  background-size: contain;
}
.product04 .accordion-title h3::before {
  background: url("../img/product/product04-02-Q.svg")no-repeat;
  background-size: contain;
}
.product04 .accordion-title h3::before {
  background: url("../img/product/product04-02-Q.svg")no-repeat;
  background-size: contain;
}
.accordion-title span {
  width: 22px;
  height: 23px;
  background: rgba(16, 27, 117, .38);
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 14px;
  margin: auto;
}
.product01 .accordion-title span {
  background: rgba(96, 184, 186, .36);
}
.product02 .accordion-title span {
  background: rgba(164, 209, 242, .36);
}
.product03 .accordion-title span {
  background: rgba(159, 132, 61, .36);
}
.product04 .accordion-title span {
  background: rgba(229, 141, 175, .36);
}
.accordion-title:before {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  margin: auto;
  right: 19px;
  height: 2px;
  width: 12px;
  background: #fff;
  transform: rotate(90deg);
  transition: all .3s ease-in-out;
  z-index: 2;
}
.accordion-title:after {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  margin: auto;
  right: 19px;
  height: 2px;
  width: 12px;
  background: #fff;
  transition: all .3s ease-in-out;
}
.accordion-title.open:before {
  transform: rotate(180deg);
}
.accordion-title.open:after {
  opacity: 0;
}
.accordion-text {
  display: none;
  padding: 17px 0px 17px 60px;
  font-size: 15px;
  line-height: calc(25 / 15);
  position: relative;
  color: #212020;
}
.accordion-text::before {
  content: "";
  background: url("../img/top/top-06-A.svg")no-repeat;
  background-size: contain;
  width: 39px;
  height: 39px;
  display: block;
  position: absolute;
  top: 17px;
  left: 10px;
}
.product01 .accordion-text::before {
  background: url("../img/product/product01-02-A.svg")no-repeat;
  background-size: contain;
}
.product02 .accordion-text::before {
  background: url("../img/product/product02-02-A.svg")no-repeat;
  background-size: contain;
}
.product03 .accordion-text::before {
  background: url("../img/product/product03-02-A.svg")no-repeat;
  background-size: contain;
}
.product04 .accordion-text::before {
  background: url("../img/product/product04-02-A.svg")no-repeat;
  background-size: contain;
}
@media screen and (min-width: 1025px) {
  .top-06 .section-container {
    background: #F8F8F7;
    padding: 82.5px 0 124px;
  }
  .top-06 .title-area {
    margin-bottom: 58px;
  }
  .top-06 .title-area .logo {
    width: 219px;
  }
  .top-06 .title-area .title01 {
    font-size: 28px;
    line-height: calc(43 / 28);
  }
  .top-06 .title-area .title01::before, .top-06 .title-area .title01::after {
    content: "";
    width: 57px;
    height: 57px;
    margin: 0 11px;
  }
  .top-06 .blue-btn {
    font-size: 19px;
  }
  .accordion-container {
    margin-bottom: 46px;
  }
  .accordion-list:not(:first-child) {
    margin-top: 34px;
  }
  .accordion-title {
    font-size: 19px;
    line-height: calc(27/ 19);
    padding: 39px 80px 39px 109px;
  }
  .accordion-title h3::before {
    width: 57px;
    height: 57px;
    left: 27px;
  }
  .accordion-title span {
    width: 32px;
    height: 32px;
    right: 18px;
  }
  .accordion-title:before {
    right: 24px;
    width: 19px;
  }
  .accordion-title:after {
    right: 24px;
    width: 19px;
  }
  .accordion-text {
    padding: 31px 0px 31px 109px;
    font-size: 16px;
    line-height: calc(25 / 16);
  }
  .accordion-text::before {
    width: 57px;
    height: 57px;
    top: 20px;
    left: 27px;
  }
}
/* ---------------------------------------------------------------------------
//  top-07
--------------------------------------------------------------------------- */
.top-07 .section-container {
  padding: 33.5px 0 64px;
}
.top-07 .title01 {
  font-size: 25px;
  font-weight: bold;
  line-height: calc(36 / 25);
  color: #101B75;
  text-align: center;
  background: url("../img/top/top-07-deco01_sp.svg")no-repeat center bottom;
  background-size: 412px;
  padding-bottom: 37px;
}
@media screen and (min-width: 1025px) {
  .top-07 .section-container {
    padding: 77px 0 105px;
  }
  .top-07 .title01 {
    font-size: 32px;
    line-height: calc(46 / 32);
    color: #101B75;
    background: url("../img/top/top-07-deco01.svg")no-repeat center bottom;
    background-size: 1112px;
    padding-bottom: 91px;
    margin-bottom: 14px;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------------------------------------
//  商品ページ
------------------------------------------------------------------------------------------------------------------------------------------------------ */
.product main .inner1000 {
  max-width: 750px;
}
.product01 main {
  color: #60B8BA;
}
.product02 main {
  color: #2666AF;
}
.product03 main {
  color: #9F843D;
}
.product04 main {
  color: #E58DAF;
}
.product05 main {
  color: #817ED1;
}
.product .smaller {
  font-size: 14px;
  line-height: 1.5;
  display: block;
}
.product01 .smaller {
  color: #60989A;
}
.product03 .smaller {
  color: #C7A344;
}
@media screen and (min-width: 1025px) {
  .product .smaller {
    font-size: 16px;
  }
}
/* ---------------------------------------------------------------------------
//  product-top
--------------------------------------------------------------------------- */
.product-top .section-block.block01 {
  height: 425px;
  text-align: center;
  position: relative;
}
.product01 .product-top .section-block.block01 {
  background: rgba(107, 209, 211, .25);
  padding: 34px 10px 0;
}
.product02 .product-top .section-block.block01 {
  background: rgba(154, 209, 242, .25);
  padding: 34px 10px 0;
}
.product03 .product-top .section-block.block01 {
  background: #FFF6E2;
  padding: 34px 10px 0;
}
.product04 .product-top .section-block.block01 {
  background: rgba(249, 231, 238, .75);
  padding: 34px 10px 0;
}
.product05 .product-top .section-block.block01 {
  background: #EFEFFD;
  padding: 34px 10px 0;
}
.product-top .title01 {
  font-size: 21px;
  font-weight: bold;
  border: solid 1px;
  height: 73px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  margin-bottom: 12px;
}
.product-top .title02 {
  font-size: 21px;
  font-weight: bold;
  line-height: calc(30 / 21);
  margin-bottom: 15px;
}
.product-top .title02-sub .label {
  font-size: 13px;
  font-weight: 500;
  border: solid 1px;
  width: 77px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 7px;
}
.product-top .title02-sub .text {
  font-size: 12px;
  line-height: 2;
  color: #212020;
  display: flex;
  justify-content: center;
}
.product-top .product-image {
  max-width: 352px;
  position: relative;
  margin: auto;
}
.product-top .product-image img {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}
.product01 .product-top .product-image img {
  bottom: -255px;
}
.product02 .product-top .product-image img {
  bottom: -265px;
}
.product03 .product-top .product-image img {
  bottom: -245px;
}
.product04 .product-top .product-image img {
  bottom: -245px;
}
.product05 .product-top .product-image img {
  bottom: -265px;
}
.product-top .product-image.new::before {
  content: "";
  background: url("../img/top/top-05-label-new.svg")no-repeat;
  background-size: contain;
  position: absolute;
  display: block;
  width: 59.25px;
  height: 43.39px;
}
.product01 .product-top .product-image.new::before {
  left: 15px;
  bottom: -55px;
}
.product04 .product-top .product-image.new::before {
  left: 0;
  bottom: -55px;
}
.product01 .product-top .ribbon-text {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 266px;
  bottom: -170px
}
.product-top .section-block.block02 {
  padding: 138px 0 30px;
  position: relative;
  text-align: center;
}
.product01 .product-top .section-block.block02 {
  padding-top: 195px;
}
.product-top .deco img {
  width: 109%;
  height: 213px;
  position: absolute;
  z-index: -1;
  top: -81px;
  left: 0;
  right: 0;
  margin: auto;
}
.product-top .title03 {
  font-size: 21px;
  font-weight: bold;
  line-height: calc(30 / 21);
  margin-bottom: 16px;
}
.product-top .description {
  font-size: 16px;
  line-height: calc(25 / 16);
  color: #212020;
  text-align: left;
}
.product-top .sup01 {
  font-size: 12px;
  line-height: 2;
  margin: 10px 0 33.5px;
  color: #212020;
  text-align: right;
}
.product-top .flex-area {
  display: flex;
  margin-bottom: 15px;
}
.product-top .flex-area .flex-item {
  margin: 0 auto;
  text-align: center;
}
.product-top .flex-area .flex-item .image {
  width: 106px;
  margin-bottom: 7px;
}
.product-top .flex-area .flex-item.double .image.double {
  width: 217.5px;
}
.product-top .flex-area .flex-item p {
  font-size: 13px;
  line-height: calc(21/ 13);
  font-weight: bold;
}
.product-top .sup02 {
  color: #212020;
  font-size: 12px;
  text-align: right;
  line-height: 2;
}
.product-top .efficacy-area {
  border: solid 2px;
  border-radius: 5px;
}
.product-top .efficacy-area + .efficacy-area {
  margin-top: 35px;
}
.product-top .efficacy-area .title04 {
  text-align: center;
  ;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  border-bottom: solid 2px;
}
.product-top .efficacy-area p {
  font-size: 16px;
  line-height: calc(25 / 16);
  font-weight: 500;
  padding: 8px 10px;
  text-align: justify;
}
.product-top .btn {
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 19px;
  font-weight: bold;
  color: #fff;
  border-radius: 100px;
  margin-top: 28px;
  transition: .2s;
}
.product01 .product-top .btn {
  background: #60B8BA;
  border: solid 1px #60B8BA;
}
.product01 .product-top .btn:hover {
  color: #60B8BA;
  background: #fff;
}
.product02 .product-top .btn {
  background: #2666AF;
  border: solid 1px #2666AF;
}
.product02 .product-top .btn:hover {
  color: #2666AF;
  background: #fff;
}
.product03 .product-top .btn {
  background: #9F843D;
  border: solid 1px #9F843D;
}
.product03 .product-top .btn:hover {
  color: #9F843D;
  background: #fff;
}
.product04 .product-top .btn {
  background: #E58DAF;
  border: solid 1px #E58DAF;
}
.product04 .product-top .btn:hover {
  color: #E58DAF;
  background: #fff;
}
.product05 .product-top .btn {
  background: #817ED1;
  border: solid 1px #817ED1;
}
.product05 .product-top .btn:hover {
  color: #817ED1;
  background: #fff;
}
@media screen and (min-width: 1025px) {
  .product-top .section-block.block01 {
    height: 670px;
  }
  .product01 .product-top .section-block.block01 {
    padding: 179px 10px 0;
  }
  .product02 .product-top .section-block.block01 {
    padding: 179px 10px 0;
  }
  .product03 .product-top .section-block.block01 {
    padding: 179px 10px 0;
  }
  .product04 .product-top .section-block.block01 {
    padding: 179px 10px 0;
  }
  .product05 .product-top .section-block.block01 {
    padding: 179px 10px 0;
  }
  .product-top .title01 {
    font-size: 25px;
    border: solid 2px;
    margin-bottom: 30px;
  }
  .product-top .title02 {
    font-size: 25px;
    margin-bottom: 30px;
  }
  .product-top .title02-sub {
    display: flex;
    justify-content: center;
  }
  .product-top .title02-sub .label {
    margin: 0;
    margin-right: 7px;
  }
  .product-top .title02-sub .text {
    position: relative;
    top: -2px;
  }
  .product-top .product-image {
    zoom: 1.5;
  }
  /*.product01 .product-top .product-image img{
	bottom: -255px;
}*/
  .product01 .product-top .ribbon-text {
    zoom: 1.5;
  }
  .product-top .section-block.block02 {
    padding: 178px 0 80px;
  }
  .product01 .product-top .section-block.block02 {
    padding-top: 295px;
  }
  .product-top .deco img {
    width: 109%;
    height: 380px;
    top: -161px;
  }
  .product-top .title03 {
    font-size: 25px;
    margin-bottom: 25px;
  }
  .product-top .sup01 {
    text-align: center;
  }
  .product-top .flex-area {
    justify-content: center;
    margin-bottom: 30px;
  }
  .product-top .flex-area .flex-item {
    margin: 0 40px;
  }
  .product-top .flex-area .flex-item .image {
    margin: 0 auto 10px;
    zoom: 1.2;
  }
  .product-top .flex-area .flex-item p {
    font-size: 16px;
  }
  .product-top .sup02 {
    text-align: center;
    margin-bottom: 30px;
  }
  .product-top .efficacy-area .title04 {
    height: 50px;
    font-size: 19px;
  }
  .product-top .efficacy-area p {
    padding: 20px;
  }
  .product-top .text-area {
    display: flex;
    flex-flow: column;
    align-items: center;
  }
}
/* ---------------------------------------------------------------------------
//  product-01
--------------------------------------------------------------------------- */
.product01 .product-01 .section-container {
  background: rgba(107, 209, 211, .25);
}
.product02 .product-01 .section-container {
  background: rgba(154, 209, 242, .25);
}
.product03 .product-01 .section-container {
  background: #FFF6E2;
}
.product04 .product-01 .section-container {
  background: rgba(247, 223, 232, .75);
}
.product05 .product-01 .section-container {
  background: #EEEEFC;
  padding-bottom: 105px;
}
.product-01 .section-container {
  padding: 35px 0;
}
.product-01 .white-area {
  background: #fff;
  padding: 0 0 35px;
}
.product-01 .illust-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.product-01 .illust-list .illust-item {
  width: 50%;
  text-align: center;
  margin-top: 40px;
}
.product-01 .illust-list .illust-item .illust {
  max-width: 110px;
  margin: auto;
}
.product-01 .illust-list .illust-item p {
  font-size: 13px;
  line-height: calc(21 / 13);
  margin-top: 10px;
  font-weight: bold;
}
.product-01 .illust-list .illust-item p span {
  display: inline-block;
}
.product-01 .sup {
  text-align: right;
  font-size: 12px;
  line-height: calc(21 / 12);
  margin-bottom: 25px;
  padding: 0 32px;
}
.product-01 .component-area {
  padding: 0 32px;
}
.product-01 .component-item + .component-item {
  margin-top: 17.5px;
}
.product-01 .component-item .title01 {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  border: solid 1px;
  margin-bottom: 10px;
}
.product-01 .component-item .description {
  font-size: 16px;
  line-height: calc(25 / 16);
}
@media screen and (min-width: 1025px) {
  .product-01 .section-container {
    padding: 80px 0;
  }
  .product-01 .white-area {
    background: #fff;
    padding: 35px 0;
  }
  .product-01 .illust-list {
    justify-content: center;
  }
  .product-01 .illust-list .illust-item {
    width: calc(100% / 3);
  }
  .product-01 .illust-list .illust-item p {
    font-size: 15px;
  }
  .product-01 .illust-list .illust-item p span {
    display: inline-block;
  }
  .product-01 .sup {
    margin-bottom: 30px;
  }
  .product-01 .component-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .product-01 .component-item + .component-item {
    margin-top: 30px;
  }
  .product-01 .component-item .title01 {
    font-size: 19px;
    height: 40px;
    width: 100%;
  }
  .product-01 .component-item .description {
    font-size: 16px;
  }
}
/* ---------------------------------------------------------------------------
//  product-02
--------------------------------------------------------------------------- */
.product-02 .section-container {
  padding: 35px 0 48px;
  background: #F8F8F7;
}
.product-02 .title-area {
  margin-bottom: 36px;
}
.product-02 .title02 {
  text-align: center;
  font-size: 21px;
  font-weight: bold;
  line-height: calc(30 / 21);
  margin-bottom: 10px;
}
.product-02 .title-area .title01 {
  font-size: 21px;
  line-height: calc(31 / 21);
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-02 .title-area .title01::before, .product-02 .title-area .title01::after {
  content: "";
  width: 42.5px;
  height: 42.5px;
  position: relative;
  margin:
    0 8px;
}
.product01 .product-02 .title-area .title01::before {
  background: url("../img/product/product01-02-Q_w.svg")no-repeat;
  background-size: contain;
}
.product01 .product-02 .title-area .title01::after {
  background: url("../img/product/product01-02-A.svg")no-repeat;
  background-size: contain;
}
.product02 .product-02 .title-area .title01::before {
  background: url("../img/product/product02-02-Q_w.svg")no-repeat;
  background-size: contain;
}
.product02 .product-02 .title-area .title01::after {
  background: url("../img/product/product02-02-A.svg")no-repeat;
  background-size: contain;
}
.product03 .product-02 .title-area .title01::before {
  background: url("../img/product/product03-02-Q_w.svg")no-repeat;
  background-size: contain;
}
.product03 .product-02 .title-area .title01::after {
  background: url("../img/product/product03-02-A.svg")no-repeat;
  background-size: contain;
}
.product04 .product-02 .title-area .title01::before {
  background: url("../img/product/product04-02-Q_w.svg")no-repeat;
  background-size: contain;
}
.product04 .product-02 .title-area .title01::after {
  background: url("../img/product/product04-02-A.svg")no-repeat;
  background-size: contain;
}
.product01 .blue-btn {
  background: #60B8BA;
  width: 100%;
  border: solid 1px #60B8BA;
}
.product01 .blue-btn:hover {
  background: #fff;
  color: #60B8BA;
}
.product02 .blue-btn {
  background: #2666AF;
  width: 100%;
  border: solid 1px #2666AF;
}
.product02 .blue-btn:hover {
  background: #fff;
  color: #2666AF;
}
.product03 .blue-btn {
  background: #9F843D;
  width: 100%;
  border: solid 1px #9F843D;
}
.product03 .blue-btn:hover {
  background: #fff;
  color: #9F843D;
}
.product04 .blue-btn {
  background: #E58DAF;
  width: 100%;
  border: solid 1px #E58DAF;
}
.product04 .blue-btn:hover {
  background: #fff;
  color: #E58DAF;
}
@media screen and (min-width: 1025px) {
  .product-02 .section-container {
    padding: 80px 0;
  }
  .product-02 .title-area {
    margin-bottom: 58px;
  }
  .product-02 .title02 {
    font-size: 25px;
  }
  .product-02 .title-area .title01 {
    font-size: 25px;
  }
  .product-02 .title-area .title01::before, .product-02 .title-area .title01::after {
    width: 57px;
    height: 57px;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------------------------------------
//  スキンケアページ
------------------------------------------------------------------------------------------------------------------------------------------------------ */
body.skincare {
  padding-top: 0;
}
.skincare main .inner1000 {
  max-width: 600px;
}
.skincare .section-block {
  margin: auto;
}
@media screen and (min-width: 1025px) {
  .skincare main .inner1000 {
    max-width: 1000px;
  }
}
/* ---------------------------------------------------------------------------
//  skincare-mv
--------------------------------------------------------------------------- */
.skincare-mv .section-container {

  position: relative;
  background: #fff;
  margin: auto;
	z-index: 101;
}
.skincare-mv .copy {
	padding-top: 70px;
  position: relative;
	background: url("../img/top/top-mv-bgN.jpg")no-repeat center;
	background-size: cover;
}
.skincare-mv .copy .mv-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100vw;
  margin: auto;
  z-index: 0;
}
.skincare-mv .copy img {
  position: relative;
  z-index: 10;
}
.skincare-mv .section-block {
  position: relative;
  z-index: 10;
  text-align: center;
}
.skincare-mv .video-area video {
  max-width: 100%;
  height: auto;
	margin-top: 20px;
}
@media screen and (min-width: 1025px) {
  .skincare-mv .section-container {
    padding-top: 0;
  }
  .skincare-mv .copy {
    padding-top: 200px;
		padding-bottom: 60px;
  }
  .skincare-mv .copy .mv-bg {
    width: 100vw;
    height: 600px;
  }
	.skincare-mv .video-area video {
  max-width: 800px;
  margin: 60px auto;

}
	}
  /* ---------------------------------------------------------------------------
//  skincareコンテンツ
--------------------------------------------------------------------------- */
  .numbers-area {
    padding-top: 50px;
  }
  .numbers-area h2 {
    font-size: 21px;
    font-weight: bold;
    text-align: center;
    color: #101B75;
    line-height: calc(30 / 21);
    border: solid 3px;
    border-radius: 4px;
    padding: 30px 20px 8px;
    position: relative;
  }
  .numbers-area h2 span {
    position: absolute;
    background: #101B75;
    color: #fff;
    font-size: 34px;
    width: 48px;
    height: 48px;
    border-radius: 100%;
    left: 0;
    right: 0;
    top: -25px;
    margin: auto;
    line-height: 1.3;
  }
  .numbers-area h3 {
    font-size: 18px;
    line-height: calc(26 / 18);
    font-weight: bold;
    text-align: center;
    color: #101B75;
    padding: 14px 10px 10px;
    border-bottom: dotted 2px;
    width: calc(100% - 20px);
    margin: 0 auto 13px;
  }
  .numbers-area .description {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    line-height: calc(25 / 15);
  }
  .ib {
    display: inline-block;
  }
  .toggle_contents {
    background: #DDEDF8;
    width: calc(100% - 44px);
    margin: 10px auto 25px;
    max-width: 375px;
  }
  .toggle_title {
    font-weight: 500;
    position: relative;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 36px;
    font-size: 16px;
    color: #101B75;
  }
  .toggle_title:after {
    content: "";
    background: url("../img/skincare/arow.svg")no-repeat;
    background-size: contain;
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 12px;
    margin: auto;
    width: 14px;
    height: 12px;
    transition: 0.3s;
  }
  .toggle_title.selected:after {
    transform: rotate(180deg);
    transition: 0.3s;
  }
  .toggle_txt {
    display: none;
    padding: 10px;
  }
  .toggle_txt p {
    font-size: 15px;
    line-height: calc(25 / 15);
  }
  .toggle_item + .toggle_item {
    margin-top: 10px;
  }
  .skincare .bg-area {
    background: url("../img/skincare/bg-01.png")no-repeat center top;
    background-size: cover;
    padding-bottom: 50px;
  }
  .skincare .bg-area h4 {
    text-align: center;
    font-size: 21px;
    font-weight: bold;
    color: #101B75;
    line-height: calc(30 / 21);
    position: relative;
    padding: 14px 0 54px;
    background: url("../img/skincare/shape01.svg")no-repeat center bottom 35px;
  }
  .skincare .bg-area ul {
    padding: 0 10px 0 15px;
    max-width: 375px;
    margin: auto;
  }
  .skincare .bg-area ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .skincare .bg-area ul li + li {
    margin-top: -10px;
  }
  .skincare .bg-area ul li .image {
    width: 130px;
  }
  .skincare .bg-area ul li p {
    width: 50%;
    font-size: 14px;
    font-weight: 500;
    line-height: calc(22 / 14);
    padding-top: 8px;
    position: relative;
  }
  .skincare .bg-area ul li:nth-of-type(2) p {
    order: -1;
  }
  .skincare .bg-area ul li p::before {
    content: "";
    width: 205px;
    border-bottom: dotted 2px #101B75;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
  }
  .skincare .bg-area ul li:nth-of-type(2) p::before {
    right: inherit;
    left: 0;
  }
  .numbers-area .last-area {
    padding-bottom: 40px;
  }
  .numbers-area .last-area h4 {
    font-size: 21px;
    line-height: calc(30 / 21);
    font-weight: bold;
    color: #101B75;
    text-align: center;
    padding: 45px 0 16px;
    background: url("../img/skincare/shape02.svg")repeat-x center top;
  }
  .numbers-area .last-area .description {
    text-align: left;
    max-width: 375px;
    margin: auto;
		padding: 0 22px;
  }
  .numbers-area .last-area .bnr {
    transition: .2s;
    max-width: 375px;
    margin: auto;
    display: block;
  }
  .numbers-area .last-area .bnr img {
    width: 100%;
  }
  .numbers-area .last-area .bnr:hover {
    opacity: .7;
  }
.sup-text{
	text-align: right;
	max-width: 585px;
	margin: auto;
padding-right: 20px;
	margin-bottom: 10px;
	font-size: 12px;

}
.numbers-area .image img{
	margin: auto;
}
  @media screen and (min-width: 1025px) {
    .numbers-area {
      padding-top: 100px;
    }
    .numbers-area h2 {
      font-size: 32px;
      padding: 50px 10px 30px;
    }
		.numbers-area h2 span {
    position: absolute;
    background: #101B75;
    color: #fff;
    font-size: 49px;
    width: 71px;
    height: 71px;
    border-radius: 100%;
    left: 0;
    right: 0;
    top: -35px;
    margin: auto;
    line-height: 1.3;
  }
    .numbers-area h3 {
      font-size: 25px;
      padding: 32px 0 20px;
      margin: 0 auto 32px;
			max-width: 585px;
    }
    .numbers-area .description {
      font-size: 19px;
      font-weight: 500;
      text-align: center;
      line-height: calc(42 / 19);
			max-width: 700px;
			margin: auto;

    }
		.numbers-area .image{
			margin: auto;
			text-align: center;

		}

    .toggle_contents {
      margin: 40px auto 80px;
			max-width: 880px;
			padding: 20px;
    }
    .toggle_title {
      height: 50px;
			font-size: 25px;
    }
		.toggle_title:after {

    top: 0;
    bottom: 0;
    right: 45px;
    margin: auto;
    width: 28px;
    height: 24px;

  }
  .toggle_txt p {
    font-size: 19px;
		line-height: calc(42 /19);
  }
  .toggle_item + .toggle_item {
    margin-top: 10px;
  }
    .skincare .bg-area {
      padding-bottom: 100px;
    }
		.skincare .bg-area {
    background: url("../img/skincare/bg-01N_pc.jpg")no-repeat center top;
    background-size: cover;
  }
  .skincare .bg-area h4 {

    font-size: 32px;

    padding: 40px 0 94px;
    background: url("../img/skincare/shape01_pc.svg")no-repeat center bottom 65px,linear-gradient(to bottom,#fff 80%, transparent 100%);

  }

    .skincare .bg-area ul {
      padding: 0;
			max-width: 867px;
    }
		.skincare .bg-area ul li{
			max-width: 572px;
		}
		.skincare .bg-area ul li:nth-of-type(2){margin-left: auto;}
    .skincare .bg-area ul li + li {
      margin-top: -40px;
    }
    .skincare .bg-area ul li .image {
      width: 246px;
    }
    .skincare .bg-area ul li p {
      font-size: 24px;
      padding-top: 16px;
			width: calc(100% - 246px);
			position: relative;
			padding-left: 34px;
    }
    .skincare .bg-area ul li p::before {
      width: 367px;
    }
		.skincare .bg-area ul li:nth-of-type(2) p {
    order: -1;
			position: relative;
			left: inherit;
			padding-left: 0;
  }
  .skincare .bg-area ul li:nth-of-type(2) p::before {
    right: inherit;
    left: 0;
  }
    .numbers-area .last-area {
      padding-bottom: 100px;
    }
    .numbers-area .last-area h4 {
      font-size: 25px;
      padding: 65px 0 30px;
      margin-top: 40px;
    }
		.numbers-area .last-area h4 {
    font-size: 32px;
    padding: 119px 0 42px;
    background: url("../img/skincare/shape02_pc.svg")repeat-x center top;
  }
		.numbers-area .last-area .description{
			max-width: 740px;
			text-align: center;
		}
    .numbers-area .last-area .bnr {
      transition: .2s;
      margin: 10px auto;
      display: block;
			max-width: 1000px;
    }
    .numbers-area .last-area .bnr:hover {
      opacity: .7;
    }
    .image.max-w {
      max-width: 500px;
      margin: auto;
    }
		.sup-text{

	margin-bottom: 20px;
	font-size: 19px;
			margin-top: -10px;

  }
		}
  .navi_list {
    position: fixed;
    top: calc((100% - 152px) / 2);
		left: -3px;
		padding: 10px;
    z-index: 100;
    background: url("../img/skincare/nav-line.svg")no-repeat center, url("../img/skincare/bg-nav.svg")no-repeat center;

  }
.navi_list{
	opacity: 0;
		transition: opacity .2s;
}
.navi_list.active{
	opacity: 1;
}
.navi_list.hidden{
	opacity: 0;
}
  .navi_list .navi_item:nth-of-type(1) a::before {
    content: "";
    background: url("../img/skincare/navi01.svg")no-repeat center;
    background-size: contain;
    width: 28px;
    height: 40px;
    display: block;
    transition: .2s;
  }
  .navi_list .navi_item.now:nth-of-type(1) a::before {
    background: url("../img/skincare/navi01_active.svg")no-repeat center;
    background-size: contain;
  }
  .navi_list .navi_item:nth-of-type(2) a::before {
    content: "";
    background: url("../img/skincare/navi02.svg")no-repeat center;
    background-size: contain;
    width: 28px;
    height: 40px;
    display: block;
    transition: .2s;
  }
  .navi_list .navi_item.now:nth-of-type(2) a::before {
    background: url("../img/skincare/navi02_active.svg")no-repeat center;
    background-size: contain;
  }
  .navi_list .navi_item:nth-of-type(3) a::before {
    content: "";
    background: url("../img/skincare/navi03.svg")no-repeat center;
    background-size: contain;
    width: 28px;
    height: 40px;
    display: block;
    transition: .2s;
  }
  .navi_list .navi_item.now:nth-of-type(3) a::before {
    background: url("../img/skincare/navi03_active.svg")no-repeat center;
    background-size: contain;
  }
  .navi_list .navi_item + .navi_item {
    margin-top: 13.1px;
  }
  .navi_item.now {
    color: red
  }
.skincare .footer-top {
	position: relative;
	z-index: 101;
	background: #fff;
}
@media screen and (min-width: 1025px) {
	.navi_list {

		left: calc((100% - 1000px) / 2 - 5.5px)
  }
	.navi_list {
    position: fixed;
    top: calc((100% - 152px) / 2);
		padding: 10px;
    z-index: 100;
    background: url("../img/skincare/nav-line.svg")no-repeat center, url("../img/skincare/bg-nav.svg")no-repeat center;
  }
  .navi_list .navi_item a::before {
    zoom:1.3!important;
  }

}
.forPC {
  display: none;
}
@media screen and (min-width: 1025px) {
  .forPC {
    display: block;
  }
  .forSP {
    display: none;
  }
}

/* add2510 */
@media screen and (max-width: 1169px) {

  nav {
    top: 66px;
  }
}
