@charset "UTF-8";

:root {
  /* カラー */
  --c-green: #28ac4b;
  --c-pink: #f09ba7;
  --c-yellow: #fabf4e;
  --c-beige: #fef6e7;

  /* フォントサイズ */
  --fz-h1: clamp(30px, 3.645vw, 70px);
  --fz-h2: clamp(22px, 2.2vw, 40px);
  --fz-h3: clamp(20px, 1.7vw, 30px);
  --fz-body: clamp(14px, 1.08vw, 20px);

  /* 横幅レイアウト */
  --inner-max: 1200px;
  --inner-width: min(86vw, var(--inner-max));
  --inner-wide-max: 1560px;
  --inner-wide-width: min(94vw, var(--inner-wide-max));

  /* セクション上下余白 */
  --section-py: clamp(40px, 8.3vw, 160px);
  --section-py-sm: clamp(30px, 6vw, 120px);

  /* カード共通 */
  --card-radius: 30px;
  --card-padding-pc: clamp(50px, 3.6vw, 70px);
  --card-padding-sp: 30px;

  /* 見出し（h2）用：PC */
  --h2-mb-lg: clamp(20px, 3.6vw, 70px);
  --h2-mb-md: clamp(20px, 3vw, 50px);
  --h2-mb-sm: clamp(20px, 2vw, 30px);

  /* アイコンふたば葉っぱ余白 */
  --icon-gap-pc: 20px;
  --icon-gap-sp: 10px;
}

@media (max-width: 780px) {
  :root {
    --h2-mb-lg: 20px;
    --h2-mb-md: 20px;
    --h2-mb-sm: 20px;
  }
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Rounded Mplus 1c", sans-serif;
  color: #222222;
  overflow-x: hidden;
  min-height: 100vh;
  margin: 0;
  background: linear-gradient(180deg, rgba(251, 210, 134, 0.2) 0%, rgba(242, 169, 179, 0.2) 100%);
  background-attachment: fixed;
}

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

h1 {
  font-size: var(--fz-h1);
  color: #28ac4b;
  margin-bottom: 42px;
}

h2 {
  font-size: var(--fz-h2);
  font-weight: bold;
}

h3 {
  font-size: var(--fz-h3);
  font-weight: bold;
}

p {
  font-size: var(--fz-body);
}

a {
  color: unset;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover,
a:focus {
  opacity: 0.6;
}

a:hover img {
  opacity: 0.6;
  transition: opacity 0.25s ease;
}

ul,
li {
  list-style: none;
}

table {
  width: 100%;
}

@media (min-width: 481px) {
  .sp {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

.container {
  margin-inline: auto;
  max-width: 1240px;
  padding: 0 20px;
}

.sec_wrapper {
  max-width: var(--inner-max);
  width: var(--inner-width);
  margin: 0 auto;
  box-sizing: border-box;
}

.sec_wrapper--wide {
  max-width: none;
  width: 100%;
  margin: 0;
}

@media (max-width: 780px) {
  .container {
    max-width: var(--inner-max);
    width: var(--inner-width);
    margin: 0 auto;
    padding: 0;
  }

  .sec_wrapper--wide {
    max-width: var(--inner-max);
    width: var(--inner-width);
    margin: 0 auto;
  }
}

.sec_title {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
  position: relative;
}

.sec_title span {
  font-size: 2.5rem;
}

.sec_lead {
  font-size: 1.25rem;
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 780px) {
  .sec_title {
    gap: 10px;
    line-height: 1.4;
    margin-bottom: 40px;
    text-align: center;
  }

  .sec_title span {
    font-size: 1.6rem;
  }

  .sec_lead {
    font-size: 1rem;
    text-align: left;
  }
}

.sec_title::before {
  content: "";
  display: block;
  background: url(/common_osaka/images/icon-h2.svg) center / cover no-repeat;
  max-width: 31px;
  width: 100%;
  aspect-ratio: 36 / 36;
  box-sizing: border-box;
}

.sec_title_left::before {
  content: "";
  display: block;
  background: url(/common_osaka/images/icon-h2.svg) center / cover no-repeat;
  max-width: 31px;
  width: 100%;
  aspect-ratio: 36 / 36;
  box-sizing: border-box;
}

/* ヘッダー */
.header {
  background-color: #fef6e7;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 10px 30px 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  box-sizing: border-box;
  height: 110px;
}

.header_lead {
  font-size: clamp(10px, 0.63vw, 12px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
}

.header_left {
  flex-shrink: 0;
}

.header_logo {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.header_logo .logo_osaka {
  max-width: 240px;
  display: block;
}

.header_right {
  width: 80%;
}

.header_contact {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.header_tel {
  background-color: #fabf4e;
  border-radius: 10px;
  padding: clamp(10px, 0.5208vw, 10px) clamp(16px, 0.8333vw, 16px);
  padding-left: 40px;
}

.header_tel-txt {
  font-size: clamp(14px, 0.8333vw, 16px);
  color: #fff;
  position: relative;
}

.header_tel-txt::before {
  content: "";
  display: block;
  width: 11px;
  height: 21px;
  background-image: url(/common_osaka/images/icon_tel.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: -1px;
  left: -20px;
}

.header_tel-txt a {
  padding-left: clamp(22px, 1.1458vw, 22px);
}

.header_mail {
  display: inline-block;
  background-color: #28ac4b;
  border-radius: 10px;
  padding: clamp(10px, 0.5208vw, 10px) clamp(16px, 0.8333vw, 16px);
  text-decoration: none;
  cursor: pointer;
  padding-left: 40px;
}

.header_mail-txt {
  font-size: clamp(14px, 0.7292vw, 14px);
  color: #fff;
  position: relative;
}

.header_mail-txt::before {
  content: "";
  display: block;
  width: 17px;
  height: 11px;
  background-image: url(/common_osaka/images/icon_mail.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 4px;
  left: -27px;
}

.header_nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(13px, 1.3vw, 33px);
}

.header_nav ul li a {
  font-size: clamp(13px, 0.8vw, 16px);
  font-weight: bold;
}

@media (max-width: 1206px) {
  .header {
    padding: 10px 20px 16px;
  }

  .header_nav ul {
    justify-content: flex-start;
  }
}

@media (max-width: 780px) {
  .header {
    padding: 20px 10px;
    height: 110px;
  }

  .header_left {
    width: 100%;
  }

  .header_logo {
    flex-direction: row;
  }

  .header_right {
    display: none;
  }

  .header_nav {
    display: none;
  }
}

/* メインビジュアル */
.mv {
  position: relative;
}

.mv_icon {
  background: url(/common_osaka/images/top/icon_fv.png) center / contain no-repeat;
  content: "";
  display: inline-block;
  width: 200px;
  height: 200px;
  position: absolute;
  bottom: 2%;
  right: 5%;
}

.mv_item {
  background-color: #82d3cc;
  border-radius: 3px;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  font-weight: 500;
  padding: 29px 0;
  width: 215px;
}

@media (max-width: 1200px) {
  .mv_item {
    font-size: 1.25rem;
    padding: 20px;
    width: 160px;
  }
}

@media (max-width: 780px) {
  .mv_icon {
    width: 120px;
    height: 120px;
    bottom: 8%;
  }
}

/* パンくず */
.breadcrumb {
  margin-top: 15px;
  margin-bottom: 138px;
}

.breadcrumb ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.breadcrumb li {
  position: relative;
}

.breadcrumb li:not(:last-child)::after {
  color: #a8977f;
  content: ">";
  position: absolute;
  top: 1px;
  right: -16px;
}

.breadcrumb a,
.breadcrumb span {
  color: #a8977f;
  font-size: 0.75rem;
}

@media (max-width: 780px) {
  .breadcrumb {
    margin-bottom: 58px;
  }
}

/* グループ分院案内 */
#sec_topmap {
  padding-top: clamp(80px, 8.33vw, 160px);
  padding-bottom: clamp(80px, 8.33vw, 160px);
}

#sec_topmap .bunin_box {
  margin-top: 70px;
}

#sec_topmap .bunin_item:not(:last-child) {
  margin-bottom: clamp(20px, 3.65vw, 70px);
}

#sec_topmap .bunin_item h3 {
  color: #fff;
  border-radius: 30px 30px 0 0;
  padding: 30px 95px;
  display: inline-block;
}

#sec_topmap .bunin_item.area_tokyo h3 {
  background-color: #8ac23e;
}

#sec_topmap .bunin_item.area_chiba h3 {
  background-color: #f09ba7;
}

#sec_topmap .bunin_item.area_saitama h3 {
  background-color: #fabf4e;
}

