/*common
---------------------*/
body {
  color: #414141;
}
.active,
.active a {
  color: #7b7b7b !important;
}

.container .contents .inner a::before,
.container .contents a.btn::before {
  /* display: none; */
}
a.btn {
  white-space: nowrap;
  max-width: 250px;
}

section {
  flex-direction: column;
}

#header {
  .container {
    max-width: initial;
  }
}

.text-left {
  margin-right: auto;
}

.max-width {
  max-width: 960px;
  padding: 0 30px;
  box-sizing: content-box;
  margin: 0 auto;

  @media screen and (max-width: 768px) {
    box-sizing: initial;
  }
}

.title {
  font-size: 28px;
  color: #3095a3;
  margin-bottom: 30px;
  line-height: 1.5;

  @media screen and (max-width: 768px) {
    font-size: 16px;
    padding-bottom: 3px;
    border-bottom: 1px solid #d9d9d9;
    width: 100%;
  }
}

/* main contents
-------------------*/

/* menu_open
----------------------------*/
.btm {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.btm.show {
  /* overflow: visible;*/
}
.top {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.svg-icon {
  transition: transform 0.3s ease;
  width: 24px; /* アイコンの幅 */
  height: 24px; /* アイコンの高さ */
  vertical-align: middle; /* 垂直位置を中央に */
}
.svg-icon.hidden {
  display: none;
}

.container h2 {
  font-size: 20px;
}

#menu {

  .title {
    padding: 0 30px;
    font-size: 24px;
    max-width: 1000px;
    width: 100%;
    text-align: left;
    margin: 0 auto;

    @media screen and (max-width: 768px) {
      font-size: 16px;
    }
  }

  .container {
    padding: 0;
    width: 100%;
    max-width: initial;

    .contents-wrapper {
      background-color: #f0f7f3;
      margin-top: 40px;
      padding-bottom: 100px;
    }
  }

  .contents {
    padding: 50px 30px 0;
    max-width: 1000px;
    width: 100%;
    text-align: left;
    margin: 0 auto;

    @media screen and (max-width: 768px) {
      padding-top: 20px;
    }

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

  .section-common {
    margin: 50px auto 0;
    /* padding: 0 10px; */

    h2 {
      font-family: "Shippori Mincho B1";
      font-size: 20px;
      color: #3095a3;
      margin-left: 0;
      font-weight: bold;
      @media screen and (max-width: 768px) {
        font-size: 18px;
        text-align: left;
        margin-top: 0px;
      }
    }
  }
}

.section-gray {
  padding: 30px 0;
  width: 100%;
  background-color: #f9f9f9;
  @media screen and (max-width: 768px) {
    background-color: initial;
    padding: 0;
  }
}

#menu {
  .faq-container {
    margin: 50px auto 0;
    display: grid;
    row-gap: 25px;
    column-gap: 15px;
    margin-top: 50px;
    grid-template-columns: repeat(4, 1fr);

    @media screen and (max-width: 768px) {
      grid-template-columns: repeat(2, 1fr);
      width: 90%;
    }
  }
}

.faq-item {
  min-height: 40px;
  border-bottom: 1px solid #3095a3;
  cursor: pointer;
  display: flex;
  padding-bottom: 10px;
}

.faq-item:hover {
  /* transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15); */
}

.faq-link {
  display: inline-flex;
}

.faq-header {
  /* padding: 8px 0px; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.faq-title {
  color: #3095a3;
  font-size: 14px;
  font-weight: 600;
  flex: 1;
  margin-right: 15px;
  line-height: 1.25;
  @media screen and (max-width: 768px) {
    margin-right: 5px;
    font-size: 13px;
  }
}

.faq-arrow {
  width: 0;
  display: inline-block;
  vertical-align: middle;
  color: #3095a3;
  line-height: 1;
  width: 10px;
  height: 10px;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
  @media screen and (max-width: 768px) {
    width: 7px;
    height: 7px;
  }
}

.faq-arrow::after {
  content: "";
  position: absolute;
  top: -11px;
  left: -4px;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 10px solid white;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #fafafa;
}

.faq-item.active .faq-content {
  max-height: 300px;
  padding: 20px;
}

.faq-content-inner {
  color: #666;
  font-size: 14px;
  line-height: 1.8;
}

@media (min-width: 1024px) {
  .faq-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 480px) {
}

.section-common-width {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;

  @media screen and (max-width: 768px) {
    /* width: 100%; */
  }
}

/* Info section styles */
.info-section {
}

.info-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 15px;
}

.info-text {
  /* padding: 60px 50px; */
}

/* Case Swiper styles */
.case-swiper {
  width: 100%;
  max-width: 1200px; /* 3枚の画像と余白を考慮 */
  margin: 0 auto;
  padding: 60px 0;
  position: relative;
  overflow: hidden; /* 3枚のみ表示するため横方向をhidden */
}

.case-swiper .swiper-wrapper {
  display: flex;
  align-items: center;
}

.case-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: all 0.3s ease;
  transform: scale(0.7); /* 左右の画像の大きさ（0.7 = 70%） */
}

/* 左右の画像のサイズ */
.case-swiper .swiper-slide .case-image {
  overflow: visible;
  border-radius: 10px;
  width: 400px; /* 基準となる画像の幅 */
  height: auto; /* 高さを自動調整で全て表示 */
}

/* 真ん中の画像のサイズ */
.case-swiper .swiper-slide-active {
  opacity: 1;
  z-index: 2;
  transform: scale(1.2); /* 真ん中の画像の大きさ（1.2 = 120%） */
}

.case-swiper .case-image img {
  width: 100%;
  height: auto;
  object-fit: contain; /* 画像全体を表示 */
  display: block;
}

/* ページネーションのスタイル */
.case-button-wrapper .swiper-pagination {
  position: absolute !important;
  display: inline-flex;
  align-items: center;
  bottom: auto !important;
  top: 72.5%; /* PC版：上からの位置（%またはpx） */
  left: 50%; /* PC版：左からの位置（%またはpx） */
  transform: translate(-50%, -50%); /* 位置の微調整 */
  width: auto !important;
  z-index: 10;
}

