@charset "UTF-8";
/* -------------------------------

Reset CSS

-------------------------------  */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 768px) {
  html,
body {
    font-size: 4.2666666667vw;
  }
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
  background: none;
  border: none;
  outline: none;
}

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

/* -------------------------------

base CSS

-------------------------------  */
body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  background-color: #fff;
  padding-top: 84px;
  background-color: #fffbed;
  font-weight: 600;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  body {
    padding-top: 17.0666666667vw;
  }
}

a {
  text-decoration: none;
}

p {
  font-weight: 500;
  line-height: 1.7;
}

button {
  color: #000;
}

.button {
  padding: 0.75rem 1.5rem;
  background-color: #ed6c00;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.button:hover {
  background-color: #ba5500;
}

.tit {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .tit {
    font-size: 6.4vw;
  }
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 7.4666666667vw;
    margin-bottom: 4.2666666667vw;
  }
}

.text--orange {
  color: #ed6c00;
}

.text_link {
  text-decoration: underline;
}
.text_link:hover {
  opacity: 0.6;
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}
@media screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .pc {
    display: block;
  }
}

.inner {
  max-width: 100%;
  width: 1220px;
  padding-left: 40px;
  padding-right: 40px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-left: 4.2666666667vw;
    padding-right: 4.2666666667vw;
  }
}

.text--center {
  text-align: center;
}

sup {
  font-size: 50%;
}

/* -------------------------------

header

-------------------------------  */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  header {
    padding: 3.2vw 0;
  }
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  height: 50px;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .header__logo {
    height: 8.5333333333vw;
    margin-right: 5.3333333333vw;
  }
}

.header__actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  font-size: 14px;
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  .header__actions {
    margin-left: auto;
    margin-right: 24px;
    padding-left: 32px;
  }
}
@media screen and (max-width: 768px) {
  .header__actions {
    gap: 2.1333333333vw;
    display: none;
  }
}

.header .header__actions .button {
  padding: 12px 2rem;
  text-align: center;
  border-radius: 4rem;
  font-weight: bold;
  width: 200px;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .header .header__actions .button {
    width: auto;
    padding: 2.1333333333vw 2.1333333333vw;
    font-size: 3.4666666667vw;
    border-radius: 17.0666666667vw;
  }
}

.header__button {
  order: 3;
}
@media screen and (max-width: 768px) {
  .header__button {
    order: 2;
    z-index: 1005;
    margin: 0 4.2666666667vw 0 auto;
  }
}
.header__button .button {
  padding: 8px 2rem;
  text-align: center;
  border-radius: 4rem;
  font-weight: bold;
  width: 200px;
  transition: all 0.3s;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .header__button .button {
    width: auto;
    padding: 2.1333333333vw 4.2666666667vw;
    font-size: 4.2666666667vw;
    border-radius: 17.0666666667vw;
  }
}

.header .button--primary {
  background-color: #ed6c00;
  color: #fff;
  border: 2px solid #ed6c00;
}
@media screen and (max-width: 768px) {
  .header .button--primary {
    border-width: 0.5333333333vw;
  }
}
.header .button--primary:hover {
  color: #ed6c00;
  background-color: #fff;
  transition: all 0.3s;
}

.floating-button {
  position: fixed;
  top: 20%;
  right: 0;
  background: #ed6c00;
  border: 2px solid #ed6c00;
  border-right: 0;
  color: white;
  padding: 16px;
  border-radius: 8px 0 0 8px;
  z-index: 999;
  font-size: 16px;
  letter-spacing: 0.2rem;
  opacity: 1;
  pointer-events: auto;
  transition: 0.3s ease;
}
@media screen and (min-width: 769px) {
  .floating-button {
    writing-mode: vertical-rl;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .floating-button {
    padding: 16px 8px;
  }
}
@media screen and (max-width: 768px) {
  .floating-button {
    top: auto;
    bottom: 0;
    right: 0;
    width: 100%;
    text-align: center;
    padding: 2.1333333333vw 6.4vw;
    border-radius: 0;
    font-size: 4.2666666667vw;
    letter-spacing: 0.8533333333vw;
  }
}
.floating-button:hover {
  color: #ed6c00;
  background-color: #fff;
  transition: 0.3s ease;
}

/* ハンバーガー */
.hamburger {
  position: relative;
  width: 24px;
  height: 24px;
  cursor: pointer;
  z-index: 1001;
  padding: 0;
  display: none;
}
@media screen and (max-width: 768px) {
  .hamburger {
    order: 3;
    display: flex;
    width: 6.4vw;
    height: 6.4vw;
  }
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #333;
  border-radius: 2px;
  transition: 0.3s ease;
}

.hamburger span:nth-child(1) {
  top: 4px;
}
@media screen and (max-width: 768px) {
  .hamburger span:nth-child(1) {
    top: 1.0666666667vw;
  }
}

.hamburger span:nth-child(2) {
  top: 10px;
}
@media screen and (max-width: 768px) {
  .hamburger span:nth-child(2) {
    top: 2.6666666667vw;
  }
}

.hamburger span:nth-child(3) {
  top: 16px;
}
@media screen and (max-width: 768px) {
  .hamburger span:nth-child(3) {
    top: 4.2666666667vw;
  }
}

.hamburger.is-active span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}
@media screen and (max-width: 768px) {
  .hamburger.is-active span:nth-child(1) {
    top: 2.6666666667vw;
  }
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 10px;
}
@media screen and (max-width: 768px) {
  .hamburger.is-active span:nth-child(3) {
    top: 2.6666666667vw;
  }
}

/* スライドメニュー */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 251, 237, 0.95);
  transition: right 0.3s ease;
  z-index: 1000;
  padding: 3.2vw 4.2666666667vw;
  box-sizing: border-box;
  flex-direction: column;
  align-items: flex-start;
}

.nav-overlay.is-active {
  display: flex;
  right: 0;
}

.nav-overlay .logo img {
  margin-bottom: 10.6666666667vw;
  height: 8.5333333333vw;
  margin-right: 5.3333333333vw;
}

.nav-overlay a.nav_text {
  font-size: 4.2666666667vw;
  width: 100%;
  display: inline-block;
  color: #333;
  text-decoration: none;
  font-weight: bold;
  border-top: 1px solid;
  padding: 6.4vw 0;
}
.nav-overlay a.nav_text:last-child {
  border-bottom: 1px solid #333;
}

/* -------------------------------

メインビジュアル

-------------------------------  */
.main-visual__inner {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .main-visual__inner {
    position: relative;
    height: 580px;
    margin: 0px 0 10px 0;
  }
}