#sec_topmap .bunin_item.area_osaka h3 {
  background-color: #28ac4b;
}

#sec_topmap .area_box {
  position: relative;
  border-radius: 0 0 30px 30px;
  overflow: hidden;
}

#sec_topmap .area_box .slick-track {
  display: flex;
  align-items: stretch;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

#sec_topmap .area_box .slick-slide {
  height: auto;
}

#sec_topmap .area_tokyo .area_box {
  background-color: #f8ffef;
  border-top: 3px solid #8ac23e;
}

#sec_topmap .area_chiba .area_box {
  background-color: #fff4f6;
  border-top: 3px solid #f09ba7;
}

#sec_topmap .area_saitama .area_box {
  background-color: #ffefd0;
  border-top: 3px solid #fabf4e;
}

#sec_topmap .area_osaka .area_box {
  background-color: #f5fff4;
  border-top: 3px solid #28ac4b;
}

#sec_topmap .area_list {
  margin-left: 80px;
  padding: 65px 80px;
  overflow: hidden;
}

#sec_topmap .area_esaka {
  padding: 65px 80px 65px 0;
}

#sec_topmap .area_higashi {
  padding: 65px 80px 65px 0;
}

#sec_topmap .area_list .slick-list {
  overflow: visible;
}

#sec_topmap .area_item {
  max-width: 474px;
  background-color: #fff;
  border-radius: 30px;
  padding: 24px;
  margin-right: 32px;
  display: flex;
  flex-direction: column;
}

#sec_topmap .area_item:last-child {
  margin-right: 0;
}

#sec_topmap .area_details {
  display: flex;
  justify-content: space-between;
  flex: 1 1 auto;
  margin-bottom: 20px;
}

#sec_topmap .area_text {
  display: flex;
  flex-direction: column;
  width: 48%;
}

#sec_topmap .area_text h4 {
  font-size: 22px;
  font-weight: bold;
  padding-left: 20px;
  padding-bottom: 27px;
  position: relative;
}

#sec_topmap .area_text h4 span::before {
  position: absolute;
  background-color: #8ac23e;
  content: "";
  left: 0;
  top: -16%;
  bottom: 10%;
  width: 0.2em;
  height: 80%;
}

#sec_topmap .area_osaka .area_text h4 span::before {
  background-color: #28ac4b;
}

#sec_topmap .area_tokyo .area_text h4 span::before {
  background-color: #8ac23e;
}

#sec_topmap .area_chiba .area_text h4 span::before {
  background-color: #f09ba7;
}

#sec_topmap .area_saitama .area_text h4 span::before {
  background-color: #fabf4e;
}

#sec_topmap .area_saitama .area_list {
  margin-left: 0;
}

#sec_topmap .area_osaka .area_box .area_link::before {
  background-color: #28ac4b;
}

#sec_topmap .area_box .area_item .area_details .area_text p {
  font-size: 14px;
}

#sec_topmap .area_box .area_item .area_details .area_text p.area_add {
  line-height: 1.5;
}

#sec_topmap .area_box .area_item .area_details .area_text p + p {
  margin-top: auto;
}

#sec_topmap .area_box .area_item .area_details .area_image {
  width: 50%;
}

#sec_topmap .area_bottom {
  margin-top: auto;
}

#sec_topmap .area_tel {
  margin-bottom: 20px;
}

#sec_topmap .area_note {
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}

