@charset "UTF-8";
/*
Theme Name: ハロクリニック
*/

@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500&display=swap");

p,
a,
li,
dt,
dd,
time,
h1,
h2,
h3,
h4,
h5,
h6,
th,
td,
span,
label,
div,
input {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
}

:root {
  --body: #375167;
  --link: #000;
  --primary: #ffe1d1;
  --secondary: #fdefe7;
  --third: #fdf8e7;
  --forth: #ffe1d1;
  --white: #fff;
  --orange: #fa9d38;
  --Linegreen: #5ac363;
  --bg: #fcfcfc;
  --fontFamily: "Zen Maru Gothic", sans-serif;
}

body {
  width: 750px;
  margin: auto;
  background-color: var(--bg);
  color: var(--body);
}
a {
  color: var(--body);
}
img {
  max-width: 100%;
}
@media screen and (max-width: 749px) {
  body {
    width: 100%;
  }
}
.center {
  text-align: center;
}
.right {
  text-align: right;
}
.left {
  text-align: left;
}

/*===================================================================

header

===================================================================*/
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #f8f8f8;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.logo-container {
  display: flex;
  align-items: center;
}
.logo {
  width: 80px;
  height: 50px;
}
.header-image {
  width: 125px;
  height: 50px;
}
.logo,
.header-image {
  max-height: 50px;
  margin-right: 10px;
}
@media screen and (max-width: 400px) {
  header {
    padding: 10px 4px;
  }
  .logo,
  .header-image {
    margin-right: 4px;
  }
  .logo {
    width: 60px;
    height: 40px;
  }
  .header-image {
    width: 100px;
    height: 40px;
  }
  .logo,
  .header-image {
    max-height: 40px;
    margin-right: 2px;
  }
}

/*ハンバーガーバー*/
.hamburger-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  cursor: pointer;
}
.line {
  width: 100%;
  height: 3px;
  background-color: var(--body);
}
.hamburger-menu:hover .line {
  background-color: var(--body);
}

/*ハンバーガーバーメニュー*/
.menu-content {
  width: 750px;
}
@media screen and (max-width: 749px) {
  .menu-content {
    width: 100%;
  }
}

.menu-content {
  display: none;
  /*
	position: absolute;
    top: 35px;
    left: 0;
    width: 100%;
	*/
  padding: 15px 0;
  background-color: var(--secondary);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 10;
}
.menu-content > .list-container > ul li {
  margin-left: 5px;
  margin-right: 5px;
}
.menu-content > .list-container > ul li:hover {
  background-color: #f0f0f0;
}

/*メニューが開いている時のスタイル*/
.menu-active {
  display: block;
}
.hamburger-menu.active {
  background-color: #f0f0f0;
}
.hamburger-menu.active .line1 {
  transform: rotate(45deg) translate(5px, 5px);
  z-index: 100;
  background-color: var(--body);
}
.hamburger-menu.active .line2 {
  opacity: 0;
  background-color: var(--body);
}
.hamburger-menu.active .line3 {
  transform: rotate(-45deg) translate(7px, -8px);
  z-index: 100;
  background-color: var(--body);
}

/*fixed 今すぐLINEで診察予約*/
.fixedLinks {
  position: fixed;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
  color: var(--white);
  background-color: var(--Linegreen);
  transition: background-color 0.3s ease-in, transform 0.3s ease-in;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: background-color, transform;
  left: 0;
  width: 100%;
  padding-top: 2em;
  padding-bottom: 2em;
  text-decoration: none;
}
.fixedLinks:hover {
  background-color: #49a751;
}
.fixedLinks > span {
  font-size: 1.8rem;
  text-indent: 0.05em;
  letter-spacing: 0.05em;
}
.fixedLinks > img {
  margin-right: 0.2em;
  width: 1.8rem;
}
@media screen and (max-width: 390px) {
  .fixedLinks > span {
    font-size: 1.4rem;
    text-indent: 0.2em;
  }
  .fixedLinks > img {
    margin-right: 0;
    width: 1.4rem;
  }
}

/*===================================================================

index

===================================================================*/
.fv_image {
  position: relative;
  text-align: center;
}

.fv_image img {
  width: 100%;
  height: auto;
}