.main-visual__inner::after {
  content: "";
  width: 80%;
  height: 100%;
  display: block;
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  z-index: -2;
  top: 16px;
  border-radius: 0 999px 999px 0;
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
  .main-visual__inner::after {
    height: 120%;
  }
}
@media screen and (max-width: 768px) {
  .main-visual__inner::after {
    width: 100%;
    height: 100%;
    border-radius: 0 120px 120px 0;
  }
}

.main-visual__tagline {
  display: inline-block;
  font-size: 32px;
  font-size: clamp(24px, 2.7vw, 32px);
  font-weight: bold;
  letter-spacing: 0.1rem;
  max-width: 100%;
  border-bottom: 1px solid #333;
  padding: 0 0 12px 0;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .main-visual__tagline {
    font-size: 5.3333333333vw;
    text-align: center;
    padding: 1.0666666667vw 0 3.2vw 0;
    letter-spacing: 0.01rem;
  }
}

.main-visual__title {
  line-height: 1.3;
  margin-bottom: 1.5rem;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .main-visual__title {
    width: 70%;
    font-size: 8.5333333333vw;
    margin: 0rem auto;
  }
}
@media screen and (max-width: 768px) {
  .main-visual__title img {
    margin: 0 auto;
  }
}

.main-visual__text {
  max-width: 1220px;
  width: 100%;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  .main-visual__text {
    position: absolute;
    padding: 0 40px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 768px) {
  .main-visual__text {
    margin-top: 6.4vw;
    text-align: center;
  }
}

.main-visual__color {
  color: #ed6c00;
}

.main-visual__item {
  display: flex;
  gap: 8px;
  margin-bottom: 2rem;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .main-visual__item {
    width: 100%;
    font-size: 4.2666666667vw;
    text-align: left;
    justify-content: center;
    margin: 0vw 0 4.2666666667vw 0vw;
  }
}

.main-visual__feature-text {
  font-weight: bold;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .main-visual__feature-text {
    width: 65%;
  }
}
@media screen and (max-width: 768px) {
  .main-visual__feature-text {
    text-align: center;
  }
}

.main-visual__checkmark {
  background-color: rgba(237, 108, 0, 0.1);
  padding: 6px 16px;
  border-radius: 99px;
  padding-left: 44px;
  position: relative;
  font-size: 26px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .main-visual__checkmark {
    padding-left: 10.6666666667vw;
    font-size: 4.2666666667vw;
  }
}

.main-visual__checkmark:before,
.main-visual__checkmark:after {
  content: "";
  display: block;
  position: absolute;
}

.main-visual__checkmark:before {
  width: 16px;
  height: 16px;
  background-color: rgba(237, 108, 0, 0);
  border: 1px solid #000000;
  left: 16px;
  top: 17px;
}
@media screen and (max-width: 768px) {
  .main-visual__checkmark:before {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
    top: 2.1333333333vw;
    left: 4.2666666667vw;
  }
}

.main-visual__checkmark:after {
  border-left: 2px solid #ed6c00;
  border-bottom: 2px solid #ed6c00;
  width: 18px;
  height: 5px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  left: 19px;
  top: 17px;
}
@media screen and (max-width: 768px) {
  .main-visual__checkmark:after {
    width: 3.2vw;
    height: 1.3333333333vw;
    left: 5.0666666667vw;
    top: 2.9333333333vw;
  }
}

.main-visual__voices {
  display: flex;
  gap: 16px;
  width: 40%;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .main-visual__voices {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .main-visual__voices {
    width: 100%;
    gap: 2.1333333333vw;
    padding: 0 4.2666666667vw;
  }
}

.main-visual__voices li {
  display: flex;
  align-items: center;
  font-weight: bold;
  gap: 8px;
  width: 200px;
  background-color: #fff;
  border-radius: 999px;
  font-size: clamp(16px, 1.8vw, 20px);
}
@media screen and (max-width: 768px) {
  .main-visual__voices li {
    font-size: 4.2666666667vw;
    width: 50%;
    gap: 2.1333333333vw;
  }
}

.main-visual__image {
  width: 20%;
  max-width: 100%;
  position: absolute;
  top: 7%;
  left: 42%;
  right: 0;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .main-visual__image {
    width: 15%;
    top: 40%;
    left: 44%;
  }
}
@media screen and (max-width: 768px) {
  .main-visual__image {
    top: 45.3333333333vw;
    width: 36%;
    z-index: 9;
    left: auto;
  }
}

.main-visual__background {
  position: absolute;
  top: 60%;
  transform: translate(0%, -50%);
  right: 0;
  width: 50%;
  height: 640px;
  z-index: -1;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .main-visual__background {
    width: 50%;
    height: 400px;
  }
}
@media screen and (max-width: 768px) {
  .main-visual__background {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .main-visual__background_sp {
    position: relative;
    width: 100%;
    z-index: 1;
    margin: 4.2666666667vw 0;
  }
}

.main-visual__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 999px 0 0px 999px;
}

@media screen and (max-width: 768px) {
  .main-visual__background_sp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 999px 0 0px 999px;
    padding-left: 2.1333333333vw;
    box-sizing: border-box;
  }
}

.main-visual__subtitle {
  font-size: 28px;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .main-visual__subtitle {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .main-visual__subtitle {
    font-size: 5.3333333333vw;
    margin: 0 auto 2.1333333333vw auto;
  }
}
.main-visual__subtitle span {
  position: relative;
}
.main-visual__subtitle span::before {
  content: "";
  width: 13px;
  height: 11px;
  display: inline-block;
  background: url(/public/img/lp/ob-ebe3b7c0ccbecc55d58b569d3802b8d9.svg) no-repeat center left/contain;
  position: absolute;
  right: -1px;
  top: 0%;
}
@media screen and (max-width: 768px) {
  .main-visual__subtitle span::before {
    right: -5%;
    top: -10%;
    width: 3.4666666667vw;
    height: 2.9333333333vw;
  }
}

.main-visual__tagline-label {
  font-weight: bold;
  font-size: 20px;
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}
@media screen and (max-width: 768px) {
  .main-visual__tagline-label {
    font-size: 4.2666666667vw;
    display: flex;
    align-items: center;
    margin-bottom: 1.0666666667vw;
  }
}

.main-visual__tagline-label::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  display: block;
  margin-left: 0.4em;
  background: #000;
}
@media screen and (max-width: 768px) {
  .main-visual__tagline-label::after {
    content: "";
    flex-grow: 1;
    height: 1px;
    /* 線の太さ */
    background: #000;
    /* 線の色 */
    margin: 0 0 0 1em;
    /* 文字と線の余白 */
  }
}

@media screen and (max-width: 768px) {
  .main-visual__tagline-label::before {
    content: "";
    flex-grow: 1;
    height: 1px;
    /* 線の太さ */
    background: #000;
    /* 線の色 */
    margin: 0 1em 0 0;
    /* 文字と線の余白 */
  }
}

.main-visual__tagline-title {
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .main-visual__tagline-title {
    font-size: 6.4vw;
  }
}

.main-visual__tagline-title span {
  font-size: 48px;
  color: #f17200;
}
@media screen and (max-width: 768px) {
  .main-visual__tagline-title span {
    font-size: 8.5333333333vw;
  }
}

.main-visual__cta-button {
  position: relative;
  width: 400px;
  max-width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #27a844;
  color: white;
  font-weight: bold;
  padding: 24px 48px 24px 32px;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-size: 28px;
  border: 1px solid;
}
.main-visual__cta-button:hover {
  color: #27a844;
  background-color: #fff;
  transition: 0.3s ease;
}
.main-visual__cta-button:hover .main-visual__badge {
  background: #fafafa;
}
@media screen and (max-width: 768px) {
  .main-visual__cta-button {
    padding: 4.2666666667vw 8.5333333333vw 4.2666666667vw;
    justify-content: flex-start;
    font-size: 6.4vw;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .main-visual__button {
    margin: 0 4.2666666667vw 6.4vw;
  }
}

.main-visual__badge {
  background: white;
  color: #27a844;
  border-radius: 999px;
  padding: 2px 8px;
  margin-right: 16px;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .main-visual__badge {
    padding: 0.5333333333vw 2.1333333333vw;
    margin-right: 4.2666666667vw;
    font-size: 4.2666666667vw;
  }
}

.main-visual__cta-button::after {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 4px solid currentColor;
  border-right: 4px solid currentColor;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 49%;
  right: 24px;
  border-radius: 2px;
  transition: 0.3s ease-in-out;
}

.main-visual__feature {
  background-color: #f17200;
  font-size: 32px;
  color: #fff;
  padding: 16px 0;
}
@media screen and (max-width: 768px) {
  .main-visual__feature {
    font-size: 6.4vw;
    padding: 2.1333333333vw 0;
  }
}

.main-visual__feature .inner {
  position: relative;
}

@media screen and (min-width: 769px) {
  .main-visual__feature-icon {
    position: absolute;
    width: 30%;
    z-index: 2;
    right: 40px;
    gap: 8px;
    bottom: 0;
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .main-visual__feature-icon .icon-item--caregiver {
    position: absolute;
    right: 0;
    top: -10px;
    width: 26%;
  }
}
@media screen and (max-width: 768px) {
  .main-visual__feature-icon .icon-item--pharmacist {
    position: absolute;
    width: 26%;
    left: 0;
    top: -10px;
  }
}

/* -------------------------------

news

-------------------------------  */
.news {
  position: relative;
  overflow: hidden;
  background-color: #f2eee3;
}
@media screen and (min-width: 769px) {
  .news {
    padding-top: 32px;
  }
}
@media screen and (max-width: 768px) {
  .news {
    padding-top: 8.5333333333vw;
    padding-right: 4.2666666667vw;
  }
}
.news::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50vw;
  /* 左半分 */
  height: 100%;
  z-index: 0;
  margin-top: 32px;
}
@media screen and (min-width: 769px) {
  .news::before {
    background-color: #fff;
  }
}
@media screen and (max-width: 768px) {
  .news .inner {
    padding: 0;
  }
}
.news .news__inner {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 40px 40px 24px 0;
  z-index: 1;
  background: #fff;
  display: flex;
  gap: 24px;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .news .news__inner {
    padding: 6.4vw 4.2666666667vw 2.1333333333vw;
    gap: 4.2666666667vw;
    border-radius: 0 2.6666666667vw 2.6666666667vw 0;
    flex-direction: column;
  }
}
.news .news__title {
  flex-grow: 0;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .news .news__title {
    font-size: 4.2666666667vw;
  }
}
.news .news__list {
  flex-grow: 1;
  font-weight: 400;
}
.news .news__item {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-top: 1px solid #ccc;
  margin-bottom: 0rem;
}
.news .news__item:first-child {
  padding-top: 0px;
  border-top: none;
}
.news .news__date {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .news .news__date {
    font-size: 3.7333333333vw;
    display: block;
    margin-bottom: 1.0666666667vw;
  }
}

/* -------------------------------

アバウト　悩み

-------------------------------  */
/* === ピクスリー紹介セクション === */
.about-picksly {
  background-color: #f2eee3;
  padding: 72px 0px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .about-picksly {
    padding: 12.8vw 0;
  }
}

.about-picksly__heading h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .about-picksly__heading h2 {
    font-size: 7.4666666667vw;
    margin-bottom: 4.2666666667vw;
  }
}
.about-picksly__heading h2 img {
  width: 210px;
  margin-right: 8px;
}
@media screen and (max-width: 768px) {
  .about-picksly__heading h2 img {
    width: 50%;
    margin-right: 2.1333333333vw;
  }
}

.about-picksly__features {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .about-picksly__features {
    gap: 2.1333333333vw;
    margin-bottom: 4.2666666667vw;
  }
}

.about-picksly__feature {
  background-color: #fffbed;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
}
@media screen and (max-width: 768px) {
  .about-picksly__feature {
    width: 40vw;
    height: 40vw;
    font-size: 5.3333333333vw;
    margin-bottom: -2.1333333333vw;
  }
}
.about-picksly__feature p {
  font-weight: bold;
  line-height: 1.4;
}

.about-picksly__description {
  background-color: #fff;
  border-radius: 99px;
  padding: 32px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 1140px;
  margin: 0 auto 72px;
  flex-wrap: wrap;
  position: relative;
}
@media screen and (max-width: 768px) {
  .about-picksly__description {
    margin: 30% auto 8.5333333333vw;
  }
}

.about-picksly__text {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .about-picksly__text {
    font-size: 5.3333333333vw;
  }
}

.about-picksly__image-left,
.about-picksly__image-right {
  height: auto;
  position: absolute;
}

.about-picksly__image-left {
  left: 20px;
  width: 13%;
  margin-bottom: 270px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .about-picksly__image-left {
    left: 0px;
    width: 15%;
    margin-bottom: 250px;
  }
}
@media screen and (max-width: 768px) {
  .about-picksly__image-left {
    height: 60%;
    width: auto;
    top: -26.6666666667vw;
    margin: 0;
    left: 20%;
  }
}

.about-picksly__image-right {
  right: 0;
  width: 17%;
  margin-bottom: 270px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .about-picksly__image-right {
    width: 20%;
    margin-bottom: 250px;
  }
}
@media screen and (max-width: 768px) {
  .about-picksly__image-right {
    width: auto;
    height: 60%;
    top: -26.6666666667vw;
    margin: 0;
    right: 10%;
  }
}

.about-picksly__cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.about-picksly__cta .btn {
  display: inline-block;
  padding: 24px 32px;
  border-radius: 9999px;
  font-weight: bold;
  font-size: 28px;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 48%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .about-picksly__cta .btn {
    width: 100%;
    font-size: 5.3333333333vw;
    padding: 4.2666666667vw;
  }
}
.about-picksly__cta .btn::after {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 4px solid currentColor;
  border-right: 4px solid currentColor;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 49%;
  right: 24px;
  border-radius: 2px;
  transition: 0.3s ease-in-out;
}
.about-picksly__cta .btn--orange {
  background-color: #f17200;
  border: #f17200 2px solid;
}
.about-picksly__cta .btn--orange:hover {
  color: #f17200;
  background-color: #fff;
  transition: 0.3s ease;
}
.about-picksly__cta .btn--green {
  background-color: #27a844;
  border: #27a844 2px solid;
}
.about-picksly__cta .btn--green:hover {
  color: #27a844;
  background-color: #fff;
  transition: 0.3s ease;
}

.text--orange {
  color: #f17200;
}

.text--green {
  color: #27a844;
}

.text--bold {
  font-weight: bold;
}

.about__section {
  background-color: #fff;
  padding: 56px;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .about__section {
    padding: 6.4vw 4.2666666667vw;
    border-radius: 2.1333333333vw;
  }
}

.about__section--cases {
  font-weight: bold;
}

.cases__list {
  display: flex;
  gap: 24px;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .cases__list {
    gap: 4.2666666667vw;
    flex-direction: column;
  }
}

.cases__item {
  flex: 1 1 calc((100% - 80px) / 2);
  flex-shrink: 0;
  background-color: #fffbed;
  padding: 32px;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .cases__item {
    width: 100%;
    padding: 4.2666666667vw;
    border-radius: 2.6666666667vw;
  }
}

.cases__image {
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 1rem;
  padding: 2rem 1rem;
}
@media screen and (max-width: 768px) {
  .cases__image {
    border-radius: 2.6666666667vw;
    padding: 0 2rem 0.5rem;
    margin-bottom: 1rem;
  }
}

.cases__image img {
  height: 200px;
  max-width: 291px;
  width: 100%;
  object-fit: contain;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .cases__image img {
    max-height: 200px;
  }
}

.cases__title {
  font-size: clamp(18px, 2vw, 24px);
  text-align: center;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 0.5rem 0;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .cases__title {
    font-size: 5.3333333333vw;
    margin-bottom: 1rem;
  }
}

.cases__item ul li {
  font-size: clamp(16px, 1.8vw, 20px);
  margin-bottom: 0.5rem;
  padding-left: 32px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .cases__item ul li {
    font-size: 4.2666666667vw;
    padding-left: 8.5333333333vw;
  }
}

.cases__item--facility ul li::after {
  content: "";
  width: 24px;
  height: 18px;
  display: inline-block;
  background: url(/public/img/lp/cases-icon1-ad1d2ac8c28b846912f72e06e2dde8f1.svg) no-repeat center left/contain;
  position: absolute;
  left: 0;
  top: 51%;
  transform: translate(0%, -50%);
}
@media screen and (max-width: 768px) {
  .cases__item--facility ul li::after {
    padding-left: 8.5333333333vw;
    width: 6.4vw;
    height: 4.8vw;
  }
}

.cases__item--pharmacy {
  background-color: #eef6f1;
}

.cases__item--pharmacy ul li::after {
  content: "";
  width: 22px;
  height: 22px;
  display: inline-block;
  background: url(/public/img/lp/cases-icon2-0c1ea37f4885d0f0550dd067e1b0f614.svg) no-repeat center left/contain;
  position: absolute;
  left: 0;
  top: 51%;
  transform: translate(0%, -50%);
}
@media screen and (max-width: 768px) {
  .cases__item--pharmacy ul li::after {
    width: 5.8666666667vw;
    height: 5.8666666667vw;
  }
}

.cases__headline {
  background-color: #f0ede2;
  border-radius: 10px;
  font-size: 30px;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .cases__headline {
    font-size: 5.8666666667vw;
    border-radius: 2.6666666667vw;
    padding: 1rem 0;
    margin-top: 1rem;
  }
}
.cases__headline .text--icon {
  position: relative;
}
.cases__headline .text--icon::before {
  content: "";
  width: 13px;
  height: 11px;
  display: inline-block;
  background: url(/public/img/lp/ob-ebe3b7c0ccbecc55d58b569d3802b8d9.svg) no-repeat center left/contain;
  position: absolute;
  right: -1px;
  top: -6px;
}

/* === ここまでピクスリー紹介セクション === */
/* === 機能セクション === */
/* -------------------------------
共通 feature-box スタイル
------------------------------- */
.features {
  padding: 72px 0px;
}
@media screen and (max-width: 768px) {
  .features {
    padding: 12.8vw 0;
  }
}

.feature-innter {
  display: flex;
  flex-direction: column;
  gap: 56px;
  max-width: 100%;
  width: 1220px;
  padding-left: 40px;
  padding-right: 40px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .feature-innter {
    padding-left: 4.2666666667vw;
    padding-right: 4.2666666667vw;
    gap: 8.5333333333vw;
  }
}

.feature-box {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .feature-box {
    gap: 6.4vw;
  }
}
.feature-box .note {
  font-size: 12px;
}

.feature-box__header,
.feature-box__header--mix {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  border-radius: 8px;
  overflow: hidden;
}

.feature-box__header--green {
  background: #27a844;
}

.feature-box__header--orange {
  background: #f17200;
}

.feature-box__header--mix::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f17200;
  clip-path: polygon(0 0, 65% 0, 50% 100%, 0% 100%);
  z-index: 1;
}