/* タブレット用（768px～1024px） */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .case-button-wrapper .swiper-pagination {
    top: 50%; /* タブレット：上からの位置 */
    left: 20%; /* タブレット：左からの位置 */
  }
}

/* ページネーションのドットスタイル */
.swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  background: #D9D9D9 !important;
  opacity: 1 !important;
  margin: 0 5px !important;
  border-radius: 50%;
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  background: #3095a3 !important;
}

.case-swiper .swiper-button-prev,
.case-swiper .swiper-button-next {
  color: #414141;
  background: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #414141;
  top: 50%;
  transform: translateY(-50%);
}

/* ナビゲーションボタンの位置（余白の調整） */
.case-swiper .swiper-button-prev {
  left: calc(50% - 300px); /* 値を変更して位置調整 */
}

.case-swiper .swiper-button-next {
  right: calc(50% - 300px); /* 値を変更して位置調整 */
}

.case-swiper .swiper-button-prev:after,
.case-swiper .swiper-button-next:after {
  font-size: 20px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .case-swiper .swiper-button-prev,
  .case-swiper .swiper-button-next {
    display: none;
  }

  /* モバイルでの調整 */
  .case-swiper {
    padding: 20px 0;
  }

  .case-swiper .swiper-slide {
    transform: scale(1.0); /* モバイルでは全て同じサイズ */
    opacity: 1; /* 全て不透明に */
  }

  .case-swiper .swiper-slide .case-image {
    width: 90vw; /* 画面幅の90%を使用 */
    max-width: 400px; /* 最大幅を制限 */
    height: auto; /* 高さを自動調整 */
    margin: 0 auto; /* 中央配置 */
  }

  .case-swiper .swiper-slide-active {
    transform: scale(1.0); /* アクティブも同じサイズ */
  }
}

.info-title {
  color: #3095a3;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.info-description {
  color: #414141;
  font-size: 16px;
  line-height: 1.8;
}

.info-image {
}

@media (max-width: 768px) {
  .info-content {
    grid-template-columns: 1fr;
    /* width: 90%; */
    margin: 0 auto;
  }

  .info-text {
    /* padding: 40px 30px; */
    /* order: 2; */
  }

  .info-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .info-description {
    font-size: 14px;
    margin-top: 30px;
  }

  .info-image {
    /* height: 250px;
    order: 1; */
  }
}

@media (max-width: 480px) {
  .info-text {
    /* padding: 30px 20px; */
  }

  .info-title {
    font-size: 20px;
  }
  .info-image {
    /* height: 250px; */
  }
}

/* Mechanism section styles */
.mechanism-section {
  @media screen and (max-width: 768px) {
    width: 100%;
  }
}

.mechanism-title {
  color: #3095a3;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: left;
  @media screen and (max-width: 768px) {
    width: 90%;
    margin: 0 auto 30px !important;
  }
}

.mechanism-container {
  background: #a6cfcd;
  /* border-radius: 12px; */
  padding: 40px;
  position: relative;

  @media screen and (max-width: 767px) {
    padding: 30px;
  }
}