.text-overlay {
  position: absolute;
  top: 50%;
  left: 65%;
  transform: translate(-50%, -50%);
  font-size: 1.6rem;
  color: var(--body);
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff,
    1px 1px 0 #fff;
}
.text-overlay span {
  font-size: 1rem;
}
@media screen and (max-width: 600px) {
  .text-overlay {
    width: 70%;
    font-size: 1.2rem;
    line-height: 1.4em;
  }
  .text-overlay span {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 320px) {
  .text-overlay {
    width: 90%;
    font-size: 1rem;
  }
}

.fv_slider {
  width: 100%;
  overflow: hidden;
}
.fv_slides {
  display: flex;
  animation: fv_slide-animation 12s infinite;
}
.fv_slide {
  width: 100%;
  flex-shrink: 0;
  transition: ease 1s;
}
.fv_slide img {
  width: 100%;
  height: auto;
  display: block;
}
@keyframes fv_slide-animation {
  0% {
    transform: translateX(0);
    opacity: 0.2;
  }
  32% {
    transform: translateX(0);
    opacity: 1;
  }
  33% {
    transform: translateX(0);
    opacity: 0;
  }
  34% {
    transform: translateX(-100%);
    opacity: 0.2;
  }
  67% {
    transform: translateX(-100%);
    opacity: 1;
  }
  68% {
    transform: translateX(-100%);
    opacity: 0;
  }
  69% {
    transform: translateX(-200%);
    opacity: 0.2;
  }
  100% {
    transform: translateX(-200%);
    opacity: 1;
  }
}

/*矢印ボタン*/
.arrow-button1,
.arrow-button2 {
  display: inline-block;
  background-color: var(--white);
  border: 1px solid var(--orange);
  border-radius: 100px;
  width: 80%;
  text-align: center;
  font-size: 1.2em;
  padding: 10px 20px;
  position: relative;
  text-decoration: none;
  color: var(--orange);
  margin: 0.25em auto;
}
.arrow-button1::after,
.arrow-button2::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1px solid var(--orange);
  border-right: 1px solid var(--orange);
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}
.arrow-button1 {
  background-color: var(--white);
}
.arrow-button2 {
  background-color: var(--secondary);
}

.arrow-button2 a,
.arrow-button1 a {
  text-decoration: none;
  color: var(--orange);
}

/*診療時間テーブル*/
.reserv_table {
  width: 96%;
  margin: 0.8em auto;
  border: var(--body) 1px solid;
  border-radius: 5px;
  background-color: var(--white);
}

/*LINE CTA*/
.line_cta_btn {
  width: 80%;
  display: block;
  margin: 0.5em auto;
  background-color: var(--Linegreen);
  padding: 0.5em;
  color: var(--white);
  text-align: center;
  text-decoration: none;
  font-size: 1.6rem;
  border-radius: 100px;
}
.line_cta_btn img {
  margin-right: 0.2em;
  width: 1.8rem;
}
.line_cta_btn span {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 390px) {
  .line_cta_btn img {
    margin-right: 0;
    width: 1.4rem;
  }
  .line_cta_btn span {
    font-size: 1.4rem;
    text-indent: 0.2em;
  }
}

/*WEB CTA*/
.web_cta_btn {
  width: 80%;
  display: block;
  margin: 0.5em auto;
  background-color: #2e76b3;
  padding: 0.5em;
  color: var(--white);
  text-align: center;
  text-decoration: none;
  font-size: 1.6rem;
  border-radius: 100px;
}
.web_cta_btn img {
  margin-right: 0.2em;
  width: 1.8rem;
}
.web_cta_btn span {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 390px) {
.web_cta_btn img {
    margin-right: 0;
    width: 1.4rem;
  }
.web_cta_btn span {
    font-size: 1.4rem;
    text-indent: 0.2em;
  }
}

/*タイトル*/
.title {
  display: table;
  margin-left: auto;
  margin-right: auto;
  border-bottom-style: solid;
  border-bottom-color: currentColor;
  text-align: center;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  font-size: 1.6rem;
}

.attention {
  padding: 0.5em;
}

/* お客様の声 */
.p-review>.p-review-inner {
  background-image: unset;
}
.p-review {
  margin-block: 3em;
}

