/*----------------------
base
----------------------*/

body {
  font-family: 'Noto Sans JP', sans-serif;
}

.inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

@media screen and (max-width: 767px) {
  .inner {
    padding: 0 16px;
  }
}

a {
  display: block;
  transition: all 0.6s;
}

a:hover {
  opacity: 0.8;
}

/*----------------------
 resposive (767px)
----------------------*/

/* .pc-only {} */

.sp-only {
  display: none;
}

@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }
}

/*----------------------
 header
----------------------*/

.femtech-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.femtech-header__inner {
  max-width: 1920px;
  margin: 0 auto;
  padding-top: 20px;
  padding-right: 15px;
  padding-left: 45px;
}

.femtech-header__logo {
  max-width: 218px;
}

.femtech-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.femtech-header__menu {
  display: flex;
  align-items: center;
  gap: 18px;
}

.femtech-header__menu-links > ul {
  display: flex;
  align-items: center;
  gap: 50px;
  height: 70px;
  border-radius: 35px;
  background: #fff;
  border: 2px solid #fcf7eb;
  padding-left: 90px;
  padding-right: 90px;
}

.femtech-header__menu-links ul a {
  font-weight: bold;
  font-size: 18px;
  color: #434343;
  position: relative;
  transition: all 0.4s;
}

.femtech-header__menu-links ul a:hover {
  color: #c052cc;
  opacity: 1;
}

.femtech-header__menu-links ul a:before {
  content: '';
  position: absolute;
  left: -20px;
  top: 4px;
  display: inline-block;
  width: 16px;
  height: 15px;
  background-image: url('../../assets/img/common/btn-icon-flip.png');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  transition: all 0.4s;
}

.femtech-header__menu-links > ul > li > a:hover::before {
  opacity: 1;
}

.femtech-header__menu-child {
  display: none;
}

.femtech-header__menu-btn a {
  width: 210px;
  height: 70px;
  border-radius: 35px;
  background: #c052cc;
  font-weight: bold;
  font-size: 20px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.femtech-header__menu-parent {
  position: relative;
}

.femtech-header__menu-child {
  display: none;
  position: absolute;
  top: 49px;
  left: -24px;
  border-radius: 5px;
  z-index: 100;
  border-radius: 30px;
  padding: 32px 30px;
  width: 172px;
  border-radius: 20px;
  background: #fff;
  border: 2px solid #fcf7eb;
}

.femtech-header__menu-child a {
  font-weight: bold;
  font-size: 18px;
  text-align: left;
  color: #434343;
  margin-bottom: 30px;
}

.femtech-header__menu-child li:last-child a {
  margin-bottom: 0;
}

.femtech-header__menu-child a.mb0 {
  margin-bottom: 0;
}

.femtech-header__menu-parent:hover .femtech-header__menu-child {
  display: block;
}

@media screen and (max-width: 1200px) {
  .femtech-header__logo {
    max-width: 150px;
  }

  .femtech-header__menu-links > ul {
    gap: 30px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

.femtech-header__hamburger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #c052cc;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}

.femtech-header__hamburger span {
  display: block;
  height: 2px;
  width: 22px;
  background: #fff;
  transition: all 0.3s;
  position: relative;
}

.femtech-header__menu-links,
.femtech-header__menu-btn {
  transition: transform 0.3s;
}

@media screen and (max-width: 1000px) {
  .femtech-header__inner {
    padding: 10px 15px 0;
  }

  .header__logo {
    max-width: 140px;
  }

  .femtech-header__menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    transform: translateX(100%);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: #fbf4fc;
    padding: 80px 20px;
    z-index: 999;
    transition: transform 0.3s ease;
  }

  .femtech-header__menu-links > ul {
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding-left: 0;
    padding-right: 0;
    border: none;
    background: #fbf4fc;
  }

  .femtech-header__menu.active {
    display: flex;
    transform: translateX(0);
  }

  .femtech-header__menu-child {
    position: relative;
    top: auto;
    left: auto;
    gap: 10px;
    width: 100%;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 14px 0;
    background: #fbf4fc;
    border: none;
  }

  .femtech-header__menu-child a {
    margin-bottom: 0;
    font-size: 14px;
  }

  .femtech-header__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
  }

  .femtech-header__hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    position: absolute;
    top: 18px;
  }

  .femtech-header__hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .femtech-header__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    position: absolute;
    top: 18px;
  }

  .femtech-header__menu-links ul a {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .femtech-header__logo {
    max-width: 56px;
  }
}

/*----------------------
 footer
----------------------*/

.femtech-footer {
  background-color: #c052cc;
  padding-top: 45px;
  padding-bottom: 38px;
  position: relative;
  z-index: 10;
}

.femtech-footer > img {
  max-width: 100px;
  margin: 0 auto 20px;
}

.femtech-footer > p {
  font-weight: bold;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  color: #fff;
  margin-top: 10px;
}

/*----------------------
 fixed-entry-btn
----------------------*/

.fixed-entry-btn {
  position: fixed;
  z-index: 999;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 370px;
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  pointer-events: none;
}
.fixed-entry-btn.show {
  opacity: 1;
  pointer-events: auto;
}

.fixed-entry-btn a {
  width: 100%;
  height: 60px;
  background: #c052cc;
  border: 1px solid #edd0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  color: #fff;
  border-radius: 30px;
	line-height: 1.3rem;
}

.fixed-entry-btn a:after {
  content: '';
  position: absolute;
  background-image: url(../../assets/img/top/mv/top-fixed-btn-icon.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  top: 55%;
  transform: translateY(-50%);
  right: 30px;
  width: 15px;
  height: 13.74px;
}

.pre-comment {
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .pre-comment {
    font-size: 12px;
  }

}

.table-box {
  margin-top: 5rem;
}
.table-box h2 {
  margin-bottom: 3rem;
}
.table-box img {
  width: 80%;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .table-box {
    margin-top: 3rem;
  }
  .table-box h2 {
    margin-bottom: 2rem;
  }
  .table-box img {
    width: 100%;
    margin: auto;
  }
}

.mt100 {
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  .mt100 {
    margin-top: 50px;
  }
}
