@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}

html, body {
  min-width: 1200px;
}

body {
  color: #78828B;
  font-size: 16px;
  line-height: 1.7;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 400;
  background: #FFF;
  position: relative;
  overflow-x: hidden;
}

.pink {
  color: #FF6894;
}

.inner {
  padding: 120px 80px 120px 460px; /* 460px */
}

.flex {
  display: flex;
}

main { /* margin-top: -510px; */ }

@media screen and (min-width: 769px) {
  .container {
    display: flex;
  }
}
.center {
  text-align: center;
}

sup {
  font-size: 12px;
  vertical-align: super;
}

sup.sml {
  font-size: 10px;
}

.note {
  font-size: 12px;
}

small {
  font-size: 12px;
}

.pc-header {
  display: block;
  flex-shrink: 0;
  height: -moz-fit-content;
  height: fit-content;
  margin: 40px 0 0 -234px;
}

.sp-header {
  display: none;
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

@media screen and (min-width: 1601px) {
  .inner {
    padding: 120px 80px 120px 28.73vw;
  }
}
@media screen and (min-width: 960px) {
  .inner-section {
    max-width: 960px;
  }
}
@media screen and (max-width: 768px) {
  html, body {
    min-width: inherit;
  }
  body {
    font-size: min(28px, 3.54vw);
  }
  .pc-header {
    display: none;
  }
  .sp-header {
    display: flex;
  }
  main {
    margin-top: 80px;
  }
  .inner {
    padding: 15.625vw 0 15.625vw 0;
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
/* ————————————————————————————— */
/*  ========================
    *********  HEADER  *********
=============================================  */
header {
  position: sticky;
  top: 40px;
  left: 40px;
  width: 232px;
  border-radius: 10px;
  text-align: center;
  background: #FFF;
  box-shadow: #F0C2C9 0 1px 3px;
  z-index: 10;
  box-sizing: border-box;
}

header .inner {
  box-sizing: border-box;
  padding: 40px 24px;
  position: relative;
}

header .inner::before {
  position: absolute;
  content: "";
  top: 0;
  width: 86%;
  height: 3px;
  left: 0;
  right: 0;
  margin: auto;
  background: #FF6894;
  border-radius: 0 0 3px 3px;
}

header ul {
  flex-wrap: wrap;
  font-size: 14px;
  text-align: left;
}

header ul li a {
  width: 100%;
  border-bottom: #F5F7FA 1px solid;
  padding: 25px 0 8px;
  display: block;
  text-decoration: none;
  position: relative;
  color: #78828B;
}

header ul li.current a {
  color: #FF6894;
}

header ul li.current a:after {
  border-top: 2px solid #FF6894;
  border-right: 2px solid #FF6894;
}

header ul li a:after {
  content: "";
  position: absolute;
  top: 55%;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 2px solid #78828B;
  border-right: 2px solid #78828B;
  transform: rotate(45deg);
}

header .sp-menu li a.btn.link:hover:after {
  mix-blend-mode: initial;
}

/* 
header ul li:last-of-type a {
    border-bottom: none;
} */
@media screen and (min-width: 769px) {
  .line_nav {
    display: none;
  }
  header .sp-menu li a.btn {
    border-radius: none;
    transition: none;
    border: none;
    width: 100%;
    box-shadow: none;
    padding: 25px 0 8px;
    font-size: inherit;
    color: #78828B;
    text-align: left;
    border-bottom: 1px solid #F5F7FA;
  }
  header .sp-menu li a.btn:hover {
    background: none;
    transform: none;
  }
  header .sp-menu li a.btn:after {
    content: "";
    position: absolute;
    top: 60%;
    right: 0;
    width: 10px;
    height: 10px;
  }
}
@media screen and (max-width: 768px) {
  /* ヘッダー自体 */
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 4.265%;
    background: #fff;
    z-index: 1000;
    border-radius: 0;
  }
  header .inner::before {
    content: none;
  }
  header::before {
    position: absolute;
    content: "";
    top: 0;
    width: 100%;
    height: 2px;
    left: 0;
    right: 0;
    margin: auto;
    background: #FF6894;
  }
  header.fixed {
    box-shadow: #F0C2C9 0 1px 3px;
  }
  header h1 {
    margin: 0;
    line-height: 0;
  }
  header .inner {
    padding: 0;
  }
  /* ハンバーガー（.line_nav） */
  .line_nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
    z-index: 1100;
  }
  .line_nav span {
    display: block;
    width: 7.8125vw;
    height: 2px;
    background: #78828B;
    transition: all 0.3s;
  }
  .line_nav span:last-child {
    font-size: 12px;
    line-height: 1;
    color: #78828B;
    height: auto;
  }
  .line_nav span.txt,
  .line_nav span.txt span {
    background: none;
  }
  .line_nav span.close {
    display: none;
  }
  header.is-open .line_nav span:nth-of-type(1) {
    transform: rotate(45deg);
  }
  header.is-open .line_nav span:nth-of-type(2) {
    display: none;
  }
  header.is-open .line_nav span:nth-of-type(3) {
    transform: rotate(-45deg);
    position: absolute;
  }
  header.is-open .line_nav span.open {
    display: none;
  }
  header.is-open .line_nav span.close {
    display: block;
  }
  header.is-open .line_nav {
    margin-top: 12px;
  }
  header.is-open .line_nav span {
    margin-top: 5px;
  }
  /* メニュー本体 */
  header .sp-menu {
    position: fixed;
    top: 80px;
    right: 0;
    width: 100%; /* 好きな幅に調整 */
    height: 100vh;
    background: #fff;
    list-style: none;
    padding: 0 20px 20px; /* 上部はヘッダー分 + α */
    margin: 0;
    box-sizing: border-box;
    text-align: center;
    /* box-shadow: -4px 0 8px rgba(0,0,0,0.1); */
    /* 初期は画面外（右側）に隠す */
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }
  header .sp-menu li + li {
    margin-top: 16px;
  }
  header .sp-menu li a {
    display: block;
    font-size: 16px;
    text-decoration: none;
    padding: 15px 0;
  }
  header .sp-menu li a.btn {
    width: 100%;
  }
  header ul li a:after {
    content: none;
  }
  header ul li:first-of-type {
    border-top: 1px solid #F5F7FA;
  }
  /* open 状態 */
  header.is-open .sp-menu {
    transform: translateX(0);
  }
}
/*  ========================
    *********  normal  *********
=============================================  */
h1 {
  color: #FF6894;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.225;
  margin: 0 0 20px;
}

h2 {
  color: #FF6894;
}

h2, .legend {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.66;
  letter-spacing: 0.08em;
  margin: 30px 0 24px;
  padding: 0;
  border: 0;
}

h2.ttl {
  text-align: center;
  font-weight: 700;
  margin: 20px auto 40px;
}

h2.en,
h3.en,
.en {
  font-family: "Poppins", sans-serif;
}

.type {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  font-size: 20px;
  line-height: 1;
  color: #FF6894;
}

.type span {
  width: 14px;
  height: 15px;
  background: url(../images/common/icon01.svg) no-repeat center center;
  background-size: contain;
  padding-right: 8px;
}

h3 {
  font-size: 26px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08em;
  margin: 0 0 20px;
}

.vertical {
  writing-mode: vertical-rl;
}

@media screen and (max-width: 768px) {
  h2 {
    font-size: min(52px, 6.77vw);
    line-height: 1.7;
  }
  h2.ttl {
    margin: 4.16vw auto 7.29vw;
  }
  h3 {
    font-size: min(44px, 5.72vw);
    line-height: 1.7;
  }
  .type {
    font-size: min(32px, 4.16vw);
  }
  .type span {
    margin-right: 2.08vw;
  }
}
/*  ========================
    *********  top fade  *********
=============================================  */
/* スプラッシュ全体を画面いっぱいに覆う */
#splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#splash-logo {
  display: none;
  position: relative;
  width: 404px;
  transform: translateY(40px);
  transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

#splash-logo.move-up {
  animation: move-up 1s forwards;
}