.mechanism-step {
  background: white;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mechanism-step:last-of-type {
  margin-bottom: 0;
}

.step-content {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  /* align-items: center; */
  min-height: 200px;
  padding: 25px 15px;
  @media screen and (max-width: 768px) {
    padding: 20px 5px 10px;
  }
}

.step-text {
  flex-direction: row;
  column-gap: 30px;
  /* padding: 30px 40px; */
}

.step-number {
  font-family: "Benne";
  color: #3095a3;
  font-size: 40px;
  /* margin-bottom: 15px; */
}

.step-description {
  color: #333;
  font-size: 16px;
  margin-top: 15px;
  line-height: 1.25;
}

.step-image {
}

.step-01 .step-image {
}

.step-02 .step-image {
}

.step-03 .step-image {
}

.mechanism-arrow {
  display: flex;
  justify-content: center;
  margin: 20px auto;
}

.arrow-down {
  width: 0;
  display: inline-block;
  vertical-align: middle;
  color: #0b7280;
  line-height: 1;
  width: 35px;
  height: 35px;
  border: 3px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
  @media screen and (max-width: 768px) {
    width: 20px;
    height: 20px;
  }
}

.explanation {
  margin-top: 30px;
  @media screen and (max-width: 768px) {
    width: 100%;
  }
}

.explanation p {
}

.explanation p:last-child {
  margin-bottom: 0;
}

.highlight-text {
  /* background: linear-gradient(transparent 60%, #ffeb3b 60%);
      font-weight: 600; */
}

@media (max-width: 768px) {
  .mechanism-container {
    padding: 20px;
  }

  .step-content {
    grid-template-columns: 1fr;
  }

  .step-text {
    /* padding: 20px 25px; */
    margin-bottom: 15px;
    column-gap: 10px;
    order: 2;
  }

  .step-image {
    order: 2;
  }

  .step-number {
    font-size: 36px;
    margin: auto 0;
  }

  .step-description {
    font-size: 14px;
    margin-top: 0;
  }

  .mechanism-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .explanation mechanism-explanation {
    /* padding: 30px; */
    font-size: 14px;
    width: 90%;
    margin: 30px auto 0;
  }
}

@media (max-width: 480px) {
  .mechanism-container {
    /* padding: 15px; */
  }

  .step-text {
    /* padding: 15px 20px; */
  }

  .explanation mechanism-explanation {
    /* padding: 15px; */
  }
}

.coolsculpting-explanation {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

/* CoolSculpting section styles */
.coolsculpting-section {
  margin-top: 50px;

  @media screen and (max-width: 768px) {
    margin: 0 auto;
  }

  .section-common {
    @media screen and (max-width: 768px) {
      margin-top: 0 !important;
    }
  }
}

.coolsculpting-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.coolsculpting-title {
  color: #3095a3;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

.coolsculpting-sub-title {
  color: #3095a3;
  font-size: 18px;
  font-weight: 700;
  @media screen and (max-width: 768px) {
    margin-top: 12px;
  }
}

.coolsculpting-description {
  color: #333;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 400;
}

.coolsculpting-description p {
  /* margin-bottom: 15px; */
}

.coolsculpting-description p:last-child {
  margin-bottom: 0;
}

.coolsculpting-image {
}

@media (max-width: 768px) {
  .coolsculpting-content {
    grid-template-columns: 1fr;
  }

  .coolsculpting-text {
    margin-top: 20px;
  }

  .coolsculpting-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .coolsculpting-description {
    font-size: 14px;
  }

  .coolsculpting-image {
  }
}

@media (max-width: 480px) {
  .coolsculpting-title {
    font-size: 20px;
  }

  .coolsculpting-description {
    /* font-size: 15px; */
  }
}

/* CoolSculpting Features section styles */
.features-section {
}

.features-content {
  flex-direction: row;
  flex: 1;
  @media screen and (max-width: 768px) {
    flex-direction: column;
  }
}

.features-text {
  /* padding: 60px 50px; */
  background: linear-gradient(90deg, #ffffff 0%, #e3f1f2 100%);
  justify-content: space-around;
}

.features-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.3;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  @media screen and (max-width: 768px) {
    gap: 5px;
    margin-top: 30px;
  }
}

.feature-item {
  flex-direction: row;
  align-items: center;
}

.feature-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  @media screen and (max-width: 768px) {
    width: 15px;
    height: 15px;
  }
}

.feature-text {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

.features-image {
  img {
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 768px) {
  .features-content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 20px;
  }

  .features-text {
    background: initial;
    width: 100%;
  }

  .features-title {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .feature-text {
    font-size: 14px;
  }

  .features-image {
    max-width: 100%;
  }

  .features-image img {
    width: 100%;
    height: auto;
  }

  .features-list {
    gap: 15px;
  }

  .feature-item {
    gap: 10px;
  }
}

/* Point Detail section styles */
#menu .point-detail-section:not(:first-child) {
  /* margin-top: 0; */
}
.point-detail-section {
  margin-top: 0;

  @media screen and (max-width: 768px) {
    width: 90%;
    margin: 30px auto 0 !important;
  }
}

.point-detail-image {
  img {
    object-fit: cover;
    height: 100%;
  }
}
#menu {
  .point-detail-text {
    /* padding: 60px 50px; */

    padding-left: 50px;
    justify-content: center;

    @media screen and (max-width: 768px) {
      background: initial;
      padding-left: 0px;
    }

    h2 {
      font-size: 24px;
      margin-bottom: 20px;
      @media screen and (max-width: 768px) {
        border-bottom: none !important;
        margin-bottom: 0 !important;
      }
      .point-number {
        font-size: 36px;
      }
      .point-text {
        font-size: 16px;
      }
    }

    .point-detail-title {
      font-size: 16px;
      @media screen and (max-width: 768px) {
        font-size: 14px;
      }
    }
  }
}

.point-detail-02-section {
  .point-detail-text {
    padding-right: 50px;

    @media screen and (max-width: 768px) {
      padding-right: 0px;
    }
  }
}

.point-detail-title {
  color: #3095a3;
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 30px;
  line-height: 1.3;
  letter-spacing: 2px;
}

.point-detail-description {
  color: #333;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 400;
}

@media (max-width: 768px) {
  .point-detail-image {
    order: 1;
  }

  .point-detail-text {
    padding: 15px 0 0;
    order: 2;
  }

  .point-detail-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .point-detail-description {
    font-size: 16px;
    margin-top: 12px;
  }
}

@media (max-width: 480px) {
  .point-detail-text {
    padding: 15px 00;
    font-size: 24px;
    span {
      font-size: 36px;
    }
  }

  .point-detail-title {
    font-size: 20px;
  }

  .point-detail-description {
    font-size: 15px;
  }
}

/* Point Detail 02 section styles */
.point-detail-02-section {
}

.point-detail-02-content {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
}

.point-detail-02-text {
  background: linear-gradient(90deg, #ffffff 0%, #e3f1f2 100%);
}

.point-detail-02-title {
  color: #3095a3;
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 30px;
  line-height: 1.3;
  letter-spacing: 2px;
}

.point-detail-02-description {
  color: #333;
  font-size: 14px;
  /* line-height: 1.8; */
  font-weight: 400;
}

.point-detail-02-image {
}

@media (max-width: 768px) {
  .point-detail-02-content {
    grid-template-columns: 1fr;
  }

  .point-detail-02-text {
    padding: 40px 30px;
    order: 1;
  }

  .point-detail-02-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .point-detail-02-description {
    font-size: 16px;
  }

  .point-detail-02-image {
    height: 250px;
    order: 2;
  }
}

@media (max-width: 480px) {
  .point-detail-02-text {
    padding: 30px 20px;
  }

  .point-detail-02-title {
    font-size: 20px;
  }

  .point-detail-02-description {
    font-size: 15px;
  }
}

/* Point Detail 03 section styles */
.point-detail-03-section {
}

.point-detail-03-content {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
}

.point-detail-03-image {
}

.point-detail-03-text {
  background: linear-gradient(90deg, #e3f1f2 0%, #ffffff 100%);
}

.point-detail-03-title {
  color: #3095a3;
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 30px;
  line-height: 1.3;
  letter-spacing: 2px;
}

.point-detail-03-description {
  color: #333;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 400;
}

@media (max-width: 768px) {
  .point-detail-03-content {
    grid-template-columns: 1fr;
  }

  .point-detail-03-image {
    height: 250px;
    order: 1;
  }

  .point-detail-03-text {
    padding: 40px 30px;
    order: 2;
  }

  .point-detail-03-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .point-detail-03-description {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .point-detail-03-text {
    padding: 30px 20px;
  }

  .point-detail-03-title {
    font-size: 20px;
  }

  .point-detail-03-description {
    font-size: 15px;
  }
}

.seek-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background-color: white;
  width: 100%;
  padding: 30px;

  @media screen and (max-width: 768px) {
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.8);
  }
}

.seek-item {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 20px;
}

.seek-text {
  color: #000000;
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
}

@media (max-width: 768px) {
  .seek-item {
    display: grid;
    grid-template-columns: 15px 1fr;
    gap: 15px;
  }

  .seek-icon {
    width: 18px;
    height: 18px;
  }

  .seek-text {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .seek-text {
    font-size: 16px;
  }
}

.treatment-areas-wrapper {
  margin-top: 30px;
}

/* Comparison table styles */
.comparison-section {
  width: 90%;
  max-width: 1150px;
}

.comparison-table {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin: 30px auto 0;
  width: 90%;

  @media screen and (max-width: 768px) {
    width: 100%;
    margin-top: 0;
  }
}

.comparison-header {
  display: contents;
  @media screen and (max-width: 768px) {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
  > div:not(:last-child) {
    border-right: 5px solid white;
  }
  > div {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;

    @media screen and (max-width: 768px) {
      padding: 10px;
    }
  }
}

.comparison-header-empty {
  background: #a6cfcd;
}

.comparison-header-aesthetic {
  background: #a9acac;
}

.comparison-header-medical {
  background: #e86e63;
}

.comparison-row {
  display: contents;

  > div {
    display: flex;
    padding: 25px 20px;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 16px;
    border-top: 5px solid white;
    @media screen and (max-width: 768px) {
      padding: 15px 10px;
      font-size: 14px;
      border-top: 2px solid white;
    }
  }
  > div:not(:last-child) {
    border-right: 5px solid white;
    @media screen and (max-width: 768px) {
      border-right: 2px solid white;
    }
  }
}

.comparison-category {
  background: #c0dfdf;
}

.comparison-aesthetic {
  background: #d4d4d4;
  padding: 25px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 16px;
  text-align: center;
  border-top: 2px solid white;
  line-height: 1.5;
}

.comparison-medical {
  background: #f2cac6;
  padding: 25px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 16px;
  text-align: center;
  border-top: 2px solid white;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .comparison-section {
    /* padding: 0 15px; */
  }

  .comparison-table {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2px;
    margin-bottom: 2px;
  }

  .comparison-category,
  .comparison-aesthetic,
  .comparison-medical {
    padding: 20px 15px;
    font-size: 14px;
    border-top: none;
  }
}

@media (max-width: 480px) {
  .comparison-category,
  .comparison-aesthetic,
  .comparison-medical {
    padding: 15px 10px;
    font-size: 13px;
  }
}

.comparison-note {
  font-size: 16px;
  color: #414141;
  margin-top: 30px;
  margin-left: auto;
  width: 95%;
  @media screen and (max-width: 768px) {
    font-size: 14px;
    width: 100%;
  }
}

.case-section {
  @media screen and (max-width: 768px) {
    width: 90%;
    margin: 0 auto;
  }
}

.case-contents {
  margin: 30px auto 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1200px;
  overflow: hidden; /* 横方向のはみ出しを防ぐ */

  @media screen and (max-width: 768px) {
    max-width: initial;
    width: 100%;
    margin-top: 0;
  }
}

/* 通常の画像表示（Swiper無効時） */
.case-contents .case-image {
  width: 100%;
}

.case-contents .case-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Case button wrapper styles */
.case-button-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  flex-direction: row-reverse;
  position: relative; /* ページネーションの絶対配置の基準 */
  width: 80%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  min-height: 50px; /* ページネーション用の最小高さ */
}

.case-button-wrapper .reason-button {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .case-button-wrapper {
    flex-direction: column-reverse;
    align-items: center;
    margin-top: 0;
  }

  .case-button-wrapper .swiper-pagination {
    position: relative !important;
    top: auto;
    left: auto;
    transform: none;
    display: block;
    text-align: center;
  }
}


/* 20240916 swiper
---------------------*/
	/* swiper
 	------------------*/
	.swiper-container {
		width: 100%;
		height: auto;
	}

	.swiper-slide {
		width: auto;
	}

	/* Swiper全体の設定 */
	.swiper-container {
    width: 100%;
    height: auto;
    overflow: hidden; /* スライダーの中身がはみ出ないようにする */
	}

/* スライドを横並びにする設定 */
.swiper-wrapper {
    display: flex; /* スライドを横並びにする */
    flex-wrap: nowrap; /* ラップを防ぐ */
    transition: transform 0.3s ease;
}

/* 各スライドのスタイル */
.swiper-slide {
    flex-shrink: 0; /* スライドが縮まないようにする */
    width: auto; /* スライドの幅を自動にする */
    margin-right: 10px; /* スライド間のスペースを設定 */
}

.swiper-wrapper {
  display: flex;
  flex-direction: row;
}

/*transformを無効化する*/
.swiper-container.slider_container {
    transform: none !important;
}

.swiper-pagination-bullet {
    width: 10px!important;
    height: 10px!important;
    background: #D9D9D9!important;
    opacity: 0.5;
    border-radius: 50%;
    display: inline-block;
    margin: 0 4px;
}

.swiper-pagination-bullet-active {
    background: #74B8C1!important;
    opacity: 1;
}

.reasons-section {
  margin-top: 50px;
  width: 100%;

  @media screen and (max-width: 768px) {
    margin-top: 0;
  }
}

#menu .reasons-title {
  max-width: 1200px;
  width: 90%;
  margin-left: auto !important;
  @media screen and (max-width: 768px) {
    margin-right: auto;
  }
}
.reason-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 90%;
  margin-left: auto;
  /* min-height: 500px; */
  @media screen and (max-width: 768px) {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .reason-image {
    width: 100%;
    max-width: 750px;
  }
}

.reason-content:not(:last-of-type) {
  @media screen and (max-width: 768px) {
    padding-bottom: 80px;
  }
}

.reason-content:nth-child(2n) {
  background: #ffffff;
  margin-left: initial;
  margin-right: auto;

  .reason-text {
    order: 2;
  }

  .reason-image {
    margin-left: initial;
  }

  .reason-image img {
    border-radius: 0 0 20px 0;
  }
}

.reason-text {
  /* padding: 60px 50px; */
}

.reason-header {
  margin-bottom: 30px;
}

.reason-subtitle {
  color: #333;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.reason-number {
  color: #666;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

.reason-title {
  color: #3095a3;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;

  @media screen and (max-width: 768px) {
    font-size: 18px;
  }
}

.reason-description {
  font-size: 16px;
  @media screen and (max-width: 768px) {
    font-size: 14px;
  }
}

.reason-description p:last-child {
  margin-bottom: 0;
}

.reason-button {
  margin-top: 30px;
  margin-left: initial;
  @media screen and (max-width: 768px) {
    margin-top: 30px;
  }
}

.medical-slimming-link {
  display: inline-block;
  padding: 12px 30px;
  background: transparent;
  border: 2px solid #3095a3;
  border-radius: 25px;
  color: #3095a3;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.medical-slimming-link::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background: #3095a3;
  transition: all 0.3s ease;
}

.medical-slimming-link:hover {
  background: #3095a3;
  color: white;
}

.medical-slimming-link:hover::before {
  background: white;
}

.reason-image {
  margin-bottom: auto;
}

.reason-image img {
  border-radius: 0 0 0 20px;
}

@media (max-width: 768px) {
  .reason-content {
    grid-template-columns: 1fr;
  }

  .reason-description {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .reason-image {
    /* height: 300px; */
    order: 1;
    width: 90%;
    margin-left: auto;
  }
}

@media (max-width: 480px) {
  .reason-description {
    font-size: 14px;
  }

  .medical-slimming-link {
    padding: 10px 25px;
    font-size: 14px;
  }
}

/* Treatment Flow section styles */
.treatment-flow-section {
  /* max-width: 900px;
  margin: 60px auto 0;
  padding: 0 20px; */
}

.treatment-flow-title {
  color: #3095a3;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .treatment-areas-section {
    width: 90%;
    margin: 0 auto;
  }
}

.treatment-flow-title {
  margin-bottom: 20px;
}

.flow-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  @media screen and (max-width: 768px) {
    gap: 10px;
  }
}

.flow-step {
  border-radius: 12px;
  border: 1px solid #74b8c1;
}

.flow-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* max-height: 150px;
  height: 100%; */
}

.flow-text {
  padding: 25px 20px;
}

.flow-step-header {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.flow-number {
  width: 35px;
  height: 35px;
  background: #3095a3;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

.flow-step-title {
  color: #3095a3;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.flow-description {
  color: #333;
  font-size: 14px;
  margin-bottom: 20px;
  margin-left: 45px;
  @media screen and (max-width: 768px) {
    margin-left: 0;
    margin-bottom: 10px;
  }
}

.flow-button {
  display: inline-block;
  padding: 5px 0;
  background: #3095a3;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  max-width: 200px;
  text-align: center;
  box-sizing: content-box;
  margin: 0 auto;
  min-width: 200px;
}

.flow-button::after {
  content: ">";
  margin-left: 10px;
  font-weight: bold;
}

.flow-button:hover {
  background: #1a9b94;
  transform: translateY(-2px);
}

.flow-image {
  /* height: 200px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; */
  img {
    border-radius: 0 12px 12px 0;
    height: 100%;
    object-fit: cover;
    @media screen and (max-width: 768px) {
      border-radius: 12px 12px 0 0;
    }
  }
}

.flow-step:nth-child(1) .flow-image {
}

.flow-step:nth-child(3) .flow-image {
}

.flow-step:nth-child(5) .flow-image {
}

.flow-step:nth-child(7) .flow-image {
}

.flow-step:nth-child(9) .flow-image {
}

.flow-step:nth-child(11) .flow-image {
}

.flow-arrow {
  display: flex;
  justify-content: center;
  margin: 10px auto;
}

.flow-arrow-down {
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 20px solid #d9d9d9;
}

@media (max-width: 768px) {
  .treatment-flow-section {
    padding: 0 15px;
  }

  .treatment-flow-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .flow-content {
    grid-template-columns: 1fr;
  }

  .flow-text {
    padding: 30px 25px;
    order: 2;
  }

  .flow-image {
    height: 150px;
    order: 1;
  }

  .flow-step-title {
    font-size: 20px;
  }

  .flow-button {
    padding: 10px 25px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .flow-text {
    padding: 25px 20px;
  }

  .flow-step-header {
    gap: 15px;
    margin-bottom: 10px;
  }

  .flow-number {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .flow-step-title {
    font-size: 18px;
  }
}

/* Medical Information Section Styles */
.medical-info-section {
}

.medical-info-table {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  max-width: 1150px;
  width: 90%;
  margin: 25px auto 0;

  @media screen and (max-width: 768px) {
    width: 100%;
    margin-top: 0;
  }
}

.medical-info-row {
  display: grid;
  grid-template-columns: 300px 1fr;
  border-bottom: 5px solid white;

  @media screen and (max-width: 768px) {
    grid-template-columns: 110px 1fr;
  }

  > div {
    border-radius: 4px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 25px;

    @media screen and (max-width: 768px) {
      padding: 15px 5px;
    }
  }

  .medical-info-content {
    align-items: baseline;
  }
}

.medical-info-row:last-child {
  border-bottom: none;
}

.medical-info-label {
  background: #3095a3;
  color: white;
  border-right: 5px solid white;
  @media screen and (max-width: 768px) {
    /* border-right: 2px solid white; */
  }
}

.medical-info-content {
  background: #c0dedf;
  color: #414141;
}

@media (max-width: 768px) {
  .medical-info-row {
    /* grid-template-columns: 1fr; */
  }

  .medical-info-label {
    padding: 20px 20px;
    font-size: 18px;
  }

  .medical-info-content {
    padding: 20px 20px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .medical-info-label {
    /* padding: 15px 15px; */
    font-size: 16px;
  }

  .medical-info-content {
    /* padding: 15px 15px; */
    font-size: 14px;
  }
}

.medical-info-title {
  margin-bottom: 30px;
}

/* Safety section styles */
.safety-section {
  @media screen and (max-width: 768px) {
    width: 90%;
    margin: 0 auto;
  }
}

.safety-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 400px;
  gap: 20px;
}

.safety-text {
  margin-bottom: auto;
  @media screen and (max-width: 768px) {
    width: 100%;
  }
}

.safety-title {
  color: #3095a3;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.3;
}

.safety-description {
  color: #333;
  font-size: 14px;
}

.safety-description p {
  /* margin-bottom: 20px; */
}

.safety-description p:last-child {
  margin-bottom: 0;
}

.safety-image img {
}

@media (max-width: 768px) {
  .safety-content {
    grid-template-columns: 1fr;
  }
  .safety-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .safety-description {
    font-size: 16px;
  }

  .safety-image {
  }
}

@media (max-width: 480px) {
  .safety-title {
    font-size: 20px;
  }

  .safety-description {
    font-size: 15px;
  }
}

/* FAQ Detailed section styles - Enhanced responsive */
.faq-detailed-section {
}

.faq-detailed-container {
  @media screen and (max-width: 768px) {
    width: 100%;
  }
}

.faq-detailed-title {
  color: #3095a3;
  font-size: 32px;
  font-weight: 700;
  /* margin-bottom: 50px; */
  text-align: left;
}

.faq-detailed-list {
  display: flex;
  flex-direction: column;
  gap: 0;

  @media screen and (max-width: 768px) {
    background: #f0f7f3;
    padding: 0 15px 30px;
  }
}

.faq-detailed-item {
  border-bottom: 1px solid #e5e5e5;
  transition: all 0.3s ease;
}

.faq-detailed-header {
  padding: 30px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  transition: all 0.3s ease;
}

.faq-detailed-header:hover {
  opacity: 0.3;
}

.faq-detailed-question {
  color: #333;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  flex: 1;
  margin-right: 20px;
}

.faq-detailed-arrow {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-detailed-item.active .faq-detailed-arrow {
  transform: rotate(180deg);
}

.faq-detailed-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-detailed-item.active .faq-detailed-content {
  max-height: 300px;
  padding-bottom: 30px;
}

.faq-detailed-answer {
  color: #666;
  font-size: 18px;
}

/* Tablet responsive (768px and below) */
@media (max-width: 768px) {
  .faq-detailed-section {
    margin: 40px auto 0;
    /* background: #f0f7f3; */
  }

  .faq-detailed-title {
    font-size: 26px;
    /* margin-bottom: 35px; */
    /* text-align: center; */
    width: 90%;
    margin: 0 auto 30px !important;
  }

  .faq-detailed-header:hover {
    margin: 0 -15px;
    padding: 25px 15px;
  }

  .faq-detailed-question {
    font-size: 16px;
    margin-right: 15px;
    line-height: 1.5;
  }

  .faq-detailed-answer {
    font-size: 15px;
    padding-right: 30px;
    line-height: 1.7;
  }

  .faq-detailed-item.active .faq-detailed-content {
    padding-bottom: 25px;
    max-height: 350px;
  }
}

/* Mobile responsive (480px and below) */
@media (max-width: 480px) {
  .faq-detailed-section {
    margin: 30px auto 0;
  }

  .faq-detailed-title {
    font-size: 22px;
    /* margin-bottom: 25px;
    text-align: center; */
  }

  .faq-detailed-header {
    padding: 20px 0;
    align-items: flex-start;
  }

  .faq-detailed-header:hover {
    margin: 0 -10px;
    padding: 20px 10px;
  }

  .faq-detailed-question {
    font-size: 15px;
    margin-right: 10px;
    line-height: 1.4;
    font-weight: 600;
  }

  .faq-detailed-arrow {
    margin-top: 2px;
  }

  .faq-detailed-arrow svg {
    width: 20px;
    height: 20px;
  }

  .faq-detailed-answer {
    font-size: 14px;
    padding-right: 20px;
    line-height: 1.6;
  }

  .faq-detailed-item.active .faq-detailed-content {
    padding-bottom: 20px;
    max-height: 400px;
  }
}

/* Extra small mobile (360px and below) */
@media (max-width: 360px) {
  .faq-detailed-section {
    padding: 0 8px;
  }

  .faq-detailed-title {
    font-size: 20px;
    /* margin-bottom: 20px; */
  }

  .faq-detailed-header {
    padding: 18px 0;
  }

  .faq-detailed-question {
    font-size: 14px;
    margin-right: 8px;
  }

  .faq-detailed-answer {
    font-size: 13px;
    padding-right: 15px;
  }

  .faq-detailed-item.active .faq-detailed-content {
    padding-bottom: 18px;
  }
}

/* Large screens (1200px and above) */
@media (min-width: 1200px) {
  .faq-detailed-title {
    font-size: 36px;
    /* margin-bottom: 60px; */
  }
}

/* Improved touch targets for mobile */
@media (max-width: 768px) {
  .faq-detailed-header {
    min-height: 90px;
    display: flex;
    align-items: center;
  }

  .flow-button,
  .medical-slimming-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
.reason-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin-top: 50px;
  background: #f0f7f3;
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
  margin-top: 30px;

  @media screen and (max-width: 768px) {
    grid-template-columns: 1fr;
    box-shadow: initial;
    margin-top: 0;
  }
}

.reason-content::nth-child(2n) {
  margin-right: auto;
  margin-left: initial;
}

.reason-text {
  padding: 20px 20px 20px 50px;
  @media screen and (max-width: 768px) {
    padding: 0;
  }
}

.reason-header {
  margin-bottom: 30px;
}

.reason-subtitle {
  color: #333;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.reason-number {
  color: #666;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

.reason-description {
  color: #333;
  font-size: 14px;
  line-height: 1.8;
  /* margin-bottom: 40px; */
}

.reason-description p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .header_sp .header_sp_wrap {
    background: none;
  }
}

/* PCでの表示設定（デフォルト） */
.sp_none {
  display: flex;
}

.pc_none {
  display: none;
}

/* SPでの表示設定 */
@media screen and (max-width: 768px) {
  .sp_none {
    display: none !important;
  }

  .pc_none {
    display: flex;
  }
}

.sp_none {
  &.info-content {
    display: grid;
  }
  &.safety-content {
    display: grid;
  }
  &.coolsculpting-content {
    display: grid;
  }
}

.case_slider_btn_3 {
  margin-top: 20px;
  display: flex;
  padding: 11px 20px;
  align-items: center;
  gap: 18px;

  border-radius: 4px;
  border: 1px solid var(--Text-, #414141);

  color: var(--Text-, #414141);
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 1.2px;
  max-width: 150px;
  margin-left: auto;
}

#fat-dissolving {
  .coolsculpting-title {
    max-width: 1200px;
    width: 90%;
    margin-left: auto !important;

    @media screen and (max-width: 768px) {
      width: 100%;
    }
  }
}

/*auto x scroll*/
.img-box {
  overflow: hidden;
}
.img-box ul {
  animation: scroll 20s linear infinite;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/*common
---------------------*/

#clinic,
#clinic01 {
  background: #f9f9f9;
  flex-direction: column;
}

.img-box {
  display: flex;
  justify-content: center;
  width: 1385px;
}
.image {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.img-box img {
  border-radius: 8px;
  width: 460px;
}

#clinic .contents .inner,
#clinic01 .contents .inner {
  /*width: 48%;*/
}

#reserve .contents .inner .text02 {
  margin-bottom: 0;
}

.container .contents .inner a::before {
  content: none;
}
.container .contents .inner a {
  border-radius: 4px;
  border: 1px solid #6e6e6e;
  /*background: #F9F9F9;*/
  color: #6e6e6e;
  padding: 10px 20px;
  transition: background 0.5s;
  @media screen and (max-width: 768px) {
    padding: 0;
  }
}
.container .contents .inner a:hover {
  background-color: #8f8f8f;
  border-color: #8f8f8f;
  color: #fff;
}

/*sec01
---------------------*/
#clinic,
#clinic01 {
  padding-top: 160px;
}
#clinic .container,
#clinic01 .container {
  padding: 50px 150px 0;
}

#clinic .contents {
  /*border-bottom:1px solid #C8C8C8;
	padding-bottom: 160px;*/
}
#clinic .contents .inner {
  display: flex;
  /*width: 530px;*/
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
#clinic .contents .inner dl {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  align-self: stretch;
}
#clinic .contents .inner dl dt {
  width: 90px;
}

#clinic .contents .inner:nth-child(1) {
}

#clinic .contents .inner:nth-child(2) {
}

