@charset "utf-8";

/*-------------------------
  共通スタイル
-------------------------*/

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif !important;
  font-size: 1.6rem !important;
  font-weight: 500;
  line-height: 1.5;
  color: #3b4043;
  background-color: #fbfafc;
  overflow-x: hidden;
  min-width: auto;
}

.site1465 p, .site1465 li, .site1465 .no_data {
  font-size: inherit !important;
}

a {
  color: #333;
  text-decoration: none;
}

#mymainback {
  margin-top: 100vh !important;
}

#main {
  margin: 0 !important;
  padding-top: 20px !important;
  background-color: #fbfafc;
}

#main_body {
  line-height: 1.6;
}

.w1200 {
  width: 1200px;
  margin: 0 auto;
}

#viewSwitch {
  display: none;
}

.list_ccc {
  background: none !important;
}

.list_ccc li, #main_body .list_ccc li {
  border-top: none !important;
}

/* ボタンデザイン */

.text_d2 {
  padding: 40px 0 0 0 !important;
  display: flex;
  justify-content: flex-end;
  border: none !important;
}

.text_d2 .text_d {
  padding: 0;
  position: relative;
  background-color: #E8DAF1;
  background-image: none;
  border-radius: 400px;
}

.text_d2 .text_d:hover {
  opacity: 0.8;
}

.text_d2 .text_d::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 1px;
  top: 48%;
  right: 20px;
  background: #333;
}

.text_d2 .text_d::after {
  content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    right: 24px;
    border-right: solid 1px #333;
    border-top: solid 1px #333;
    top: 46%;
    transform: rotate(45deg) translateY(-50%);
}

.text_d2 .text_d a {
  padding: 20px 70px;
  color: #333;
  text-decoration: none;
  display: block;
}

/*-------------------------
  ヘッダースタイル
-------------------------*/

/* ヘッダー */

#header {
  position: fixed;
  width: 100vw;
  z-index: 1;
}

#header_contents {
  display: flex;
  justify-content: space-between;
}

.left-contents {
  position: relative;
}

.left-contents::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(/img/women-health/site_logo_bg.png);
  background-position: bottom right;
  background-size: 130%;
  background-repeat: no-repeat;
  z-index: -1;
}

.left-contents h1 {
  margin: 30px 80px 80px 50px;
  width: 200px;
}

.right-contents-inner {
  padding: 2rem 4rem 4.6rem 11rem;
  background-color: rgba(255,255,255,.8);
  mask: url(/img/women-health/header_bg.svg);
  mask-size: 110%;
  mask-position: bottom left;
  mask-repeat: no-repeat;
}

.right-contents .support_wrap {
  display: flex;
  justify-content: flex-end;
  column-gap: 40px;
}

.right-contents .support_wrap .acc_item {
  display: flex;
  align-items: center;
}

.right-contents .support_wrap .acc_item ul {
  margin: 0;
  padding: 0 0 0 10px;
  display: flex;
  column-gap: 10px;
  list-style: none;
}

.right-contents .support_wrap .acc_item ul li {
  padding: 8px 14px;
  background-color: #E8DAF1;
  border-radius: 400px;
  box-shadow: 0 3px 2px rgba(0,0,0,.16);
}

.right-contents .support_wrap .acc_item ul li a {
  color: #333;
  text-decoration: none;
}

.right-contents .support_wrap .gs form {
    display: flex;
    align-items: center;
}

.right-contents .support_wrap input[type="text" i] {
  width: 230px;
  height: 40px;
  border-radius: 400px;
  border: solid 1px #E8DAF1;
  box-shadow: 0 3px 2px rgba(0, 0, 0, .16);
}

.right-contents .support_wrap input[type="submit" i] {
  margin-left: 10px;
  width: 40px;
  height: 40px;
  background-color: #E8DAF1;
  background-image: url(/img/women-health/g_search_icon.svg);
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 400px;
  border: none;
  box-shadow: 0 3px 2px rgba(0, 0, 0, .16);
  cursor: pointer;
}

.right-contents nav ul {
  margin: 24px 0 16px;
  padding: 0;
  display: flex;
  column-gap: 32px;
  list-style: none;
}

.right-contents nav ul li a {
  position: relative;
  padding: 8px 0;
  display: block;
  color: #333;
  font-size: 1.8rem;
  text-decoration: none;
  z-index: 1;
}

.right-contents nav ul li a::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background-image: url(/img/women-health/nav_h_img.png);
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  opacity: 0;
  transition: 0.3s;
  z-index: -1;
}

.right-contents nav ul li a:hover:before {
  opacity: 1;
}

/* 下層ヘッダー */

body:not(.top) #header {
  position: static;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 6px 0px rgba(0, 0, 0, 0.16);
  z-index: 2;
}

body:not(.top) .left-contents {
  margin: 10px;
  background-image: url(/img/women-health/site_logo_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
}

body:not(.top) .left-contents::before {
  content: none;
}

body:not(.top) .left-contents {
  margin: 10px;
  padding: 18px 20px;
  max-height: 120px;
}

body:not(.top) .left-contents a img {
  width: 134px;
}

body:not(.top) .right-contents {
  padding: 20px 40px 0 0;
  background: none;
  mask: none;
}

/* モバイルヘッダー */

#mobile-head {
  display: none;
  position: fixed;
  width: 30px;
  height: 30px;
  top: 20px;
  right: 20px;
  z-index: 9999;
}