#sec_topmap .area_box .area_item .area_details .area_text .bunin_toho {
  border-top: 1px dotted;
  border-bottom: 1px dotted;
  padding: 10px 0;
  letter-spacing: -1px;
}

#sec_topmap .area_box .area_item.osaka .bunin_toho,
#sec_topmap .area_box .area_item.kitasenju .bunin_toho,
#sec_topmap .area_box .area_item.motoyawata .bunin_toho,
#sec_topmap .area_box .area_item.saitama .bunin_toho {
  margin-top: 20px !important;
}

@media (max-width: 780px) {
  #sec_topmap {
    margin-top: -30px;
    padding-top: 30px;
    padding-bottom: 40px;
  }
  #sec_topmap .area_box .area_item .bunin_toho,
  #sec_topmap .area_box .area_item.kitasenju .bunin_toho {
    margin-top: 34px !important;
  }
  #sec_topmap .area_box .area_item.osaka .bunin_toho,
  #sec_topmap .area_box .area_item.motoyawata .bunin_toho,
  #sec_topmap .area_box .area_item.saitama .bunin_toho {
    margin-top: 14px !important;
  }
  #sec_topmap .area_tel {
    margin-bottom: 10px;
  }
  #sec_topmap .area_note {
    font-size: 12px;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  #sec_topmap .area_box .area_item.motoyawata .bunin_toho {
    margin-top: 34px !important;
  }
}
@media (max-width: 433px) {
  #sec_topmap .area_box .area_item.motoyawata .bunin_toho {
    margin-top: 14px !important;
  }
}

@media (max-width: 428px) {
  #sec_topmap .area_box .area_item.kitasenju .bunin_toho {
    margin-top: 14px !important;
  }
}

@media (min-width: 370px) and (max-width: 396px) {
  #sec_topmap .area_box .area_item.higashiosaka .bunin_toho {
    margin-top: 14px !important;
  }
}

@media (min-width: 370px) and (max-width: 389px) {
  #sec_topmap .area_box .area_item.kitaosaka .bunin_toho {
    margin-top: 14px !important;
  }
}

@media (max-width: 388px) {
  #sec_topmap .area_box .area_item.shinkoiwa .bunin_toho {
    margin-top: 14px !important;
  }
}

@media (max-width: 386px) {
  #sec_topmap .area_box .area_item.roppongi .bunin_toho {
    margin-top: 14px !important;
  }
}

@media (max-width: 380px) {
  #sec_topmap .area_box .area_item.osaka .bunin_toho {
    margin-top: 13px !important;
  }
}

@media (max-width: 386px) {
  #sec_topmap .area_box .area_item.yachiyo .bunin_toho {
    margin-top: 14px !important;
  }
}

@media (max-width: 368px) {
  #sec_topmap .area_box .area_item.sakura .bunin_toho {
    margin-top: 14px !important;
  }
}

#sec_topmap .area_link {
  font-size: 18px;
  color: #fff;
  border-radius: 50px;
  display: grid;
  place-items: center;
  padding: 10px 28px 10px 25px;
  position: relative;
  height: 76px;
  line-height: 1.2;
}

#sec_topmap .area_tokyo .area_link {
  background-color: #8ac23e;
}

#sec_topmap .area_chiba .area_link {
  background-color: #f09ba7;
}

#sec_topmap .area_saitama .area_link {
  text-align: left;
  background-color: #fabf4e;
  height: 84px;
}

#sec_topmap .area_saitama .area_link::before {
  background-color: #fabf4e;
}

#sec_topmap .area_osaka .area_link {
  background-color: #28ac4b;
}

#sec_topmap .area_link::after {
  content: "";
  display: block;
  width: 8px;
  height: 12px;
  background: center / contain no-repeat url(/common_osaka/images/right-arrow-w.png);
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

/* 共通矢印ボタン */
#sec_topmap .area_box .area_arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background-color: transparent;
  cursor: pointer;
  z-index: 5;
  padding: 0;
}

#sec_topmap .area_box .area_prev {
  left: 24px;
}

#sec_topmap .area_box .area_next {
  right: 24px;
}

#sec_topmap .area_box .area_arrow::before {
  content: "";
  display: block;
  width: 33px;
  height: 33px;
  margin: 0 auto;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

#sec_topmap .area_tokyo .area_box .area_prev::before {
  background-image: url(/common_osaka/images/left-yg.png);
}

#sec_topmap .area_tokyo .area_box .area_next::before {
  background-image: url(/common_osaka/images/right-yg.png);
}

#sec_topmap .area_chiba .area_box .area_prev::before {
  background-image: url(/common_osaka/images/left-p.png);
}

#sec_topmap .area_chiba .area_box .area_next::before {
  background-image: url(/common_osaka/images/right-p.png);
}

#sec_topmap .area_osaka .area_box .area_prev::before {
  background-image: url(/common_osaka/images/left-g.png);
}

#sec_topmap .area_osaka .area_box .area_next::before {
  background-image: url(/common_osaka/images/right-g.png);
}

#sec_topmap .area_saitama .area_box .slick-track {
  margin-left: unset !important;
  margin-right: unset !important;
}

@media (min-width: 781px) {
  #sec_topmap .area_box .area_list.slick-slider .slick-track {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  #sec_topmap .area_chiba .area_box .area_list li.sakura .area_btn p {
    letter-spacing: -0.6px;
  }
}