#clinic .contents .inner iframe {
  filter: grayscale(1);
}

/*sec02
---------------------*/
#clinic01 .contents {
  /*padding-bottom: 160px;*/
}
#clinic01 .contents .inner {
  display: flex;
  /*width: 530px;*/
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
#clinic01 .contents .inner dl {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  align-self: stretch;
}
#clinic01 .contents .inner dl dt {
  width: 90px;
}

#clinic01 .contents .inner iframe {
  filter: grayscale(1);
}

#clinic .contents .inner.sp,
#clinic01 .contents .inner.sp {
  display: none;
}

/*  20240913
----------------------------*/
/*clinic reserve btn*/
.container .contact_btn {
}
.container .contact_btn a {
  color: #fbfbfb;
  display: flex;
  padding: 12px 0;
  width: 400px;
  justify-content: center;
  border-radius: 8px;
  background: #3095a3;
  margin-top: 70px;
}
.contact_btn a {
  transition: background 0.6s;
}

.contact_btn a:hover {
  background: #74b8c1;
}

.contact_btn.noto_20 {
  justify-content: center;
  display: flex;
  flex-direction: row;

  border-bottom: 1px solid #c8c8c8;
  padding-bottom: 160px;
}

#clinic01 .contact_btn.noto_20 {
  border-bottom: none;
}