body:not(.top) #mobile-head {
  position: absolute;
}

#mobile-head #nav-toggle {
  overflow: hidden;
}

#mobile-head #nav-toggle span {
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  background: #333;
  transition: 0.3s;
}

#mobile-head #nav-toggle span:nth-child(1) {
  top: 4px;
}

#mobile-head #nav-toggle span:nth-child(2) {
  top: 15px;
}

#mobile-head #nav-toggle span:nth-child(3) {
  top: 26px;
}

#mobile-head.open #nav-toggle span:nth-of-type(2) {
  opacity: 0;
}

#mobile-head.open #nav-toggle span:nth-of-type(1) {
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(0px) rotate(45deg);
  margin: 0 auto;
}

#mobile-head.open #nav-toggle span:nth-of-type(3) {
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(0px) rotate(-45deg);
}

/*-------------------------
  見出し
-------------------------*/

.h2box,
#main_body h3,
#main_body h4 {
  margin: 32px 0 !important;
}

.h2box {
  position: relative;
  background-image: none;
  background-color: #F2E9F5;
  border-radius: 10px;
}

.h2box::before {
  position: absolute;
  content: "";
  width: 200px;
  height: 100%;
  bottom: 0;
  right: 0;
  background-image: url(/img/women-health/bg_h2_flower.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  opacity: 0.3;
}

#main_body h2 {
  padding: 32px 40px 30px 40px !important;
  font-size: 2.8rem !important;
  font-weight: 500 !important;
  background: none !important;
  border: none !important;
}

#main_body h3 {
  position: relative;
  padding: 24px 0 24px 40px !important;
  background-image: none;
  background-color: #FBFAFC;
  border: solid 1px #CAB382;
  border-radius: 10px;
  font-size: 2.2rem;
  font-weight: 500;
}

#main_body h3::before {
  content: "";
  position: absolute;
  width: 93px;
  height: 66px;
  bottom: 0;
  left: 6px;
  background-image: url(/img/women-health/bg_list_flower.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

#main_body h4 {
  position: relative;
  background-image: none;
  padding: 0 0 8px 40px;
  font-size: 2.2rem;
  font-weight: 500;
  z-index: 1;
}

#main_body h4::before {
  content: "";
  position: absolute;
  width: 100%;
  aspect-ratio: 56 / 1;
  bottom: 0;
  left: 0;
  background-image: url(/img/women-health/bg_kenkoshien.jpg);
  background-position: bottom 20% left;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(-1, 1);
  opacity: 0.5;
  z-index: -1;
}

#main_body h5 {
  font-size: 1.8rem;
  font-weight: 500;
  margin: 32px 0 24px;
  padding: 0 0 5px 40px;
  border-left: none;
  background-image: repeating-linear-gradient(
      to right,
      #654EA3 0px,
      #654EA3 2px,
      transparent 2px,
      transparent 8px
  );
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: auto 1px;
}

#main_body h6 {
  position: relative;
  font-weight: 500;
  margin: 32px 0 18px;
  padding: 0 0 0 50px;
  border-left: none;
}

#main_body h6::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 1px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #CAB382;
}

/*-------------------------
  表のスタイル
-------------------------*/

#main table {
  border: none;
}

#main table caption {
  margin-bottom: 4px;
}

#main th {
  border-color: #fff !important;
  background: #E8DAF1;
  padding: 10px 20px;
  font-weight: 500;
}

#main td {
  border-color: #E8DAF1 !important;
  padding: 0.4em 0.8em;
  padding: 10px 20px;
  font-weight: 500;
}

.sp_button {
  display: none;
}

/*-------------------------
  slick
-------------------------*/

/* スライド設定 */

.slide-items {
  margin: 0 !important;
  padding: 0;
  width: 100%;
  height: 100%;
}

.slide-items p {
  margin: 0;
}

.slide-items img {
  width: 100% !important;
  height: auto !important;
}

.pickup_area .slide-items img {
  aspect-ratio: 30 / 19;
  object-fit: cover;
  object-position: top;
}

/* スライドコントロール */

[class^="btn_box"] {
  display: flex  ;
  align-items: center;
  column-gap: 20px;
}

/* dots*/

.slick-dots {
  position: static;
  display: flex;
  align-items: center;
  column-gap: 20px;
}

.slick-dots li {
  margin: 0;
  padding: 0;
  width: 10px;
  height: 10px;
}

.slick-dots li button {
  width: 10px;
  height: 10px;
}

.slick-dots li button:before {
  background: #fff;
  border: solid 1px #333;
}

.slick-dots li.slick-active button:before {
  background: #333;
}

/* toggle */

.tglBtn {
  cursor: pointer;
}

.tglBtn > span {
  position: relative;
  width:  12px;
  height: 14px;
  display: block;
  color: transparent;
}