.feature-box__header--mix::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #27a844;
  clip-path: polygon(53% 0, 100% 0, 100% 100%, 47% 100%);
  z-index: 1;
}

.feature-box__header--mix > * {
  position: relative;
  z-index: 2;
}

.feature-box__label {
  font-size: 20px;
  padding: 16px 40px 16px 16px;
  border-radius: 20px;
  background-color: rgba(0, 0, 0, 0.2);
  color: #fff;
  white-space: nowrap;
  position: relative;
}
@media screen and (max-width: 768px) {
  .feature-box__label {
    font-size: 4.2666666667vw;
    padding: 6.4vw 4.2666666667vw 2.1333333333vw;
  }
}

.feature-box__label--left {
  background-color: #b75a0c;
  border-radius: 8px 0 0 8px;
}
@media screen and (min-width: 769px) {
  .feature-box__label--left {
    padding-left: 20px;
  }
}

.feature-box__label--left:after {
  content: "";
  width: 24px;
  height: 18px;
  display: inline-block;
  background: url(/public/img/lp/cases-icon1-ad1d2ac8c28b846912f72e06e2dde8f1.svg) no-repeat center left/contain;
  filter: brightness(0) saturate(100%) invert(94%) sepia(0%) saturate(7500%) hue-rotate(284deg) brightness(110%) contrast(101%);
  position: absolute;
  right: 12px;
  top: 51%;
  transform: translate(0%, -50%);
}
@media screen and (max-width: 768px) {
  .feature-box__label--left:after {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
    top: 30%;
    right: 0;
    left: 0;
    margin: auto;
  }
}

