@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700;900&family=Roboto:wght@400;500;700&display=swap");
:root {
  --text: #4B4B72;
  --brand: #F16C8F;
  --muted: #4B4B72;
  --card: #FAF7F8;
  --shadow: 0 1px 12px rgba(215, 183, 242, 0.26);
  --radius: 10px;
  --background-gradient: linear-gradient(to bottom right, rgba(242, 235, 238, 0.3) 0%, rgba(242, 235, 238, 0.3) 18%, rgba(242, 180, 201, 0.3) 80%, rgba(242, 209, 226, 0.3) 100%);
}

/* CSS Document */
/*reset css--------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li, a,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, improve, nav, section, summary,
time, mark, audio, video, input, textarea {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
  font-weight: normal;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, improve, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

li {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

html {
  overflow: auto;
}

body {
  overflow: hidden;
}

img {
  width: 100%;
}

/*reset css--------------------*/
/*base--------------------*/
a {
  transition: all 0.5s;
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
  cursor: pointer;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Zen Kaku Gothic New', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #ffffff;
  color: #4B4B72;
}
body a {
  color: #4B4B72;
}

ul {
  padding: 0;
  list-style: none;
}

img {
  width: 100%;
}

.pc-only {
  display: block;
}
@media (max-width: 720px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media (max-width: 720px) {
  .sp-only {
    display: block;
  }
}

/*base--------------------*/
/*font--------------------*/
html {
  font-size: 62.5%;
  /*
    @include pcxl{
      font-size: 50%;
    }
  
    @include pc{
      font-size: 45%;
    }
  */
}

/*font--------------------*/
/*br--------------------*/
.br-pc {
  display: block;
}
@media (max-width: 720px) {
  .br-pc {
    display: none;
  }
}

.br-sp {
  display: none;
}
@media (max-width: 720px) {
  .br-sp {
    display: block;
  }
}

.br-tab {
  display: none;
}
@media (max-width: 1024px) {
  .br-tab {
    display: block;
  }
}

/*br--------------------*/
/*
@import './setting/_inner';
*/
/*
@import './component/_button';
@import './component/_breadcrumbs';
@import './component/_ttl';
*/
body {
  /* グラデーションの不透明度を 40% に変更 */
  background: linear-gradient(to bottom right, rgba(242, 235, 238, 0.3) 0%, rgba(242, 235, 238, 0.3) 18%, rgba(242, 180, 201, 0.3) 80%, rgba(242, 209, 226, 0.3) 100%);
  margin: 0;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
}

/* section 内の幅ユーティリティ */
.section-inner--wide {
  max-width: 1240px;
  margin-inline: auto;
}

.section-inner--narrow {
  max-width: 1000px;
  margin-inline: auto;
}

img,
svg {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1240px, 92%);
  margin-inline: auto;
}

/* Header */
.site-header {
  width: 100%;
  height: 94px;
  position: fixed;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
@media (max-width: 720px) {
  .site-header {
    height: 60px;
  }
}
@media (min-width: 721px) and (max-width: 1024px) {
  .site-header {
    height: 80px;
  }
}

.site-header > .container,
.hero > .container {
  width: 93.75%;
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  position: relative;
}
@media (max-width: 720px) {
  .header-inner {
    width: 93.75%;
    padding: 8px 0;
    justify-content: center;
  }
}

.brand {
  display: block;
  text-decoration: none;
  width: 538px;
}
@media (max-width: 720px) {
  .brand {
    flex: none;
    margin: 0 auto;
    width: auto;
  }
}

.brand img {
  width: 100%;
  height: auto;
}
@media (max-width: 720px) {
  .brand img {
    height: 44px;
    width: auto;
  }
}
@media (min-width: 721px) and (max-width: 1024px) {
  .brand img {
    height: 23px;
  }
}

.supervising {
  display: block;
  margin-right: 60px;
}
@media (max-width: 720px) {
  .supervising {
    display: none;
  }
}

.supervision {
  height: auto;
  width: clamp(150px, 15vw, 230px);
  margin-left: auto;
  margin-right: 60px;
}
@media (max-width: 720px) {
  .supervision {
    display: none;
  }
}

nav.nav {
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 720px) {
  nav.nav {
    top: 50%;
  }
}

nav > #navMenu {
  position: fixed;
  z-index: 1001;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: 0;
  width: auto;
  height: auto;
  cursor: pointer;
  gap: 6px;
  padding: 0;
  position: absolute;
  right: 0;
  top: 38px;
  z-index: 10;
}
@media (max-width: 720px) {
  .nav-toggle {
    top: 50%;
    transform: translateY(-50%);
  }
}

.nav-toggle span {
  display: block;
  width: 57px;
  height: 2px;
  background: #F16C8F;
  border-radius: 1px;
}
@media (max-width: 720px) {
  .nav-toggle span {
    width: 25px;
  }
}

.nav-close {
  position: relative;
  margin-top: 26px;
  margin-left: 85%;
  background: none;
  border: 0;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  color: #F16C8F;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  border-radius: 6px;
}
@media (max-width: 720px) {
  .nav-close {
    margin-top: 9px;
    margin-left: 84%;
  }
}

.nav-menu-wrapper {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(255, 240, 246, 0.98);
  backdrop-filter: blur(10px);
  z-index: 200;
  transition: right .3s ease;
  overflow-y: auto;
}

.nav-menu-wrapper.open {
  right: 0;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  overflow: hidden;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 199;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}