#lead-text {
  width: 522px;
  opacity: 0;
  margin-top: 2.4em;
  font-size: 1.2rem;
  color: #333;
}

#lead-text.opc1 {
  animation: opc 1.5s forwards;
}

#splash-logo img,
#lead-text img {
  width: 100%;
}

#content-area {
  display: none;
}

@media screen and (max-width: 768px) {
  #splash-logo,
  #lead-text {
    width: 80%;
  }
}
@keyframes move-up {
  0% {
    opacity: 1;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(-20px);
  }
}
@keyframes opc {
  0% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*  ========================
    *********  fvarea  *********
=============================================  */
.toppage .fvarea .slide01-logo {
  width: 504px;
  position: absolute;
  top: 25%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  margin: auto;
}
.toppage .fvarea .slide01-txt {
  width: 404px;
  position: absolute;
  top: 55%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  margin: auto;
}

/* ————————————————————————————— */
/* ループ用に生成されるクローンはデフォルトで隠す */
.swiper-slide-duplicate {
  visibility: hidden;
}

/* ただし「アクティブなクローン」だけ表示 */
.swiper-slide-active {
  visibility: visible;
}

/* フェード時にちゃんと重ね順が保たれるよう、z-indexを調整 */
.swiper-container-fade .swiper-slide {
  z-index: 1;
}

.swiper-container-fade .swiper-slide-active {
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .toppage .fvarea .slide01-logo {
    width: 58%;
    position: absolute;
    top: 27%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    margin: auto;
  }
  .toppage .fvarea .slide01-txt {
    width: 50%;
    position: absolute;
    top: 46%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    margin: auto;
  }
}
/*  ========================
    *********  sec01  *********
=============================================  */
.box02 {
  display: flex;
  flex-direction: column;
  margin: 100px 30px 0 72px;
  min-width: 296px;
}

.box02 .txt {
  margin-bottom: 56px;
  line-height: 3;
}

.box02 img {
  margin-left: auto;
}

.box01 {
  display: flex;
  flex-direction: column;
  text-align: center;
  box-shadow: rgba(255, 104, 147, 0.1) 0 0px 10px;
  border-radius: 10px;
  padding: 60px;
  margin-top: 120px;
}

.box01 p.txt {
  line-height: 2.6;
}

.box01 .logo {
  margin: 56px auto 30px;
}

@media screen and (max-width: 768px) {
  .box01 {
    padding: 10.41% 0;
    line-break: strict;
  }
  .box01 .logo,
  .box01 .logo img {
    width: 100%;
  }
}
/*  ========================
    *********  toppage sec01  *********
=============================================  */
.toppage .sec01 .flex {
  flex-wrap: nowrap;
}

.toppage .sec01 .vertical {
  text-indent: -1em;
}

@media screen and (max-width: 768px) {
  .toppage .sec01 {
    padding: 0 4.265%;
  }
  .toppage .sec01 .flex {
    flex-wrap: wrap;
  }
  .toppage .sec01 .vertical {
    writing-mode: rl;
    margin: 0 0 10.41vw 5.2vw;
    text-indent: 0;
  }
  .sec01_main_v {
    width: 100%;
    margin-left: 4.8%;
  }
  .toppage .box01 .logo {
    width: 90%;
    margin: 10.41% auto;
  }
  .toppage .box02 {
    min-width: -moz-fit-content;
    min-width: fit-content;
    margin: 0 5.2vw 0 21.48vw;
  }
  .box02 .txt {
    margin-bottom: 10.41vw;
  }
}
/*  ========================
    *********  btn  *********
=============================================  */
.btn_flex {
  display: flex;
  justify-content: center;
  gap: 0 40px;
}

.btn {
  display: inline-block;
  position: relative;
  padding: 16px 20px;
  background: #FFF;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  border: 1px solid #FF6894;
  box-shadow: #FF6894 0 3px 0px;
  width: 400px;
  text-align: center;
}

.btn:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #FF6894;
  border-right: 1px solid #FF6894;
  transform: rotate(45deg) translateY(-50%);
}