/*お気軽にご相談ください*/
.advice-block {
  margin: 3em 1em;
}
.advice-block-inner {
  font-size: 1.2rem;
  line-height: 1.8rem;
}

.advice-main-txt {
  font-size: 1.6rem;
  line-height: 1.8rem;
  color: var(--orange);
}

.advice-block-inner {
  background-image: url("http://yobouiryoukai.com/ebisu/wp-content/uploads/2024/01/bg_heart01.jpg");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 20%;
}
@media screen and (max-width: 500px) {
  .advice-block-inner {
    background-size: 160px 176px;
  }
}
@media screen and (max-width: 320px) {
  .advice-block-inner {
    background-size: 111px 122px;
  }
}

/*ご安心ください*/
.sc_greet {
  background-color: var(--third);
  border-radius: 100px;
  margin: 1em 0.5em 1.5em;
  padding: 0.5em 1.5em 2em;
  line-height: 1.6rem;
}

.greet-main-txt {
  display: table;
  margin-left: auto;
  margin-right: auto;
  border-bottom: double 6px currentColor;
  text-align: center;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  font-size: 1.6em;
  line-height: 1.6em;
}

/*こんな症状で悩んでいませんか？*/
.section01 {
  background-color: var(--secondary);
}
.section01_inner {
  padding: 0.5em;
}
.section0_top,
.section0_bottom {
  width: 100%;
  height: 190px;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 551px) {
  .section0_top,
  .section0_bottom {
    height: 145px;
  }
}
@media screen and (max-width: 472px) {
  .section0_top,
  .section0_bottom {
    height: 120px;
  }
}
@media screen and (max-width: 433px) {
  .section0_top,
  .section0_bottom {
    height: 110px;
  }
}
@media screen and (max-width: 394px) {
  .section0_top,
  .section0_bottom {
    height: 100px;
  }
}
@media screen and (max-width: 315px) {
  .section0_top,
  .section0_bottom {
    height: 80px;
  }
}
.section0_top {
  background-image: url("http://yobouiryoukai.com/ebisu/wp-content/uploads/2024/01/line_1_fuwa_top.png");
}
.section0_bottom {
  background-image: url("http://yobouiryoukai.com/ebisu/wp-content/uploads/2024/01/line_1_fuwa_bottom.png");
}

.worry-list {
  padding: 0;
  list-style: none;
  font-size: 1.2em;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  overflow: hidden;
}
.worry-list li {
  position: relative;
  width: 100%;
  margin: 1em auto 3em;
  padding-top: 1.5em;
  background-color: var(--white);
  text-align: center;
}

@media screen and (max-width: 320px) {
  .worry-list li:nth-child(even) {
    text-align: left;
    padding-left: 1.5em;
  }
  .worry-list li:nth-child(odd) {
    text-align: right;
    padding-right: 1.5em;
  }
}

.worry-list li:after {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
}