@media screen and (max-width: 768px) {
  #clinic,
  #clinic01 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #clinic .container,
  #clinic01 .container {
    padding: 0 7.7%;
  }

  .img-box {
    width: 100%;
    /*margin-left: 7.7%;
		animation: scroll 20s linear infinite;*/
    overflow: hidden;
  }

  .img-box img {
    width: 230px;
  }

  .img-box ul {
    animation: scroll 20s linear infinite;
  }

  #clinic .contents,
  #clinic01 .contents {
    display: flex;
    flex-direction: column;
  }

  #clinic .contents .inner dl,
  #clinic01 .contents .inner dl {
    flex-direction: column;
    gap: 0;
  }
  #clinic .contents .inner dt,
  #clinic01 .contents .inner dt {
    font-weight: 600;
  }

  /*map*/
  #clinic .contents .inner iframe,
  #clinic01 .contents .inner iframe {
    width: 330px;
  }

  #clinic .contents .inner.pc,
  #clinic01 .contents .inner.pc {
    display: none;
  }
  #clinic .contents .inner.sp,
  #clinic01 .contents .inner.sp {
    display: block;
  }

  #clinic,
  #clinic01 {
    padding: 0;
  }
  #clinic01 {
    padding-top: 85px;
  }

  /*btn*/
  .container .contents .inner02 {
    flex-direction: row;
    justify-content: flex-start;
  }
  .container .contents .inner02 a {
    border-radius: 4px;
    border: 1px solid #6e6e6e;
    background: #f9f9f9;
    color: #6e6e6e;
  }

  /*auto x scroll*/
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
}