.feature-box__label--right {
  background-color: #146b38;
  border-radius: 0 8px 8px 0;
  margin-left: auto;
}
@media screen and (min-width: 769px) {
  .feature-box__label--right {
    padding-right: 40px;
  }
}

.feature-box__label--right:after {
  content: "";
  width: 24px;
  height: 18px;
  display: inline-block;
  background: url(/public/img/lp/cases-icon2-0c1ea37f4885d0f0550dd067e1b0f614.svg) no-repeat center left/contain;
  filter: brightness(0) saturate(100%) invert(94%) sepia(0%) saturate(7500%) hue-rotate(284deg) brightness(110%) contrast(101%);
  position: absolute;
  right: 12px;
  top: 51%;
  transform: translate(0%, -50%);
}
@media screen and (max-width: 768px) {
  .feature-box__label--right:after {
    width: 4vw;
    height: 4.2666666667vw;
    top: 30%;
    right: 0;
    left: 0;
    margin: auto;
  }
}

.feature-box__title {
  flex: 1;
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  margin: 0;
  left: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .feature-box__title {
    font-size: 4.8vw;
  }
}

.feature-box__title--orange {
  background-color: #f17200;
  color: #fff;
}

.feature-box__title--green {
  background-color: #27a844;
  color: #fff;
}