.worry-list li:nth-child(1):after {
  background-image: url(http://yobouiryoukai.com/ebisu/wp-content/themes/ebisu/img/worry-list01.png);
  width: 140px;
  height: 140px;
  left: -20px;
  bottom: -50px;
}

.worry-list li:nth-child(2):after {
  background-image: url(http://yobouiryoukai.com/ebisu/wp-content/themes/ebisu/img/worry-list06.png);
  width: 140px;
  height: 140px;
  right: -50px;
  bottom: -50px;
}

.worry-list li:nth-child(3):after {
  background-image: url(http://yobouiryoukai.com/ebisu/wp-content/themes/ebisu/img/worry-list04.png);
  width: 140px;
  height: 140px;
  left: -10px;
  bottom: -50px;
}

.worry-list li:nth-child(4):after {
  background-image: url(http://yobouiryoukai.com/ebisu/wp-content/themes/ebisu/img/worry-list05.png);
  width: 140px;
  height: 140px;
  right: -10px;
  bottom: -50px;
}

.worry-list li:nth-child(5):after {
  background-image: url(http://yobouiryoukai.com/ebisu/wp-content/themes/ebisu/img/worry-list02.png);
  width: 140px;
  height: 140px;
  left: -20px;
  bottom: -50px;
}

.worry-list li:nth-child(6):after {
  background-image: url(http://yobouiryoukai.com/ebisu/wp-content/themes/ebisu/img/worry-list03.png);
  width: 140px;
  height: 140px;
  right: -10px;
  bottom: -50px;
}

@keyframes border-radius-animation {
  0% {
    border-radius: 62% 38% 73% 27% / 50% 42% 58% 50%;
  }
  15% {
    border-radius: 32% 68% 44% 56% / 58% 52% 48% 42%;
  }
  30% {
    border-radius: 56% 44% 65% 35% / 36% 34% 66% 64%;
  }
  45% {
    border-radius: 73% 27% 83% 17% / 56% 30% 70% 44%;
  }
  60% {
    border-radius: 70% 30% 38% 62% / 59% 66% 34% 41%;
  }
  75% {
    border-radius: 44% 56% 70% 30% / 37% 45% 55% 63%;
  }
  90% {
    border-radius: 62% 38% 64% 36% / 40% 49% 51% 60%;
  }
  100% {
    border-radius: 62% 38% 73% 27% / 50% 42% 58% 50%;
  }
}
.worry-list li:nth-child(1) {
  width: 80%;
  height: 6em;
  animation: border-radius-animation 12s linear infinite;
}

.worry-list li:nth-child(2) {
  width: 90%;
  height: 5em;
  animation: border-radius-animation 8s linear infinite;
}

.worry-list li:nth-child(3) {
  width: 90%;
  height: 6em;
  animation: border-radius-animation 6s linear infinite;
}

.worry-list li:nth-child(4) {
  width: 85%;
  height: 5em;
  animation: border-radius-animation 10s linear infinite;
}

.worry-list li:nth-child(5) {
  width: 100%;
  height: 5em;
  animation: border-radius-animation 3s linear infinite;
}

.worry-list li:nth-child(6) {
  width: 90%;
  height: 5em;
  animation: border-radius-animation 13s linear infinite;
}

@media screen and (min-width: 600px) {
  .worry-list li:nth-child(1) {
    width: 300px;
  }
  .worry-list li:nth-child(2) {
    width: 400px;
  }
  .worry-list li:nth-child(3) {
    width: 360px;
  }
  .worry-list li:nth-child(4) {
    width: 380px;
  }
  .worry-list li:nth-child(5) {
    width: 400px;
  }
  .worry-list li:nth-child(6) {
    width: 360px;
  }
}

.check_s {
  width: 1em;
  margin-right: 2px;
}

.worry-txt {
  font-size: 1.2em;
  text-align: center;
  line-height: 1.2enm;
}
.mark {
  text-decoration: underline;
  text-decoration-style: dotted;
}

/*4つの特徴*/
.feature-section {
  background-color: var(--primary);
}
.feature-section h2 {
  margin-bottom: 2em;
  max-width: 94%;
}

.feature_top {
  width: 100%;
  height: 127px;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 650px) {
  .feature_top {
    height: 110px;
  }
}
@media screen and (max-width: 591px) {
  .feature_top {
    height: 100px;
  }
}
@media screen and (max-width: 531px) {
  .feature_top {
    height: 90px;
  }
}
@media screen and (max-width: 472px) {
  .feature_top {
    height: 80px;
  }
}
@media screen and (max-width: 413px) {
  .feature_top {
    height: 70px;
  }
}
@media screen and (max-width: 354px) {
  .feature_top {
    height: 60px;
  }
}
.feature_top {
  background-image: url("http://yobouiryoukai.com/ebisu/wp-content/uploads/2024/01/feature_top.png");
}

.feature_bottom {
  width: 100%;
  height: 100px;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 675px) {
  .feature_bottom {
    height: 90px;
  }
}
@media screen and (max-width: 600px) {
  .feature_bottom {
    height: 80px;
  }
}
@media screen and (max-width: 525px) {
  .feature_bottom {
    height: 70px;
  }
}
@media screen and (max-width: 450px) {
  .feature_bottom {
    height: 60px;
  }
}
@media screen and (max-width: 375px) {
  .feature_bottom {
    height: 50px;
  }
}
.feature_bottom {
  background-image: url("http://yobouiryoukai.com/ebisu/wp-content/uploads/2024/01/feature_bottom.png");
}

.feature-text-section h3 {
  color: var(--orange);
}
.feature-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--white);
  position: relative;
  margin: 1em 1em 2em;
  border-radius: 30px;
  padding: 1em 0.5em;
}

.feature-caption {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--orange);
  color: var(--white);
  padding: 0.2em 1em;
  letter-spacing: 0.05em;
  border-radius: 30px;
}
@media screen and (max-width: 675px) {
  .feature-caption {
    font-size: 1.2em;
  }
}

.feature-text-section {
  flex-grow: 1;
  width: 580px;
}

.feature-image-section {
  flex-grow: 1;
  width: 100px;
}

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

@media screen and (max-width: 600px) {
  .feature-caption {
    width: 60%;
    text-align: center;
  }
  .feature-text-section {
    width: 80%;
    padding: 0 0.3em;
  }
  .feature-image-section {
    width: 20%;
  }
}

/*予約方法*/
.sc_reserve_inner {
  padding: 0.5em;
}

/*吹き出し*/
.interview-section {
  background-color: var(--secondary);
  border-radius: 100px;
  margin-top: 2em;
  margin-bottom: 2em;
}

.interview-section_top {
  width: 100%;
  height: 100px;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 774px) {
  .interview-section_top {
    height: 90px;
  }
}
@media screen and (max-width: 688px) {
  .interview-section_top {
    height: 80px;
  }
}
@media screen and (max-width: 602px) {
  .interview-section_top {
    height: 70px;
  }
}
@media screen and (max-width: 516px) {
  .interview-section_top {
    height: 60px;
  }
}
@media screen and (max-width: 430px) {
  .interview-section_top {
    height: 50px;
  }
}
@media screen and (max-width: 344px) {
  .interview-section_top {
    height: 40px;
  }
}
.interview-section_top {
  background-image: url("http://yobouiryoukai.com/ebisu/wp-content/uploads/2024/01/interview-section_top.png");
}

.interview-section_inner {
  padding: 1em 0.5em 2em;
}

.balloon-left {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 0 22px;
  margin-bottom: 2em;
}

.balloon-left img {
  max-width: 100px;
  height: 100%;
}

.balloon-left p {
  position: relative;
  max-width: 300px;
  margin: 3px 0 0;
  padding: 0.8em 1em;
  border-radius: 5px;
  background-color: var(--white);
  color: var(--body);
}

.balloon-left p::before {
  position: absolute;
  left: -15px;
  width: 15px;
  height: 30px;
  background-color: var(--white);
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
  content: "";
}

.balloon-right {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 0 22px;
  margin-bottom: 2em;
}

.balloon-right img {
  max-width: 100px;
  height: 100%;
}

.balloon-right p {
  position: relative;
  max-width: 300px;
  margin: 3px 0 0;
  padding: 0.8em 1em;
  border-radius: 5px;
  background-color: var(--white);
  color: var(--body);
}

.balloon-right p::before {
  position: absolute;
  right: -15px;
  width: 15px;
  height: 30px;
  background-color: var(--white);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  content: "";
}

/*スライダー*/
.slider {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: auto;
  overflow: hidden;
}

.slides .slide {
  display: none;
  width: 100%;
  height: 454px;
  border-radius: 50%;
}

.slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slides .slide img {
  border-radius: 20px;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: var(--body);
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
  background-color: rgba(55, 81, 103, 0.8);
  color: var(--white);
}

.dot {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 4px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.dots {
  text-align: center;
}

.active,
.dot:hover {
  background-color: var(--body);
}

/*アクセス*/
.group-int {
  background-color: var(--secondary);
}

.slider-section_top,
.access_top {
  width: 100%;
  height: 70px;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width: 645px) {
  .slider-section_top,
  .access_top {
    height: 60px;
  }
}
@media screen and (max-width: 538px) {
  .slider-section_top,
  .access_top {
    height: 50px;
  }
}
@media screen and (max-width: 430px) {
  .slider-section_top,
  .access_top {
    height: 40px;
  }
}
@media screen and (max-width: 323px) {
  .slider-section_top,
  .access_top {
    height: 30px;
  }
}

.slider-section_top {
  background-image: url("http://yobouiryoukai.com/ebisu/wp-content/uploads/2024/01/slider-section_top.png");
}

.access_top {
  background-image: url("http://yobouiryoukai.com/ebisu/wp-content/uploads/2024/01/access_top_img.png");
}
.location {
  padding: 0.5em;
}

.access_link-container {
  display: flex;
  align-items: center;
  margin-bottom: 1em;
}

.access_link {
  font-size: 1.2rem;
  text-align: center;
  box-sizing: border-box;
  text-decoration: none;
  padding: 0 0.5em;
}

.line_cta_btn02 {
  width: 8em;
  background-color: var(--Linegreen);
  color: var(--white);
  border-radius: 100px;
  padding: 0.6em;
  margin-right: 1em;
}
.line_cta_btn02 img {
  margin-right: 0.2em;
  width: 1.2rem;
}
.line_cta_btn02 span {
  letter-spacing: 0.05em;
}

.access_map {
  width: 8em;
  border: 1px solid var(--white);
  border-radius: 100px;
}

@media screen and (max-width: 390px) {
  .access_link {
    font-size: 1rem;
  }
  .line_cta_btn02 img {
    margin-right: 0.2em;
    width: 1.2rem;
  }
  .line_cta_btn02 span {
    text-indent: 0.2em;
    letter-spacing: 0;
  }
  .line_cta_btn02 {
    width: 45%;
  }
  .access_map {
    width: 45%;
  }
}

.location h3 {
  font-size: 1.6rem;
}

.place {
  font-size: 1.2rem;
}

.balloon-001 {
  display: flex;
  justify-content: center;
  position: relative;
  width: 12rem;
  max-width: 300px;
  margin-bottom: 15px;
  padding: 0.8em 1.2em;
  border: 1px solid var(--orange);
  border-radius: 30px;
  background-color: var(--white);
  color: var(--orange);
}

.balloon-001::before,
.balloon-001::after {
  position: absolute;
  bottom: -15px;
  width: 30px;
  height: 15px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
}

.balloon-001::before {
  background-color: var(--orange);
}

.balloon-001::after {
  bottom: -14px;
  background-color: var(--white);
}

.location table.operating_company {
  background-color: var(--secondary);
}

/*ツイッター*/
.twitter_timeline {
  max-width: 80%;
  margin: auto;
  max-height: 500px;
  overflow-y: scroll;
}

/*スクロールバー*/
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 5px;
}

/*地図*/
.fgmap iframe {
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
}

.doctor {
  background-color: var(--secondary);
}
.doctor_inner {
  padding: 1em;
  text-align: center;
}
.doctor_image {
  border-radius: 50%;
  width: 200px;
  height: 200px;
  object-fit: cover;
  margin: auto;
}

.doctor_text {
  text-align: left;
  background-color: var(--white);
  padding: 1.5em;
  border-radius: 50px;
}
.doctor_name {
  font-size: 1.4rem;
}

/*===================================================================

page

===================================================================*/

#breadcrumbs {
  margin-bottom: 40px;
  padding: 10px 15px 12px;
}
#breadcrumbs ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
  padding-left: 0;
}
#breadcrumbs ul li {
  padding-left: 10px;
  display: inline-block;
  line-height: 2em;
}
#breadcrumbs ul li.separator {
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
}
#breadcrumbs ul li:first-of-type {
  padding-left: 0;
}
#breadcrumbs ul li a,
#breadcrumbs ul li {
  font-size: 1rem;
}
#breadcrumbs ul li a:hover {
  text-decoration: underline;
}