.tglBtn .startBtn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #333;
  clip-path: polygon(15% 0, 15% 100%, 100% 50%);
  border-radius: 2px;
}

.tglBtn .stopBtn::before,
.tglBtn .stopBtn::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 14px;
  top: 0;
  background: #333;
  border-radius: 2px;
}

.tglBtn .stopBtn::before {
  left: 0;
}

.tglBtn .stopBtn::after {
  right: 0;
}

/* arrow */

.slick-arrow {
  width: 8px;
  height: 16px;
  cursor: pointer;
}

.slick-arrow > span {
  position: relative;
  width: 8px;
  height: 16px;
  display: block;
}

.slick-arrow > span::before,
.slick-arrow > span::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  height: 1px;
  border-radius: 9999px;
  background-color: #333333;
  transform-origin: 0.5px 50%;
}

.slick-arrow > span::before {
  transform: rotate(45deg);
}

.slick-arrow > span::after {
  transform: rotate(-45deg);
}

.slick-arrow .nextBtn {
  transform: scale(-1, 1);
}

/* メインスライド */

.mainpic_area .slide-items {
  margin: 0 !important;
  padding: 0;
  width: 100%;
  height: 100%;
}

.mainpic_area .slide-items p {
  margin: 0;
}

.mainpic_area .slide-items img {
  width: 100vw !important;
    height: 100vh !important;
    object-fit: cover;
    object-position: top center;
}

.btn_box01 {
  padding: 22px 45px;
  border-radius: 400px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: rgba(255, 255, 255, .8);
}

/* ピックアップ */
/* 関連リンク */

.btn_box02 {
  margin: 40px 0 0;
  justify-content: center;
}

.btn_box03 {
  justify-content: center;
}

/*-------------------------
  トップページ
-------------------------*/

/* トップ共通 */

.section_title {
  position: relative;
  padding-bottom: 14px;
}

.section_title h2 {
  position: relative;
  text-align: center;
  padding-bottom: 18px;
  font-size: 3.4rem;
  font-weight: 400;
}

.section_title h2::before {
  content: "";
  position: absolute;
  width: 126px;
  height: 8px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(/img/women-health/s_title_deco.svg);
  background-size: contain;
  background-position: center;
}


/* メインスライド */

.mainpic_area {
  position: fixed;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
}

/* メッセージ */

.section_wrap.message {
  padding: 320px 0 100px;
}

.message_img {
  width: 32.6%;
  position: absolute;
  top: 140px;
  right: 7%;
  z-index: -1;
}

.message_text {
  position: relative;
  margin: 0 0 40px 40px;
  padding: 54px 60px;
  width: 900px;
  background-color: rgba(255, 255, 255, .8);
  border-radius: 10px;
  border: solid 1px #654EA3;
  text-align: center;
}

.message_text::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 40px;
  left: -40px;
  background-color: #F2E9F5;
  border-radius: 10px;
  z-index: -1;
}

.section_wrap.message p {
  margin: 0;
  line-height: 2.5;
  text-align: left;
}

/* 情報エリア共通 */

.section_wrap.info {
  position: relative;
  background-image: url(/img/women-health/bg_suisai.jpg);
  background-size: cover;
}

.section_wrap.info::before {
  content: "";
  position: absolute;
  width: calc(100% + 1px);
  aspect-ratio: 384 / 37;
  top: 0;
  left: 0;
  background-color: #FBFAFC;
  mask: url(/img/women-health/bg_clip.svg);
}

.section_wrap.info .info_inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 285px 60px 100px;
  display: flex;
  column-gap: 60px;
}

/* 新着情報 */

.news_area {
  width: calc(100% - 45%);
}

.news_area .news_contents {
  padding: 40px;
  background-color: #FBFAFC;
  border-radius: 10px;
}

.news_area .list_ccc {
  padding: 20px 0;
  max-height: 337px;
  background-color: #fff;
  border-radius: 10px;
}

.news_area .list_ccc ul {
  margin: 0 10px 0 0;
  padding: 0 10px 0 20px;
  max-height: 297px;
  overflow: auto;
}

.news_area .list_ccc ul::-webkit-scrollbar {
  width: 4px;
}

.news_area .list_ccc ul::-webkit-scrollbar-thumb {
  background-color: #654EA3;
  border-radius: 2px;
}