@media (max-width: 780px) {
  #sec_topmap .bunin_box {
    margin-top: 35px;
  }

  #sec_topmap .bunin_item h3 {
    border-radius: 20px 20px 0 0;
    padding: 10px 35px;
  }

  #sec_topmap .area_box .area_prev {
    left: 6px;
  }

  #sec_topmap .area_box .area_arrow {
    width: 20px;
    height: 20px;
  }

  #sec_topmap .area_box .area_arrow::before {
    width: 20px;
    height: 20px;
  }

  #sec_topmap .area_box .area_list {
    margin-left: 30px;
    padding: 14px 30px;
  }

  #sec_topmap .area_box .area_item {
    padding: 24px;
    margin-right: 10px;
  }

  #sec_topmap .area_box .area_item .area_details {
    flex-direction: column;
    margin-bottom: 10px;
  }

  #sec_topmap .area_box .area_item .area_details .area_text {
    margin-bottom: 10px;
    width: 100%;
  }

  #sec_topmap .area_box .area_item .area_details .area_text h4 {
    font-size: 16px;
    padding-left: 10px;
    padding-bottom: 14px;
  }

  #sec_topmap .area_box .area_item .area_details .area_image {
    width: 100%;
  }

  #sec_topmap .area_box .area_next {
    right: 6px;
  }

  #sec_topmap .area_link {
    font-size: 15px;
    border-radius: 30px;
    padding: 10px 22px;
    height: 94px;
  }

  #sec_topmap .area_link::after {
    right: 5%;
  }

  #sec_topmap .area_saitama .area_link {
    height: initial;
  }
}

/* 法人理念 */
#sec_rinen {
  padding: clamp(40px, 8.33vw, 160px) 0;
}

#sec_rinen .sec_title {
  margin-bottom: 70px;
}

#sec_rinen ul li {
  position: relative;
  display: flex;
  justify-content: space-between;
  position: relative;
}

#sec_rinen ul li:nth-child(1) {
  margin-bottom: 136px;
}

#sec_rinen ul li:nth-child(2) {
  flex-direction: row-reverse;
  margin-bottom: 70px;
}

#sec_rinen ul li .rinen_image {
  max-width: 637px;
  flex: 0 0 54%;
}

#sec_rinen ul li:nth-child(2) .rinen_image {
  max-width: 598px;
  flex: 0 0 50%;
}

#sec_rinen ul li .rinen_text {
  max-width: 598px;
  flex: 0 0 50%;
  background-color: #fff;
  border-radius: var(--card-radius);
  padding: var(--card-padding-pc);
  box-sizing: border-box;
  position: relative;
  top: 35px;
  margin-left: -48px;
  z-index: 1;
}

#sec_rinen ul li:nth-child(2) .rinen_text {
  max-width: 637px;
  flex: 0 0 54%;
  top: -35px;
  margin-left: unset;
  margin-right: -37px;
}

#sec_rinen ul li .rinen_text .rinen_number {
  width: clamp(36px, 6.48vw, 92px);
  padding-bottom: 30px;
}

#sec_rinen ul li .rinen_text h3 {
  color: #28ac4b;
  padding-bottom: 33px;
}

#sec_rinen ul li .rinen_text p {
  font-size: clamp(14px, 3vw, 18px);
  line-height: 1.7;
}

@media (max-width: 780px) {
  #sec_rinen {
    padding-top: 40px;
  }

  #sec_rinen .sec_title {
    margin-bottom: 40px;
  }

  #sec_rinen ul li .rinen_text {
    flex: unset;
    top: 0;
    padding: var(--card-padding-sp);
    margin: 0 auto;
    z-index: unset;
  }

  #sec_rinen ul li .rinen_text .rinen_number {
    padding-bottom: 20px;
  }

  #sec_rinen ul li .rinen_text h3 {
    padding-bottom: 13px;
  }

  #sec_rinen ul li .rinen_image {
    padding-top: 20px;
  }

  #sec_rinen ul li:nth-child(1) {
    margin-bottom: 20px;
  }

  #sec_rinen ul li:nth-child(2) {
    margin-bottom: 20px;
  }

  #sec_rinen ul li:nth-child(2) .rinen_image {
    flex: unset;
  }

  #sec_rinen ul li:nth-child(2) .rinen_text {
    flex: unset;
    top: 0;
    margin-left: 0;
    margin-right: 0;
  }
}

/* 「ふたば式」在宅医療 */
#sec_futabastyle {
  padding: clamp(40px, 8.33vw, 160px) 0;
}

@media screen and (max-width: 768px) {
  #sec_futabastyle {
    padding-bottom: 80px;
  }
}

#sec_futabastyle .sec_wrapper {
  margin-inline: auto;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.futabastyle_ttl {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.futabastyle_lead {
  font-size: clamp(14px, 1.25vw, 24px);
  font-weight: bold;
  color: #8a7b66;
  text-align: center;
  position: relative;
  margin-bottom: 40px;
  line-height: 2.6;
}

.futabastyle_lead span {
  font-size: 1.875rem;
}

.futabastyle_lead .green {
  color: #8ac23e;
}

.futabastyle_lead .pink {
  color: #f09ba7;
}

@media (min-width: 481px) {
  .futabastyle_ttl {
    margin-bottom: var(--h2-mb-lg);
  }
  .futabastyle_lead .pink {
    letter-spacing: -1.4px;
  }
}

#sec_futabastyle .slick-track {
  display: flex !important;
}

#sec_futabastyle .slick-slide {
  display: flex;
  flex-direction: column;
  height: auto !important;
}

.futabastyle_item {
  max-width: 571px;
}

#sec_futabastyle .slick-slide {
  margin-right: 35px;
}

#sec_futabastyle .futabastyle_arrow {
  width: 33px;
  height: 33px;
  border: none;
  background-color: transparent;
  cursor: pointer;
  position: absolute;
  top: 66%;
  -ms-transform: translateY(-50%);
  padding: 0;
  z-index: 2;
}

#sec_futabastyle .futabastyle_prev {
  background: center / contain no-repeat url(/common_osaka/images/left-g.png);
  left: 1%;
}

#sec_futabastyle .futabastyle_next {
  background: center / contain no-repeat url(/common_osaka/images/right-g.png);
  right: 1%;
}

.futabastyle_body {
  border-radius: 0 0 40px 40px;
  height: 100%;
  padding: 40px 35px 30px;
  position: relative;
}

.futabastyle_body::before {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  width: 79px;
  height: 79px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.futabastyle_slider {
  position: relative;
}

.futabastyle_slider .area_arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background-color: transparent;
  cursor: pointer;
  z-index: 5;
  padding: 0;
}

.futabastyle_slider .area_prev {
  left: -56px;
}

.futabastyle_slider .area_next {
  right: -56px;
}