.page_section {
  background-color: var(--secondary);
}
.page_section_inner {
  padding: 0.5em;
}

section.first {
  padding: 0;
  margin: 0;
}
h1.sub-header-txt {
  text-align: center;
  padding: 1em auto 0.5em;
  margin: 0;
}

/*===================================================================

footer

===================================================================*/
.logo_footer {
  width: 200px;
  margin: auto;
}
@media screen and (max-width: 500px) {
  .logo_footer {
    width: 40%;
  }
}
@media screen and (max-width: 390px) {
  .logo_footer {
    width: 50%;
  }
}

.footer {
  background-color: var(--secondary);
}
.footer-inner {
  padding: 0.5em;
}

.operating_company {
  background-color: var(--white);
  width: 100%;
  padding: 0.5em;
}
.operating_company th {
  color: var(--orange);
  text-align: left;
  width: 5em;
}
.operating_company td {
}

/*フッターリスト*/
.list-container {
  width: 100%;
  background-color: var(secondary);
}

.list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}

.list li {
  margin-right: 10px;
  flex-basis: calc(50% - 10px);
  box-sizing: border-box;
  background-color: var(--white);
  margin-bottom: 0.5em;
  border-radius: 10px;
  padding: 1em 0.5em;
}

.list li a {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.list li img {
  margin-right: 10px;
  width: 50px;
  height: auto;
}

.footer-address > p.name {
  font-size: 1.6rem;
}
.footer-address > p.address {
  font-size: 1.2rem;
}
.footer-address > p.tel {
  font-size: 1.2rem;
  margin-bottom: 1.5em;
}

#page-top {
  position: fixed;
  right: 30px;
  bottom: 70px;
  z-index: 2;
}
@media screen and (max-width: 749px) {
  #page-top {
    position: fixed;
    right: 15px;
    bottom: 90px;
  }
}