.feature-box__content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .feature-box__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 6.4vw;
  }
}

.feature-box__image {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .feature-box__image {
    width: 100%;
  }
}
.feature-box__image img {
  max-width: 100%;
  height: auto;
}
.feature-box__image.--full {
  width: 100%;
}

.feature-box__text {
  flex: 1;
  min-width: 250px;
}
@media screen and (max-width: 768px) {
  .feature-box__text {
    text-align: center;
  }
}
.feature-box__text p {
  font-size: 18px;
  line-height: 1.8;
  margin: 0 0 16px 0;
}
@media screen and (max-width: 768px) {
  .feature-box__text p {
    font-size: 4.2666666667vw;
    margin: 0 0 4.2666666667vw 0;
    text-align: left;
  }
}

.feature-box__icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 24px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .feature-box__icons {
    column-gap: 2.1333333333vw;
  }
}
.feature-box__icons .icon--orange {
  background-color: rgba(237, 108, 0, 0.1);
  color: #f17200;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .feature-box__icons .icon--orange {
    font-size: 20px;
    width: 150px;
    height: 150px;
  }
}
@media screen and (max-width: 768px) {
  .feature-box__icons .icon--orange {
    font-size: 4.2666666667vw;
    width: 40vw;
    height: 40vw;
  }
}

.feature-box__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
  padding-left: 0;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .feature-box__tags {
    gap: 2.1333333333vw;
  }
}

.tag {
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  padding: 12px 0px 12px 44px;
  border-radius: 99px;
}
@media screen and (max-width: 768px) {
  .tag {
    font-size: 4.2666666667vw;
    text-align: left;
    padding: 3.2vw 0 3.2vw 10.6666666667vw;
  }
}

.tag--orange,
.tag--green {
  width: 48%;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .tag--orange,
.tag--green {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .tag--orange,
.tag--green {
    width: 100%;
  }
}

.tag--orange {
  background-color: rgba(237, 108, 0, 0.1);
}

.tag--green {
  background-color: rgba(39, 168, 68, 0.1);
}

.tag--orange:before,
.tag--green:before,
.tag--orange:after,
.tag--green:after {
  content: "";
  display: block;
  position: absolute;
}

.tag--orange:before,
.tag--green:before {
  width: 16px;
  height: 16px;
  background-color: rgba(237, 108, 0, 0);
  border: 1px solid #000;
  left: 16px;
  top: 18px;
}
@media screen and (max-width: 768px) {
  .tag--orange:before,
.tag--green:before {
    width: 4.2666666667vw;
    height: 4.2666666667vw;
    top: 0vw;
    bottom: 0;
    margin: auto;
    left: 4.2666666667vw;
  }
}

.tag--orange:after {
  border-left: 2px solid #ed6c00;
  border-bottom: 2px solid #ed6c00;
  width: 18px;
  height: 5px;
  transform: rotate(-45deg);
  left: 19px;
  top: 18px;
}
@media screen and (max-width: 768px) {
  .tag--orange:after {
    width: 3.2vw;
    height: 1.3333333333vw;
    left: 5.0666666667vw;
    top: -1.0666666667vw;
    bottom: 0;
    margin: auto;
  }
}

.tag--green:after {
  border-left: 2px solid #27a844;
  border-bottom: 2px solid #27a844;
  width: 18px;
  height: 5px;
  transform: rotate(-45deg);
  left: 19px;
  top: 18px;
}
@media screen and (max-width: 768px) {
  .tag--green:after {
    width: 3.2vw;
    height: 1.3333333333vw;
    left: 5.0666666667vw;
    top: -1.0666666667vw;
    bottom: 0;
    margin: auto;
  }
}

/* -------------------------------

about

-------------------------------  */
.about {
  padding-top: 0px;
  padding-bottom: 72px;
  position: relative;
  z-index: 2;
  background-color: #f2eee3;
}
@media screen and (max-width: 768px) {
  .about {
    padding: 0 0 12.8vw 0;
  }
}

/* -------------------------------

video-section

-------------------------------  */
.video-section {
  text-align: center;
  margin-bottom: 72px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .video-section {
    margin-bottom: 8.5333333333vw;
  }
}

.video-section__video {
  width: 700px;
  margin: 0 auto 24px;
}
@media screen and (max-width: 768px) {
  .video-section__video {
    width: 100%;
    margin-bottom: 6.4vw;
  }
}

.video-section__video video {
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .video-section__video video {
    border-radius: 2.6666666667vw;
  }
}

.video-section__title {
  font-size: 26px;
}
@media screen and (max-width: 768px) {
  .video-section__title {
    font-size: 5.8666666667vw;
  }
}

.video-section p {
  font-size: clamp(16px, 1.8vw, 20px);
}
@media screen and (max-width: 768px) {
  .video-section p {
    font-size: 4.2666666667vw;
  }
}

/* -------------------------------

CTA

-------------------------------  */
@media screen and (max-width: 768px) {
  .cta .inner {
    padding: 0;
  }
}

.cta {
  margin-bottom: 80px;
  background-image: linear-gradient(90deg, #ed6c00, #ffac1a), url("/public/img/lp/cta_bg-9cec3d73ead69573b04e7f81ccf7f270.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  padding: 60px 0 80px;
}
@media screen and (max-width: 768px) {
  .cta {
    margin-bottom: 12.8vw;
    padding: 10.6666666667vw;
    background-position: right bottom;
    background-size: 100%, auto 50%;
  }
}

.cta__title {
  text-align: center;
  color: #fff;
  font-size: 26px;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .cta__title {
    font-size: 6.9333333333vw;
    margin-bottom: 8.5333333333vw;
  }
}

.cta__buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .cta__buttons {
    gap: 4.2666666667vw;
    justify-content: center;
    flex-direction: column;
  }
}

.cta__button {
  flex: 1 1 calc((100% - 80px) / 3);
  border-radius: 999px;
  padding: 24px 16px;
  display: inline-block;
  position: relative;
  text-align: center;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .cta__button {
    padding: 4.2666666667vw;
  }
}

.cta__button.cta__button--secondary,
.cta__button.cta__button--primary {
  flex: 1 1 calc((100% - 80px) / 3);
}
@media screen and (max-width: 768px) {
  .cta__button.cta__button--secondary,
.cta__button.cta__button--primary {
    width: 100%;
  }
}

.cta__button--primary {
  background-color: #fff;
  color: #ed6c00;
  border: #ed6c00 2px solid;
}
.cta__button--primary:hover {
  color: #ffffff;
  background-color: #ed6c00;
  transition: all 0.3s;
  border: 2px solid #fff;
}

.cta__button--secondary {
  color: #fff;
  background-color: #27a844;
  border: #27a844 2px solid;
}
.cta__button--secondary:hover {
  color: #27a844;
  background-color: #fff;
  transition: all 0.3s;
}

.cta__button--secondary::after,
.cta__button--primary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .cta__button--secondary::after,
.cta__button--primary::after {
    width: 2.1333333333vw;
    height: 2.1333333333vw;
    border-top-width: 0.5333333333vw;
    border-right-width: 0.5333333333vw;
    right: 5.3333333333vw;
    border-radius: 0.2666666667vw;
  }
}