.news_area .list_ccc ul li {
  margin: 0;
  padding: 20px 0 20px 20px;
  background-image: radial-gradient(circle, #333333 0.5px, transparent 0.5px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 5px 1px;
}

.news_area .list_ccc .span_a {
  padding: 0;
  background: none;
  width: 11em;
}

.news_area .list_ccc .span_b a {
  color: #333;
}

.news_area .list_ccc .span_b a:hover {
  text-decoration: none;
}

/* ピックアップ情報 */

.pickup_area {
  width: 680px;
  max-width: 45%;
}

.pickup_area .pickup_wrap {
  padding: 40px;
  background-color: #FBFAFC;
  border-radius: 10px;
}

/* 世代別の健康情報 */

.section_wrap.sedai {
  position: relative;
  padding: 140px 0;
}

.section_wrap.sedai::before {
  content: "";
  position: absolute;
  height: 500px;
  width: 88vw;
  top: 55%;
  left: 0;
  transform: translateY(-50%);
  background-image: url(/img/women-health/bg_gradation.jpg);
  background-size: cover;
  background-position: bottom right;
  z-index: -1;
}

.section_wrap.sedai ul {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  list-style: none;
}

.section_wrap.sedai ul li {
  width: calc(50% - 20px);
  aspect-ratio: 29 / 16;
  border-radius: 10px;
  background-size: 100%;
  background-repeat: no-repeat;
  box-shadow: 3px 3px 6px 0px rgba(0, 0, 0, 0.16);
  transition: 0.3s;
}

.section_wrap.sedai ul li:hover {
  transform: scale(1.02);
  transform-origin: center center;
}

.section_wrap.sedai ul li:nth-child(1) {
  background-image: url(/img/women-health/gene_list_bg01.svg);
}

.section_wrap.sedai ul li:nth-child(2) {
  background-image: url(/img/women-health/gene_list_bg02.svg);
}

.section_wrap.sedai ul li:nth-child(3) {
  background-image: url(/img/women-health/gene_list_bg03.svg);
}

.section_wrap.sedai ul li:nth-child(4) {
  background-image: url(/img/women-health/gene_list_bg04.svg);
}

.section_wrap.sedai ul li a {
  position: relative;
  height: 100%;
  font-size: 3.4rem;
  font-weight: 400;
  text-decoration: none;
  color: #333;display: block;
}

.section_wrap.sedai ul li a span {
  position: absolute;
  width: 40%;
  top: 35%;
  right: 2%;
  text-align: center;
}

/* 女性の健康問題 */

.section_wrap.kenkomondai {
  position: relative;
  padding: 140px 0 280px;
  background-image: url(/img/women-health/bg_kenkomondai.jpg);
  background-size: cover;
}

.section_wrap.kenkomondai::before {
  content: "";
  position: absolute;
  width: calc(100% + 1px);
  aspect-ratio: 384 / 37;
  bottom: -1px;
  left: -1px;
  background-color: #FBFAFC;
  mask: url(/img/women-health/bg_clip.svg);
  transform: scale(-1, -1);
}

.section_wrap.kenkomondai ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 200px));
  gap: 40px;
  padding: 0;
  justify-content: center;
  max-width: 100%;
  list-style: none;
}

.section_wrap.kenkomondai ul li {
  width: calc(50vw - 20px);
  max-width: 200px;
  box-sizing: border-box;
  left: 10px;
  position: sticky;
  transition: 0.3s;
}

.section_wrap.kenkomondai ul li:hover {
  transform: scale(1.05);
  transform-origin: center center;
}

.section_wrap.kenkomondai ul li a img {
  width: 100%;
  height: auto;
}

/* 働く女性の健康支援 */

.section_wrap.kenkoshien {
  padding: 100px 0;
  position: relative;
}

.section_wrap.kenkoshien::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: URL(/img/women-health/bg_flower01.svg), URL(/img/women-health/bg_flower02.svg), URL(/img/women-health/bg_flower03.svg), URL(/img/women-health/bg_flower04.svg);
  background-repeat: no-repeat;
  background-size: 246px 230px, 558px 180px, 438px 190px, 150px 206px;
  background-position: top left, top right -185px, bottom 100px left 20px, bottom 100px right 40px;
  opacity: 0.3;
  z-index: -1;
}

.section_wrap.kenkoshien ul {
  padding: 0;
  display: flex;
  column-gap: 60px;
  list-style: none;
}

.section_wrap.kenkoshien ul li {
  position: relative;
  width: calc(50% - 30px);
  aspect-ratio: 4 / 3;
}

.section_wrap.kenkoshien ul li::before {
  content: "";
  position: absolute;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  top: 20px;
  left: 20px;
  background-image: url(/img/women-health/bg_kenkoshien.jpg);
  background-size: cover;
  opacity: 0.5;
  z-index: -1;
}

.section_wrap.kenkoshien ul li img {
  width: 63%;
  border-radius: 10px;
}

.section_wrap.kenkoshien ul li div {
  position: absolute;
  width: 63%;
  aspect-ratio: 36 / 23;
  bottom: 0;
  right: 0;
  background-color: #fff;
  border: solid 1px #CAB382;
  border-radius: 10px;
}

.section_wrap.kenkoshien ul li div::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 10px;
  right: 10px;
  border: solid 1px #CAB382;
  border-radius: 10px;
}

.section_wrap.kenkoshien ul li div a {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.8rem;
  color: #333;
  text-decoration: none;
  z-index: 2;
}

.section_wrap.kenkoshien ul li div a::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 1px;
  bottom: 33px;
  right: 50px;
  background: #CAB382;
  transition: 0.3s;
}

.section_wrap.kenkoshien ul li div a::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 1px;
  bottom: 36px;
  right: 50px;
  background: #CAB382;
  transform: rotate(45deg);
  transition: 0.3s;
}

.section_wrap.kenkoshien ul li div a:hover::before,
.section_wrap.kenkoshien ul li div a:hover::after {
  right: 30px;
}

/* プレコンセプションケア */

