:root {
  --font-kiwi: "Kiwi Maru", serif;
  /*筑紫A丸ゴシック*/
  --font-zen: "Zen Maru Gothic", sans-serif;
  /*DNP 秀英丸ゴシック Std*/
  --font-yomogi:  "Zen Kurenaido", sans-serif;
  /*あんずもじ*/
  --font-noto: "Noto Sans JP", sans-serif;
  /*小塚ゴシック Pr6N*/

  --color-pink: #e77573;
  --color-green: #6c9396;
  --color-text: #444444;
}

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

html {
  font-size: 16px;
}

h1 {
  font-size: 4rem;
  /* 64px */
  line-height: 1.4;
}

h2 {
  font-size: 3.5rem;
  /* 57px */
  line-height: 1.25;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 2.1875rem;
  /* 35px */
  line-height: 1.3;
}

h4 {
  font-size: 1.5rem;
  /* 24px */
  line-height: 1.4;
}

h5 {
  font-size: 1.25rem;
  /* 20px */
  line-height: 1.5;
}

p {
  font-size: 1rem;
  /* 16px */
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: var(--color-text);
}


a {
  text-decoration: none;
}

a:hover {
  opacity: 0.7;
}


/* スマホ対応 */
@media screen and (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  /* 40px */
  h2 {
    font-size: 2.125rem;
  }

  /* 34px */
  h3 {
    font-size: 1.625rem;
  }

  /* 26px */
  h4 {
    font-size: 1.375rem;
  }

  /* 22px */
  h5 {
    font-size: 1.125rem;
  }

  /* 18px */
  p {
    font-size: 0.9375rem;
  }

  /* 15px */
}