.overlay.is-active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 720px) {
  .nav-menu-wrapper {
    width: 300px;
  }
}
@media (min-width: 721px) {
  .nav-menu-wrapper {
    width: 500px;
  }
}
/* Hamburger → X animation button (desktop and mobile) */
.nav-toggle,
.nav-close {
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle {
  width: 57px;
  height: 18px;
  padding: 0;
  background: transparent;
  border-radius: 6px;
}
@media (max-width: 720px) {
  .nav-toggle {
    width: 25px;
    height: 16px;
  }
}

.nav-toggle span {
  width: 57px;
  height: 2px;
  background: #F16C8F;
  border-radius: 2px;
  transition: transform .28s ease, opacity .2s ease;
}
@media (max-width: 720px) {
  .nav-toggle span {
    width: 25px;
  }
}

.nav-toggle span:nth-child(1) {
  transform-origin: left center;
}

.nav-toggle span:nth-child(3) {
  transform-origin: left center;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateX(3px) translateY(10px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateX(3px) translateY(-10px) rotate(-45deg);
}

/* replace nav-close content with accessible X using pseudo-element */
.nav-close::before {
  content: '';
  width: 42px;
  height: 1px;
  display: inline-block;
}

.nav-close::before {
  box-sizing: border-box;
  transform: rotate(45deg);
}

.nav-close::after,
.nav-close::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 42px;
  height: 1px;
  background: #F16C8F;
  transform-origin: center;
}

.nav-close::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-close::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.nav-content {
  max-width: 400px;
  margin: 80px auto 0;
  padding: 0 40px;
}
@media (max-width: 720px) {
  .nav-content {
    margin: 10px auto 0;
    padding: 0;
  }
}
.nav-content small {
  padding-left: 0;
}
@media (max-width: 720px) {
  .nav-content small {
    display: none;
  }
}

.nav-supervision {
  width: 200px;
  margin: 0 auto 32px;
  display: block;
}
@media (max-width: 720px) {
  .nav-supervision {
    margin: 0 0 20px;
    padding: 0 20px 0 32px;
  }
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (max-width: 720px) {
  .nav-list {
    padding: 0 20px 0 32px;
  }
}

.nav-list li {
  border-bottom: 1px solid rgba(241, 108, 143, 0.2);
}
@media (max-width: 720px) {
  .nav-list li {
    border-bottom: none;
  }
}

.nav-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #F16C8F;
  text-decoration: none;
  font-weight: 700;
  font-size: 2.4rem;
  padding: 20px 0;
}
@media (max-width: 720px) {
  .nav-list a {
    font-size: 1.6rem;
    padding: 0;
  }
}

.nav-list a::after {
  content: '›';
  font-size: 1.6rem;
  font-weight: 300;
}
@media (max-width: 720px) {
  .nav-list a::after {
    font-size: 3rem;
    display: inline-block;
    margin-top: -5px;
  }
}

.nav-list a:hover {
  opacity: .8;
}

.nav-footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #F16C8F;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
@media (max-width: 720px) {
  .nav-footer {
    padding-top: 0;
    gap: 0;
  }
}
@media (max-width: 720px) {
  .nav-footer::after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 9px;
    background-image: url(https://hysteroscope-info.com/wp-content/plugins/my-snow-monkey/images/common/footer-icon01_pink.svg);
    background-size: contain;
    vertical-align: middle;
    margin-left: 3px;
    margin-bottom: 3px;
    position: absolute;
    bottom: 16%;
    left: 28%;
  }
}

.nav-footer a {
  color: #F16C8F;
  text-decoration: none;
  font-size: 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 720px) {
  .nav-footer a {
    font-size: 1.2rem;
    font-weight: 700;
    padding: 7px 20px 7px 32px;
    border-bottom: 1px solid #F16C8F;
  }
}

.nav-footer a::after {
  content: '›';
  font-size: 1.6rem;
  font-weight: 300;
}
@media (max-width: 720px) {
  .nav-footer a::after {
    font-size: 2.2rem;
    margin-top: -7px;
  }
}

.nav-footer a:hover {
  opacity: .8;
}

@media (max-width: 720px) {
  body {
    font-size: 14px;
    line-height: 1.75;
  }
}
/* Desktop: make menu 500px wide and layout like the design */
@media (min-width: 721px) {
  .nav-menu-wrapper {
    right: -500px;
    left: auto;
    background: #FAEFF3;
    /* soft pink backdrop for menu */
    box-shadow: -20px 0 60px rgba(241, 108, 143, 0.08);
    transition: right 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .nav-menu-wrapper.open {
    right: 0;
  }

  .nav-content {
    max-width: 100%;
    margin: 40px 82px;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: calc(100vh - 80px);
    justify-content: normal;
  }
  .nav-content small {
    position: absolute;
    bottom: 20px;
    color: #F16C8F;
  }

  .nav-list {
    padding-left: 0;
  }

  /* remove arrows and divider lines for desktop menu */
  .nav-list li {
    border-bottom: none;
  }

  .nav-list a {
    padding: 16px 0;
  }

  .nav-list a::after {
    content: none;
  }

  .nav-footer a::after {
    content: none;
  }

  .nav-supervision {
    display: none;
  }

  /* footer area inside nav */
  .nav-footer {
    margin: 0;
    /*padding: 0 0 0 52px;*/
    padding: 0;
    border-top: none;
    display: flex;
    flex-direction: row;
    gap: 30px;
    position: absolute;
    bottom: 60px;
  }

  .nav-footer a {
    padding: 0;
    font-weight: bold;
  }
  .nav-footer a.organization-mark::after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 9px;
    background-image: url(https://hysteroscope-info.com/wp-content/plugins/my-snow-monkey/images/common/footer-icon01_pink.svg);
    background-size: contain;
    vertical-align: middle;
    margin-left: 3px;
    margin-bottom: 3px;
  }
}
/* Hero */
.home .hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding: 80px 0;
  /* Gradient blobs */
}
@media (max-width: 720px) {
  .home .hero {
    padding: 0;
    margin-top: 60px;
    height: 90vh;
  }
}
@media (min-width: 721px) and (max-width: 1024px) {
  .home .hero {
    height: 55vh;
    padding: 80px 0 0;
  }
}
.home .hero .hero-inner {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  gap: 0;
  padding: 0;
  position: unset;
  z-index: 2;
  /*
  @include sm{
  	grid-template-columns: 1fr;
  	padding: 56px 0 32px;
  }*/
}
.home .hero .hero-title {
  font-size: clamp(5rem, 4vw, 8rem);
  color: #F16C8F;
  font-weight: 700;
  letter-spacing: .02em;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  margin: 0 0 40px;
  position: absolute;
  top: 15%;
  left: 6%;
}
@media (max-width: 720px) {
  .home .hero .hero-title {
    left: 20px;
    top: 2%;
    font-size: clamp(3.2rem, 15vw, 3.8rem);
  }
}
@media (min-width: 721px) and (max-width: 1024px) {
  .home .hero .hero-title {
    top: 16%;
    font-size: 40px;
  }
}
.home .hero .hero-illustration {
  position: absolute;
  top: 68%;
  left: 56%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: .8;
}
@media (max-width: 720px) {
  .home .hero .hero-illustration {
    top: auto;
    left: auto;
    transform: none;
    margin: 0;
    right: -18%;
    bottom: 0;
  }
}
.home .hero .hero-illustration img {
  width: 76%;
  height: auto;
}
@media (max-width: 720px) {
  .home .hero .hero-illustration img {
    width: 89%;
    margin-left: 13%;
  }
}
@media (max-width: 375px) {
  .home .hero .hero-illustration img {
    margin-left: 16%;
  }
}
@media (min-width: 721px) and (max-width: 1024px) {
  .home .hero .hero-illustration img {
    width: 80%;
    margin-left: 0;
  }
}
.home .hero .hero-bubble {
  position: absolute;
  background: transparent;
  backdrop-filter: none;
  padding: 0;
  color: #F16C8F;
  font-weight: 700;
  box-shadow: none;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  line-height: 1.4;
  z-index: 2;
  /*	
    @include md{
  		position: static; 
  		display: block; 
  		margin: 12px 0; 
  		transform: none !important; 
    }*/
}
.home .hero .hero-bubble span.c-border {
  display: inline-block;
  width: 2em;
  height: 2px;
  background: #F16C8F;
  position: relative;
  margin: 9px 0 9px 9px;
}
@media (max-width: 720px) {
  .home .hero .hero-bubble span.c-border {
    height: 1px;
    margin: 7px 0 6px 7px;
  }
}
.home .hero .hero-bubble.right {
  right: 18%;
  top: 27%;
  font-size: clamp(2.4rem, 2vw, 3.4rem);
}
@media (max-width: 720px) {
  .home .hero .hero-bubble.right {
    font-size: 16px;
    left: auto;
    top: 38%;
    right: 20px;
  }
}
@media (max-width: 375px) {
  .home .hero .hero-bubble.right {
    top: 35%;
  }
}
@media (min-width: 721px) and (max-width: 1024px) {
  .home .hero .hero-bubble.right {
    font-size: 18px;
  }
}
.home .hero .hero-bubble.left {
  left: 8%;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(2.8rem, 2.4vw, 4rem);
}
@media (max-width: 720px) {
  .home .hero .hero-bubble.left {
    font-size: 20px;
    left: 17%;
    top: 27%;
  }
}
@media (max-width: 375px) {
  .home .hero .hero-bubble.left {
    top: 24%;
  }
}
@media (min-width: 721px) and (max-width: 1024px) {
  .home .hero .hero-bubble.left {
    font-size: 21px;
  }
}
.home .hero .hero-bubble.bottom {
  right: 10%;
  bottom: 13%;
  font-size: clamp(2.8rem, 2.4vw, 4rem);
}
@media (max-width: 720px) {
  .home .hero .hero-bubble.bottom {
    font-size: 20px;
    left: 20px;
    top: 56%;
  }
}
@media (max-width: 375px) {
  .home .hero .hero-bubble.bottom {
    top: 46%;
  }
}
@media (min-width: 721px) and (max-width: 1024px) {
  .home .hero .hero-bubble.bottom {
    font-size: 21px;
  }
}
.home .hero .blob {
  position: absolute;
  filter: none;
  opacity: 1;
}
.home .hero .blob-1 {
  width: 407px;
  height: auto;
  left: 10px;
  top: -24px;
}
@media (max-width: 720px) {
  .home .hero .blob-1 {
    width: 200px;
    left: -3%;
    top: -26px;
  }
}
@media (max-width: 375px) {
  .home .hero .blob-1 {
    width: 180px;
    top: -17px;
  }
}
@media (min-width: 721px) and (max-width: 1024px) {
  .home .hero .blob-1 {
    width: 300px;
    top: -10px;
  }
}
.home .hero .blob-2 {
  width: 540px;
  height: auto;
  right: 5%;
  top: 10%;
}
@media (max-width: 720px) {
  .home .hero .blob-2 {
    width: 280px;
    right: -13%;
    top: 30%;
    z-index: 1;
  }
}
@media (max-width: 375px) {
  .home .hero .blob-2 {
    top: 26%;
  }
}
@media (min-width: 721px) and (max-width: 1024px) {
  .home .hero .blob-2 {
    width: 300px;
    top: 17%;
  }
}
.home .hero .blob-3 {
  width: 740px;
  height: auto;
  left: 0;
  top: 31%;
}
@media (max-width: 720px) {
  .home .hero .blob-3 {
    top: 11%;
    left: -5%;
  }
}
@media (max-width: 375px) {
  .home .hero .blob-3 {
    top: 8%;
  }
}
@media (min-width: 721px) and (max-width: 1024px) {
  .home .hero .blob-3 {
    width: 470px;
    top: 26%;
  }
}
.home .hero .blob-4 {
  width: 550px;
  height: auto;
  right: 6%;
  bottom: 4%;
}
@media (max-width: 720px) {
  .home .hero .blob-4 {
    width: auto;
    height: 155px;
    bottom: 241px;
    left: -8%;
  }
}
@media (min-width: 721px) and (max-width: 1024px) {
  .home .hero .blob-4 {
    width: 350px;
  }
}

/* Cards */
.cards {
  padding: 80px 0;
}
@media (max-width: 720px) {
  .cards {
    padding: 40px 0;
  }
}
.cards .cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (min-width: 721px) and (max-width: 1024px) {
  .cards .cards-grid {
    grid-template-columns: 1fr;
  }
}
.cards .card {
  background: #FAF7F8;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 1px 12px rgba(215, 183, 242, 0.26);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cards .card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  /* 見出しを上、ボタンを下に寄せる */
  justify-content: space-between;
}
.cards .card-content h3 {
  margin: 0 0 24px;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  /* カード見出し：clamp(20px, 1.6vw, 28px) */
  font-size: clamp(20px, 1.6vw, 28px);
  color: #F16C8F;
  font-weight: 900;
  line-height: 1.4;
}
@media (max-width: 720px) {
  .cards .card-content h3 {
    text-align: center;
  }
}
.cards .card-image {
  width: auto;
  height: 165px;
  flex-shrink: 0;
}
.cards .btn {
  position: relative;
  display: inline-flex;
  width: 280px;
  height: 45px;
  align-items: center;
  background: #FDC6D7;
  background: linear-gradient(18deg, #fdc6d7 0%, #fcbed1 5%, #fdb1c5 59%, #fea9be 70%, #ffa0b7 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.5rem;
  text-align: center;
  white-space: nowrap;
  padding-left: 30px;
}
@media (max-width: 720px) {
  .cards .btn {
    display: inline-block;
    text-align: center;
    padding-top: 10px;
    padding-left: 0;
    width: 300px;
  }
}
.cards .btn::after {
  content: '›';
  position: absolute;
  top: 2px;
  right: 24px;
  font-size: 2.2rem;
  font-weight: 300;
}
@media (max-width: 720px) {
  .cards .btn::after {
    top: 0;
  }
}
.cards .btn:hover {
  filter: brightness(0.95);
}
.cards .card-content01 .btn {
  margin-top: 38px;
}
@media (max-width: 720px) {
  .cards .card-content01 .btn {
    margin-top: 0;
  }
}
@media (max-width: 900px) {
  .cards .cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media (max-width: 720px) {
  .cards .card {
    flex-direction: column-reverse;
    padding: 24px;
    gap: 20px;
  }
  .cards .card-image {
    width: 100%;
    max-width: 240px;
    margin: 0 auto;
  }
  .cards .cards-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================
   Society セクション
   ===================== */
.society {
  padding: 80px 0;
  background: #E1BCE8;
  background: linear-gradient(18deg, rgba(225, 188, 232, 0.4) 0%, rgba(221, 201, 238, 0.4) 70%, rgba(223, 215, 245, 0.5) 100%);
}
.society .society h2 {
  font-size: clamp(22px, 3.8vw, 36px);
  text-align: center;
  color: #F16C8F;
}
.society .society-lead {
  color: #4B4B72;
  text-align: center;
  max-width: 720px;
  margin: 8px auto 18px;
  font-size: 20px;
}
.society .society-logo {
  width: min(680px, 95%);
  margin: 20px auto;
}
.society .society-logo img {
  width: 100%;
  height: auto;
}
.society .society-sub {
  text-align: center;
  color: #F16C8F;
  margin: 40px 0;
  /* 監修医師見出し：clamp(24px, 1.7vw, 32px) */
  font-size: clamp(24px, 1.7vw, 32px);
  font-weight: 700;
  letter-spacing: 0.4rem;
}
.society .doctors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
}
@media (min-width: 721px) and (max-width: 1024px) {
  .society .doctors-grid {
    grid-template-columns: 1fr;
  }
}
.society .doctor {
  display: flex;
  gap: 40px;
  background: #FAF7F8;
  border-radius: 10px;
  padding: 32px;
  box-shadow: 0 1px 12px rgba(215, 183, 242, 0.26);
}
.society .avatar {
  width: 150px;
  height: 150px;
  border-radius: 12px;
  background: linear-gradient(135deg, #dce7ff, #ffe0ef);
  object-fit: cover;
}
.society .doctor-meta {
  width: 100%;
  color: #4B4B72;
}
.society .doctor-meta h4 {
  margin: 0 0 6px;
  /* 医師名：clamp(20px, 1.35vw, 26px) */
  font-size: clamp(20px, 1.35vw, 26px);
  font-weight: bold;
  border-bottom: 1px solid rgba(75, 75, 114, 0.4);
}
.society .doctor-meta > .b-aft {
  margin: 0 0 1rem;
  color: #4B4B72;
  font-size: 1.6rem;
  font-weight: bold;
}
.society .aff {
  margin: 0;
  color: #4B4B72;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media (max-width: 720px) {
  .society .container {
    padding: 0;
    width: 89.3%;
  }
  .society .society-lead {
    text-align: left;
  }
  .society .society-lead > br {
    display: none;
  }
  .society .doctors-grid {
    grid-template-columns: 1fr;
  }
  .society .doctor {
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
  }
}

/* =====================
   フッター
   ===================== */
.site-footer {
  padding: 80px 0 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: #fff;
}
@media (max-width: 1024px) {
  .site-footer {
    padding: 80px 20px;
  }
}
@media (max-width: 720px) {
  .site-footer {
    padding: 40px 0;
  }
}
.site-footer .footer-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.site-footer .footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 1024px) {
  .site-footer .footer-top {
    margin-bottom: 24px;
    align-items: center;
    flex-direction: column;
  }
}
@media (max-width: 720px) {
  .site-footer .footer-top a {
    margin: 0 auto;
  }
}
.site-footer .footer-logo {
  height: 60px;
  width: auto;
}
.site-footer .footer-nav {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .site-footer .footer-nav {
    flex-direction: column;
    gap: 15px;
    align-items: none;
    text-align: center;
    font-weight: 500;
    margin: 40px auto 0;
  }
}
.site-footer .footer-nav a {
  color: #4B4B72;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: bold;
}
.site-footer .footer-nav a:hover {
  color: #F16C8F;
}
.site-footer .footer-bottom {
  display: flex;
  gap: 16px;
  align-items: center;
  color: #4B4B72;
  font-size: .9rem;
  /* 左右に要素を配置：小さい著作権は左、.legal は右 */
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 720px) {
  .site-footer .footer-bottom {
    align-items: none;
    flex-direction: column-reverse;
  }
}
.site-footer .footer-bottom small {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  color: rgba(75, 75, 114, 0.65);
  font-size: 12px;
}
.site-footer .legal {
  display: flex;
  gap: 30px;
  align-items: center;
}
.site-footer .legal a {
  color: #4B4B72;
  text-decoration: none;
  font-size: 12px;
}
.site-footer .legal a:hover {
  color: rgba(75, 75, 114, 0.65);
}
.site-footer .legal a.organization-mark::after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 9px;
  background-image: url(https://hysteroscope-info.com/wp-content/plugins/my-snow-monkey/images/common/footer-icon01.svg);
  background-size: contain;
  vertical-align: middle;
  margin-left: 3px;
  margin-bottom: 3px;
}
@media (max-width: 720px) {
  .site-footer .footer-top {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
@media (min-width: 721px) {
  .site-footer .nav-footer {
    flex-direction: row;
    gap: 24px;
    align-items: center;
  }
}

.page-main {
  color: var(--text);
}

.section-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
}

.is-layout-constrained > h2 {
  background-color: transparent;
  border-left: 0;
  padding: 0;
}

/* section spacing 
.hero + *,
.intro + *,
.faq-cards + *,
.cta-links + * {
  margin-top: 80px;
}*/
/* about-hysteroscopy-------------------- */
.about-hysteroscopy {
  /* Intro */
  /* faq-cards */
}
.about-hysteroscopy .c-page-header[data-has-image=true] {
  height: 480px;
}
@media (max-width: 720px) {
  .about-hysteroscopy .c-page-header[data-has-image=true] {
    height: 356px;
  }
}
.about-hysteroscopy .c-page-header__bgimage > img {
  height: 480px;
}
@media (max-width: 720px) {
  .about-hysteroscopy .c-page-header__bgimage > img {
    height: 356px;
    object-fit: cover;
    opacity: 0.8;
  }
}
.about-hysteroscopy .c-page-header__title {
  font-size: 60px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--brand);
  text-align: center;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  letter-spacing: 0.02em;
  padding-top: 7.38%;
}
@media (max-width: 1024px) {
  .about-hysteroscopy .c-page-header__title {
    font-size: 40px;
  }
}
@media (max-width: 720px) {
  .about-hysteroscopy .c-page-header__title {
    font-size: 36px;
    padding-top: 22%;
  }
}
.about-hysteroscopy .intro {
  padding: 0;
  background-color: rgba(242, 189, 208, 0.3);
        /*
        &__grid {
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 32px;
            align-items: center;
        }

        &__image {
            width: 100%;
            height: auto;
            display: block;
        }
        */
}
.about-hysteroscopy .intro > .section-inner {
  padding: 80px 0;
  max-width: 1240px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .about-hysteroscopy .intro > .section-inner {
    padding: 40px 20px;
  }
}
.about-hysteroscopy .intro__heading {
  margin: 0 0 16px;
  color: var(--brand);
  display: block;
  font-size: 32px;
  line-height: 1.625;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 700;
}
.about-hysteroscopy .intro__heading-small {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 700;
}
@media (max-width: 1024px) {
  .about-hysteroscopy .intro__heading-small {
    font-size: 20px;
    line-height: 1.7;
  }
}
@media (max-width: 1024px) {
  .about-hysteroscopy .intro__heading {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.7;
  }
}
.about-hysteroscopy .intro__lead {
  font-size: 18px;
  line-height: 2;
  color: var(--text);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.about-hysteroscopy .intro__lead:first-of-type {
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .about-hysteroscopy .intro__lead:first-of-type {
    margin-bottom: 20px;
  }
}
@media (max-width: 1024px) {
  .about-hysteroscopy .intro__lead {
    font-size: 14px;
    line-height: 1.7;
  }
}
.about-hysteroscopy .intro__text-container {
  text-align: center;
  position: relative;
}
@media (max-width: 1024px) {
  .about-hysteroscopy .intro__text-container {
    min-height: 360px;
  }
}
@media (max-width: 720px) {
  .about-hysteroscopy .intro__text-container {
    padding-left: 0;
    min-height: 580px;
  }
}
.about-hysteroscopy .intro__text-container::before {
  content: "";
  position: absolute;
  top: 28%;
  left: 0;
  width: 80%;
  height: 80%;
  background: url("https://hysteroscope-info.com/wp-content/plugins/my-snow-monkey/images/hysteroscopy/about-f01.svg") left/contain no-repeat;
}
@media (max-width: 1024px) {
  .about-hysteroscopy .intro__text-container::before {
    top: auto;
    bottom: -6%;
    width: 20%;
    height: 40%;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 720px) {
  .about-hysteroscopy .intro__text-container::before {
    top: auto;
    bottom: -14%;
    width: 60%;
    height: 60%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.about-hysteroscopy .faq-cards .section-inner {
  padding: 80px 0 20px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .about-hysteroscopy .faq-cards .section-inner {
    padding: 80px 20px;
  }
}
@media (max-width: 720px) {
  .about-hysteroscopy .faq-cards .section-inner {
    padding: 40px 20px 0;
  }
}
.about-hysteroscopy .faq-cards .card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  display: inline-block;
}
@media (max-width: 720px) {
  .about-hysteroscopy .faq-cards .card {
    padding: 30px 20px;
    width: 100%;
  }
}
.about-hysteroscopy .faq-cards .card + .card {
  margin-top: 20px;
}
.about-hysteroscopy .faq-cards .card__title {
  margin: 0 0 12px;
  font-size: 28px;
  color: var(--brand);
  font-weight: 700;
}
@media (max-width: 720px) {
  .about-hysteroscopy .faq-cards .card__title {
    font-size: 20px;
  }
}
.about-hysteroscopy .faq-cards .card__text, .about-hysteroscopy .faq-cards .card__list {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
}
@media (max-width: 720px) {
  .about-hysteroscopy .faq-cards .card__text, .about-hysteroscopy .faq-cards .card__list {
    font-size: 14px;
    line-height: 1.65;
  }
}
.about-hysteroscopy .faq-cards .card__list dt {
  font-weight: 700;
  color: var(--brand);
  margin-top: 12px;
}
.about-hysteroscopy .faq-cards .card__list dd {
  margin: 0;
  color: var(--text);
}
.about-hysteroscopy .faq-cards .card--before .card__text {
  margin: 0 0 12px;
}
.about-hysteroscopy .faq-cards .references {
  margin: 80px 0 20px;
}
@media (max-width: 720px) {
  .about-hysteroscopy .faq-cards .references {
    margin: 40px 0 20px;
  }
}
.about-hysteroscopy .faq-cards .references p {
  margin: 0;
  font-size: 13px;
  color: var(--text);
}
@media (max-width: 720px) {
  .about-hysteroscopy .faq-cards .references p {
    font-size: 11px;
  }
}

/* flow-------------------- */
.flow {
  /* h2.subpage__title-------------------- */
}
.flow .c-page-header[data-has-image=true] {
  height: 480px;
}
@media (max-width: 720px) {
  .flow .c-page-header[data-has-image=true] {
    height: 356px;
  }
}
.flow .c-page-header__bgimage > img {
  height: 480px;
}
@media (max-width: 720px) {
  .flow .c-page-header__bgimage > img {
    height: 356px;
    object-fit: cover;
    opacity: 0.8;
  }
}
.flow .c-page-header__title {
  font-size: 60px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--brand);
  text-align: center;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  letter-spacing: 0.02em;
  padding-top: 7.38%;
}
@media (max-width: 1024px) {
  .flow .c-page-header__title {
    font-size: 40px;
  }
}
@media (max-width: 720px) {
  .flow .c-page-header__title {
    font-size: 36px;
    padding-top: 22%;
  }
}
.flow .section-inner {
  padding: 80px 0;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .flow .section-inner {
    padding: 80px 20px;
  }
}
@media (max-width: 720px) {
  .flow .section-inner {
    padding: 40px 20px;
  }
}
.flow .section-inner_l {
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 0;
}
@media (max-width: 1024px) {
  .flow .section-inner_l {
    padding: 80px 20px;
  }
}
@media (max-width: 720px) {
  .flow .section-inner_l {
    padding: 40px 20px;
  }
}
.flow .is-layout-constrained > h2 {
  background-color: transparent;
  border-left: 0;
  padding: 0;
}
.flow .subpage__title {
  position: relative;
  /* 要素幅をテキスト幅に合わせて中央寄せ */
  display: table;
  margin: 0 auto 28px;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--brand);
}
@media (max-width: 720px) {
  .flow .subpage__title {
    font-size: 20px;
    line-height: 1.65;
    margin-bottom: 0;
  }
}
.flow .subpage__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5.5px;
  background: url("https://hysteroscope-info.com/wp-content/plugins/my-snow-monkey/images/common/deco01.svg") repeat center bottom;
  background-size: contain;
}
@media (max-width: 720px) {
  .flow .subpage__title::after {
    bottom: -4px;
  }
}
.flow .steps {
  background-color: #F2EEFA;
}
.flow .steps__title {
  font-size: 32px;
  font-weight: bold;
  color: var(--brand);
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 720px) {
  .flow .steps__title {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
.flow .steps__item {
  display: flex;
  align-items: start;
  gap: 36px;
  background-color: var(--card);
  padding: 32px;
  margin-bottom: 30px;
  border-radius: 8px;
}
@media (max-width: 720px) {
  .flow .steps__item {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 720px) {
  .flow .steps__item:first-of-type {
    margin-top: 40px;
  }
}
.flow .steps__item:last-child {
  margin-bottom: 0;
}
.flow .steps__content {
  flex: 1;
}
.flow .steps__label {
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  color: var(--brand);
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
}
@media (max-width: 720px) {
  .flow .steps__label {
    font-size: 13px;
  }
}
.flow .steps__heading {
  font-size: 28px;
  font-weight: bold;
  color: var(--brand);
  margin-bottom: 16px;
}
@media (max-width: 720px) {
  .flow .steps__heading {
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: -5px;
  }
}
.flow .steps__text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
}
@media (max-width: 720px) {
  .flow .steps__text {
    font-size: 14px;
    line-height: 1.7;
  }
}
.flow .steps__image {
  flex-shrink: 0;
  width: 38.5%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 720px) {
  .flow .steps__image {
    width: 100%;
    height: auto;
  }
}
.flow .steps__image img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.flow .caution {
  background-color: var(--card);
}
.flow .caution__title {
  font-size: 32px;
  font-weight: bold;
  color: var(--brand);
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 720px) {
  .flow .caution__title {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
.flow .caution__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}
@media (max-width: 720px) {
  .flow .caution__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.flow .caution__grid__2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 814px;
}
@media (max-width: 720px) {
  .flow .caution__grid__2 {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }
}
.flow .caution__card {
  background-color: rgba(242, 189, 208, 0.6);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (max-width: 720px) {
  .flow .caution__card {
    padding: 30px 20px;
  }
}
.flow .caution__card-image {
  max-width: 323px;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
@media (max-width: 720px) {
  .flow .caution__card-image {
    max-width: 100%;
    width: calc(00%-40px);
    height: auto;
    margin-bottom: 16px;
  }
}
.flow .caution__card-image img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.flow .caution__card-title {
  font-size: 28px;
  font-weight: bold;
  color: var(--brand);
  margin-bottom: 16px;
}
@media (max-width: 720px) {
  .flow .caution__card-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.flow .caution__card-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
  text-align: left;
}
@media (max-width: 720px) {
  .flow .caution__card-text {
    font-size: 13px;
    line-height: 1.6;
  }
}

.faq .c-page-header[data-has-image=true] {
  height: 480px;
}
@media (max-width: 720px) {
  .faq .c-page-header[data-has-image=true] {
    height: 356px;
  }
}
.faq .c-page-header__bgimage > img {
  height: 480px;
}
@media (max-width: 720px) {
  .faq .c-page-header__bgimage > img {
    height: 356px;
    object-fit: cover;
    opacity: 0.8;
  }
}
.faq .c-page-header__title {
  font-size: 60px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--brand);
  text-align: center;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  letter-spacing: 0.02em;
  padding-top: 7.38%;
}
@media (max-width: 1024px) {
  .faq .c-page-header__title {
    font-size: 40px;
  }
}
@media (max-width: 720px) {
  .faq .c-page-header__title {
    font-size: 36px;
    padding-top: 22%;
  }
}
.faq .section-inner {
  padding: 80px 0;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .faq .section-inner {
    padding: 80px 20px;
  }
}
@media (max-width: 720px) {
  .faq .section-inner {
    padding: 40px 20px;
  }
}
.faq .qa {
  background-color: var(--card);
}
.faq .qa__title {
  font-size: 32px;
  font-weight: bold;
  color: var(--brand);
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 720px) {
  .faq .qa__title {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
.faq .qa__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 720px) {
  .faq .qa__list {
    gap: 15px;
  }
}
.faq .qa__item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: rgba(153, 129, 172, 0.26) 0 1px 6px;
}
.faq .qa__question {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #FAEFF3;
  padding: 14px 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
@media (max-width: 720px) {
  .faq .qa__question {
    padding: 20px 15px;
    gap: 12px;
  }
}
.faq .qa__question:hover {
  background-color: #f5e5ec;
}
.faq .qa__number {
  font-size: 37px;
  font-weight: bold;
  color: var(--brand);
  flex-shrink: 0;
  font-family: "Roboto", sans-serif;
}
@media (max-width: 720px) {
  .faq .qa__number {
    font-size: 20px;
  }
}
.faq .qa__question-text {
  flex: 1;
  font-size: 22px;
  font-weight: bold;
  color: var(--text);
  margin: 0;
  letter-spacing: 0.04em;
}
@media (max-width: 720px) {
  .faq .qa__question-text {
    font-size: 15px;
  }
}
.faq .qa__toggle {
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  transition: transform 0.3s ease;
}
@media (max-width: 720px) {
  .faq .qa__toggle {
    padding: 0;
  }
}
.faq .qa__toggle[aria-expanded="true"] {
  transform: rotate(180deg);
}
.faq .qa__arrow {
  width: 24px;
  height: 24px;
}
@media (max-width: 720px) {
  .faq .qa__arrow {
    width: 20px;
    height: 20px;
  }
}
.faq .qa__answer {
  max-height: 0;
  overflow: hidden;
  background-color: #FFFFFF;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq .qa__answer.is-open {
  max-height: 500px;
  padding: 20px 40px;
}
@media (max-width: 720px) {
  .faq .qa__answer.is-open {
    padding: 20px;
  }
}
.faq .qa__answer-text {
  font-size: 16px;
  font-size: 700;
  line-height: 1.8;
  color: var(--text);
  margin: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  transition-delay: 0s;
}
@media (max-width: 720px) {
  .faq .qa__answer-text {
    font-size: 14px;
    line-height: 1.7;
  }
}
.faq .qa__answer-text > small {
  display: block;
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--text);
  font-weight: normal;
}
.faq .qa__answer.is-open .qa__answer-text {
  opacity: 1;
  transition-delay: 0.2s;
}

.videos {
  background-color: #fff;
}
.videos .c-page-header[data-has-image=true] {
  height: 480px;
}
@media (max-width: 720px) {
  .videos .c-page-header[data-has-image=true] {
    height: 356px;
  }
}
.videos .c-page-header__bgimage > img {
  height: 480px;
}
@media (max-width: 720px) {
  .videos .c-page-header__bgimage > img {
    height: 356px;
    object-fit: cover;
    opacity: 0.8;
  }
}
.videos .c-page-header__title {
  font-size: 60px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--brand);
  text-align: center;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  letter-spacing: 0.02em;
  padding-top: 7.38%;
}
@media (max-width: 1024px) {
  .videos .c-page-header__title {
    font-size: 40px;
  }
}
@media (max-width: 720px) {
  .videos .c-page-header__title {
    font-size: 36px;
    padding-top: 22%;
  }
}
.videos .section-inner {
  padding: 80px 0;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .videos .section-inner {
    padding: 40px 20px;
  }
}
@media (max-width: 720px) {
  .videos .section-inner {
    padding: 40px 20px;
  }
}
.videos .video-explanation {
  background: linear-gradient(90deg, rgba(225, 188, 232, 0.7) 0%, rgba(221, 201, 238, 0.7) 56%, rgba(223, 215, 245, 0.2) 90%);
}
.videos .video-explanation .is-layout-constrained > h2 {
  background-color: transparent;
  border-left: 0;
  padding: 0;
}
.videos .video-explanation__title {
  position: relative;
  display: inline-block;
  margin: 0 auto 28px;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--brand);
}
@media (max-width: 1024px) {
  .videos .video-explanation__title {
    display: block;
    text-align: center;
  }
}
@media (max-width: 720px) {
  .videos .video-explanation__title {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 20px;
  }
}
.videos .video-explanation__text {
  font-size: 1.8rem;
  line-height: 2;
  margin-bottom: 60px;
  text-align: center;
}
@media (max-width: 1024px) {
  .videos .video-explanation__text {
    text-align: left;
  }
}
@media (max-width: 720px) {
  .videos .video-explanation__text {
    font-size: 1.4rem;
    line-height: 1.7;
    margin-bottom: 40px;
  }
}
.videos .video-explanation__subtitle {
  font-size: 28px;
  text-align: center;
  display: block;
  margin: 0 auto 28px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--brand);
  border-bottom: none;
  line-height: 1.4;
}
@media (max-width: 720px) {
  .videos .video-explanation__subtitle {
    font-size: 18px;
    line-height: 1.65;
    margin-bottom: 20px;
  }
}
.videos .video-explanation .short-videos__box .wp-block-embed iframe {
  max-width: 100%;
  height: 400px;
  width: auto;
}
.videos .video-explanation .short-videos__box p.has-text-align-center {
  margin-top: 4px;
  font-weight: bold;
}
@media (max-width: 720px) {
  .videos .video-explanation .short-videos__box p.has-text-align-center {
    margin-top: -4px;
  }
}
@media (min-width: 721px) and (max-width: 1024px) {
  .videos .video-explanation .short-videos__box figure {
    text-align: center;
  }
}
@media (max-width: 720px) {
  .videos .video-explanation .short-videos__box figure {
    text-align: center;
  }
}
.videos .video-explanation .short-videos__box figure iframe {
  border: 3px solid #D7A1D9;
}
@media screen and (max-width: 781px) {
  .videos .video-explanation .short-videos__box .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
    text-align: center;
  }
}
.videos .video-explanation .videos__box figure {
  margin-top: 60px;
  width: 80%;
}
@media (max-width: 720px) {
  .videos .video-explanation .videos__box figure {
    text-align: center;
    width: 100%;
  }
}
.videos .video-explanation .videos__box figure iframe {
  border: 3px solid #D7A1D9;
}
.videos .video-explanation .videos__box p.has-text-align-center {
  margin-top: 4px;
  font-weight: bold;
}

.terms-of-use .c-page-header {
  height: 200px;
}
.terms-of-use .c-page-header__title {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--brand);
  text-align: center;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  letter-spacing: 0.02em;
  padding-top: 160px;
}
@media (max-width: 720px) {
  .terms-of-use .c-page-header__title {
    font-size: 36px;
    padding-top: 26%;
  }
}
.terms-of-use .section-inner {
  padding: 80px 0;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .terms-of-use .section-inner {
    padding: 40px 20px;
  }
}
.terms-of-use .about-usage h2 {
  font-size: 20px;
  margin-bottom: 6px;
  margin-top: 40px;
}
.terms-of-use .about-usage h2 strong {
  font-weight: bold;
  color: var(--brand);
}
.terms-of-use .about-usage ul {
  padding-left: 20px;
}
.terms-of-use .about-usage ul, .terms-of-use .about-usage li {
  list-style: revert;
}
.terms-of-use .about-usage li > strong {
  font-weight: bold;
}
.terms-of-use .about-usage ul li > ul.wp-block-list {
  list-style: none;
}
.terms-of-use .about-usage ul li > ul.wp-block-list > li {
  list-style: none;
  font-weight: normal;
}
.terms-of-use .about-usage .privacypolicy__box a {
  text-decoration: underline;
}

/* subpage 共通　CTA links */
.cta-links {
  text-align: center;
  background-color: rgba(242, 216, 225, 0.3);
}
.cta-links > .section-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 80px 0;
}
@media (max-width: 720px) {
  .cta-links > .section-inner {
    padding: 40px;
  }
}
.cta-links .is-layout-constrained > h2 {
  background-color: transparent;
  border-left: 0;
  padding: 0;
}
.cta-links__heading {
  position: relative;
  display: inline-block;
  margin: 0 auto 28px;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--brand);
}
@media (max-width: 720px) {
  .cta-links__heading {
    font-size: 20px;
    line-height: 1.65;
    margin-bottom: 0;
  }
}
.cta-links__heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5.5px;
  background: url("https://hysteroscope-info.com/wp-content/plugins/my-snow-monkey/images/common/deco01.svg") repeat center bottom;
  background-size: contain;
}
@media (max-width: 720px) {
  .cta-links__heading::after {
    bottom: -4px;
  }
}
.cta-links .link-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 40px;
}
@media (max-width: 720px) {
  .cta-links .link-container {
    flex-direction: column;
    gap: 20px;
    padding-top: 24px;
  }
}
.cta-links .link-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-bottom: 14px;
  width: 280px;
  max-width: 280px;
  text-decoration: none;
  border-bottom: 1px solid rgba(75, 75, 114, 0.2);
  transition: transform .2s ease, box-shadow .2s ease, color .2s ease;
  /*
  &:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(215, 183, 242, 0.42);
  }*/
}
@media (max-width: 720px) {
  .cta-links .link-button {
    width: 100%;
    justify-content: space-between;
    padding-bottom: 7px;
  }
}
.cta-links .link-button::after {
  content: ">";
  position: absolute;
  display: block;
  font-size: 2rem;
  top: 26%;
  right: 0;
  color: var(--brand);
}
.cta-links .link-button__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cta-links .link-button .link-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}
@media (max-width: 720px) {
  .cta-links .link-button .link-label {
    font-size: 14px;
  }
}
.cta-links .link-button .link-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand);
}
.link-button:hover .cta-links .link-button .link-title {
  border-color: var(--brand);
}