.section_wrap.preconception {
  position: relative;
  padding: 280px 0 140px;
  background-image: url(/img/women-health/bg_marble.png);
  background-size: cover;
  background-position: bottom;
}

.section_wrap.preconception::before {
  content: "";
  position: absolute;
  width: calc(100% + 1px);
  aspect-ratio: 384 / 37;
  top: 0;
  left: 0;
  background-color: #FBFAFC;
  mask: url(/img/women-health/bg_clip.svg);
}

.section_wrap.preconception p {
  line-height: 2.5;
}

.section_wrap.preconception .text_d2 .text_d a {
  padding: 20px 110px;
}

/* 背景 */

.sention_wrap.haikei {
  width: 100vw;
  aspect-ratio: 48 / 13;
  background-image: url(/img/women-health/bg_flower.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* 関連リンク */

.section_wrap.kanren {
  margin-bottom: -1px;
  padding: 140px 0 280px;
  background-image: url(/img/women-health/bg_check.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.section_wrap.kanren::before {
  content: "";
  position: absolute;
  width: calc(100% + 1px);
  aspect-ratio: 384 / 37;
  bottom: 0;
  left: 0;
  background-color: #e8daf1;
  mask: url(/img/women-health/bg_clip.svg);
  transform: scaleY(-1);
}

.slide-items.kanren {
  width: 100% !important;
}

.slide-items.kanren .slick-track {
  display: flex;
}

.slide-items.kanren .slick-slide div p {
  width: 25% !important;
  padding: 10px;
}

/* フッター */

#footer {
  margin: 0;
  margin-top: -1px;
  position: relative;
  background-color: #e8daf1;
  background-image: none;
  z-index: 1;
  overflow: hidden;
}

#footer::before {
  content: "";
  position: absolute;
  width: 35%;
  aspect-ratio: 85 / 71;
  top: 0;
  right: 4px;
  background-image: url(/img/women-health/bg_footer.png);
  background-size: contain;
  background-repeat: no-repeat;
}

#footer .footer_main .footer_logo {
  margin: 0 0 24px;
}

#footer .footer_main .footer_logo img {
  width: 410px;
}

.address p:first-child {
  font-size: 2rem;
  margin: 16px 0;
}

.contactBtn {
  margin: 8px 0 60px;
  background-color: #fff;
  border-radius: 400px;
  box-shadow: 3px 3px 6px 0px rgba(0, 0, 0, 0.16);
  display: inline-block;
}

.contactBtn:hover {
  opacity: 0.8;
}

.contactBtn a {
  padding: 16px 48px;
  color: #333 !important;
  font-size: 1.8rem;
  text-decoration: none !important;
  display: block;
}

#page_top {
  position: fixed;
  bottom: 40px;
  right: 24px;
}

#page_top a img {
  display: block;
}

#copyright {
  position: relative;
  margin: 0;
  text-align: center;
}

#copyright p {
  margin: 0 0 20px;
}


/*-------------------------
  下層共通
-------------------------*/

body:not(.top) .w1200 {
  width: 1200px !important;
  margin: 0 auto !important;
}

body:not(.top) #container::before {
  content: "";
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-image: URL(/img/women-health/bg_flower01.svg), URL(/img/women-health/bg_flower02.svg), URL(/img/women-health/bg_flower03.svg), URL(/img/women-health/bg_flower04.svg);
  background-repeat: no-repeat;
  background-size: 246px 230px, 558px 180px, 438px 190px, 150px 206px;
  background-position: top left, top right -185px, bottom left 20px, bottom right 40px;
  opacity: 0.3;
  z-index: -1;
}

body:not(.top) #mymainback {
  margin-top: 0 !important;
  padding-top: 60px;
}

body:not(.top) .pankuzu {
  padding: 0.4em 0;
  background: none;
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 20px !important;
}

body:not(.top) .pankuzu span {
  margin-right: 14px;
  padding: 8px 10px;
  background-color: #E8DAF1;
  border-radius: 400px;
  font-size: 1.4rem;
}

body:not(.top) .pankuzu a {
  color: #654EA3;
  padding: 0 6px;
}

body:not(.top) #main_header {
  background: none;
}

body:not(.top) #main_header .h1box {
  position: relative;
  margin: 6px 0 0 6px;
  background-image: url(/img/women-health/bg_gradation.jpg);
  background-position: bottom center;
  background-size: cover;
  border: none;
  border-radius: 10px;
}

body:not(.top) #main_header .h1box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: -6px;
  left: -6px;
  border: solid 1px #CAB382;
  border-radius: 10px;
}

body:not(.top) #main_header .h1box .h1 {
  background: none;
}

body:not(.top) #main_header .h1box .h1 h1 {
  position: sticky;
  padding: 34px 42px 40px;
  font-size: 3.2rem;
  font-weight: 500;
}

body:not(.top) #main {
  position: relative;
  background-color: transparent;
  padding-top: 40px !important;
}

body:not(.top) #main_a {
  margin: 0 auto 100px !important;
  padding: 40px;
  background-color: #fff;
  border-radius: 10px;
  min-height: 40vh;
  min-height: 40dvh;
}