.section {
  margin-top: 50px;
}

#banner {
  .banner-img__wrapper {
    max-width: 1360px;
  }
}

#campaign01 {
  margin-top: 80px;
}

.campaign {
  .campaign-img__wrapper {
    max-width: 850px;

    @media screen and (max-width: 768px) {
      margin: 0 30px;
    }
  }
}

.bg-green__content {
  background-color: #f0f7f3;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 40px 100px 40px 50px;
  gap: 40px;
  flex-direction: row;
  width: 76.5%;
  min-width: 850px;
  margin-left: auto;

  @media screen and (max-width: 900px) {
    background-color: initial;
    box-shadow: none;
    padding: 0px 0px 0px 0px;
    gap: 40px;
    flex-direction: column;
    width: 100%;
    min-width: initial;
    margin-left: auto;
  }
}


.publication-content {
  width: 100%;
  @media screen and (max-width: 768px) {
    padding: 0 30px;
  }
  .publication-content-image {
    width: 75%;
    max-width: 350px;

    @media screen and (max-width: 900px) {
      width: 90%;
      max-width: 750px;
      margin: 0 auto;
    }
  }
}

#seek {
  .seek-section {
    width: 100%;
  }
  .seek-title {
    text-align: center;
    @media screen and (max-width: 768px) {
      padding: 0 30px;
      text-align: left;
    }
  }
  .seek-wrapper {
    padding: 30px;
    max-width: 1360px;
    width: 100%;
    margin: 0 auto;
    background: url("img/seek-pc.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    @media screen and (max-width: 768px) {
      background: url("img/seek-sp.webp");
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      height: 400px;
      width: auto;
      box-sizing: content-box;
    }

    .seek-card {
      padding: 30px 50px;
      max-width: 570px;
      width: 100%;
      margin-left: auto;
      @media screen and (max-width: 768px) {
        padding: 0;
        max-width: initial;
        margin-left: initial;
      }
      .seek-list {
        display: flex;
        column-gap: 20px;
        @media screen and (max-width: 768px) {
          gap: 5px;
        }
      }
    }
  }
}