/* subpage 共通　ページタイトルに改行を入れる */
.c-page-header__title br {
  display: none;
}
@media (max-width: 720px) {
  .c-page-header__title br {
    display: inline;
  }
}

/* Cookie同意バナー */
#cookie-notice {
  box-shadow: var(--shadow);
  border-radius: 8px;
  max-width: 500px;
  width: 100%;
  right: 10px;
  bottom: 20px;
  min-width: inherit !important;
  left: inherit !important;
  background-color: rgba(75, 75, 114, 0.8) !important;
}
@media (max-width: 720px) {
  #cookie-notice {
    max-width: 100%;
    right: 0;
    bottom: 0;
    border-radius: 0;
  }
}
#cookie-notice .cookie-notice-container {
  color: #fff !important;
  padding-top: 30px !important;
  text-align: left !important;
}
@media (max-width: 720px) {
  #cookie-notice .cookie-notice-container .cn-text-container {
    margin: 0 0 20px 0;
  }
}
#cookie-notice #cn-notice-buttons {
  display: block;
  text-align: right;
}
#cookie-notice #cn-notice-buttons .cn-set-cookie.cn-button {
  background-color: #f16c8f !important;
}
#cookie-notice .cn-close-icon {
  top: 10px !important;
  margin-top: 0 !important;
}

/* subpage 共通　パンくず */
.l-contents__container {
  position: relative;
}
.l-contents__container .p-breadcrumbs-wrapper {
  position: absolute;
  top: -370px;
  left: 3.2%;
}
@media (max-width: 720px) {
  .l-contents__container .p-breadcrumbs-wrapper {
    top: -284px;
    left: 20px;
  }
}
.l-contents__container .p-breadcrumbs-wrapper .c-breadcrumbs {
  font-size: 12px;
}
@media (max-width: 720px) {
  .l-contents__container .p-breadcrumbs-wrapper .c-breadcrumbs {
    font-size: 10px;
  }
}
.l-contents__container .p-breadcrumbs-wrapper .c-breadcrumbs > li > a > span > br {
  display: none;
}
.l-contents__container .l-contents__inner {
  margin-top: 0;
  padding-bottom: 0;
}