/* -------------------------------

FAQ

-------------------------------  */
.faq {
  margin-bottom: 72px;
}
@media screen and (max-width: 768px) {
  .faq {
    margin-bottom: 12.8vw;
  }
}

.faq .tabs {
  display: flex;
  justify-content: space-between;
}

.faq__section {
  display: none;
}

.faq__section--features {
  text-align: center;
}

.faq__highlight {
  font-size: clamp(18px, 2vw, 24px);
  color: #ed6c00;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .faq__highlight {
    font-size: 5.3333333333vw;
  }
}

.faq__section.is-active {
  display: block;
}

.faq__section {
  padding: 56px;
  background-color: #fff;
  border-radius: 0 0 20px 20px;
  border: 1px solid #ed6c00;
  margin-top: -1px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .faq__section {
    padding: 10.6666666667vw 4.2666666667vw 8.5333333333vw;
    background-color: #fff;
    border-radius: 0 0 5.3333333333vw 5.3333333333vw;
  }
}

.faq__section--pharmacy {
  border: 1px solid #27a844;
}

.tabs__button {
  width: 49.5%;
  border-radius: 10px 10px 0 0px;
  padding: 16px;
  color: #ed6c00;
  color: rgba(237, 108, 0, 0.3);
  border: 1px solid #ed6c00;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .tabs__button {
    border-radius: 2.6666666667vw 2.6666666667vw 0 0;
    padding: 2.1333333333vw 0;
    gap: 2.1333333333vw;
  }
}
.tabs__button:hover {
  color: #fff;
  background-color: #ed6c00;
  transition: all 0.3s;
}
.tabs__button:hover img {
  filter: brightness(0) saturate(100%) invert(99%) sepia(100%) saturate(2%) hue-rotate(144deg) brightness(109%) contrast(101%);
}

.tabs__button img {
  filter: invert(88%) sepia(10%) saturate(1738%) hue-rotate(317deg) brightness(107%) contrast(96%);
}
@media screen and (max-width: 768px) {
  .tabs__button img {
    height: 60%;
  }
}

.tabs__button.is-active {
  background-color: #ed6c00;
  color: #fff;
  position: relative;
}

.tabs__button.is-active::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #ed6c00;
}
@media screen and (max-width: 768px) {
  .tabs__button.is-active::after {
    border-left: 2.6666666667vw solid transparent;
    border-right: 2.6666666667vw solid transparent;
    border-top: 2.6666666667vw solid #ed6c00;
    bottom: -2.6666666667vw;
  }
}

.tabs__button.is-active img {
  filter: brightness(0) saturate(100%) invert(99%) sepia(100%) saturate(2%) hue-rotate(144deg) brightness(109%) contrast(101%);
}

.tabs__button--pharmacy {
  color: rgba(39, 168, 68, 0.3);
  border: 1px solid #27a844;
}
.tabs__button--pharmacy img {
  filter: brightness(0) saturate(100%) invert(94%) sepia(10%) saturate(532%) hue-rotate(82deg) brightness(91%) contrast(96%);
}
@media screen and (max-width: 768px) {
  .tabs__button--pharmacy img {
    height: 60%;
  }
}
.tabs__button--pharmacy.is-active {
  background-color: #27a844;
}
.tabs__button--pharmacy.is-active::after {
  border-top: 10px solid #27a844;
}
@media screen and (max-width: 768px) {
  .tabs__button--pharmacy.is-active::after {
    border-top: 2.6666666667vw solid #27a844;
  }
}
.tabs__button--pharmacy:hover {
  color: #fff;
  background-color: #27a844;
  transition: all 0.3s;
}
.tabs__button--pharmacy:hover img {
  filter: brightness(0) saturate(100%) invert(99%) sepia(100%) saturate(2%) hue-rotate(144deg) brightness(109%) contrast(101%);
}

/* -------------------------------

FAQ

-------------------------------  */
.faq__item {
  margin-bottom: 1rem;
  background-color: #fffbed;
  border-radius: 10px;
  padding: 24px;
}
@media screen and (max-width: 768px) {
  .faq__item {
    padding: 0vw;
  }
}
.faq__item:last-child {
  margin-bottom: 0rem;
}

.faq__section--pharmacy .faq__item {
  background-color: #eef6f1;
}

.faq__question span {
  color: #ed6c00;
}

.faq__section--pharmacy .faq__question span {
  color: #27a844;
}