body:not(.top) .footer_bg_area {
  position: relative;
  width: 100%;
  aspect-ratio: 384 / 37;
}

body:not(.top) .footer_bg_area::before {
  content: "";
  position: absolute;
  width: 100%;
  aspect-ratio: 384 / 37;
  bottom: -1;
  left: 0;
  background-color: #e8daf1;
  mask: url(/img/women-health/bg_clip.svg);
  transform: scaleY(-1);
}

/*-------------------------
  大メニューページ
-------------------------*/

body.list2 #main_body .list_ccc ul {
  padding: 0;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}

body.list2 #main_body .list_ccc ul li {
  position: relative;
  margin: 0;
  padding: 0;
}

body.list2 #main_body .list_ccc ul li::before {
  content: "";
  position: absolute;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  top: 4px;
  left: 4px;
  border: solid 1px #CAB382;
  border-radius: 10px;
}

body.list2 .list_ccc .span_c {
  position: relative;
  margin: 0 4px 4px 0;
  padding: 0;
  background-image: none;
  background-color: #FBFAFC;
  border: solid 1px #CAB382;
  border-radius: 10px;
  display: block;
  z-index: 2;
  transition: 0.3s;
}

body.list2 .list_ccc .span_c:hover {
  margin: 4px 0 0 4px;
}

body.list2 .list_ccc .span_c::before {
  content: "";
  position: absolute;
  width: 93px;
  height: 66px;
  bottom: 0;
  left: 6px;
  background-image: url(/img/women-health/bg_list_flower.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

body.list2 .list_ccc .span_c::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 100%;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  background-image: url(/img/women-health/list_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

body.list2 .list_ccc .span_c a {
  position: relative;
  padding: 24px 66px 24px 40px;
  font-size: 2.2rem;
  color: #333;
  text-decoration: none;
  display: block;
  z-index: 1;
}

/*-------------------------
  小メニューページ
-------------------------*/

body.list1 #main_body .list_ccc ul {
  padding: 0;
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}

body.list1 #main_body .list_ccc ul li{
  margin: 0;
  padding: 0 0 20px 20px;
  background-image: radial-gradient(circle, #CAB382 0.5px, transparent 0.5px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 5px 1px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

body.list1 .list_ccc .span_a {
  margin: 0;
  padding: 0;
  background-image: none;
}

body.list1 .list_ccc .span_b {
  padding-left: 10px;
  font-size: 1.8rem;
}

body.list1 .list_ccc .span_b a {
  font-size: 1.8rem;
  color: #333;
  text-decoration: none;
}

body.list1 .list_ccc .span_b a:hover{
  color: #654EA3;
}

/*-------------------------
  最終ページ
-------------------------*/

body.detail a{
  color: #654EA3;
}

body.detail #detail_date {
  margin-bottom: 12px;
}

/*-------------------------
  レスポンシブ
-------------------------*/

@media all and (max-width: 1290px) {

  /* ヘッダースタイル */

  #header.open {
    z-index: 99;
  }

  #header.open .left-contents {
    z-index: 999;
  }

  .right-contents,
  body:not(.top) .right-contents {
    position: fixed;
    padding: 100px 40px 40px;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, .9);
    mask: none;
    transform: translateX(100%);
    visibility: hidden;
    z-index: 2;
    transition: 0.3s;
  }

  .right-contents.open,
  body:not(.top) .right-contents.open {
    position: fixed;
    transform: translateX(0);
    visibility: visible;
  }

  .right-contents-inner {
    background: none;
    mask: none;
  }

  .right-contents.open .right-contents-inner {
    padding: 0;
  }

  .right-contents .support_wrap {
    flex-direction: column;
    align-items: flex-end;
    row-gap: 20px;
  }

  .right-contents nav ul {
    margin: 40px 0 0;
    flex-direction: column;
    align-items: flex-end;
    row-gap: 20px;
  }

  .right-contents nav ul li a:hover:before {
    left: 0;
  }

  body:not(.top) .right-contents {
      background-color: rgba(255, 255, 255, .9);
    }

  #mobile-head {
  display: block;
  }

  body:not(.top) #mobile-head.open {
    position: fixed;
  }

}

@media all and (max-width: 1210px) {

  /* 共通スタイル */

  .w1200 {
    width: calc(100% - 20px);
  }

  /* トップページ */

  .section_wrap.message {
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 40px;
  }

  .message_img {
    position: static;
    width: auto;
    text-align: center;
  }

  .message_img img {
    max-width: 50%;
    min-width: 200px;
  }

  .section_wrap.info .info_inner {
    padding: 200px 20px 100px;
    flex-direction: column;
    align-items: center;
    row-gap: 60px;
  }

  .news_area {
    width: 100%;
  }

  .pickup_area {
    max-width: 100%;
  }

  .section_wrap.sedai {
    padding: 100px 0;
  }

  .section_wrap.kenkomondai {
    padding: 100px 0 200px;
  }

  .section_wrap.preconception {
    padding: 200px 0 100px;
  }

  .sention_wrap.haikei {
    background-attachment: inherit;
  }

  .section_wrap.kanren {
    padding: 100px 0 200px;
  }

  /* 下層ページ共通 */

  body:not(.top) .w1200 {
    width: calc(100% - 20px) !important;
  }

}

