@charset "UTF-8";

  .header {
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid #f1f4f7;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
  }
  @media (min-width: 769px) {
    .header {
      top: 29px;
      height: 80px;
      min-width: 1280px;
    }
  }
  .header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    padding: 10px 16px;
  }
  @media (min-width: 769px) {
    .header__inner {
      max-width: 1280px;
      height: 80px;
      margin: 0 auto;
      padding: 0 40px;
    }
  }
  .header__logo {
    max-width: 132px;
  }
  @media (min-width: 769px) {
    .header__logo {
      max-width: 181px;
    }
  }
  .header__logo-link {
    display: block;
  }
  .header__logo-img {
    max-width: 100%;
    height: auto;
  }
  .header__menu-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    border: none;
    background: transparent;
    appearance: none;
  }
  @media (min-width: 769px) {
    .header__menu-btn {
      display: none;
    }
  }
  .header__menu-icon {
    width: 20px;
    height: 18px;
    display: block;
    position: relative;
    margin: 0 auto;
  }
  .header__menu-icon > span {
    width: 100%;
    height: 2px;
    background-color: #b8b3a9;
    border-radius: 3px;
    display: inline-block;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    box-sizing: border-box;
    position: absolute;
    left: 0;
  }
  .header__menu-icon > span:nth-of-type(1) {
    top: 0;
  }
  .header__menu-icon > span:nth-of-type(2) {
    bottom: 8px;
  }
  .header__menu-icon > span:nth-of-type(3) {
    bottom: 0;
  }
  .header__menu-btn.is-active .header__menu-icon > span:nth-of-type(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .header__menu-btn.is-active .header__menu-icon > span:nth-of-type(2) {
    opacity: 0;
  }
  .header__menu-btn.is-active .header__menu-icon > span:nth-of-type(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .header__drawer {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 57px;
    translate: 100%;
    transition: all 0.3s;
    transform-origin: center right;
  }
  @media (min-width: 769px) {
    .header__drawer {
      width: auto;
      height: auto;
      min-height: 0;
      overflow: visible;
      opacity: 1;
      position: static;
      right: auto;
      top: auto;
      translate: none;
      transition: none;
      transform-origin: unset;
    }
  }
  .header__drawer--no-animation {
    transition: none;
  }
  .header__drawer.is-active {
    opacity: 1;
    background: rgba(0, 0, 0, 0.5);
    background: #fff;
    padding: 0 0 56px;
    translate: 0;
    overflow-y: scroll;
  }
  @media (min-width: 769px) {
    .header__drawer.is-active {
      background: transparent;
      padding: 0;
      overflow-y: visible;
    }
  }
  .header__menu-inner {
    width: 100%;
    height: auto;
    background-color: #fff;
    padding: 16px 16px 36px;
    position: relative;
    z-index: 99;
  }
  @media (min-width: 769px) {
    .header__menu-inner {
      width: auto;
      height: auto;
      padding: 0;
      background-color: transparent;
      display: flex;
      align-items: center;
      gap: 0 72px;
    }
  }
  @media (min-width: 769px) {
    .header__menu-list {
      display: flex;
      align-items: center;
      gap: 24px;
    }
  }
  .header__menu-item {
    position: relative;
    border-bottom: 1px solid #e2e3e5;
  }
  @media (min-width: 769px) {
    .header__menu-item {
      border-bottom: none;
    }
  }
  @media (min-width: 769px) {
    .header__menu-item:nth-of-type(6) .header__submenu-inner {
      padding: 0 40px 0 839px;
    }
  }
  .header__menu-link {
    color: #3c2c25;
    display: block;
    line-height: 175%;
    font-size: 15px;
    padding: 10px 8px;
    position: relative;
  }
  @media (min-width: 769px) {
    .header__menu-link {
      padding: 26px 0;
      transition: all 0.3s;
    }
  }
  .header__menu-link::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 1px solid #3c2c25;
    border-left: 1px solid #3c2c25;
    display: block;
    position: absolute;
    right: 10px;
    top: 50%;
    transition: all 0.3s;
    rotate: 135deg;
    translate: 0 -50%;
  }
  @media (min-width: 769px) {
    .header__menu-link::after {
      width: 100%;
      height: 4px;
      border: none;
      background-color: #f84400;
      right: auto;
      top: auto;
      bottom: -1px;
      left: 0;
      rotate: none;
      translate: none;
      transform: scale(0, 1);
      transform-origin: right top;
      transition: transform 0.3s;
    }
  }
  @media (min-width: 769px) {
    .header__menu-link:hover::after {
      transform: scale(1, 1);
      transform-origin: left top;
    }
    .header__menu-link.is-current {
      color: #f47214;
      pointer-events: none;
    }
    .header__menu-link.is-current::after {
      transform: scale(1, 1);
    }
  }
  .header__submenu {
    display: block;
    line-height: 175%;
    border-bottom: 1px solid #e2e3e5;
    font-size: 15px;
    padding: 10px 0 10px 6px;
  }
  @media (min-width: 769px) {
    .header__submenu {
      border-bottom: none;
      cursor: pointer;
      padding: 26px 17px 26px 0;
      position: relative;
      transition: all 0.3s;
      background: url("/healthtechone/assets/imgs/common/nav_icon.svg") no-repeat right center;
    }
  }
  @media (min-width: 769px) {
    .header__submenu::after {
      content: "";
      width: 100%;
      height: 4px;
      background-color: #f84400;
      position: absolute;
      bottom: -1px;
      left: 0;
      transform: scale(0, 1);
      transform-origin: right top;
      transition: transform 0.3s;
    }
  }
  @media (min-width: 769px) {
    .header__submenu:hover::after {
      transform: scale(1, 1);
      transform-origin: left top;
    }
    .header__submenu.is-hover::after {
      transform: scale(1, 1);
    }
    .header__submenu.is-current {
      color: #f47214;
    }
    .header__submenu.is-current::after {
      transform: scale(1, 1);
    }
  }
  @media (min-width: 769px) {
    .header__submenu-panel {
      width: 100%;
      background-color: #fff;
      box-shadow: 0 12px 20px 0 rgba(108, 108, 108, 0.1);
      position: fixed;
      left: 0;
      top: 109px;
      transform: scale(1, 0);
      transform-origin: left top;
      transition: transform 0.3s;
    }
  }
  @media (min-width: 769px) {
    .header__submenu-panel.is-hover {
      transform: scale(1, 1);
    }
  }
  @media (min-width: 769px) {
    .header__submenu-inner {
      width: 1280px;
      height: 63px;
      display: flex;
      align-items: center;
      padding-left: 99px;
      gap: 0 32px;
      margin: 0 auto;
    }
  }
  .header__submenu-item + .header__submenu-item {
    border-top: 1px solid #e2e3e5;
  }
  @media (min-width: 769px) {
    .header__submenu-item + .header__submenu-item {
      border-top: none;
    }
  }
  .header__submenu-link {
    display: flex;
    align-items: center;
    gap: 0 6px;
    line-height: 175%;
    font-size: 14px;
    padding: 10px 20px 10px 16px;
    position: relative;
  }
  @media (min-width: 769px) {
    .header__submenu-link {
      color: #3c2c25;
      font-size: 15px;
      text-decoration: none;
      height: 63px;
      padding: 0;
    }
  }
  .header__submenu-link--external {
    background-image: url("/healthtechone/assets/imgs/common/icon_window_02.svg");
    background-size: 12px 10px;
    background-repeat: no-repeat;
    background-position: right 8px top 50%;
    padding: 10px 18px 10px 16px;
  }
  @media (min-width: 769px) {
    .header__submenu-link--external {
      background-position: right top calc(50% - 2px);
      padding: 10px 18px 10px 0;
    }
  }
  .header__submenu-link::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 1px solid #3c2c25;
    border-left: 1px solid #3c2c25;
    display: block;
    position: absolute;
    right: 10px;
    top: 50%;
    transition: all 0.3s;
    rotate: 135deg;
    translate: 0 -50%;
  }
  @media (min-width: 769px) {
    .header__submenu-link::after {
      width: 100%;
      height: 4px;
      border: none;
      background-color: #f84400;
      right: auto;
      top: auto;
      bottom: -1px;
      left: 0;
      rotate: none;
      translate: none;
      transform: scale(0, 1);
      transform-origin: right top;
      transition: transform 0.3s;
    }
  }
  .header__submenu-link--external::after {
    display: none;
  }
  @media (min-width: 769px) {
    .header__submenu-link--external::after {
      display: block;
    }
  }
  @media (min-width: 769px) {
    .header__submenu-link:hover::after {
      transform: scale(1, 1);
      transform-origin: left top;
    }
  }
  .header__cv {
    margin: 24px 0 0;
    padding: 0 20px;
  }
  @media (min-width: 769px) {
    .header__cv {
      margin: 0;
      padding: 0;
      display: flex;
      align-items: center;
      gap: 8px;
    }
  }
  .header__cv-btn {
    background-color: #ff8f3e;
    border-radius: 100vh;
    color: #fff;
    text-align: center;
    display: block;
    line-height: 1.7;
    padding: 12px 22px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
  }
  @media (min-width: 769px) {
    .header__cv-btn {
      font-size: 14px;
      font-weight: 400;
      padding: 8px 22px;
    }
  }
  @media (hover: hover) and (pointer: fine) {
    .header__cv-btn:hover {
      opacity: 0.7;
    }
  }
  .header__cv-btn--secondary {
    background-color: #37c0a2;
  }
  .header__cv-btn + .header__cv-btn {
    margin: 8px 0 0;
  }
  @media (min-width: 769px) {
    .header__cv-btn + .header__cv-btn {
      margin: 0;
    }
  }


  .footer__share {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 20px;
    height: 90px;
    background-color: #fff;
  }
  @media (min-width: 769px) {
    .footer__share {
      height: 110px;
    }
  }
  .footer__share-text {
    font-weight: 700;
    color: #6a757d;
    letter-spacing: normal;
  }
  .footer__share > a {
    display: block;
  }
  .footer {
    width: 100%;
  }
  .footer__main {
    background-color: #f57b23;
  }
  .footer__main__inner {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding: 24px 16px;
  }
  @media (min-width: 769px) {
    .footer__main__inner {
      padding: 24px 40px;
    }
  }
  .footer__nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  @media (min-width: 769px) {
    .footer__nav {
      flex-direction: row;
      align-items: flex-start;
      gap: 24px;
    }
  }
  .footer__nav-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  @media (min-width: 769px) {
    .footer__nav-stack {
      gap: 16px;
    }
  }
  .footer__nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.714;
    font-feature-settings: "halt" 1;
    white-space: nowrap;
  }
  @media (min-width: 769px) {
    .footer__nav-link {
      font-size: 16px;
      line-height: 1.75;
    }
  }
  @media (hover: hover) and (pointer: fine) {
    .footer__nav-link:hover {
      text-decoration: underline;
    }
  }
  .footer__nav-link::after {
    content: "";
    display: block;
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-top: 1.5px solid #fff;
    border-right: 1.5px solid #fff;
    transform: rotate(45deg);
  }
  .footer__nav-heading {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.714;
    font-feature-settings: "halt" 1;
    white-space: nowrap;
  }
  @media (min-width: 769px) {
    .footer__nav-heading {
      font-size: 16px;
      line-height: 1.75;
    }
  }
  .footer__nav-group .footer__nav-sublist {
    margin-top: 8px;
  }
  .footer__nav-sublist {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 16px;
  }
  .footer__nav-sublink {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 14px;
    line-height: 1.714;
    font-feature-settings: "halt" 1;
    white-space: nowrap;
  }
  @media (min-width: 769px) {
    .footer__nav-sublink {
      font-size: 16px;
      line-height: 1.75;
    }
  }
  @media (hover: hover) and (pointer: fine) {
    .footer__nav-sublink:hover {
      text-decoration: underline;
    }
  }
  .footer__nav-sublink::after {
    content: "";
    display: block;
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-top: 1.5px solid #fff;
    border-right: 1.5px solid #fff;
    transform: rotate(45deg);
  }
  .footer__nav-sublink--external::after {
    width: 12px;
    height: 10px;
    border: none;
    transform: none;
    background-image: url("/healthtechone/assets/imgs/common/icon_window_03.svg");
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
  }
  .footer__sub {
    background-color: #3c2c25;
  }
  .footer__sub__inner {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding: 24px 16px;
  }
  @media (min-width: 769px) {
    .footer__sub__inner {
      padding: 24px 40px 32px;
    }
  }
  @media (min-width: 769px) {
    .footer__submenu {
      display: flex;
      align-items: center;
      gap: 24px;
    }
  }
  .footer__submenu__item + .footer__submenu__item {
    margin-top: 4px;
  }
  @media (min-width: 769px) {
    .footer__submenu__item + .footer__submenu__item {
      margin-top: 0;
    }
  }
  .footer__submenu-link {
    display: flex;
    align-items: center;
    gap: 0 6px;
    line-height: 1.5;
    color: #f1e5d8;
    font-size: 14px;
  }
  @media (min-width: 769px) {
    .footer__submenu-link {
      font-size: 15px;
    }
  }
  @media (hover: hover) and (pointer: fine) {
    .footer__submenu-link:hover {
      text-decoration: underline;
    }
  }
  .footer__submenu-link--external::after {
    content: "";
    display: block;
    flex-shrink: 0;
    width: 12px;
    height: 10px;
    background-image: url("/healthtechone/assets/imgs/common/icon_window_01.svg");
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
  }
  .footer__info {
    margin-top: 40px;
  }
  .footer__info-text {
    font-style: normal;
    line-height: 1.5;
    color: #f1e5d8;
    font-size: 12px;
  }
  .footer__info-copyright {
    margin-top: 16px;
    line-height: 1.5;
    color: #f1e5d8;
    font-size: 12px;
  }
  .footer-siteseal {
    background-color: #fff;
  }
  .footer-siteseal__inner {
    display: flex;
    justify-content: center;
    gap: 0 10px;
    padding: 40px 0;
  }
  .footer-siteseal__inner > div {
    width: 100px;
    height: 50px;
  }
  .footer-security {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-security__logo {
    padding: 20px 0 20px 10px;
    text-align: center;
  }
  @media (min-width: 769px) {
    .footer-security__logo {
      text-align: left;
    }
  }


  .button--primary {
    width: 100%;
    border-radius: 100vh;
    color: #fff;
    text-align: center;
    letter-spacing: 2px;
    display: block;
    background-color: #ff8f3e;
  }
  @media (hover: hover) and (pointer: fine) {
    .button--primary:hover {
      opacity: 0.7;
    }
  }
  .button--secondary {
    width: 100%;
    border-radius: 100vh;
    color: #fff;
    text-align: center;
    letter-spacing: 2px;
    display: block;
    background-color: #37c0a2;
  }
  @media (hover: hover) and (pointer: fine) {
    .button--secondary:hover {
      opacity: 0.7;
    }
  }
  .button--next,
  .button--back,
  .button--window {
    width: 100%;
    background-color: #fff;
    border: 2px solid #3c2c25;
    color: #3c2c25;
    border-radius: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    letter-spacing: 1px;
  }
  .button--next,
  .button--back {
    max-width: 320px;
    height: 56px;
    font-size: 14px;
  }
  @media (min-width: 769px) {
    .button--next,
    .button--back {
      font-size: 16px;
    }
  }
  @media (hover: hover) and (pointer: fine) {
    .button--next:hover,
    .button--back:hover {
      opacity: 0.7;
    }
  }
  .button--window {
    max-width: 400px;
    height: 56px;
    font-size: 14px;
  }
  @media (min-width: 769px) {
    .button--window {
      font-size: 16px;
    }
  }
  .button--next::after {
    content: "";
    width: 10px;
    height: 10px;
    display: block;
    position: absolute;
    top: 50%;
    right: 32px;
    transition: all 0.3s;
    rotate: 135deg;
    translate: 0 -50%;
    border-top: 2px solid #3c2c25;
    border-left: 2px solid #3c2c25;
  }
  .button--back::after {
    content: "";
    width: 10px;
    height: 10px;
    display: block;
    position: absolute;
    top: 50%;
    left: 32px;
    transition: all 0.3s;
    rotate: 135deg;
    translate: 0 -50%;
    border-bottom: 2px solid #3c2c25;
    border-right: 2px solid #3c2c25;
  }
  .button--window::after {
    content: "";
    width: 24px;
    height: 24px;
    display: block;
    position: absolute;
    inset: 0 22px 0 auto;
    margin: auto;
    background-image: url("/healthtechone/assets/imgs/common/open-in-new.svg");
    background-repeat: no-repeat;
    background-size: cover;
  }
  @media (min-width: 769px) {
    .button--window::after {
      width: 28px;
      height: 28px;
    }
  }


  .cvarea {
    width: 100%;
    background: linear-gradient(90deg, #faf7f3 0%, #fbf5ed 100%);
    padding: 24px 16px;
  }
  @media (min-width: 769px) {
    .cvarea {
      padding: 48px 40px 60px;
    }
  }
  .cvarea__title {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
    max-width: 196px;
    gap: 16px;
    color: #3c2c25;
    text-align: center;
    line-height: 1.8;
    letter-spacing: 2px;
    font-size: 14px;
  }
  @media (min-width: 769px) {
    .cvarea__title {
      max-width: 306px;
      gap: 32px;
      margin-bottom: 20px;
      font-size: 20px;
    }
  }
  .cvarea__title::before, .cvarea__title::after {
    content: "";
    width: 1px;
    height: 24px;
    background-color: #3c2c25;
  }
  @media (min-width: 769px) {
    .cvarea__title::before, .cvarea__title::after {
      height: 32px;
    }
  }
  .cvarea__title::before {
    rotate: -45deg;
  }
  .cvarea__title::after {
    rotate: 45deg;
  }
  .cvarea__content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
  @media (min-width: 769px) {
    .cvarea__content {
      flex-wrap: nowrap;
      gap: 40px;
    }
  }
  .cvarea__btn {
    line-height: 1.5;
    font-weight: bold;
    max-width: 280px;
    padding: 15px 24px;
    font-size: 18px;
  }
  @media (min-width: 769px) {
    .cvarea__btn {
      max-width: 440px;
      padding: 22px 24px;
      font-size: 24px;
    }
  }


  .cvft {
    display: none;
  }
  @media (max-width: 768px) {
    .cvft {
      width: 100%;
      display: flex;
      padding: 8px;
      justify-content: center;
      gap: 0 8px;
      margin: 0 auto;
      background-color: rgba(255, 255, 255, 0.9);
      opacity: 0;
      position: fixed;
      bottom: 0;
      left: 0;
      transition: all 0.3s;
      z-index: 99999;
      pointer-events: none;
    }
  }
  @media (max-width: 768px) {
    .cvft.is-active {
      opacity: 1;
      transition: all 0.5s;
      pointer-events: auto;
    }
  }
  @media (max-width: 768px) {
    .cvft__btn:nth-of-type(1) {
      height: 42px;
      width: 147px;
      font-size: 14px;
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .cvft__btn {
      height: 42px;
      width: 189px;
      font-size: 14px;
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0;
      color: #fff;
      text-align: center;
      text-decoration: none;
      font-weight: bold;
      border-radius: 100vh;
    }
    .cvft__btn--secondary {
      background-color: #37c0a2;
    }
    .cvft__btn--primary {
      background-color: #f47214;
    }
  }

/*** wordpress側スタイル調整用 ***/
.header, .footer {
  font-family: "Roboto", "Noto Sans JP", Meiryo, sans-serif;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}
.header img, .footer img {
  vertical-align: bottom;
}
.header .header__submenu-link, .footer .header__submenu-link {
  color: #3c2c25;
}