.futabastyle_slider .area_arrow::before {
  content: "";
  display: block;
  width: 33px;
  height: 33px;
  margin: 0 auto;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.futabastyle_slider .area_prev::before {
  background-image: url(/common_osaka/images/left-yg.png);
}

.futabastyle_slider .area_next::before {
  background-image: url(/common_osaka/images/right-yg.png);
}

@media screen and (max-width: 768px) {
  .futabastyle_slider .area_arrow {
    display: none !important;
  }
}

/* 動く総合病院 */
.ugoku_item .futabastyle_body {
  background-color: #8ac23e;
}

.ugoku_item .futabastyle_body::before {
  background-image: url(/common_osaka/images/futabastyle/icon-ugoku.png);
}

/* チーム医療 */
.team_item .futabastyle_body {
  background-color: #a99880;
}

.team_item .futabastyle_body::before {
  background-image: url(/common_osaka/images/futabastyle/icon-team.png);
}

/* 断らない医療 */
.footwork_item .futabastyle_body {
  background-color: #f3c263;
}

.footwork_item .futabastyle_body::before {
  background-image: url(/common_osaka/images/futabastyle/icon-footwork.png);
}

/* 重症・がん緩和ケアの確かな実績 */
.jusho_item .futabastyle_body {
  background-color: #28ac4b;
}

.jusho_item .futabastyle_body::before {
  background-image: url(/common_osaka/images/futabastyle/icon-jusho.png);
}

/* 地域密着 */
.chiiki_item .futabastyle_body {
  background-color: #f09ba7;
}

.chiiki_item .futabastyle_body::before {
  background-image: url(/common_osaka/images/futabastyle/icon-chiiki.png);
}

.futabastyle_heading {
  color: #fff;
  font-size: 1.75rem;
  line-height: 1.4;
  margin-bottom: 24px;
  text-align: center;
}

.futabastyle_text {
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
}

.futabastyle_text span {
  font-size: 0.6rem;
}

.futabastyle_text span.kome {
  font-size: 0.5em;
  vertical-align: top;
}

.futabastyle_text .futabastyle_note {
  display: inline-block;
  padding-top: 8px;
  line-height: 1.4;
}

@media (max-width: 1640px) {
  .futabastyle_heading {
    font-size: 1.5vw;
  }
}

@media (max-width: 1124px) {
  .futabastyle_heading {
    font-size: 1.8vw;
  }
}

@media (max-width: 768px) {
  .futabastyle_lead {
    font-size: clamp(14px, 1.25vw, 24px);
    line-height: 1.6;
  }

  .futabastyle_lead span {
    font-size: clamp(18px, 1.8vw, 30px);
  }

  .futabastyle_heading {
    font-size: 1.25rem;
  }

  #sec_futabastyle .slick-slide {
    margin-right: 15px;
  }

  #sec_futabastyle .slick-track {
    padding-left: 30px;
  }
}

/* 在宅診療とは？ */
#sec_about {
  padding-bottom: 260px;
}

#sec_about .sec_wrapper {
  display: flex;
  justify-content: flex-start;
  position: relative;
}

#sec_about .about_image {
  max-width: 960px;
  flex: 0 0 60%;
}

#sec_about .about_box {
  background: url(/common_osaka/images/bg_road02.png) center bottom / cover no-repeat;
  border-radius: var(--card-radius);
  padding: var(--card-padding-pc);
  max-width: 660px;
  flex: 0 0 48%;
  position: relative;
  top: 120px;
  margin-left: -48px;
  z-index: 1;
}

#sec_about .about_box::after {
  content: "";
  display: block;
  width: clamp(130px, 18.65vw, 312px);
  aspect-ratio: 312 / 180;
  background: center / contain no-repeat url(/common_osaka/images/com/illust_team.png);
  position: absolute;
  right: 0;
  top: -4%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

#sec_about .about_ttl {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: var(--h2-mb-sm);
}

#sec_about .about_ttl .icon-h2 {
  margin: 0;
}

#sec_about .about_text {
  padding-bottom: clamp(15px, 1.56vw, 30px);
  line-height: 1.6;
}

#sec_about .about_box .about_list li:not(:last-child) {
  padding-bottom: clamp(20px, 1.5625vw, 30px);
}

#sec_about .about_box .about_list li span {
  font-size: clamp(1rem, 0.7727rem + 0.5vw, 1.5rem);
  font-weight: 700;
  padding-left: min(3.13vw, 60px);
  position: relative;
}

#sec_about .about_box .about_list li span::before {
  content: "";
  display: block;
  width: clamp(20px, 2.24vw, 43px);
  aspect-ratio: 43 / 37;
  background: center / contain no-repeat url(/common_osaka/images/checkmark.png);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

@media (max-width: 780px) {
  #sec_about {
    padding-bottom: 40px;
  }

  #sec_about .sec_wrapper {
    justify-content: unset;
    flex-direction: column-reverse;
  }

  #sec_about .about_image {
    max-width: unset;
    flex: 0;
  }

  #sec_about .about_image img {
    border-radius: 30px;
  }

  #sec_about .about_box {
    padding: var(--card-padding-sp);
    margin: 0 auto 20px;
    flex: unset;
    top: 0;
  }

  #sec_about .about_box::after {
    width: 150px;
    top: -4%;
  }

  #sec_about .about_box .about_list {
    padding: 10px 0 20px;
  }

  #sec_about .about_box .about_list li span {
    font-size: clamp(16px, 1.66vw, 32px);
    padding-left: clamp(30px, 3.13vw, 60px);
  }

  #sec_about .about_box .about_list li:not(:last-child) {
    padding-bottom: clamp(14px, 1.5625vw, 30px);
  }
}

/* 診療科目・診療日 */
#sec_shinryo_kamoku {
  padding-bottom: clamp(80px, 8.33vw, 160px);
}

#sec_shinryo_kamoku h2 {
  text-align: center;
  margin-bottom: var(--h2-mb-lg);
}

#sec_shinryo_kamoku .shinryo_kamoku {
  max-width: 918px;
  margin: 0 auto 70px;
}