@media screen and (min-width: 768px) {
  .br-sp768 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .br-sp768-none {
    display: none;
  }
}
@media screen and (min-width: 400px) {
  .br-sp400 {
    display: none;
  }
}
@keyframes sway {/*揺れるアニメーション*/
  0%   { transform: rotate(5deg); }
  50%  { transform: rotate(10deg); }
  100% { transform: rotate(5deg); }
}
@keyframes sway2 {/*揺れるアニメーション*/
  0%   { transform: rotate(-5deg); }
  50%  { transform: rotate(-10deg); }
  100% { transform: rotate(-5deg); }
}
/* ヘッダー */
header {
  height: 84px;
  background-color: var(--color-pink);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-container-left {
  width: 20%;
  max-width: 376px;
  padding: 22px 0;
  text-align: center;
}

.header-logo {
  width: 100%;
  height: 100%;
}

.header-logo img {
  width: 50%;
  height: auto;
}

.header-container-center {
  width: 60%;
  text-align: center;
}

.header-nav {
  width: 100%;
}

.header-nav ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-nav ul li {
  list-style: none;
  flex: 1;
  /* 等分にする */
  text-align: center;
  /* テキストを中央揃え */
}

.header-nav ul li a {
  display: block;
  padding: 22px 0;
  color: #fff;
  text-decoration: none;
}

.header-nav ul li a span {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 22px;
  border-left: 1px solid #fff;
  font-family: var(--font-kiwi);
  font-weight: 600;
  font-size: 1rem;
  white-space: nowrap;
}

.header-container-right {
  width: 20%;
  max-width: 368px;
  height: 84px;
  text-align: center;
  background-color: #e7b5bb;
  white-space: nowrap;
}

.header-container-right a {
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  padding: 4px 22px;
  font-weight: bold;
}

.header-container-right a p {
  font-family: var(--font-zen);
  line-height: 1.2;
  font-weight: 400;
  color: #fff;
}

.header-contact-tel {
  font-size: 1.625rem;
  font-weight: 600;
}

.header-contact-time {
  font-size: 1rem;
}
@media screen and (max-width: 1200px) {
  .header-container-right a {
    padding: 8px 0;
  }
  .header-container-right p {
    font-size: 0.9375rem;
  }
  .header-contact-tel {
    font-size: 1.375rem;
  }
  .header-contact-time {
    font-size: 0.9375rem;
  }
}
/* ハンバーガーメニュー */
/* ハンバーガーの見た目 */
.hamburger {
  display: none;
  /* PCでは非表示 */
  flex-direction: column;
  justify-content: center;
  width: 30px;
  height: 30px;
  cursor: pointer;
  gap: 6px;
  margin-right: 20px;
  transition: transform 0.3s ease;
}

.hamburger span {
  display: block;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger span {
  display: block;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}


/* モバイルナビ */
.mobile-nav {
  position: absolute;
  top: auto;
  right: 0;
  width: 50%;
  background: #fff;
  z-index: 100;
  text-align: center;
  z-index: 100;
  text-align: center;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-nav.active {
  max-height: 500px;
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav li {
  border-bottom: 1px solid #eee;
}

.mobile-nav ul li:last-child {
  background-color: #e7b5bb;
  border-bottom: none;
}

.mobile-nav li a {
  display: block;
  padding: 15px 0;
  color: var(--color-pink);
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.mobile-nav li:last-child a {
  color: #fff;
}

.mobile-nav li a:hover {
  background: var(--color-pink);
  color: #fff;
}

/* スマホ表示 */
@media screen and (max-width: 768px) {
  .header-container-left {
    width: 50%;
  }

  .header-container-center,
  .header-container-right {
    display: none;
    /* PC用メニュー非表示 */
  }

  .hamburger {
    display: flex;
  }
}

/* メインビジュアル */
.hero-container {
  position: relative;
  height: 688px;
  background-color: #fff;
  /* 下の余白が白になる */
  overflow: hidden;
  /* はみ出し防止 */
}

.hero-image {
  width: 100%;
  height: 100%;
  text-align: end;
}

.hero-image img {
  width: 86.8%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  object-position: 80% 50%;
  /* 表示位置を微調整（左寄せ） */
  clip-path: polygon(27% 0,
      /* 上辺の左側 */
      100% 0,
      /* 上辺の右側 */
      100% 100%,
      /* 下辺の右側 */
      16.9% 100%
      /* 下辺の左側 */
    );
}

.hero-text {
  position: absolute;
  top: 136px;
  left: 10.5%;
  font-family: var(--font-kiwi);
  text-align: left;
}

.hero-text h1 {
  color: var(--color-pink);
  font-weight: 400;
}

.hero-text-inner {
  display: flex;
  align-items: center;
  padding-top: 32px;
}

.hero-text-inner img {
  max-width: 150px;
}

.hero-text-inner-p {
  padding-left: 8px;
}

.hero-text-inner-p h3 {
  color: var(--color-green);
  font-weight: 400;
  font-size: 2rem;
  letter-spacing: 0.025em;
}

.hero-text-inner-p h4 {
  color: var(--color-text);
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0.25em;
}

.hero-button {
  position: fixed;
  top: 620px;
  right: 80px;
  z-index: 1000;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
}

.hero-button a {
  display: block;
  /* 横幅いっぱいに広げる */
  line-height: 0;
  /* 余白を消す */
}

.hero-button img {
  display: block;
  /* 下に隙間ができないようにする */
  width: 304px;
  /* 好きな横幅 */
  height: auto;
  /* 縦横比を保持 */
}

@media screen and (max-width: 768px) {
  .hero-text {
    top: 40px;
    left: 16px;
  }

  .hero-text-inner {
    padding-top: 16px;
  }

  .hero-text-inner img {
    max-width: 100px;
  }

  .hero-text-inner-p {
    padding-left: 16px;
  }

  .hero-text-inner-p h3 {
    font-size: 1.5rem;
  }

  .hero-text-inner-p h4 {
    font-size: 1rem;
  }

  .hero-button {
    right: 16px;
  }

  .hero-button img {
    width: 200px;
  }
}

@media screen and (max-width: 400px) {
  .hero-text h1 {
    font-size: 32px;
  }
  .hero-text-inner {
    flex-direction: column;
  }
  .hero-text-inner img {
    align-self: start;
  }
  .hero-text-inner-p {
    padding-left: 0;
  }
  .hero-text-inner-p h3 {
    font-size: 1.5rem;
  }
  .hero-text-inner-p h4 {
    font-size: 1.25rem;
  }
}



main {
  overflow: hidden;
}

/* セクション1 */
.section1 {
  background-color: #e7b5bb;
  text-align: center;
  padding-bottom: 72px;
}

.section1-title {
  color: #fff;
  font-family: var(--font-yomogi);
  padding-top: 80px;
  padding-bottom: 32px;
}

.section1-text-container {
  width: 100%;
  max-width: 1000px;
  height: 100%;
  margin: 0 auto;
  position: relative;
}

.section1-text {
  background-image: url(./img/LP_section1_text_bg.png);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2;
}

.section1-bg-img {
  position: relative;
  width: 100%;
  margin: 0 auto;
  height: 100%;
}

.section1-bg-img-1 {
  display: inline-block; /* transformを効かせるため */
  transform-origin: top center; /* 根元を中心に回転 */
  animation: sway 8s infinite ease-in-out;
  position: absolute;
  top: -128px;
  right: -273px;
  width: 319px;
  z-index: 1;
}

.section1-bg-img-2 {
  display: inline-block; /* transformを効かせるため */
  transform-origin: bottom center; /* 根元を中心に回転 */
  animation: sway 8s infinite ease-in-out;
  position: absolute;
  top: -170px;
  left: -244px;
  width: 238px;
  z-index: 1;
}

.section1-bg-img-3 {
  position: absolute;
  top: 190px;
  left: -46px;
  width: 120px;
  z-index: 1;
}

.section1-bg-img-4 {
  position: absolute;
  bottom: -4px;
  left: -154px;
  width: 270px;
  z-index: 1;
}

/* ====== 1200px 以下 ====== */
@media screen and (max-width: 1200px) {
  .section1-bg-img-1 {
    top: -100px;
    right: -200px;
    width: 260px;
  }

  .section1-bg-img-2 {
    top: -140px;
    left: -180px;
    width: 200px;
  }

  .section1-bg-img-3 {
    top: 100px;
    left: -30px;
    width: 100px;
  }

  .section1-bg-img-4 {
    bottom: -60px;
    left: -100px;
    width: 220px;
  }
}

/* ====== 768px 以下（タブレット） ====== */
@media screen and (max-width: 768px) {
  .section1-bg-img-1 {
    top: -80px;
    right: -60px;
    width: 150px;
  }

  .section1-bg-img-2 {
    top: -70px;
    left: -40px;
    width: 150px;
  }

  .section1-bg-img-3 {
    top: 80px;
    left: -20px;
    width: 80px;
  }

  .section1-bg-img-4 {
    bottom: -40px;
    left: -60px;
    width: 180px;
  }
}

/* ====== 400px 以下（スマホ） ====== */
@media screen and (max-width: 400px) {
  .section1-bg-img-1 {
    top: -50px;
    right: -60px;
    width: 140px;
  }

  .section1-bg-img-2 {
    top: -60px;
    left: -60px;
    width: 120px;
  }

  .section1-bg-img-3 {
    top: 50px;
    left: -10px;
    width: 60px;
  }

  .section1-bg-img-4 {
    bottom: -20px;
    left: -30px;
    width: 140px;
  }
}

.section1-text-inner p {
  font-family: var(--font-kiwi);
  padding: 44px 0;
}


.section1-text-title {
  width: 100%;
  max-width: 443px;
  margin: 0 auto;
  padding-bottom: 20px;
}

.section1-text-img {
  width: 100%;
  max-width: 784px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.section1-text-img img {
  width: 100%;
  max-width: 150px;
}

@media (max-width: 768px) {
  .section1-text-inner p {
    padding: 24px 16px;
    width: 70%;
    min-width: 300px;
    margin: 0 auto;
    white-space:nowrap;
  }

  .section1-text-title {
    width: 80%;
    padding-bottom: 16px;
  }

  .section1-text-img {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .section1-text-1,
  .section1-text-3 {
    justify-self: right;
  }

  .section1-text-2,
  .section1-text-4 {
    justify-self: left;
  }
}

/* セクション2 */
.section2 {
  background-color: #fff;
  text-align: center;
  padding-top: 64px;
}

.section2-title {
  width: 100%;
}

.section2-title img {
  width: 193px;
}

.section2-title p {
  font-family: var(--font-noto);
  font-weight: 400;
  font-size: 12px;
  color: var(--color-pink);
}

.section2-content {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 48px;
}

/* セクション2-1 まはなのサービス*/
.section2-content1-bg {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.section2-content1-bg-img1 {
  width: 228px;
  position: absolute;
  top: 0;
  right: -200px;
  z-index: 1;
}

.section2-content1-bg-img2 {
  width: 224px;
  position: absolute;
  bottom: 24px;
  left: -307px;
  z-index: 1;
}

.section2-content1-bg-img3 {
  display: inline-block; /* transformを効かせるため */
  transform-origin: right center; /* 根元を中心に回転 */
  animation: sway 8s infinite ease-in-out;
  width: 239px;
  position: absolute;
  top: -130px;
  right: -230px;
  z-index: 1;
}

.section2-content1-bg-img4 {
  display: inline-block; /* transformを効かせるため */
  transform-origin: top center; /* 根元を中心に回転 */
  animation: sway2 8s infinite ease-in-out;
  width: 170px;
  position: absolute;
  top: -8px;
  right: -257px;
  z-index: 1;
}

@media (max-width: 1200px) {
  .section2-content1-bg-img1 {
    width: 200px;
    top: 0px;
    right: -176px;
  }

  .section2-content1-bg-img2 {
    width: 197px;
    bottom: 21px;
    left: -270px;
  }

  .section2-content1-bg-img3 {
    width: 210px;
    top: -114px;
    right: -202px;
  }

  .section2-content1-bg-img4 {
    width: 149px;
    top: -7px;
    right: -226px;
  }
}
@media (max-width: 768px) {
  .section2-title {
    position: relative;
    z-index: 10;
  }
  .section2-content1-bg-img1 {
    width: 100px;
    top: -30px;
    right: 0px;
    z-index: 1;
  }
  .section2-content1-bg-img2 {
    width: 197px;
    bottom: -171px;
    left: -70px;
    z-index: 1;
  }
  .section2-content1-bg-img3 {
    width: 108px;
    top: -90px;
    right: -2px;
    z-index: 1;
  }
  .section2-content1-bg-img4 {
    width: 80px;
    top: -20px;
    right: 0px;
    z-index: 1;
  }
}


.section2-content1-top-text {
  width: 100%;
  margin: 0 auto;
  padding: 36px 0;
  z-index: 2;
  position: relative;
  text-align: center;
}

.section2-c1-top-text-pink {
  font-family: var(--font-yomogi);
  font-weight: 600;
  color: var(--color-pink);
  font-size: 30px;
  padding-bottom: 20px;
}

.section2-c1-top-text-green {
  font-family: var(--font-yomogi);
  font-weight: 600;
  color: var(--color-green);
  font-size: 24px;
}

.txt-dot_green {
  position: relative;
  display: inline-block;
}

.txt-dot_green-img {
  position: absolute;
  top: 2px;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}


.section2-content1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 56px;
  padding-bottom: 54px;
  width: 100%;
  max-width: 576px;
  margin: 0 auto;
  position: relative;
  background-image: url(./img/LP_section2_c1_bg.png);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 2;
}

.txt-bgc_yellow {
  background-color: #ffef00;
  padding: 0 4px;
}


.section2-c1-img1 {
  /*旗の画像*/
  position: absolute;
  top: -20px;
  left: -24px;
  max-width: 163px;
}

.section2-c1-text {
  width: 100%;
  height: 100%;
  font-family: var(--font-kiwi);
  color: var(--color-pink);
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 88px;
}


.section2-c1-text ul li {
  padding-left: 8px;
  padding-bottom: 8px;
  font-family: var(--font-kiwi);
  font-weight: 600;
  font-size: 1.25rem;
}

.section2-c1-text ul li::marker {
  content: "●";
  color: var(--color-pink);
  font-size: 1rem;
  font-weight: bold;
}

.section2-c1-img2 {
  /*費用負担0円の画像*/
  position: absolute;
  bottom: 2%;
  right: -8%;
  max-width: 112px;
}

@media (max-width: 768px) {
  .section2-content1 {
    background-image: none;
    background-color: #fdf4d5;
    margin-top: 40px;
    padding: 32px 16px;
    border-radius: 500px;
  }
  .section2-c1-img1 {
    top: -50px;
    left: 0px;
    max-width: 150px;
  }
  .section2-c1-img2 {
    bottom: -10%;
    right: 0;
    max-width: 100px;
  }
  .section2-c1-text {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: fit-content;
    margin: 0 auto;
  }

  .section2-c1-right1-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
  }
}

/* セクション2-2 ご利用の流れ*/
.section2-content2 {
  width: 100%;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.section2-content2-bg-img1 {
  width: 114.7px;
  position: absolute;
  bottom: 70px;
  left: -135px;
}

.section2-content2-bg-img2 {
  display: inline-block; /* transformを効かせるため */
  transform-origin: center center; /* 根元を中心に回転 */
  animation: sway 8s infinite ease-in-out;
  width: 177.8px;
  position: absolute;
  bottom: 105px;
  left: -260px;
}

.section2-content2-bg-img3 {
  width: 303px;
  position: absolute;
  bottom: 60px;
  right: -295px;
}

.section2-content2-bg {
  width: 100%;
  padding-top: 48px;
  background: linear-gradient(3deg, #f7f7f7 536px, #FFF 100px);
}

.section2-content2-contents {
  max-width: 800px;
  margin: 0 auto;
}

.section2-content2-title {
  padding-top: 90px;
}

.section2-content2-title img {
  max-width: 168px;
}

.section2-content2-item-container {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  padding-top: 64px;
}

.section2-content2-item {
  padding: 0 2px;
  width: 23%;
  position: relative;
}

.section2-content2-item img {
  width: 100%;
  max-width: 159px;
  height: auto;
  padding-bottom: 16px;
}

.arrow {
  align-self: flex-start;
  padding-top: 16px;
  color: #eda539;
  font-size: 16px;
}


.section2-content2-item-container p {
  font-family: var(--font-kiwi);
  text-align: left;
  font-size: 13.5px;
}

.section2-content2-bottom {
  padding-top: 40px;
  padding-bottom: 80px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.section2-content2-bottom h4 {
  font-family: var(--font-kiwi);
  font-weight: 600;
  color: var(--color-pink);
}

@media (max-width: 768px) {
  .section2-content2-bg {
    background: linear-gradient(3deg, #f7f7f7 1200px, #FFF 100px);
  }
  .section2-content2-item-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .section2-content2-item {
    width: 80%;
  }
  .arrow {
    transform: rotate(90deg);
    margin: 0 auto;
  }
  .section2-content2-title {
    position: relative;
    z-index: 10;
  }
  
}
@media (max-width: 500px) {
  .section2-content2-bg {
    background: linear-gradient(3deg, #f7f7f7 1280px, #FFF 100px);
  }
}

/* セクション2-3 まはなの特徴*/
.section2-content3 {
  width: 100%;
  height: fit-content;
  margin: 0 auto;
  background-color: #fff;
  text-align: center;
  padding-top: 44px;
}

.section2-content3-bg {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  background-color: #fdf4d5;
  text-align: center;
  padding: 40px 48px 48px 48px;
  position: relative;
}

.section2-content3-bg-img1 {
  width: 193.7px;
  position: absolute;
  top: 0px;
  right: -250px;
}

.section2-content3-bg-img2 {
  width: 122.7px;
  position: absolute;
  bottom: 0;
  right: -250px;
}

.section2-content3-bg-img3 {
  display: inline-block; /* transformを効かせるため */
  transform-origin: top center; /* 根元を中心に回転 */
  animation: sway 8s infinite ease-in-out;
  width: 98.6px;
  position: absolute;
  top: 135px;
  right: -220px;
}

@media (max-width: 1200px) {
  .section2-content3-bg-img1 {
    width: 170px;
    top: 0px;
    right: -220px;
  }

  .section2-content3-bg-img2 {
    width: 108px;
    bottom: 0px;
    right: -220px;
  }

  .section2-content3-bg-img3 {
    width: 87px;
    top: 119px;
    right: -193px;
  }
}
@media (max-width: 768px) {
  .section2-content3-bg {
    padding: 40px 16px 48px 16px;
  }
  .section2-content3 {
    padding-top: 0px;
  }
}


.section2-content3-title {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.section2-content3-title img {
  position: absolute;
  top: -32px;
  left: 0;
  max-width: 103px;
}

.section2-content3-title h4 {
  font-family: var(--font-yomogi);
  font-weight: 400;
  color: var(--color-pink);
}

.section2-content3-text {
  padding-top: 32px;
  display: flex;
  flex-direction: column;
}

.section2-content3-text p {
  /*テキストの点線*/
  display: inline-block;
  padding: 0 8px 0 8px;
  font-family: var(--font-kiwi);
  font-weight: 400;
  color: var(--color-text);
  border-bottom: 1px solid transparent;
  border-image: repeating-linear-gradient(to right,
      #eda539 0,
      #eda539 11.33px,
      transparent 11.33px,
      transparent calc(11.33px + 5.67px)) 1;
}

.section2-content3-img {
  width: 72%;
  margin: 0 auto;
  background-image: url(./img/LP_section2_c3_t1_bg.png);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}



.section2-content3-img-items {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 80px;
}

.section2-content3-img-items-left {
  /*専門職が在籍のかたまり(2個)*/
  width: 50%;
}

.section2-content3-img-items-right {
  /*医療ニーズも安心のかたまり(2個)*/
  width: 50%;
}

.section2-content3-img-t1 {
  /*専門職が在籍の文字*/
  font-family: var(--font-yomogi);
  font-weight: 600;
  color: var(--color-pink);
  font-size: 1.25rem;
  padding-bottom: 16px;
  transform: rotate(-8.8deg);
}
.txt-dot_orange {
  position: relative;
}
.txt-dot_orange-img {
  position: absolute;
  top: -2px;
  left: 0;
  width: 18px;
  transform: translateY(-50%);
}

.txt-bg_dot::before {
  font-size: 0.5em;
  display: inline-flex;
  align-items: flex-end;
}

.section2-content3-img-t2 {
  /*医療ニーズも安心の文字*/
  font-family: var(--font-yomogi);
  font-weight: 600;
  color: var(--color-pink);
  font-size: 1.25rem;
  padding-bottom: 16px;
  transform: rotate(8.8deg);
}

.section2-content3-img-item {
  width: 50%;
  text-align: center;
}

.section2-content3-img-item img {
  /*人物画像*/
  width: 100%;
  max-width: 80px;
  height: auto;
}

.section2-content3-img-item p {
  /*役職名*/
  font-family: var(--font-yomogi);
  font-weight: 400;
  color: var(--color-pink);
}

.section2-content3-img-i1,
.section2-content3-img-i2 {
  /*人物画像＋役職名のかたまり*/
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.section2-content3-img-tt {
  /*手にハートの画像*/
  width: 100%;
  max-width: 64px;
  height: auto;
  align-self: flex-start;
  padding-top: 24px;
}
@media (max-width: 768px) {
  .section2-content3-title {
    flex-direction: column;
  }
  .section2-content3-title img {
    position:relative;
    top:0;
    transform:rotate(13deg);
  }
  .section2-content3-title h4 {
    white-space:nowrap;
  }
  .section2-content3-text {
    padding-top: 0px;
  }
  .section2-content3-text p{
    white-space:nowrap;
    padding-top: 16px;
  }
  .section2-content3-img-items {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding-top: 0;
  }
  .section2-content3-img {
    width: 100%;
    max-width: 300px;
    background-image: none;
    background-color: #fff;
    padding: 40px 0px;
    margin-top: 40px;
    border-radius: 200px;
  }
  .section2-content3-img-items-left {
    width: 100%;
  }
  .section2-content3-img-items-right {
    width: 100%;
  }
  .section2-content3-img-i1,
  .section2-content3-img-i2 {
    width:fit-content;
    margin: 0 auto;
  }
  .section2-content3-img-item {
    width: 100%;
  }
  .section2-content3-img-tt {
    margin: 0 auto;
  }
}

/* セクション2-4 まはなの思い*/
.section2-content4 {
  width: 100%;
  max-width: 800px;
  padding-top: 32px;
  margin: 0 auto;
  position: relative;
}

.section2-content4-bg {
  width: 198.9px;
  position: absolute;
  top: 120px;
  left: -300px;
}

@media (max-width: 1200px) {
  .section2-content4-bg {
    width: 175px;
    top: 106px;
    left: -244px;
  }
}

.section2-content4-title img {
  width: 100%;
  max-width: 104px;
}

.section2-content4-text h4 {
  font-family: var(--font-yomogi);
  font-weight: 600;
  padding-top: 32px;
  padding-bottom: 40px;
  color: var(--color-pink);
}

.section2-content4-items {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.section2-content4-left {
  width: 50%;
}

.section2-content4-left img {
  width: 100%;
  max-width: 324.4px;
  height: auto;
}

.section2-content4-right {
  width: 50%;
  text-align: left;
  align-self: center;
}

.section2-content4-right p {
  font-family: var(--font-kiwi);
  font-weight: 400;
  color: var(--color-text);
}
@media (max-width: 768px) {
  .section2-content4-items {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .section2-content4-left,
  .section2-content4-right {
    width: 80%;
  }
}

/* セクション3 運営会社*/
.section3 {
  width: 100%;
  padding-top: 56px;
  padding-bottom: 64px;
  background-color: #fdf4d5;
  text-align: center;
}

.section3-title {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 48px;
  position: relative;
}

.section3-title-bg-1 {
  width: 100%;
  max-width: 283.6px;
  position: absolute;
  top: -75px;
  right: -296px;
}

@media (max-width: 1200px) {
  .section3-title-bg-1 {
    max-width: 249px;
    top: -50px;
    right: -260px;
  }
}

.section3-title-img {
  width: 171px;
}

.section3-title p {
  font-family: var(--font-noto);
  font-weight: 400;
  font-size: 12px;
  color: var(--color-pink);
}

.section3-content {
  width: 80%;
  max-width: 1088px;
  padding-bottom: 64px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.section3-content-left {
  width: 55%;
  padding-right: 16px;
  position: relative;
}

.company-info__row {
  display: grid;
  grid-template-columns: 8em 1fr;
  padding: 6px 0;
  border-bottom: 1px solid #e6e6e6;
}

.company-info__label,
.company-info__value {
  font-family: var(--font-noto);
  font-weight: 400;
  font-size: 14px;
  color: var(--color-text);
  line-height: 28px;
}

.section3-content-right {
  width: 45%;
  height: 100%;
}

.section3-content-right iframe {
  width: 100%;
  height: 312px;
}

.section3-HP_btn {
  width: 100%;
  max-width: 601px;
  padding-right: 16px;
  margin-right: auto;
  text-align: right;
  position: absolute;
  bottom: -64px;
  right: 0;
}

.section3-HP_btn a {
  display: inline-block;
  width: fit-content;
  margin-top: -24px;
  background-color: var(--color-pink);
  padding: 8px 16px;
}

.section3-HP_btn a p {
  font-family: var(--font-noto);
  font-weight: 400;
  font-size: 14px;
  color: #fff;
}
@media (max-width: 768px) {
  .section3-content {
    flex-direction: column-reverse;
    align-items: center;
    gap: 40px;
  }
  .section3-content-left {
    width: 100%;
  }
  .section3-content-right {
    width: 100%;
  }
  .section3-HP_btn {
    position: relative;
    margin: 0 auto;
  }
}
@media screen and (max-width: 400px) {
  .company-info__row {
    grid-template-columns: 1fr;
  }
}

/* セクション3-1 メッセージ */
.section3-message {
  width: 100%;
  max-width: 800px;
  padding-top: 84px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.section3-message-bg-1 {
  width: 100%;
  max-width: 228.1px;
  position: absolute;
  bottom: 110px;
  left: -285px;
}

.section3-message-bg-2 {
  width: 100%;
  max-width: 170.8px;
  position: absolute;
  bottom: -3px;
  left: -320px;
}

.section3-message-bg-3 {
  width: 100%;
  max-width: 239.5px;
  position: absolute;
  bottom: 195px;
  left: -310px;
}

@media (max-width: 1200px) {
  .section3-message-bg-1 {
    max-width: 201px;
    bottom: 97px;
    left: -250px;
  }

  .section3-message-bg-2 {
    max-width: 150px;
    bottom: -3px;
    left: -281px;
  }

  .section3-message-bg-3 {
    max-width: 210px;
    bottom: 171px;
    left: -273px;
  }
}

.section3-message-line-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 48px;
}

.section3-message-line-container img {
  width: 100%;
  max-width: 100px;
  padding-right: 16px;
}

.section3-message-line {
  width: 100%;
  height: 1px;
  background-color: var(--color-pink);
}

.section3-message-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section3-message-text-left {
  width: 64%;
  text-align: left;
}

.section3-message-text-left h4 {
  font-family: var(--font-yomogi);
  font-weight: 600;
  padding-bottom: 24px;
  color: var(--color-pink);
  white-space: nowrap;
}

.section3-message-text-left p {
  font-family: var(--font-kiwi);
  font-weight: 400;
}

.section3-message-text-right {
  width: 36%;
  text-align: center;
  margin: 0 auto;
}

.section3-message-text-right img {
  width: 225px;
  height: 225px;
  border-radius: 100%;
  padding: 8px;
}

.section3-message-text-right p {
  font-family: var(--font-kiwi);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-pink);
}
@media (max-width: 768px) {
  .section3-message-line-container {
    padding: 0 16px;
  }
  .section3-message-text {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .section3-message-text-left,
  .section3-message-text-right {
    width: 80%;
  }
  .section3-message-text-left h4 {
    padding-top: 24px;
  }
}
/* セクション4 お問い合わせ */
.section4 {
  width: 100%;
  margin: 0 auto;
  padding-top: 84px;
  background-color: #fff;
}

.section4-title {
  width: 100%;
  text-align: center;
}

.section4-title img {
  width: 100%;
  max-width: 224px;
}

.section4-title p {
  font-family: var(--font-noto);
  font-weight: 400;
  font-size: 12px;
  color: var(--color-pink);
}

.section4-content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 24px 0;
  position: relative;
}

.section4-content-bg-1 {
  width: 100%;
  max-width: 272.9px;
  position: absolute;
  bottom: 50px;
  right: -340px;
}

.section4-content-info {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  background-color: #f7f7f7;
  padding: 12px 0;
}

.section4-content-info a,
.section4-content-info p {
  font-family: var(--font-zen);
  font-weight: 600;
  color: var(--color-pink);
}

.section4-content-info-title {
  font-size: 24px;
}

.section4-content-info-time {
  font-size: 16px;
}

.section4-tel-fax {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.section4-tel-fax a,
.section4-tel-fax p {
  font-size: 32px;
}

.section4-content-form {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 24px 0;
}

.section4-content-form h4 {
  font-family: var(--font-zen);
  font-weight: 400;
  font-size: 24px;
  color: var(--color-pink);
}

/* フォーム */
.section4-content-form-area {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 24px 0;
}
.section4-content-form-area table {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse; /* セルの境界線と余白をくっつける */
  border-spacing: 0; 
  margin-bottom:16px;
}
.section4-content-form-area form {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.section4-content-form-area table tr {
  display: flex;
  border: 1px solid #675c51;
  border-bottom: none;
}
.section4-content-form-area table tr:last-child {
  border-bottom: 1px solid #675c51;
}
.section4-content-form-area th {
  padding: 0 32px;
  width: 266px;
  text-align: left;
  display: flex;
  align-items: center;
}

.section4-content-form-area th p {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-zen);
  font-weight: 400;
  color: var(--color-text);
}
.section4-content-form-area th p .haveto {
  background-color: var(--color-pink);
  color: #fff;
  padding: 0 8px;
  border-radius: 4px;
}
.section4-content-form-area th p .any {
  color: #fff;
}

.section4-content-form-area td {
  text-align: right;
  width: calc(100% - 266px);
  border-bottom: none;
  border-left: 1px solid #675c51;
}

.section4-content-form-area form input,
.section4-content-form-area form textarea {
  line-height: 2.5;
  width: 100%;
  border: none;
  padding: 0 16px;
}
.section4-content-form-area form .spam {
  width: auto;
}

.section4-content-form-area form input[type="submit"] {
  width: 100%;
  max-width: 266px;
  margin: 16px auto;
  background-color: #cccccc;
  color: #000;
  padding: 8px 16px;
  border: none;
}

@media screen and (max-width: 1200px) {
  .section4-content-bg-1 {
    max-width: 240px;
    right: -250px;
  }
}
@media (max-width: 768px) {
  .section4-content-info {
    padding:12px 16px;
  }
  .section4-content-info-title {
    font-size: 20px;
  }
  .section4-content-info-time {
    font-size: 14px;
  }
  .section4-tel-fax {
    flex-direction: column;
    gap: 8px;
  }
  .section4-content-form-area {
    padding: 16px;
  }
  .section4-content-form-area table tr {
    flex-direction: column;
    margin-bottom: 16px;
  }
  .section4-content-form-area th {
    width: 100%;
    border-bottom: 1px solid #675c51;
  }
  .section4-content-form-area th p {
    justify-content: flex-end;
    gap: 24px;
  }
  .section4-content-form-area th p .haveto {
    background-color: #fff;
    color: var(--color-pink);
  }
  .section4-content-form-area td {
    width: 100%;
    border-bottom: 1px solid #675c51;
    border-left: none;
  }
  .section4-content-form-area table tr:last-child {
    border-bottom: none;
  }
  .section4-content-form-area form input,
.section4-content-form-area form textarea {
  font-size: 16px;
}
}

/* フッター */
footer {
  width: 100%;
  padding: 48px 0;
  background-color: var(--color-pink);
}

.footer-content {
  width: 100%;
  max-width: 246px;
  margin: 0 auto;
  text-align: center;
}

.footer-content-logo {
  width: 100%;
  margin: 0 auto;
}

.footer-content-logo img {
  width: 100%;
}

.footer-content-tel-fax {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-content-tel-fax a {
  font-family: var(--font-noto);
  font-weight: 400;
  font-size: 14px;
  color: #fff;
}

.footer-content-tel-fax p {
  font-family: var(--font-noto);
  font-weight: 400;
  font-size: 14px;
  color: #fff;
}