@media all and (max-width: 910px) {

  /* 共通スタイル */

  #main {
    padding-top: 0 !important;
  }

  body:not(.top) #mymainback {
    padding-top: 130px;
  }

  /* ヘッダースタイル */

  .left-contents h1 {
    margin: 20px 50px 38px 20px;
    width: 110px;
  }

  body:not(.top) .left-contents {
    padding: 10px;
    width: auto;
    max-height: 70px;
  }

  body:not(.top) .left-contents a img {
    width: 80px;
  }

  .right-contents .support_wrap input[type="text" i] {
    width: 180px;
    height: 30px;
  }

  .right-contents .support_wrap input[type="submit" i] {
    width: 30px;
    height: 30px;
    background-size: 16px;
  }

  .right-contents nav ul {
    row-gap: 10px;
  }

  .right-contents nav ul li a {
    font-size: 1.6rem;
  }

  /* Slick */

  .btn_box01 {
    padding: 8px 20px;
  }

  /* トップページ */

  .section_title h2 {
    font-size: 2.8rem;
  }

  .section_wrap.message {
    padding: 80px 0;
  }

  .message_text {
    width: calc(100% - 20px);
    margin: 0 0 20px 20px;
    padding: 20px;
  }

  .message_text::before {
    top: 20px;
    left: -20px;
  }

  .message_text > div:nth-child(2) {
    text-align: left;
  }

  .section_wrap.info .info_inner {
    padding: 140px 10px 80px;
  }

  .news_area .news_contents {
    padding: 20px;
  }

  .news_area .list_ccc ul li {
    display: flex;
    flex-direction: column;
    row-gap: 6px;
  }

  .text_d2 {
    padding: 20px 0 0 !important;
  }

  .pickup_area .pickup_wrap {
    padding: 20px;
    aspect-ratio: inherit;
  }

  .btn_box02 {
    margin: 20px 0 0;
  }

  .section_wrap.sedai {
    padding: 80px 0;
  }

  .section_wrap.sedai::before {
    width: 100vw;
    height: auto;
    aspect-ratio: 16 / 9;
    bottom: 0;
    transform: translateY(-40%);
  }

  .section_wrap.sedai ul {
    gap: 20px;
  }

  .section_wrap.sedai ul li {
    width: calc(50% - 10px);
  }

  .section_wrap.sedai ul li a span {
    font-size: 2.4rem;
  }

  .section_wrap.kenkomondai {
    padding: 80px 0 140px;
  }

  .section_wrap.kenkomondai ul {
    gap: 20px;
  }

  .section_wrap.kenkomondai ul li a img {
    max-width: 100%;
  }

  .section_wrap.kenkoshien {
    padding: 80px 0;
  }

  .section_wrap.kenkoshien::before {
    background-position: top left, top 30% right -185px, bottom 30% left 20px, bottom 100px right 40px;
  }

  .section_wrap.kenkoshien ul {
    flex-direction: column;
    align-items: center;
    row-gap: 60px;
  }

  .section_wrap.kenkoshien ul li {
    width: 100%;
  }

  .section_wrap.preconception {
    padding: 140px 0 80px;
  }

  .section_wrap.kanren {
    padding: 80px 0 140px;
  }

  /* フッター */

  #footer::before {
    height: auto;
    top: initial;
    bottom: 50%;
    width: 50%;
    transform: translateY(50%);
    z-index: -1;
  }

  #footer .footer_main .footer_logo img {
    max-width: 100%;
  }

  /* 下層共通 */

  body:not(.top) #container::before {
    background-position: top left, top 35% right -185px, bottom 32% left 0px, bottom 0px right 40px;
  }

  body:not(.top) #mymainback {
    padding-top: 40px;
  }

  body:not(.top) #main_a {
    padding: 20px;
  }

}