.publication,
.loss,
.menu,
.reason {
  .title {
    width: 100%;
    max-width: 950px;
    padding: 0 30px;
    box-sizing: border-box;

    @media screen and (max-width: 768px) {
      padding: 0 30px;
      box-sizing: border-box;
    }
  }
}

.publication {
  .publication-content-text {
    @media screen and (max-width: 900px) {
      width: 90%;
      max-width: 750px;
      margin: 0 auto;
    }
    @media screen and (max-width: 768px) {
      margin-top: 20px;
      font-size: 12px;
    }

    span {
      @media screen and (max-width: 768px) {
        font-size: 10px;
      }
    }
  }
}

.loss {
  .title {
    @media screen and (max-width: 768px) {
      padding: 0 30px;
    }
  }
}
.loss-container {
  background: #faffff;
  width: 100%;
  @media screen and (max-width: 768px) {
    padding: 0 30px;
  }

  .loss-wrapper {
    flex-direction: row;
    width: 76.5%;
    margin-left: auto;

    @media screen and (max-width: 768px) {
      width: 100%;
      flex-direction: column-reverse;
      gap: 30px;
    }

    .loss-text {
      display: grid;
      align-items: center;
    }
  }
}

.reason-section {
  max-width: initial;

  .reason-content {
    width: 100%;
    margin-top: 0;
    box-shadow: none;

    .reason-text {
      margin-top: 200px;
      margin-bottom: 130px;
      padding-right: 50px;
      padding-left: 20%;
      padding-bottom: 50px;

      @media screen and (max-width: 768px) {
        margin-top: 30px;
        margin-bottom: 0;
        padding-right: 0;
        padding-left: 0;
        padding-bottom: 0;
      }

      .reason-subtitle {
        font-size: 28px;
        @media screen and (max-width: 768px) {
          font-size: 16px;
        }
      }
    }
  }
}