.shinryo_kamoku_inner {
  max-width: var(--inner-max);
  margin: 0 auto;
}

.shinryo_kamoku_list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(10px, 1vw, 16px);
  list-style: none;
  padding: 0;
  margin: 0;
}

.shinryo_kamoku_item {
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
  padding: clamp(16px, 1.67vw, 32px) clamp(20px, 1vw, 45px) clamp(14px, 1.47vw, 25px);
  box-sizing: border-box;
}

.shinryo_kamoku_icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 10%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.shinryo_kamoku_icon img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.shinryo_kamoku_name {
  font-size: 16px;
  font-weight: bold;
}

@media (max-width: 1199px) {
  .shinryo_kamoku_list {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 917px) {
  .shinryo_kamoku_list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 780px) {
  #sec_shinryo_kamoku {
    padding-bottom: 40px;
  }
  #sec_shinryo_kamoku h2 {
    margin-bottom: 40px;
  }
  .shinryo_kamoku_list {
    grid-template-columns: repeat(2, 1fr);
  }
  #sec_shinryo_kamoku .shinryo_kamoku {
    margin: 0 auto 20px;
  }
}

#sec_shinryo_kamoku .shinryo_schedule {
  max-width: 918px;
  margin: 0 auto;
}

.schedule-card__inner {
  max-width: 918px;
  background-color: #fff;
  border-radius: var(--card-radius);
  padding: var(--card-padding-pc);
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
}

.schedule-card__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 95px;
  border-radius: 22px;
  z-index: -1;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
}

.schedule-table thead th {
  font-size: 14px;
  font-weight: bold;
  background-color: #ebffd0;
  padding: 18px 0;
  vertical-align: middle;
}

.schedule-table__timehead {
  width: 130px;
}

.schedule-table th + th,
.schedule-table td + td {
  border-left: 1px solid #dcdcdc;
}

.schedule-table__time {
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
  vertical-align: middle;
}

.schedule-table__status {
  text-align: center;
  padding: 20px 0;
  vertical-align: middle;
}

.schedule-table__status img {
  display: block;
  width: 28px;
  height: auto;
  margin: 0 auto;
}

.schedule-note {
  font-size: 14px;
  font-weight: bold;
  padding-left: 0;
  margin-top: 22px;
}

.schedule-note li + li {
  margin-top: 6px;
}

@media (max-width: 780px) {
  .schedule-card__inner {
    padding: 20px;
  }

  .schedule-table__timehead {
    width: 20%;
  }

  .schedule-table__time {
    font-size: 12px;
  }

  .schedule-table__status img {
    width: 12px;
  }

  .schedule-table {
    font-size: 12px;
  }

  .schedule-note {
    font-size: 10px;
    margin-top: 12px;
  }
}

/* 診療内容 */
#sec_shinryo {
  padding-bottom: clamp(40px, 8.33vw, 160px);
  padding-left: 20px;
  padding-right: 20px;
}

#sec_shinryo .sec_lead {
  margin-bottom: 80px;
}

.shinryo_text {
  font-size: 1rem;
  line-height: 1.8;
}

.shinryo_box {
  margin-inline: auto;
  max-width: 1200px;
  position: relative;
}

.shinryo_list {
  background-color: #fff;
  max-width: 660px;
  border-radius: var(--card-radius);
  padding: var(--card-padding-pc);
  position: relative;
  top: 70px;
  z-index: 1;
}

@media (max-width: 1200px) {
  .shinryo_list {
    width: 55%;
  }
}

ul.shinryo_list li p {
  font-size: clamp(14px, 1.47vw, 20px);
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.6;
}

.shinryo_image {
  position: absolute;
  top: 0;
  right: 0;
  margin-right: calc(50% - 50vw);
  width: 50vw;
}

.ls_tight {
  letter-spacing: -0.1em;
}

.roentgen_box {
  background: url(/common_osaka/images/bg_road03.png) center / cover no-repeat;
  border-radius: 30px;
  max-width: 918px;
  width: 52%;
  margin: clamp(140px, 8.85417vw, 170px) auto 0;
}

.yuketsu_box {
  margin: clamp(50px, 6.85417vw, 70px) auto 0;
}

.roentgen_inner {
  display: flex;
  padding: 45px;
  gap: clamp(20px, 2vw, 40px);
  box-sizing: border-box;
}

.roentgen_image {
  max-width: 416px;
  width: 54%;
}

.roentgen_text {
  width: 76%;
}

.roentgen_text h3 {
  margin-bottom: 10px;
}

.roentgen_text p {
  line-height: 1.6;
}

@media (max-width: 780px) {
  #sec_shinryo .sec_lead {
    text-align: center;
    margin-bottom: 40px;
  }

  .shinryo_wrapper {
    max-width: var(--inner-max);
    width: var(--inner-width);
    margin: 0 auto;
    box-sizing: border-box;
  }
  .shinryo_box {
    max-width: none;
    box-sizing: border-box;
  }

  .shinryo_list {
    width: 100%;
    flex: unset;
    top: 0;
    padding: var(--card-padding-sp);
    margin-right: unset;
    margin-bottom: 20px;
  }

  .shinryo_image {
    position: initial;
    width: 100%;
  }

  .roentgen_box {
    width: 100%;
    margin: 20px auto 0;
  }

  .roentgen_inner {
    flex-direction: column-reverse;
    padding: var(--card-padding-sp);
  }

  .roentgen_image {
    width: 100%;
  }

  .roentgen_text {
    width: 100%;
  }
}

/* 連携医療機関 */
#sec_renkei {
  background: url(/common_osaka/images/bg_renkei.jpg) center / cover no-repeat;
  padding-top: clamp(40px, 8.33333vw, 160px);
  margin-bottom: 40px;
}

#sec_renkei .sec_wrapper {
  background-color: #fff;
  border-radius: 30px 30px 0 0;
  padding: 70px;
  opacity: 0.9;
}

.renkei_ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: var(--h2-mb-md);
}

.renkei_ttl .icon-h2 {
  margin: 0 15px 0 0;
}