@media all and (max-width: 670px) {

  /* 共通スタイル */

  body {
    font-size: 1.4rem !important;
  }

  #mymainback {
    margin-top: 60vh !important;
  }

  /* ヘッダースタイル */

  .right-contents .support_wrap .acc_item ul li {
    padding: 4px 10px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, .16);
  }

  .right-contents .support_wrap input[type="text" i],
  .right-contents .support_wrap input[type="submit" i] {
    box-shadow: 0 2px 2px rgba(0, 0, 0, .16);
  }


  /* 見出し */

  .h2box {
    margin: 20px 0;
  }

  .h2box::before {
    width: 20%;
    min-width: 100px;
  }

  #main_body h2 {
    padding: 15px 16px !important;
    font-size: 2.0rem !important;
    background: none !important;
    border: none !important;
  }

  #main_body h3 {
    margin: 20px 0;
    padding: 12px 20px;
    font-size: 1.8rem;
  }

  #main_body h3::before {
    height: 90%;
  }

  #main_body h4 {
    margin: 20px 0 !important;
    padding: 0 0 8px 20px;
    font-size: 1.6rem;
  }

  #main_body h5 {
    margin: 20px 0 16px;
    padding: 0 0 5px 20px;
    font-size: 1.6rem;
  }

  #main_body h6 {
    margin: 20px 0 16px;
    padding: 0 0 0 36px;
  }

  #main_body h6::before {
    width: 26px;
  }

  /* 表のスタイル */

  #main_body .sp_table_wrap {
      overflow: auto;
  }

  #main_body div.sp_large_table {
      width: 1000px;
      overflow: visible;
  }

  .sp_button {
      display: block;
      width: 100%;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      padding: 10px;
      border: 1px solid #dcdcdc;
      border-radius: 5px;
      background: -moz-linear-gradient(center top, #f9f9f9 5%, #e9e9e9 100%);
      background: -ms-linear-gradient(top, #f9f9f9 5%, #e9e9e9 100%);
      filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#e9e9e9');
      background: -webkit-gradient(linear, left top, left bottom, color-stop(5%, #f9f9f9), color-stop(100%, #e9e9e9));
      background-color: #f9f9f9;
      color: #000000;
      text-shadow: 1px 1px 0px #ffffff;
      -webkit-box-shadow: inset 1px 1px 0px 0px #ffffff;
      box-shadow: inset 1px 1px 0px 0px #ffffff;
      text-decoration: none;
      text-align: center;
  }

  .sp_button:hover {
      background: -moz-linear-gradient(center top, #e9e9e9 5%, #f9f9f9 100%);
      background: -ms-linear-gradient(top, #e9e9e9 5%, #f9f9f9 100%);
      filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e9e9e9', endColorstr='#f9f9f9');
      background: -webkit-gradient(linear, left top, left bottom, color-stop(5%, #e9e9e9), color-stop(100%, #f9f9f9));
      background-color: #e9e9e9;
  }

  .sp_button:active {
      position: relative;
      top: 1px;
  }

  .gsc-result .gs-title {
      height: auto !important;
  }

  /* Slick */

  .mainpic_area {
    height: 60vh;
  }

  .mainpic_area .slide-items img {
    width: 100vw !important;
    height: 60vh !important;
    object-fit: cover;
    object-position: top center;
  }

  .mainpic_area .btn_box01 {
    position: absolute;
  }

  .slick-dots {
    column-gap: 10px;
  }

  /* トップページ */

  .section_wrap.message p {
    line-height: 2;
  }

  .section_wrap.sedai ul {
    flex-direction: column;
    align-items: center;
  }

  .section_wrap.sedai ul li {
    width: 100%;
    max-width: 500px;
  }

  .section_wrap.preconception p {
    line-height: 2;
  }

  .slide-items.kanren .slick-slide div p {
    width: 50% !important;
  }

  .contactBtn a {
    font-size: 1.6rem;
  }

  .footer_main {
    margin: 40px 0 0;
  }

  /* 下層共通*/

  body:not(.top) .pankuzu {
    font-size: 1.4rem;
    line-height: 2.0;
  }

  body:not(.top) .pankuzu span {
    padding: 4px 8px;
    font-size: 1.2rem;
  }

  body:not(.top) #main_header .h1box .h1 h1 {
    font-size: 2.4rem;
    padding: 16px 22px 22px 16px;
  }

  body:not(.top) #main {
    padding-top: 20px !important;
  }

  body:not(.top) #main_a {
    margin: 0 auto 40px !important;
    padding: 10px;
  }

  #print_mode_link {
    display: none;
  }

  /* 大メニューページ */

  body.list2 #main_body .list_ccc ul {
    row-gap: 20px;
  }

  body.list2 .list_ccc .span_c a {
    padding: 12px 42px 12px 20px;
    font-size: 1.8rem;
  }

  body.list2 .list_ccc .span_c::before {
    height: 90%;
  }

  body.list2 .list_ccc .span_c::after {
    width: 28px;
    right: 12px;
  }

  /* 小メニューページ */

  body.list1 #main_body .list_ccc ul {
    row-gap: 10px;
  }

  body.list1 #main_body .list_ccc ul li {
    padding: 0 0 10px 10px;
    row-gap: 10px;
  }

  body.list1 .list_ccc .span_b {
    font-size: 1.6rem;
  }

  body.list1 .list_ccc .span_b a {
    font-size: 1.6rem;
  }

}

@media all and (max-width: 479px) {

  /* トップページ */

  .section_title h2 {
    font-size: 2.2rem;
  }

  .section_wrap.kenkomondai ul {
    grid-template-columns: repeat(2, 200px);
    gap: 0;
    max-width: calc(100% - 20px);
    margin: 0 auto;
  }

  .section_wrap.kenkoshien ul li div a {
    font-size: 1.8rem;
  }

  .slide-items.kanren .slick-slide div p {
    width: 100% !important;
  }

  .section_wrap.kanren .slide-items img {
    max-width: 300px;
    margin: 0 auto;
  }

  #footer::before {
    width: 50%;
    right: 50%;
    bottom: 28%;
    transform: translateY(50%) translateX(50%);
  }

  .footer_main {
    text-align: center;
    margin: 40px 0 40%;
  }

  .address p:first-child {
    font-size: 1.8rem;
  }

}