#page-top img {
  max-height: 50px;
  width: auto;
}
#page-top img:hover {
  opacity: 0.8;
}

.copyright {
  margin-bottom: 4em;
}
.copyright p {
  text-align: center;
  font-size: 1.2rem;
}
@media screen and (max-width: 749px) {
  .copyright p {
    margin: 10px 0 0;
    font-size: 0.9rem;
  }
}
.copyright p {
  background: var(--primary);
  margin-bottom: 0;
  padding: 10px;
}

/* fv-slider */
.sample-slider {
  width: 100%;
}
.sample-slider img {
  width: 100%;
}
.sample-slider .swiper-wrapper {
  transition-timing-function: linear;
}

.message-section_inner {
  padding: 16px;
  border: 4px solid #ffe1d1;
  border-radius: 30px;
  text-align: center;
  font-size: 1.2rem;
}

.message-section_inner span {
  background: linear-gradient(transparent 50%, #99ccff 0%);
}

/* よくある質問 */
.accordion_qa {
  padding: 0.5em;
}
.qa_accordion {
  padding: 1.6rem 0;
  border-bottom: 1px solid #dbdbdb;
}
.qa_accordion__dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.6rem;
  font-weight: 600;
  color: var(--body);
  cursor: pointer;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
@media (min-width: 769px) {
  .qa_accordion__dt {
    gap: 1.6rem;
    font-size: 1.2rem;
    line-height: 1;
  }
  .qa_accordion__dt:hover,
  .qa_accordion__dt:active {
    opacity: 0.7;
  }
}
.qa_accordion__dt_icon {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 1.2rem;
  height: 3px;
  background: var(--body);
}
.qa_accordion__dt_icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--body);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.qa_accordion__dt.is-opened .qa_accordion__dt_icon::before {
  opacity: 0;
}
.qa_accordion__dd {
  display: none;
  margin-inline-start: 2em;
  margin-inline-end: 2em;
}
.qa_accordion__dd_inner {
  padding-top: 1.4rem;
}
@media (min-width: 769px) {
  .qa_accordion__dd_inner {
    padding-top: 2.4rem;
    line-height: 1.6666666667;
  }
}