.btn:hover {
  background: #FF6894;
  color: #FFF;
  box-shadow: #FF6894 0 0px 0;
  transform: translateY(3px);
}

.btn:hover:after {
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
}

.btn.link:after {
  width: 10px;
  height: 10px;
  border: none;
  background: url(../images/common/icon_link.png) no-repeat center top;
  transform: translateY(-50%);
  background-size: contain;
}

.btn.link:hover:after {
  filter: brightness(0) saturate(100%) invert(100%);
}

.btn_flex .btn:hover .ducu {
  filter: brightness(0) saturate(100%) invert(100%);
}

.btn_flex .btn:hover .store {
  filter: brightness(0) saturate(100%) invert(100%);
}

.btn .ducu {
  width: 24px;
  height: 20px;
  border: none;
  background: url(../images/common/document.svg) no-repeat center top;
  background-size: contain;
  display: inline-block;
  position: relative;
  top: 2px;
  margin-right: 5px;
}

.btn .store {
  width: 24px;
  height: 20px;
  border: none;
  background: url(../images/common/store.svg) no-repeat center top;
  background-size: contain;
  display: inline-block;
  position: relative;
  top: 2px;
  margin-right: 5px;
}

.products_page .products .btn_flex .btn {
  width: 353px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .btn {
    width: 62.5%;
    padding: 3.9vw;
    font-size: min(28px, 3.64vw);
  }
}
/*  ========================
    *********  FV  *********
=============================================  */
.swiper img {
  width: 100%;
  height: auto;
  display: block;
}