.renkei_list {
  display: flex;
  gap: 50px;
  justify-content: center;
  line-height: 1.6;
}

@media (max-width: 780px) {
  #sec_renkei .sec_wrapper {
    padding: var(--card-padding-sp);
  }

  .renkei_ttl {
    justify-content: center;
  }

  .renkei_list {
    flex-direction: column;
    gap: 0;
  }

  .renkei_list ul li p {
    padding-left: 1em;
    text-indent: -1em;
  }
}

.page_title {
  margin-bottom: 80px;
  padding-top: 80px;
  text-align: center;
}

.page_title span {
  font-weight: 500;
  position: relative;
}

.page_title span::after {
  background: url(/common_osaka/images/com/title.png) no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  width: 61px;
  height: 64px;
  position: absolute;
  top: -20px;
  left: -35px;
}

@media (max-width: 780px) {
  .page_title {
    margin-bottom: 40px;
    padding-top: 40px;
  }

  .page_title span {
    font-size: 6.5vw;
  }

  .page_title span::after {
    background-size: 60%;
    top: -15px;
    left: -24px;
  }
}

/* トピックス */
#sec_topics {
  padding-top: clamp(40px, 16.27vw, 274px);
  position: relative;
  z-index: 1;
}

#sec_topics .sec_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#sec_topics h2 {
  text-align: center;
  margin-bottom: var(--h2-mb-lg);
}

#sec_topics .topics_inner {
  position: relative;
  width: 100%;
  border-radius: 30px;
  box-sizing: border-box;
}

#sec_topics .topics {
  margin: 0;
  padding: 0;
  list-style: none;
}

#sec_topics .topics .slick-track {
  display: flex;
  align-items: stretch;
}

#sec_topics .topics .slick-list {
  margin: 0 calc(-1 * min(1.77vw, 34px));
}

#sec_topics .topics .slick-slide {
  float: none;
  box-sizing: border-box;
  margin: 0 min(1.77vw, 34px);
}

#sec_topics .topics li {
  background-color: #fff;
  border-radius: 30px;
  padding: clamp(20px, 3.65vw, 70px) clamp(50px, 4.17vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}

#sec_topics .topics li > p {
  line-height: 1.6;
  padding-bottom: clamp(20px, 2.29vw, 44px);
}

#sec_topics .topics li strong {
  font-weight: bold;
}

#sec_topics .topics .logo_topics {
  text-align: center;
}

#sec_topics .topics_arrow {
  width: 33px;
  height: 33px;
  border: none;
  background-color: transparent;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
  z-index: 2;
}

@media (min-width: 781px) {
  #sec_topics .topics_arrow {
    display: none;
  }
  #sec_topics .topics {
    display: flex;
    justify-content: space-between;
  }
  #sec_topics .topics li {
    width: 48%;
  }
}
@media (max-width: 780px) {
  #sec_topics h2 {
    margin-bottom: 40px;
  }
}

#sec_topics .topics_prev {
  left: 1.3%;
  background: center / contain no-repeat url(/common_osaka/images/left-g.png);
}

#sec_topics .topics_next {
  right: 1.3%;
  background: center / contain no-repeat url(/common_osaka/images/right-g.png);
}

#sec_topics .slick-slide {
  height: unset !important;
  min-height: unset !important;
}

/* 共通ボタン */
.btn_detail {
  background-color: #fff;
  border: 1px solid #28ac4b;
  border-radius: 40px;
  max-width: 357px;
  width: 100%;
  margin: clamp(30px, 8vw, 65px) auto 0;
  position: relative;
}

.btn_detail a:hover {
  cursor: pointer;
}

.btn_detail p {
  font-size: 1rem;
  font-weight: bold;
  color: #28ac4b;
  text-align: center;
  padding: clamp(12px, 1.5vw, 24px) 0;
}

.btn_detail p span::after {
  content: "";
  display: block;
  width: 8px;
  height: 12px;
  background: center / contain no-repeat url(/common_osaka/images/right-arrow-g.png);
  position: absolute;
  right: 7%;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}

@media (max-width: 780px) {
  .btn_detail {
    width: 90%;
  }
}

@media (max-width: 780px) {
  #sec_topics {
    padding-top: 40px;
  }

  #sec_topics .topics .slick-list {
    margin: 0;
  }

  #sec_topics .topics .slick-slide {
    width: 100% !important;
    margin: 0;
    box-sizing: border-box;
  }

  #sec_topics .topics li {
    width: 100%;
  }

  #sec_topics .topics_arrow {
    width: 20px;
    height: 20px;
  }

  #sec_topics .topics_prev {
    left: 4%;
  }

  #sec_topics .topics_next {
    right: 4%;
  }
}

/* 追尾ボタン */
.btn_mv_contact_wrap {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.3vw, 13px);
  justify-content: flex-end;
  padding-right: 40px;
  position: fixed;
  right: 0;
  bottom: 3%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}

.btn_mv_contact_wrap.is-active {
  opacity: 1;
  visibility: visible;
}

