@charset "UTF-8";
/*============================================================*/
/* 枠 */
/*============================================================*/
#header {
  background: rgba(255, 255, 255, 0.85);
}
@media screen and (min-width: 768px) {
  #header {
    position: absolute;
  }
}
#header .inner {
  background: initial;
}

#contents {
  padding-top: 0;
}

/*============================================================*/
/* 共通タイトル */
/*============================================================*/
.content_heading {
  color: #333;
}
.content_heading .large {
  color: #b80009;
  display: block;
  font-size: 7vw;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-bottom: 0.5em;
  padding-bottom: 0.3em;
  position: relative;
  font-family: futura-pt, "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
  font-weight: 400;
}
.content_heading .large::after {
  background: #b80009;
  bottom: 0;
  content: "";
  height: 1px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 25px;
}
.content_heading .small {
  font-size: 3.4vw;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .content_heading .large {
    display: block;
    font-size: 40px;
  }
  .content_heading .large::after {
    width: 35px;
  }
  .content_heading .small {
    font-size: 20px;
  }
}

.content_text {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .content_text {
    font-size: 16px;
    text-align: center;
  }
}

/*============================================================*/
/* KV */
/*============================================================*/
.kv {
  position: relative;
  min-height: 840px;
  margin-bottom: min(8vw, 100px);
}
@media screen and (max-width: 767px) {
  .kv {
    aspect-ratio: 440/650;
    min-height: auto;
  }
}
.kv__contents {
  width: 100%;
  max-width: 940px;
  padding-inline: min(20px, 5vw);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.kv__contents--title {
  font-size: min(5vw, 36px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: min(4vw, 20px);
}
.kv__contents--title b {
  font-size: min(7vw, 48px);
}
.kv__contents--title strong {
  font-size: min(9vw, 64px);
  color: #B80009;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
}
.kv__contents--subtitle {
  font-size: min(5.6vw, 32px);
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: min(3vw, 20px);
}
.kv__contents--text {
  font-size: min(3.8vw, 20px);
  line-height: 1.6;
  font-weight: 900;
  margin-bottom: min(5vw, 50px);
}
.kv__contents--btn {
  font-size: min(3.8vw, 20px);
}
.kv__contents--btn a {
  position: relative;
  display: block;
  text-align: center;
  font-weight: 900;
  max-width: 420px;
  background-color: #ffffff;
  border: 1px solid #333333;
  padding: min(3vw, 15px);
}
.kv__contents--btn img {
  color: #B80009;
  position: absolute;
  top: 50%;
  right: min(5vw, 20px);
  transform: translate(0, -50%);
  transition: all 0.3s ease;
}
.kv__contents--btn:hover img {
  right: min(3vw, 12px);
}
.kv__img {
  width: 100%;
  max-width: 1800px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  overflow: hidden;
  height: 840px;
}
@media screen and (max-width: 1200px) {
  .kv__img {
    max-width: 1200px;
  }
}
@media screen and (max-width: 767px) {
  .kv__img {
    height: auto;
  }
}
.kv__img figure {
  width: 100%;
  height: 100%;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .kv__img figure {
    height: auto;
  }
}
.kv__img figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 767px) {
  .kv__img figure img {
    object-position: top;
  }
}

/*============================================================*/
/* lead */
/*============================================================*/
.lead {
  width: 100%;
  max-width: 940px;
  margin-inline: auto;
  padding-inline: min(20px, 5vw);
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: min(20px, 5vw);
  margin-bottom: min(6vw, 80px);
}
@media screen and (max-width: 767px) {
  .lead {
    grid-template-columns: 1fr;
    row-gap: min(10px, 3vw);
  }
}
.lead h2 {
  font-size: min(5.6vw, 32px);
  font-weight: 900;
  line-height: 1.5;
  color: #B80009;
}
.lead__text p {
  font-size: min(3.4vw, 20px);
  line-height: 1.8;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .lead__text p {
    line-height: 2;
  }
}

/*============================================================*/
/* 波背景 */
/*============================================================*/
.wave-area {
  background: #F5F5F5 url(../img/wave_bg.svg) center top no-repeat;
  background-size: 100% auto;
  padding-top: min(170px, 20vw);
  padding-bottom: min(100px, 8vw);
  margin-bottom: min(100px, 10vw);
}
@media screen and (max-width: 767px) {
  .wave-area {
    background: #F5F5F5 url(../img/wave_bg_sp.svg) center top no-repeat;
    background-size: 100% auto;
  }
}

/*============================================================*/
/* おススメ処方 */
/*============================================================*/
.formulation {
  position: relative;
  width: 100%;
  max-width: 940px;
  margin-inline: auto;
  padding-inline: min(20px, 5vw);
  margin-bottom: min(130px, 16vw);
}
.formulation__head {
  margin-bottom: min(80px, 8vw);
}
.formulation__head--title {
  font-size: min(24px, 4.6vw);
  font-weight: 900;
  margin-bottom: min(20px, 4vw);
}
.formulation__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: min(80px, 5vw);
  row-gap: min(50px, 5vw);
}
@media screen and (max-width: 767px) {
  .formulation__list {
    grid-template-columns: 1fr;
  }
}
.formulation__item {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: min(20px, 5vw);
  align-items: center;
}
.formulation__item--img {
  width: min(148px, 25vw);
}
.formulation__item--img img {
  border-radius: 50%;
}
.formulation__item--link {
  margin-top: min(15px, 1vw);
  text-align: right;
}
.formulation__item--link span {
  font-size: min(14px, 3vw);
  font-family: futura-pt, sans-serif;
  letter-spacing: 0.1em;
  position: relative;
  padding-right: min(5vw, 20px);
}
.formulation__item--link span img {
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
.formulation__link {
  position: absolute;
  top: 0;
  right: min(20px, 5vw);
}
@media screen and (max-width: 767px) {
  .formulation__link {
    position: initial;
  }
}
.formulation__link a {
  border-bottom: 1px solid #c5c5c5;
  letter-spacing: 0.1em;
  padding: 0.2em 0.5em;
  width: 210px;
  position: relative;
}
.formulation__link a img {
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
.formulation__link a:hover img {
  right: -5px;
}
@media screen and (max-width: 767px) {
  .formulation__link a {
    border-bottom: 1px solid #c5c5c5;
    margin: 20px 0 0 auto;
    padding: 0.6em 0.5em;
    width: 40vw;
    position: initial;
  }
  .formulation__link a img {
    position: static;
    transform: none;
  }
  .formulation__link a:hover img {
    right: 0;
  }
}
.formulation__item :hover span img {
  right: -5px;
}

/*============================================================*/
/* 化粧品OEM/ODM製造品目一覧 */
/*============================================================*/
.products {
  width: 100%;
  max-width: 940px;
  margin-inline: auto;
  padding-inline: min(20px, 5vw);
  position: relative;
}
.products__head {
  margin-bottom: min(70px, 10vw);
}
.products__head--title {
  font-size: min(24px, 4.6vw);
  font-weight: 900;
  margin-bottom: min(20px, 1vw);
}
.products__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: min(16px, 2vw);
  row-gap: min(40px, 5vw);
}
@media screen and (max-width: 767px) {
  .products__list {
    grid-template-columns: 1fr;
  }
}
.products__item--img {
  margin-bottom: min(15px, 5vw);
  line-height: 1.8;
}
.products__item--title {
  font-size: min(20px, 4.2vw);
  font-weight: 900;
  margin-bottom: min(5px, 2vw);
}
.products__link {
  position: absolute;
  top: 0;
  right: min(20px, 5vw);
}
@media screen and (max-width: 767px) {
  .products__link {
    position: initial;
  }
}
.products__link a {
  border-bottom: 1px solid #c5c5c5;
  letter-spacing: 0.1em;
  padding: 0.2em 0.5em;
  width: 210px;
  position: relative;
}
.products__link a img {
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
.products__link a:hover img {
  right: -5px;
}
@media screen and (max-width: 767px) {
  .products__link a {
    border-bottom: 1px solid #c5c5c5;
    margin: 20px 0 0 auto;
    padding: 0.6em 0.5em;
    width: 40vw;
    position: initial;
  }
  .products__link a img {
    position: static;
    transform: none;
  }
  .products__link a:hover img {
    right: 0;
  }
}

/*============================================================*/
/* STAFF BLOG */
/*============================================================*/
.staff-blog {
  width: 100%;
  max-width: 845px;
  margin-inline: auto;
  padding-inline: min(20px, 5vw);
  position: relative;
  margin-bottom: min(100px, 10vw);
}
.staff-blog__list {
  margin-top: min(10vw, 80px);
  display: grid;
  grid-template-columns: 1fr;
  row-gap: min(8vw, 40px);
}
.staff-blog__card {
  display: grid;
  grid-template-columns: 5fr 8fr;
  column-gap: min(4vw, 40px);
  border-bottom: 1px solid #C5C5C5;
  padding-inline: min(8vw, 20px);
  padding-bottom: min(6vw, 30px);
}
@media screen and (max-width: 767px) {
  .staff-blog__card {
    grid-template-columns: 5fr 7fr;
    padding-inline: 0;
  }
}
.staff-blog__thumbnail {
  position: relative;
}
.staff-blog__thumbnail--cat {
  position: absolute;
  top: 0;
  left: 0;
  font-size: min(3.4vw, 14px);
  line-height: 1.2;
  color: #FFFFFF;
  background-color: #222222;
  padding: min(2vw, 5px);
}
.staff-blog__cont {
  line-height: 1.6;
}
.staff-blog__cont--title {
  font-size: min(4vw, 18px);
  font-weight: 900;
  line-height: 1.6;
  margin-bottom: min(3vw, 10px);
}
.staff-blog__cont--text {
  font-size: min(3.4vw, 14px);
}
@media screen and (max-width: 767px) {
  .staff-blog__cont--text {
    display: none;
  }
}
.staff-blog__cont--date {
  font-weight: 900;
  text-align: right;
  margin-top: min(3vw, 10px);
}
.staff-blog__link {
  display: flex;
  justify-content: end;
  margin-top: min(40px, 4vw);
}
.staff-blog__link a {
  border-bottom: 1px solid #c5c5c5;
  letter-spacing: 0.1em;
  padding: 0.2em 0.5em;
  width: 210px;
  position: relative;
}
.staff-blog__link a img {
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
.staff-blog__link a:hover img {
  right: -5px;
}
@media screen and (max-width: 767px) {
  .staff-blog__link a {
    border-bottom: 1px solid #c5c5c5;
    padding: 0.6em 0.5em;
    width: 40vw;
    position: initial;
  }
  .staff-blog__link a img {
    position: static;
    transform: none;
  }
  .staff-blog__link a:hover img {
    right: 0;
  }
}

/*============================================================*/
/* TOPICS */
/*============================================================*/
.topics {
  line-height: 1.6;
  padding: 10vw 5vw;
}
@media screen and (min-width: 768px) {
  .topics {
    max-width: 845px;
    padding: 105px 0 70px;
  }
}
.topics_box {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .topics_box {
    margin-top: 50px;
  }
}
.topics_news dt,
.topics_news dd {
  border-bottom: 1px solid #c5c5c5;
  font-size: 14px;
  padding: 1.2em 0.5em 1em 1.2em;
}
@media screen and (min-width: 768px) {
  .topics_news dt,
  .topics_news dd {
    font-size: 14px;
    padding: 1.3em 2em 1em;
  }
}
.topics_news dt {
  font-family: futura-pt, "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  width: 27%;
}
@media screen and (min-width: 768px) {
  .topics_news dt {
    width: 18%;
  }
}
.topics_news dd {
  width: 73%;
}
@media screen and (min-width: 768px) {
  .topics_news dd {
    width: 82%;
  }
}
.topics_link a {
  border-bottom: 1px solid #c5c5c5;
  letter-spacing: 0.1em;
  margin: 20px 0 0 auto;
  padding: 0.2em 0.5em;
  width: 40vw;
}
@media screen and (min-width: 768px) {
  .topics_link a {
    border-bottom: 1px solid #c5c5c5;
    margin: 25px 0 0 auto;
    width: 210px;
    position: relative;
  }
  .topics_link a img {
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
  }
  .topics_link a:hover img {
    right: -5px;
  }
}/*# sourceMappingURL=style.css.map */