.fv-controls {
  position: relative;
  width: 100%;
}

.swiper-pagination {
  position: absolute;
  top: 24px;
  left: -2%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: sans-serif;
  z-index: 10;
  line-height: 1.2;
}

/* 前後ナビ */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: inherit;
  top: 38px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 16px;
  color: #78828B;
  font-size: 32px;
  cursor: pointer;
  z-index: 20;
  line-height: 1;
}

.swiper-button-prev {
  left: 57%;
}

.swiper-button-next {
  left: 59%;
}

.swiper.page2-swiper .swiper-button-prev {
  left: 65%;
}

.swiper.page2-swiper .swiper-button-next {
  left: 69%;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 14px;
  font-weight: bold;
}

/* 再生／停止ボタン */
.swiper-button-play-pause {
  position: absolute;
  top: 14px;
  right: 46%;
  transform: translateX(50%);
  width: 30px;
  height: 20px;
  border: 1px solid #78828B;
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
  z-index: 20;
  font-family: unset;
}

/* 既存のボタンと状態クラス */
.swiper-button-play-pause::before {
  content: "❙❙"; /* 停止アイコン */
  color: #78828B;
  font-family: inherit;
}

.swiper-button-play-pause.paused::before {
  content: "▶"; /* 再生アイコン */
  color: #78828B;
  line-height: 1.4;
}

/* 時間バー */
/* プログレスバー */
.pagination-bar {
  position: relative;
  width: 40px;
  height: 2px;
  background: #78828B;
}

.pagination-bar .progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #FF6894;
  border-radius: 2px;
  width: 0%;
  transition: width 0.3s;
}

.pagination-timebar {
  position: relative;
  width: 40px;
  height: 2px;
  background: #ddd;
  border-radius: 2px;
  overflow: hidden;
}

.pagination-timebar .timebar-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #FF6894;
  border-radius: 2px;
}

/* 数字部分 */
.pagination-num {
  font-size: 16px;
  color: #78828B;
  text-align: center;
}

.pagination-num.active {
  color: #FF6894;
}

@media screen and (max-width: 768px) {
  .pagination-num,
  .swiper .swiper-button-prev,
  .swiper .swiper-button-next {
    font-size: min(22px, 2.86vw);
  }
  .swiper .swiper-button-prev,
  .swiper .swiper-button-next {
    bottom: 22px;
  }
  .swiper-pagination {
    left: -10%;
  }
  .swiper-button-play-pause {
    bottom: 22px;
    right: 40%;
    padding: 0;
  }
  .swiper-button-prev {
    left: 70%;
  }
  .swiper-button-next {
    left: 75%;
  }
}
/*  ========================
    *********  sec02 point  *********
=============================================  */
.subcate.type {
  justify-content: flex-start;
}

.point {
  background-color: #FBF2F3;
}

.point h2 {
  margin-bottom: 60px;
}

.point .flex {
  gap: 0 58px;
}

.point .flex .item {
  width: 50%;
  position: relative;
}

.products_page .point .flex .item .subcate.type {
  margin-bottom: 22px;
}

.products_page .point .flex .item h3 {
  color: #FF6894;
  font-size: 32px;
  line-height: 1.6;
  font-weight: 600;
}

.point .flex .item img {
  width: 100%;
}

.point .flex .item .ele01 {
  position: absolute;
  top: -120px;
  right: 60px;
  width: 76px;
}

.point .flex .item p {
  margin: 30px 0;
}

.point .flex .item .btn {
  margin-top: 56px;
}