.reason-content:nth-child(2n) {
  .reason-text {
    padding-left: 50px;
    padding-right: 20%;

    @media screen and (max-width: 768px) {
      padding-left: 10px;
      padding-right: 10px;
    }
  }
}

.reason-content:nth-child(2n + 1) {
  .reason-image {
    margin-left: auto;
  }
}

#fat-naturally {
  margin-top: 70px;
  .fat-naturally-explanation {
    margin: 30px 0;
  }
}

/* Styles for #menu_a (recruitment-monitor page) */
#menu_a .inner {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

#menu_a .inner .menu_box {
	margin-bottom: 2px;
}

#menu_a .inner .menu_box .menu_item {
	display: flex;
	flex-direction: row;
	width: 100%;
	align-items: stretch;
	border-radius: 8px;
	background: #74B8C1;
}

#menu_a .inner .menu_box .menu_item .left {
	width: 54.7%;
	border-radius: 8px;
}

#menu_a .inner .menu_box .menu_item .right {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 9px;
	background: #74B8C1;
	width: 45.3%;
	height: 100%;
	min-height: 100%;
	border-radius: 0 8px 8px 0;
	cursor: pointer;

  @media screen and (max-width: 768px) {
    min-height: initial;
  }
}

#menu_a .inner .menu_box .menu_item .right span:nth-child(1) {
	margin-right: 10px;
}

#menu_a .inner .menu_box .menu_open {
	display: none;
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
	color: #3095A3;
	align-items: center;
	padding: 0 80px;
	background: #fff;
	box-sizing: border-box;
	width: 100%;
}

#menu_a .inner .menu_box .menu_open.active {
	display: block;
	opacity: 1;
	max-height: 500px;
	padding: 40px 20px;
	box-sizing: border-box;
	width: 100%;
}

#menu_a .inner .menu_box .menu_open ul {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 20px;
	width: 100%;
	box-sizing: border-box;
}

#menu_a .inner .menu_box .menu_open ul li {
	width: auto;
	white-space: normal;
	word-break: break-word;
	font-size: 14px;
	position: relative;
	padding-left: 24px;
	max-width: calc(50% - 10px);
}

#menu_a .inner .menu_box .menu_open ul li::before {
	content: url("img/arrow-left.svg");
	display: block;
	position: absolute;
	top: 1px;
	left: 0;
	width: 24px;
	height: 24px;
}

#menu_a .inner .menu_box .menu_open ul li a {
	text-decoration: none;
}

#menu_a .inner .menu_box .menu_open ul li a:hover {
	opacity: 0.5;
}

#menu_a .inner .menu_box .menu_open ul:nth-child(1) {
	margin-bottom: 64px;
}

/* Rotate icon animation for #menu_a */
#menu_a .rotate {
    display: inline-block;
    transition: transform 0.5s ease;
}

#menu_a .rotate.active {
    transform: rotate(180deg);
}

/* Mobile styles for #menu_a */
@media screen and (max-width: 768px) {
	#menu_a .inner .menu_box .menu_item {
		display: flex;
		flex-direction: column;
	}

	#menu_a .inner .menu_box .menu_item .left,
	#menu_a .inner .menu_box .menu_item .right {
		width: 100%;
		border-radius: 0;
	}

	#menu_a .inner .menu_box .menu_item .right {
		height: 60px;
	}

	#menu_a .inner .menu_box .menu_open ul {
		gap: 0;
		flex-direction: column;
	}

	#menu_a .inner .menu_box {
		margin-bottom: 0;
	}

	#menu_a .inner .menu_box .menu_open {
		padding: 30px 20px;
		box-sizing: border-box;
		width: 100%;
		overflow-x: hidden;
	}

	#menu_a .inner .menu_box .menu_open ul:nth-child(1) {
		margin-bottom: 0;
	}

	#menu_a .inner .menu_box .menu_open ul li {
		margin-bottom: 20px;
		white-space: normal;
		word-break: break-word;
		max-width: 100%;
	}

	#menu_a .inner .menu_box .menu_open ul li.mb0 {
		margin-bottom: 0px;
	}
}