/* faq  CSS（アニメーション・矢印） */
.faq__question {
  width: 100%;
  padding: 16px 16px;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  text-align: left;
  position: relative;
  padding-right: 2em;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .faq__question {
    padding: 6.4vw 10.6666666667vw 6.4vw 4.2666666667vw;
    font-size: 4.2666666667vw;
    gap: 3.2vw;
  }
}
.faq__question p {
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .faq__question::after {
    content: "";
    width: 2.1333333333vw;
    height: 2.1333333333vw;
    border-top: 0.5333333333vw solid currentColor;
    border-right: 0.5333333333vw solid currentColor;
    transform: translateY(-50%) rotate(135deg);
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 0.2666666667vw;
    transition: transform 0.3s ease-in-out;
  }
}

.faq__item.faq__question--active .faq__question::after {
  transform: translateY(-50%) rotate(-45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  line-height: 1.7;
  font-weight: 500;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 16px;
}
@media screen and (max-width: 768px) {
  .faq__answer {
    padding: 0 4.2666666667vw;
  }
}

.faq__item.faq__question--active .faq__answer {
  max-height: 500px;
  padding: 8px 16px 16px;
}
@media screen and (max-width: 768px) {
  .faq__item.faq__question--active .faq__answer {
    padding: 0vw 4.2666666667vw 4.2666666667vw;
  }
}

/* -------------------------------
flow
-------------------------------  */
.flow {
  text-align: center;
  background-color: #f0ede2;
  padding: 72px 0;
}
@media screen and (max-width: 768px) {
  .flow {
    padding: 12.8vw 0;
  }
}

.flow__description {
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .flow__description {
    margin-bottom: 4.2666666667vw;
  }
}

.flow__highlight {
  font-size: 26px;
  color: #ed6c00;
}
@media screen and (max-width: 768px) {
  .flow__highlight {
    font-size: 6.9333333333vw;
  }
}

.flow__read {
  background-color: #fffbed;
  font-size: clamp(16px, 1.5vw, 18px);
  padding: 12px 0;
  border-radius: 10px;
  margin-bottom: 32px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .flow__read {
    font-size: 4.8vw;
    padding: 3.2vw 0;
    border-radius: 2.6666666667vw;
    margin-bottom: 8.5333333333vw;
  }
}

.faq__item.faq__question--active .arrow {
  transform: rotate(180deg);
}

/* アコーディオンフロー */
.flow__accordion-title {
  display: none;
  width: 100%;
  text-align: left;
  padding: 15px;
  font-weight: bold;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 768px) {
  .flow__accordion-title {
    display: block;
    margin-bottom: 16px;
    background-color: #ed6c00;
    border-radius: 10px;
    text-align: center;
    color: #fff;
    padding-right: 2em;
  }
}

@media screen and (max-width: 768px) {
  .flow__block.--green .flow__accordion-title {
    background-color: #27a844;
  }
}

.flow__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  align-items: stretch;
  padding: 0;
  margin: 0;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .flow__list {
    display: none;
  }
}

.flow__list:not(.is-active) {
  display: none;
}

@media screen and (max-width: 768px) {
  .flow__list.is-active {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 8.5333333333vw;
    flex-direction: column;
    padding: 4.2666666667vw;
  }
}

.flow__tab-buttons {
  margin-bottom: 48px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .flow__tab-buttons {
    display: none;
  }
}

.flow__tab-button {
  cursor: pointer;
  padding: 8px;
  width: 240px;
  background-color: #fff;
  color: rgba(237, 108, 0, 0.5);
  border: 2px solid #ed6c00;
  font-weight: bold;
  transition: 0.2s;
  border-radius: 999px;
  font-size: clamp(16px, 1.8vw, 20px);
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .flow__tab-button {
    padding: 4.2666666667vw;
    width: 85.3333333333vw;
    border-width: 0.5333333333vw;
    border-radius: 266.4vw;
    font-size: 4.2666666667vw;
  }
}
.flow__tab-button:hover {
  color: #fff;
  background-color: #ed6c00;
  transition: all 0.3s;
}
.flow__tab-button.--green {
  color: rgba(39, 168, 68, 0.5);
  border: 2px solid #27a844;
}
.flow__tab-button.--green:hover {
  color: #fff;
  background-color: #27a844;
  transition: all 0.3s;
}
.flow__tab-button.--green.is-active {
  background-color: #27a844;
}

.flow__tab-button.is-active {
  background: #ed6c00;
  color: #fff;
}

.flow__block {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .flow__block {
    margin-bottom: 6.4vw;
    background-color: #fffbed;
    border-radius: 2.6666666667vw;
  }
}

@media screen and (max-width: 768px) {
  .flow__block.--green {
    background-color: #eef6f1;
  }
}

.flow__item {
  flex: 1;
  background: #ffffff;
  text-align: center;
  padding: 8px 0px 32px 0px;
  border-radius: 10px;
  font-weight: bold;
  position: relative;
  height: 200px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .flow__item {
    height: auto;
    padding: 2.1333333333vw 2.1333333333vw 4.2666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .flow__item {
    padding: 2.1333333333vw 0 8.5333333333vw;
    border-radius: 2.6666666667vw;
    height: 53.3333333333vw;
    margin-bottom: 2.6666666667vw;
  }
}

.flow__item:not(:last-child)::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: -17px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .flow__item:not(:last-child)::after {
    width: 2.1333333333vw;
    height: 2.1333333333vw;
    border-top-width: 0.5333333333vw;
    border-right-width: 0.5333333333vw;
    border-radius: 0.2666666667vw;
    right: auto;
    top: auto;
    left: 50%;
    bottom: -1.5em;
    transform: translateX(-50%) rotate(135deg);
  }
}

.flow__step {
  position: absolute;
  left: 0;
  background-color: #ed6c00;
  color: #fff;
  border-radius: 0 40px 40px 0px;
  padding: 4px 10px;
  font-size: clamp(16px, 1.5vw, 18px);
}
@media screen and (max-width: 768px) {
  .flow__step {
    border-radius: 0 10.6666666667vw 10.6666666667vw 0;
    padding: 1.0666666667vw 2.6666666667vw;
    font-size: 3.7333333333vw;
  }
}

.flow__block.--green .flow__step {
  background-color: #27a844;
}

.flow__label {
  font-size: 13px;
  padding-right: 8px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .flow__label {
    font-size: 3.2vw;
    padding-right: 2.1333333333vw;
  }
}

.flow__image {
  margin: 32px auto 16px;
  height: 80px;
  width: auto;
}
@media screen and (max-width: 768px) {
  .flow__image {
    margin: 8.5333333333vw auto 4.2666666667vw;
    height: 18.6666666667vw;
  }
}

.flow__text {
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .flow__text {
    font-size: 4.8vw;
  }
}