@media screen and (max-width: 768px) {
  .subcate.type {
    justify-content: center;
  }
  .toppage .point {
    padding: 0 4.265%;
  }
  .toppage .point .subcate.type {
    justify-content: flex-start;
  }
  .point h2 {
    text-align: center;
    margin: 0 0 10.41vw;
  }
  .toppage .point .flex {
    flex-wrap: wrap;
  }
  .point .flex .item {
    width: 100%;
  }
  .toppage .point .flex .item:nth-of-type(1) {
    order: 2;
  }
  .toppage .point .flex .item:nth-of-type(2) {
    order: 1;
  }
  .toppage .point .flex .item:nth-of-type(2) {
    width: 90%;
    margin: 0 auto;
  }
  .products_page .point .flex .item .subcate.type {
    margin-bottom: 0;
  }
  .point .flex .item p {
    margin: 4.16vw 0 0;
  }
  .point .flex .item .btn {
    margin: 4.16vw auto;
    display: block;
  }
  /* low */
  .point .flex .item .ele01 {
    display: none;
  }
}
/*  ========================
    *********  sec03 products  *********
=============================================  */
.products .inner {
  padding-bottom: 0;
}

.products .inner h2 {
  margin-bottom: 56px;
}

.products .overImg {
  padding-right: 40px;
  position: relative;
}

.products .overImg img {
  width: 100%;
  height: auto;
  display: block;
}

.products .overImg .worries01 {
  position: absolute;
  top: -8%;
  right: 15.6%;
  width: 364px;
}

.products .overImg .worries02 {
  position: absolute;
  top: 18.5%;
  right: 6.6%;
  width: 330px;
}

.products .overImg .worries03 {
  position: absolute;
  top: 36%;
  right: 21.5%;
  width: 332px;
}

.products .block {
  padding: 0 80px 120px 460px;
  margin-top: -13em;
  position: relative;
}

.toppage .products .block .flex {
  max-width: 960px;
}

.products .flex {
  gap: 0 40px;
}

.products .flex .item {
  width: 50%;
}

.videoWrap {
  max-width: 460px;
  max-height: 460px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: opacity 0.5s ease;
}