.btn_icon {
  width: clamp(35px, 3vw, 55px);
  height: clamp(35px, 3vw, 55px);
  background: url(/common_osaka/images/icon_top.png) center/contain no-repeat;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.btn_mv_contact {
  display: inline-flex;
  align-items: center;
  position: relative;
  gap: clamp(10px, 2vw, 24px);
  background-color: #28ac4b;
  border-radius: 33px;
  padding: clamp(10px, 1vw, 20px) clamp(30px, 11vw, 160px) clamp(10px, 1vw, 20px) clamp(20px, 5vw, 60px);
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  white-space: nowrap;
  overflow: visible;
  box-shadow: 2px 2px 4px gray;
}

.btn_mv_contact .btn_label {
  font-size: clamp(14px, 1vw, 20px);
}

.btn_mv_contact .btn_character {
  width: clamp(50px, 9vw, 116px);
  aspect-ratio: 1 / 1.5;
  aspect-ratio: 116 / 184;
  background: url(/top/images/photo_01_2x.png) center / contain no-repeat;
  position: absolute;
  right: clamp(-15px, -2vw, -35px);
  bottom: clamp(-20px, -2vw, -30px);
  right: 6%;
  bottom: -40%;
}

@media (max-width: 780px) {
  .btn_mv_contact_wrap {
    bottom: 16%;
    padding-right: 20px;
  }

  .btn_mv_contact {
    display: none;
  }
}

/* ハンバーガーメニュー */
@media (min-width: 781px) {
  .hamburger,
  .menu {
    display: none;
  }
}

@media (max-width: 780px) {
  .hamburger {
    background-color: #28ac4b;
    position: fixed;
    bottom: -30px;
    right: -20px;
    cursor: pointer;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.4s ease,
      visibility 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 128px;
    height: 128px;
  }

  .hamburger.is-active {
    opacity: 1;
    visibility: visible;
  }

  .hamburger span {
    display: block;
    height: 3px;
    width: 30px;
    background-color: #fff;
    margin: 2.5px auto;
    transition: 0.4s;
  }

  .hamburger p {
    font-size: 16px;
    text-align: center;
    padding-top: 4px;
    color: #fff;
  }

  .menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    height: 100%;
    background-color: #fef6e7;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    padding: 20px;
    box-sizing: border-box;
    z-index: 10000;
  }

  .menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .menu ul li {
    font-size: 14px;
  }

  .menu li:not(:last-child) {
    padding-bottom: 20px;
  }

  .menu li a {
    position: relative;
  }

  .menu li a span {
    padding-left: 26px;
  }

  .menu li a span::after {
    content: "";
    display: block;
    width: 16px;
    height: 18px;
    background: center / contain no-repeat url(/common_osaka/images/icon-futaba.svg);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none;
    transition: 0s !important;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

/* フッター */
@media all and (min-width: 781px) {
  .footer_contact {
    display: none;
  }
}

@media all and (max-width: 780px) {
  .footer_contact {
    display: flex;
    gap: 10px;
    position: fixed;
    left: 20px;
    bottom: 10px;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.4s ease,
      visibility 0.4s ease;
  }

  .footer_contact.is-active {
    opacity: 1;
    visibility: visible;
  }

  .footer_contact a {
    width: 17%;
  }

  .footer_contact a img {
    display: inline-block;
    object-fit: contain;
  }
}

.footer {
  padding: clamp(20px, 5.2083vw, 100px);
}

.footer_bnr {
  margin: 0 auto 100px;
  max-width: 1200px;
}

.footer_bnr ul {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.footer_bnr li {
  width: 300px;
}

.footer_bnr li a {
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: relative;
  text-align: right;
  width: 100%;
  height: 100px;
}

.footer_bnr li a .txt {
  font-size: clamp(14px, 1.94vw, 18px);
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}

.footer_bnr li.bnr_tmi a {
  background-image: url(/common_osaka/images/footer/bnr_tmi.jpg);
}

.footer_bnr li.bnr_pamphlet a {
  background-image: url(/common_osaka/images/footer/bnr_pamphlet.jpg);
}

.footer_bnr li.bnr_form a {
  background-image: url(/common_osaka/images/footer/bnr_form.jpg);
}

@media all and (max-width: 768px) {
  .footer_bnr ul {
    align-items: center;
    flex-direction: column;
    gap: 20px;
  }

  .footer_bnr ul li {
    max-width: 300px;
    width: 100%;
  }

  .footer_bnr li a .txt {
    right: 30px;
  }
}

.footer_wrap {
  max-width: 1410px;
  margin: 0 auto;
}

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

.footer_left {
  width: 24%;
}

.footer_logo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 40px;
}

.footer_box .logo_osaka {
  max-width: 415px;
  height: auto;
}

.footer_logo p {
  background-color: #28ac4b;
  padding: 16px 6px;
  font-size: clamp(10px, 0.73vw, 13px);
  font-weight: 500;
  color: #fff;
  border-radius: 5px;
  line-height: 1.3;
  white-space: nowrap;
}

.footer_address li:not(:last-child) {
  padding-bottom: 20px;
}

.footer_address p {
  font-size: clamp(12px, 0.73vw, 14px);
  line-height: 1.5;
}

.footer_note {
  font-size: clamp(12px, 0.73vw, 14px);
  padding-top: 20px;
  line-height: 1.5;
}

.honmachi {
  font-weight: bold;
  color: #2eb6aa;
}

.kita {
  font-weight: bold;
  color: #f19ca6;
}

.higashi {
  font-weight: bold;
  color: #f6ad3c;
}

.footer_right {
  width: 68%;
}

.footer_nav ul {
  display: flex;
  flex-wrap: wrap;
}

.footer_nav ul li {
  font-size: clamp(14px, 0.94vw, 18px);
  background: url(/common_osaka/images/right-arrow-g.png) no-repeat 0 1px / 9px 12px;
  padding-left: 18px;
  margin-bottom: 20px;
  max-width: 257px;
  width: 30%;
}

.footer_copyright {
  font-size: clamp(12px, 0.73vw, 14px);
  text-align: right;
}

@media all and (max-width: 780px) {
  .footer_wrap {
    padding-bottom: 20%;
  }

  .footer_box {
    flex-direction: column;
  }

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

  .footer_logo {
    justify-content: center;
    padding-bottom: 20px;
  }

  .footer_box .logo_osaka {
    width: 80%;
    margin: 0 auto;
  }

  .footer_address li:not(:last-child) {
    padding-bottom: 10px;
  }

  .footer_address p .honmachi,
  .footer_address p .kita,
  .footer_address p .higashi {
    font-size: 14px;
  }

  .footer_right {
    display: none;
  }

  .footer_copyright {
    padding-top: 40px;
    text-align: center;
  }
}

@media all and (max-width: 480px) {
  .footer_wrap {
    padding-bottom: 44%;
  }
}

/* アニメーション */
.js-fade {
  opacity: 1;
  transform: none;
}

body.is-anim .js-fade {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

body.is-anim .js-fade.is-show {
  opacity: 1;
  transform: translateY(0);
}