.flow__note p {
  text-align: left;
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .flow__note p {
    font-size: 4.2666666667vw;
  }
}

.flow__note li {
  font-size: 14px;
  text-align: left;
  font-weight: normal;
  margin-top: 8px;
  list-style-type: disc;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .flow__note li {
    font-size: 3.7333333333vw;
    margin-top: 2.1333333333vw;
    margin-left: 5.3333333333vw;
  }
}

.flow__accordion-title .icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .flow__accordion-title .icon {
    content: "";
    width: 2.6666666667vw;
    height: 2.6666666667vw;
    border-top: 0.5333333333vw solid currentColor;
    border-right: 0.5333333333vw solid currentColor;
    transform: translateY(-50%) rotate(135deg);
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 1px;
    transition: transform 0.3s ease-in-out;
  }
}

.flow__accordion-title.open .icon::before {
  content: "▲";
}

/* 開いたときに矢印が下向きになる */
.flow__accordion-title.is-open .icon {
  transform: translateY(-50%) rotate(-45deg);
}

/* -------------------------------
footer
-------------------------------  */
footer {
  padding: 48px 0 32px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 8.5333333333vw 0 21.3333333333vw;
  }
}

.footer__inner {
  max-width: 1220px;
  width: 100%;
  padding: 0 40px;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 0 4.2666666667vw;
  }
}

@media screen and (max-width: 768px) {
  .footer__info {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }
}

.footer__company {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: bold;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .footer__company {
    font-size: 5.3333333333vw;
    margin-bottom: 2.1333333333vw;
  }
}

.footer__nav {
  display: flex;
  gap: 16px;
  font-size: 14px;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .footer__nav {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    font-size: 3.7333333333vw;
    gap: 4.2666666667vw 8.5333333333vw;
    margin-bottom: 10.6666666667vw;
  }
}

.footer__phone {
  font-size: 26px;
  margin-bottom: 8px;
  font-weight: bold;
  display: flex;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .footer__phone {
    font-size: 6.9333333333vw;
    margin-bottom: 4.2666666667vw;
    gap: 2.1333333333vw;
  }
}

.footer__phone--text {
  display: inline;
}
@media screen and (max-width: 768px) {
  .footer__phone--text {
    display: none;
  }
}

.footer__phone--link {
  display: none;
  color: inherit;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .footer__phone--link {
    display: inline;
  }
}

.footer__phone--image {
  width: 30px;
}
@media screen and (max-width: 768px) {
  .footer__phone--image {
    width: 8vw;
  }
}

.footer__button {
  color: #ed6c00;
  display: block;
  border: 2px solid;
  width: 250px;
  background-color: #ed6c00;
  color: #fff;
  border: 2px solid #ed6c00;
  padding: 12px 2rem;
  text-align: center;
  border-radius: 4rem;
  font-weight: bold;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .footer__button {
    width: 100%;
    padding: 3.2vw 2rem;
    border-radius: 266.4vw;
  }
}
.footer__button:hover {
  color: #ed6c00;
  background-color: #fff;
  transition: all 0.3s;
}

/* -------------------------------

問い合わせ CSS

-------------------------------  */
.contact__error-messages {
  color: red;
  font-size: 14px;
  margin-bottom: 1.5rem;
  text-align: center;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .contact__error-messages {
    font-size: 3.7333333333vw;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
  }
}

/* 基本的なスタイル設定 */
.contact {
  padding: 80px 0px;
}
@media screen and (max-width: 768px) {
  .contact {
    padding: 12.8vw 4.2666666667vw 12.8vw;
  }
}

.contact__inner {
  display: flex;
  justify-content: space-between;
  width: 1220px;
  padding: 0 40px;
  margin: 0 auto;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .contact__inner {
    flex-direction: column;
    max-width: 100%;
    padding: 0;
  }
}

.contact__left {
  flex: 0 0 460px;
  margin-right: 40px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .contact__left {
    flex: 0 0 40%;
  }
}
@media screen and (max-width: 768px) {
  .contact__left {
    margin-right: 0;
    margin-bottom: 6.4vw;
  }
}

.contact__right {
  flex: 1;
  max-width: 600px;
}
@media screen and (max-width: 768px) {
  .contact__right {
    max-width: 100%;
  }
}

.contact__title {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .contact__title {
    font-size: 6.4vw;
    margin-bottom: 4.2666666667vw;
  }
}

.contact__list {
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .contact__list {
    font-size: 4.2666666667vw;
    margin-bottom: 6.4vw;
  }
}
.contact__list li {
  margin-bottom: 0.5rem;
}

.contact__desc {
  font-size: 16px;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .contact__desc {
    font-size: 4.2666666667vw;
    margin-bottom: 6.4vw;
  }
}

.contact__image img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .contact__image img {
    max-width: 100%;
    border-radius: 2.6666666667vw;
  }
}

.contact__form {
  background-color: #fff;
  padding: 48px 40px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .contact__form {
    padding: 6.4vw;
    border-radius: 2.6666666667vw;
  }
}

.form__group {
  margin-bottom: 20px;
}

.form__group label {
  display: block;
  font-size: 16px;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .form__group label {
    font-size: 4.2666666667vw;
  }
}

.form__group input,
.form__group textarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .form__group input,
.form__group textarea {
    font-size: 4.2666666667vw;
    padding: 2.6666666667vw;
  }
}

.form__group input:focus,
.form__group textarea:focus {
  border-color: #ed6c00;
  outline: none;
}

textarea {
  min-height: 150px;
}
@media screen and (max-width: 768px) {
  textarea {
    min-height: 40vw;
  }
}

.required {
  color: red;
}

.contact__note {
  font-size: 14px;
  margin-top: 24px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact__note {
    font-size: 3.7333333333vw;
    margin-top: 4.2666666667vw;
  }
}
.contact__note a {
  text-decoration: underline;
}

.contact__submit {
  display: inline-block;
  background-color: #ed6c00;
  color: #fff;
  padding: 16px 30px;
  font-size: clamp(16px, 1.5vw, 18px);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  width: 100%;
  margin-top: 20px;
  border: 2px solid;
  transition: 0.3s ease;
}
@media screen and (max-width: 768px) {
  .contact__submit {
    padding: 4.2666666667vw 6.4vw;
    font-size: 4.8vw;
  }
}
.contact__submit:hover {
  color: #ed6c00;
  background-color: #fff;
  transition: 0.3s ease;
}

.contact-complete .contact__title {
  text-align: center;
}
.contact-complete .contact__image {
  margin-bottom: 6.4vw;
}
.contact-complete .contact__image img {
  margin: 0 auto;
}
.contact-complete .center_blk {
  margin: 0 auto;
  width: fit-content;
}