.videoWrap img,
.videoWrap video {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.videoWrap video {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}

/* 初期状態：画像は表示、動画は透明 */
.videoWrap img {
  animation: opc-on 0.8s forwards;
}

.videoWrap video {
  animation: opc-off 0.8s forwards;
}

/* hover/clcik でクラスを足したときの状態 */
.videoWrap.hover img {
  animation: opc-off 0.8s forwards;
}

.videoWrap.hover video {
  animation: opc-on 0.8s forwards;
}

@keyframes opc-off {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes opc-on {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* PCホバー対応 */
.videoWrap:hover video {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.videoWrap:hover img {
  display: none;
}

.products .flex .item img {
  width: 100%;
  height: auto;
  display: block;
}

.products .flex .item .itemBlock {
  display: flex;
  flex-direction: column;
}

.products .flex .item .itemBlock .drugClass {
  border: 1px solid #78828B;
  width: -moz-fit-content;
  width: fit-content;
  margin: 24px 0 10px;
  padding: 0 8px;
  line-height: normal;
  font-size: 12px;
}

.products .flex .item .itemBlock .catch {
  font-size: 18px;
  font-weight: 600;
}

.products .flex .item .itemBlock .itemName b {
  font-size: 24px;
  color: #FF6894;
  margin-right: 16px;
}

.products .flex .item .itemBlock .itemName span {
  font-size: 14px;
}

.products .flex .item .itemBlock .salesName {
  font-size: 18px;
}

.kouka {
  border: 1px solid #78828B;
  align-items: center;
  margin: 40px 0 52px;
}
.kouka.flex {
  gap: 0;
}
.kouka dt {
  text-align: center;
  width: 16%;
  padding: 14px 12px;
  flex-shrink: 0;
  box-sizing: border-box;
}
.kouka dd {
  border-left: 1px solid #78828B;
  padding: 14px 24px;
}

@media screen and (min-width: 1601px) {
  .products .block {
    padding: 0 80px 120px 28.73vw;
  }
  .products .block .btn_flex {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .products .inner h2 {
    text-align: center;
    margin: 3.125vw 0 19.531vw;
  }
  .products .overImg {
    padding-right: 0;
  }
  .products .overImg .worries {
    width: 90%;
    top: -8%;
  }
  .toppage .products .block {
    margin-top: -8vw;
    padding: 0 4.16% 0;
  }
  .toppage .products .flex {
    flex-wrap: wrap;
    gap: 40px;
  }
  .toppage .products .flex .item {
    width: 100%;
  }
  .toppage .products .kouka.flex {
    flex-wrap: nowrap;
    gap: 0;
  }
  .kouka {
    margin: 7.29vw auto 10.41vw;
  }
  .kouka dt {
    min-width: 60px;
    padding: 0;
    text-align: center;
  }
  .toppage .btn_flex {
    flex-wrap: wrap;
    gap: 8.32vw;
    margin-bottom: 15.625vw;
  }
  .products .block {
    padding: 0 80px 5vw 0;
  }
  .products .overImg .worries01 {
    width: 60%;
    right: 5%;
  }
  .products .overImg .worries02 {
    width: 60%;
    top: 15%;
    right: 35%;
  }
  .products .overImg .worries03 {
    width: 65%;
    top: 32%;
    right: 5%;
  }
}
/*  ========================
    *********  FAQ  *********
=============================================  */
.faq {
  padding: 0 0 0;
  background: #F5F7FA;
}

.accod {
  border: 1px solid #B2BEC9;
  padding: 0;
  font-size: 20px;
  margin-bottom: 24px;
  background: #FFF;
  border-radius: 10px;
}

@media screen and (min-width: 769px) {
  .toppage .accod {
    width: 747px;
    margin: 20px auto;
  }
}
.accod dd a {
  color: #FF6894;
}

.accod dt {
  display: flex;
  align-items: center;
  position: relative;
  padding: 30px 40px 30px 24px;
}

.accod dt span {
  background: #FF6894;
  color: #FFF;
  width: 54px;
  height: 54px;
  line-height: 54px;
  display: inline-block;
  text-align: center;
  margin-right: 24px;
  font-size: 40px;
  font-family: "poppins";
  border-radius: 5px;
  opacity: 1;
  flex-shrink: 0;
}

.accod dt::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 40px;
  width: 20px;
  height: 2px;
  transform: translateY(-50%);
  background: #FF6894;
}

.accod dt::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 48.5px;
  width: 2px;
  height: 20px;
  background: #FF6894;
  transform: translateY(-50%);
  transition: all 0.5s ease-in-out;
}

.accod dt.sltoggle::after {
  transform: translateY(-50%) rotate(90deg);
  opacity: 0;
}

.accod dd {
  display: none;
  padding: 30px 40px;
  color: #FF6894;
  background: #FBF2F3;
  border-radius: 0 0 10px 10px;
}

.faq .btn {
  margin: 56px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .faq {
    padding: 0 4.16vw 36.73vw;
  }
  .faq .inner {
    padding-bottom: 0;
  }
  .accod {
    font-size: min(32px, 4.16vw);
    margin-bottom: 4.16vw;
  }
  .accod dt {
    padding: 3.125vw 10.41vw 3.125vw 4.16vw;
  }
  .accod dt span {
    margin-right: 4.26%;
    font-size: 6.77vw;
    width: 8.72vw;
    height: 8.72vw;
    line-height: 8.72vw;
  }
  .accod dd {
    padding: 3.125vw 4.16vw;
  }
  .accod dt::after {
    right: 6%;
  }
  .accod dt::before {
    right: 3.5%;
  }
  .faq .btn {
    margin: 7.29vw auto 0;
  }
}
/*  ========================
    *********  column  *********
=============================================  */
.column {
  background: #F0C2C9;
  clip-path: polygon(0 0, 35% 0, 45% 15%, 100% 15%, 100% 100%, 0 100%);
  position: relative;
  z-index: 0;
  margin-top: -124px;
}

.column .inner {
  padding: 120px 80px 80px 350px;
}

.column h2 {
  display: flex;
  justify-content: center;
  width: 440px;
  margin: 183px auto 53px;
}

.column h2 img {
  width: 100%;
}

.column p {
  color: #FFF;
  text-align: center;
}

.column .btn {
  margin: 50px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 1601px) {
  .column .inner {
    padding: 120px 80px 80px 21.86vw;
  }
}
@media screen and (max-width: 768px) {
  .column {
    clip-path: polygon(0 0, 35% 0, 45% 5%, 100% 5%, 100% 100%, 0 100%);
    margin-top: -20.83vw;
  }
  .column .inner {
    padding: 80px 0 80px 0;
  }
  .column h2 {
    width: 80%;
    margin: 7.291vw auto 7.291vw;
  }
  .column p {
    font-size: min(24px, 3.125vw);
  }
  .column .btn {
    margin-top: 10.41vw;
  }
}
/*  ========================
    *********  other  *********
=============================================  */
.other {
  padding: 60px 0 100px;
}

.other .flex {
  gap: 0 40px;
  align-items: center;
}

.other .flex.reverse {
  flex-direction: reverse;
  /* margin-top: 120px; 動画ギャラリーが出たら表示 */
}

.other iframe {
  border-radius: 10px;
}

.other .type {
  justify-content: flex-start;
}

.other h2 {
  margin: 24px 0 0;
  line-height: 1;
  letter-spacing: -0.06em;
}
.other h2 a {
  color: #FF6894;
  text-decoration: none;
}

.other .flex p {
  margin-top: 40px;
  line-height: 1.8;
}

.other .h2_block {
  flex-shrink: 0;
}

.other .flex.reverse .h2_block {
  width: 30%;
  min-width: 340px;
}

@media screen and (max-width: 768px) {
  .other {
    padding: 0 4.16% 0;
  }
  .other .flex {
    flex-wrap: wrap;
    gap: 7.29vw;
  }
  .other .type {
    justify-content: center;
  }
  .other .flex img {
    width: 100%;
  }
  .other .h2_block {
    text-align: center;
    margin: 0 auto;
  }
  .other h2 {
    margin-top: 4vw;
  }
  .other iframe {
    order: 2;
    height: 44.79vw;
  }
  .other .flex.reverse {
    /* margin-top: 15.625vw; 動画ギャラリーが出たら表示 */
  }
  .other .flex p {
    margin-top: 7.29vw;
  }
}
/*  ========================
    *********  footer  *********
=============================================  */
footer .inner {
  padding: 70px 0 66px 0;
}

.telArea {
  background: #FBF2F3;
  text-align: center;
}

.telArea ruby rt {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-align: center;
  margin-bottom: 0.5em;
}

.telArea h2 {
  margin: 0;
  letter-spacing: 0.001em;
}

.telArea .block {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  flex-direction: column;
  margin: 0 auto;
  line-height: 2.6;
}

.tel {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Poppins", sans-serif;
  font-size: 60px;
  letter-spacing: 0.01em;
}

.tel span {
  width: 46px;
  height: 46px;
  background: url(../images/common/icon_tel.svg) no-repeat center center;
  background-size: contain;
  display: inline-block;
  margin-right: 5px;
}

.tel a small {
  vertical-align: middle;
}

.tel a {
  color: #FF6894;
  font-weight: 500;
  text-decoration: none;
  line-height: normal;
}

.telArea p {
  font-size: 16px;
  margin-left: 55px;
  text-align: left;
  color: #FF6894;
}

/* LOGO周り */
footer .footerInner {
  background: #78828B;
  color: #FFF;
  font-size: min(14px, 0.875vw);
  padding: 80px 0 34px;
}

footer .footerInner .logo_center {
  text-align: center;
  padding-bottom: 38px;
}

.footerInner ul {
  list-style: none;
  padding: 0;
  margin: 0 auto 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
}

.footerInner ul li a {
  color: #fff;
  text-decoration: none;
}

.footerInner ul li a:hover {
  text-decoration: underline;
}

.footerInner .bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 20px 150px;
}

.footerInner .bottom ul {
  display: flex;
  gap: 16px 41px;
  margin: 0 0 0 0;
}

.footerInner .bottom ul li a {
  position: relative;
  margin-right: 20px;
}

.footerInner .bottom ul li a::after {
  position: absolute;
  content: "";
  margin-left: 4px;
  width: 10px;
  height: 10px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-mask-image: url(../images/common/icon_link.png);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(../images/common/icon_link.png);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #FFF;
}

.footerInner .bottom > div:last-child {
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  opacity: 0.7;
}

.kose-maruho-phama {
  margin-left: -2.8%;
}

.bottomLogoArea {
  display: flex;
  justify-content: center;
  gap: 0 48px;
  background: #FFF;
  padding: 32px 0 16px;
}

.footer .bottomLogoArea img {
  max-height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 1000px) {
  .footerInner .bottom {
    gap: 30px 0;
  }
  .footerInner .bottom ul {
    width: 100%;
  }
  .footerInner .bottom > div:last-child {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .telArea .block {
    margin: 0 auto;
  }
  .telArea h2 {
    font-size: min(52px, 6.77vw);
    text-align: center;
  }
  .tel {
    font-size: min(72px, 9.375vw);
  }
  .tel a {
    line-height: 1.2;
  }
  .tel a small {
    display: block;
    margin-bottom: 2vw;
  }
  .tel span {
    width: 7.16vw;
    height: 7.16vw;
  }
  .telArea p {
    font-size: min(16px, 3.125vw);
    margin-left: 0;
    text-align: center;
    line-height: 1.6;
  }
  _::-webkit-full-page-media, _:future, :root .telArea ruby rt {
    transform: translateY(10px);
  }
  @-moz-document url-prefix() {
    .telArea ruby rt {
      position: relative;
      margin-bottom: -10px;
    }
  }
  footer .inner {
    padding: 15.625vw 0;
  }
  footer .footerInner {
    font-size: 3.64vw;
    padding: 15.625vw 0 4.16vw;
  }
  footer .footerInner .logo_center {
    padding-bottom: 10.41vw;
  }
  .footerInner ul {
    margin-bottom: 15.625vw;
  }
  .footerInner ul li {
    width: 100%;
    text-align: center;
  }
  .footerInner .bottom {
    gap: 12.5vw 0;
  }
  .footerInner .bottom ul li {
    width: -moz-fit-content;
    width: fit-content;
  }
  .footerInner .bottom div:nth-child(2) {
    width: 65%;
    margin: 0 auto;
    text-align: center;
  }
  .footerInner .bottom img {
    width: 100%;
  }
  footer .bottomLogoArea {
    align-items: center;
    padding: 5.33vw 0;
    gap: 0 20px;
  }
  footer .bottomLogoArea a {
    width: 25%;
  }
  footer .bottomLogoArea a img {
    width: 100%;
    vertical-align: bottom;
  }
  footer .bottomLogoArea div {
    width: 80%;
  }
  footer .bottomLogoArea div img {
    width: 100%;
  }
}
/*  ========================
    *********  margin  *********
=============================================  */
.mt1 {
  margin-top: 1em;
}

.mt2 {
  margin-top: 2em;
}

.mt3 {
  margin-top: 3em;
}

.mt4 {
  margin-top: 4em;
}

.mt5 {
  margin-top: 5em;
}

.mt6 {
  margin-top: 6em;
}

.mt7 {
  margin-top: 7em;
}

.mt8 {
  margin-top: 8em;
}

.mt9 {
  margin-top: 9em;
}

.mt10 {
  margin-top: 10em;
}

.mb1 {
  margin-bottom: 1em;
}

.mb2 {
  margin-bottom: 2em;
}

.mb3 {
  margin-bottom: 3em;
}

.mb4 {
  margin-bottom: 4em;
}

.mb5 {
  margin-bottom: 5em;
}

.mb6 {
  margin-bottom: 6em;
}

.mb7 {
  margin-bottom: 7em;
}

.mb8 {
  margin-bottom: 8em;
}

.mb9 {
  margin-bottom: 9em;
}

.mb10 {
  margin-bottom: 10em;
}

/*  ========================
    *********  fade  *********
=============================================  */
.fade_Up,
.fade_Up02,
.fade_Up03,
.fade_Light01,
.fade_Down {
  opacity: 0;
}

.fade_Up.show {
  animation-name: animeFadeUp;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}

.fade_Up02.show {
  animation-name: animeFadeUp;
  animation-duration: 1.7s;
  animation-fill-mode: forwards;
}

.fade_Up03.show {
  animation-name: animeFadeUp;
  animation-duration: 1.9s;
  animation-fill-mode: forwards;
}

.fade_Light01.show {
  animation-name: animeImgRight;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
}

.fade_Down.show {
  animation-name: animeFadeDown;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
}

@keyframes animeFadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  40% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes animeFadeDown {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  40% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 0.3;
    transform: translateY(0);
  }
}
@keyframes animeImgRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  50% {
    opacity: 0;
    transform: translateX(100px);
  }
  70% {
    opacity: 1;
    transform: translateY(0);
  }
  80% {
    filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0.1));
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: drop-shadow(0px 30px 0px rgba(0, 0, 0, 0.1));
  }
}
a.btn {
  color: #FF6894;
}/*# sourceMappingURL=style.css.map */