/* 道順 */
.directions {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.directions > div{
  max-width:100%;
}

.directions-img_wrapper {
  width: 400px;
  height: 400px;
  margin-bottom: 20px;
  max-width: 100%;
}

.directions-img_wrapper > img {
  border-radius: 16px;
  width: 100%;
  height: 100%;
}


/* 医師紹介追加 */
.introduction_doctor_inner {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

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

.introduction_doctor_image {
  border-radius: 50%;
  width: 190px;
  height: 190px;
  object-fit: cover;
padding-right:6px;
}

.introduction_doctor_text_bg {
  width: calc(100% - 210px);
  background-color: var(--white);
  border-radius: 50px;
  padding: 1em;
}

.introduction_doctor_text {
  max-height: 4.5em;
  overflow: hidden;
  text-overflow: ellipsis;
}

.introduction_accordion_button {
  display: block;
  background-color: var(--primary);
  color: #444;
  text-decoration: none;
  cursor: pointer;
  padding: 10px 18px;
  max-width: 8em;
  border: none;
border-radius: 20px;
  text-align: center;
  outline: none;
  font-size: 15px;
  margin-top: 10px;
margin-left:auto; margin-right:auto;
  transition: 0.4s;
}

.introduction_accordion_button:hover {
  background-color: #f3c2a0;
}

/* スマートフォン表示時のスタイル */
@media screen and (max-width: 600px) {
  .introduction_doctor_image {
      width: 150px;
      height: 150px;
  }

  .introduction_doctor_text_bg {
      width: calc(100% - 160px);
  padding: 0.5em;
  }
}

.introduction_doctor_inner .introduction_doctor_image[src=""],
.introduction_doctor_inner .introduction_doctor_image:not([src]) {
  display: none;
}

.introduction_doctor_text_bg {
  width: 100%;
}



/*ヘッダー画像追加*/
.add_header-btn-line {
    background-image: url('http://yobouiryoukai.com/ebisu/wp-content/uploads/2024/04/header_btn_07line.png');
    display: block;width:125px; height:50px;max-height: 50px;
    background-size: cover;
	margin-right: 10px;
}

.add_header-btn-web {
    background-image: url('http://yobouiryoukai.com/ebisu/wp-content/uploads/2024/04/header_btn_07web.png');
    display: block;width:125px; height:50px;max-height: 50px;
    background-size: cover;
	margin-right: 10px;
}

@media (max-width: 768px) {
    .add_header-btn-line {
        background-image: url('http://yobouiryoukai.com/ebisu/wp-content/uploads/2024/04/header_btn_06line.png');
		width: 70px;height:40px;
		margin-right: 2px;
    }

    .add_header-btn-web {
        background-image: url('http://yobouiryoukai.com/ebisu/wp-content/uploads/2024/04/header_btn_06web.png');
		width: 70px;height:40px;
		margin-right: 2px;
    }
}

@media (max-width: 520px) {
  .directions {
   padding: 0 16px;
  }
}

/* 2024/06/12 修正 */

.contents-policy{
	padding-top: 10px;
	text-align: center;
}


/* 2024/07/05 お客さまの声 修正 */


.cs-voice-wrap{
  background: #ffe1d1;
  padding: 1em 3em 4em;
  border-radius: 100px;
    margin-top: 2em;
    margin-bottom: 2em;
}

.cs-voice-wrap h2{
  margin-bottom: 4rem;
}

.cs-voice-items{
  position: relative

}
.csVoiceSwiper {
  position: relative;
}

.csVoiceSwiper .swiper-slide{
  height: auto;
  border-radius: 30px;
  padding-bottom: 4rem;
}

.cs-voice-item{
  display: flex;
  align-items: center;
  background: #fff;
  padding: 2em;
  border-radius: 30px;
  height: 100%;
  overflow: hidden;
}

.swiper-button-next,
.swiper-button-prev{
  width: 6rem !important;
  height: 6rem !important;
}
.swiper-button-prev{
  left: -50px !important;
}
.swiper-button-next{
  right: -50px !important;
}
.swiper-button-prev:after,
.swiper-button-next:after{
 color: #fff;
 background: #fa9d38;
 font-size: 1.6rem !important;
 width: 60px !important;
 height: 60px !important;
 border-radius: 50%;
 text-align: center;
 display: flex;
 align-items: center;
 flex-direction: column;
 justify-content: center;
 transform: translateX(0);
 left: 0;
}

.cs-voice-item-left{
  width: 200px;
}

.cs-voice-item-img{
  width: 160px;
  margin: 0 auto;
}

.cs-voice-item-name{
  text-align: center;
}

.cs-voice-item-right{
  width: calc(100% - 200px);
  padding:0 2rem ;
}

@media (max-width: 768px) {

  .cs-voice-wrap{
    padding: 1em 1.6em 4em;
  }

  .cs-voice-item{
    flex-direction: column;
    gap: 40px;
    padding: 2em 1.6rem;
    height:100%;
    
  }

  .cs-voice-item-right{
    width: 100%;
    padding: 0 1.6rem;
  }

  .swiper-button-prev{
    left: -16px !important;
  }
  .swiper-button-next{
    right: -16px !important;
  }

  .swiper-button-next,
  .swiper-button-prev{
    top: 18% !important;
    width: 3rem !important;
    height: 3rem !important;
  }


  .swiper-button-prev:after,
  .swiper-button-next:after{
    font-size: 1.2rem !important;
    width: 3rem !important;
    height: 3rem !important;
  }
}