@charset "UTF-8";
/* CSS Document */ :root {
  --m: #004183;
  --s1: #6696C7;
  --s2: #D8F7FA;
  --p: #FAF9EA;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  font-family: "Zen Maru Gothic", serif;
  color: var(--m);
  font-size: 1.6rem;
  font-weight: 500;
  font-feature-settings: "palt";
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  letter-spacing: 0.05em;
}
.sp-br {
  display: none;
}
p {
  line-height: 1.9;
  letter-spacing: 0.08em;
}
img {
  max-width: 100%;
  height: auto;
  border-style: none;
  vertical-align: top;
}
.img100 {
  width: 100%;
}
ul {
  list-style-type: none;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
address {
  font-style: normal;
}
h1, h2, h3, h4, h5, h6 {
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-weight: 500;
}
mark {
  background: linear-gradient(transparent 60%, #F5EFB0 40%);
  color: var(--m);
  font-weight: 700;
}
.btn01 {
  min-width: 200px;
  height: 64px;
  background-color: var(--m);
  color: #fff;
  border-radius: 15px;
  display: flex;
  align-items: center;
  padding: 0 50px 0 20px;
  width: fit-content;
  position: relative;
  transition: 0.2s;
  &::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background: url("../images/arrow-dropright.svg") no-repeat;
    width: 22px;
    height: 22px;
  }
  &:hover {
    background-color: var(--s1);
  }
}
/*アニメーション動き*/
.fade_up {
  opacity: 0;
  transform: translate(0px, 120px);
  transition-duration: 2s;
}
.mv {
  opacity: 1.0;
  transform: translate3d(0, 0, 0);
}
/* Header Styles */
.header {
  display: flex;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  position: absolute;
  justify-content: center;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: #fff;
  padding-right: max(1%, 18px);
  width: max(17.34vw, 230px);
  aspect-ratio: 333/114;
  border-radius: 0 0 max(2.6vw,40px) 0;
  img {
    width: 79%;
  }
}
.header-right {
  display: flex;
  align-items: stretch;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 15px;
  position: fixed;
  top: 1.5vw;
  right: 1vw;
  z-index: 9999;
  font-size: clamp(1.40rem, 0.83vw + 0.60rem, 1.60rem);
}
.nav {
  background-color: white;
  padding: 1.8rem 2rem;
  border-radius: 15px 0 0 15px;
}
.nav-menu {
  display: flex;
  gap: 1.5em;
}
.nav-link {
  color: var(--m);
  letter-spacing: 0.05em;
  white-space: nowrap;
  position: relative;
}
.nav-link:hover {
  color: var(--s1);
}
.nav-link:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--s1);
  transition: all .2s linear;
}
.nav-link:hover:after {
  width: 100%;
}
.nav_line-btn {
  background-color: var(--m);
  color: white;
  padding: 0 clamp(10px, 1.5vw, 30px);
  border-radius: 0 15px 15px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap:0.5em;
  transition: 0.2s;
  white-space: nowrap;
}
.nav_line-btn:hover {
  background-color: var(--s1);
}
/* Footer Styles */
footer {
  background: var(--m);
  color: white;
  padding: min(4%, 60px) 7.5% 15px;
  border-radius: max(1.2vw, 10px);
  margin: max(18vw, 100px) max(0.5%, 5px) max(0.5%, 5px);
}
.booking-buttons {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: max(6%, 70px);
}
.btn {
  background-color: #fff;
  border-radius: 100px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 48%;
  height: clamp(100px, 7.4vw, 143px);
  transition: 0.2s;
  color: var(--m);
  font-weight: 700;
}
.btn:hover {
  color: #fff;
  background-color: var(--s1);
  svg path {
    fill: white;
  }
}
.btn-label {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.btn-phone {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
}
.info-section {
  display: flex;
  gap: 7%;
  margin-bottom: max(8vw, 50px);
}
.logo-text {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.4rem;
  margin-top: 0.5rem;
}
.logo-subtext {
  font-size: 1.1rem;
  letter-spacing: 0.2rem;
  margin-top: -0.5rem;
}
.clinic-info {
  flex: 1;
}
.clinic-name {
  font-weight: 700;
  margin-bottom: 15px;
}
.clinic-address {
  line-height: 1.6;
  margin-bottom: 20px;
}
.info-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 18px;
  &:last-of-type {
    margin-bottom: 0;
  }
}
.info-label {
  border: 0.1rem solid white;
  padding: 0.7rem 1rem;
  white-space: nowrap;
}
.social-icons {
  display: flex;
  gap: 2rem;
  justify-content: flex-end;
  align-items: flex-end;
}
.copyright {
  font-size: 1.2rem;
}
/* //////////////////////////トップページ///////////////////////////// */
.hero {
  position: relative;
  height: 56.25vw;
  min-height: 700px;
  overflow: hidden;
  border-radius: 0 0 15vw 0;
  margin-bottom: max(10vw, 60px);
}
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.75);
}
.hero-content {
  position: absolute;
  left: 5%;
  bottom: 7.5%;
  z-index: 2;
}
.hero-title {
  color: white;
  font-size: max(2.08vw + 1.00rem, 3.00rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: max(1vw, 10px);
}
.hero-subtitle {
  color: white;
  font-size: max(0.42vw + 1.20rem, 1.60rem);
  font-weight: 500;
  margin-bottom: 2.6vw;
}
.hero-badges {
  display: flex;
  gap: 1rem;
}
.badge {
  background-color: white;
  color: #333333;
  padding: 1.8rem 2.5rem;
  border-radius: 5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
/* Concerns Section */
.concerns-section {
  margin: 0 auto max(14vw, 80px);
  width: min(85%, 1000px);
}
.section-header {
  text-align: center;
  margin-bottom: max(3.8vw, 50px);
}
.concerns-title {
  font-size: clamp(4.00rem, 2.50vw + 1.60rem, 6.40rem);
  margin-bottom: 2rem;
}
.section-subtitle {
  font-size: clamp(2.00rem, 0.83vw + 1.20rem, 2.80rem);
  position: relative;
}
.section-subtitle::before, .section-subtitle::after {
  content: '—';
  margin: 0 1rem;
}
.concerns-list {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  margin-bottom: max(7vw, 50px);
}
.concern-item {
  display: flex;
  align-items: flex-end;
  padding-right: 6.25%;
}
.concern-item:nth-child(even) {
  flex-direction: row-reverse;
  padding-right: 0;
  padding-left: 6.25%;
}
.concern-text {
  background-color: var(--s2);
  padding: 2% 2.8%;
  border-radius: 2rem;
  font-size: clamp(2.00rem, 0.83vw + 1.20rem, 2.80rem);
  min-height: 162px;
  width: 76%;
  display: flex;
  align-items: center;
  line-height: 1.5;
}
.concern-image {
  width: 23%;
}
.footer-text {
  font-size: clamp(1.80rem, 0.96vw + 1.16rem, 3.00rem);
  position: relative;
  text-align: center;
}
.footer-text::before, .footer-text::after {
  content: '—';
  margin: 0 0.8rem;
}
.section-lineup {
  overflow: hidden;
  margin-top: 45px;
}
.section-lineup .inner {
  margin: 0 0 70px;
  width: 85%;
}
.section-lineup .lineup {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 60px;
}
.top_work_card:hover .eyecatch_box img {
  transform: scale(1.05);
  filter: brightness(0.8);
}
.eyecatch_box {
  aspect-ratio: 3/2;
}
.eyecatch_box img {
  transition: 0.3s;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.section-lineup .slick-list {
  overflow: visible;
}
.section-lineup .slick-nav-arrows {
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 180px;
  height: 60px;
}
.section-lineup .slick-next {
  right: 0;
}
.section-lineup .slick-next:before {
  content: '';
  background: url("../images/arrow-right.svg") no-repeat;
  width: 54px;
  height: 54px;
  position: absolute;
  top: 0;
  left: 0;
}
.section-lineup .slick-prev {
  left: 0;
}
.section-lineup .slick-prev:before {
  content: '';
  background: url("../images/arrow-left.svg") no-repeat;
  width: 54px;
  height: 54px;
  position: absolute;
  top: 0;
  left: 0;
}
.top_work_card {
  border-radius: 20px;
  margin-right: min(2vw, 40px);
}
.top_work_title {
  padding: 1em;
  min-height: 7em;
  background-color: var(--p);
  span{
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 3 !important;
  overflow: hidden !important;
  white-space: normal !important; 
  word-break: break-all;
  }
}
.top_sym_link {
  display: block;
  color: var(--m);
  border-radius: 20px;
  overflow: hidden;
}
.top_sym_info {
  text-indent: -1em;
  padding-left: 1em;
  font-size: 1.4rem;
}
.testimonials-section {
  margin: 0 0 max(11.18vw + 5.3px, 80px) 7.5%;
}
.testimonials-title {
  font-size: clamp(3.00rem, 1.04vw + 2.00rem, 4.00rem);
}
.top_tre {
  margin: 0 max(0.5%, 5px) max(0.5%, 5px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: max(0.5%, 5px);
}
.top_tre_left {
  border-radius: max(1.2vw, 5px);
  background-color: var(--s2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8% 6%;
}
.top_tre_img01 {
  display: none;
}
.top_tre_leftinner {
  max-width: 560px;
}
.top_tre_title {
  font-size: clamp(3.00rem, 1.04vw + 2.00rem, 4.00rem);
  margin-bottom: 5%;
}
.top_tre_text {
  margin-bottom: 6%;
  font-size: max(0.20vw + 1.41rem, 1.60rem);
}
.top_tre_subbox {
  margin-bottom: max(4vw,40px);
}
.tob_tre_subtitle {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}
.top_tre_list {
  margin-bottom: 1em;
  font-weight: 700;
  text-indent: -1.5em;
  padding-left: 1.5em;
  span {
    margin-right: 0.5em;
    color: var(--s1);
  }
}
.top_tre_img02 {
  height: 100%;
  img {
    border-radius: max(1.2vw, 10px);
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.top_about {
  margin-bottom: max(8vw, 80px);
  display: flex;
	flex-direction: column;
}
.top_about_pic {
  margin: 0 max(0.5%, 5px) max(0.5%, 5px);
  img {
    border-radius: max(1.2vw, 10px);
  }
}
.top_about_textbox {
  background-color: var(--s2);
  padding: 5% 7.5%;
  margin: 0 max(0.5%, 5px);
  border-radius: max(1.2vw, 5px);
}
.top_about_title {
  font-size: clamp(3.00rem, 1.04vw + 2.00rem, 4.00rem);
  margin-right: 5%;
  white-space: nowrap;
}
.top_about_inner {
  display: flex;
  margin-bottom: max(5%,40px);
}
.top_about_text {
  max-width: 540px;
  line-height: 2;
  font-size: max(0.20vw + 1.41rem, 1.60rem);
}
.top-symptoms-section {
  width: min(85%, 1440px);
  margin: 0 auto max(8vw, 80px);
}
.top-symptoms-title {
  font-size: clamp(3.00rem, 1.04vw + 2.00rem, 4.00rem);
  margin-bottom: 4rem;
  text-align: center;
}
/* 症状リスト (ul) */
.symptom-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(3vw, 65px) min(3vw, 65px);
  margin-bottom: max(5vw,40px);
}
/* 各カード (li) */
.symptom-item {
  background-color: var(--s2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: min(3%, 15px);
  transition: 0.2s;
  color: var(--m);
}
.symptom-item:hover {
  background-color: var(--s1);
  color: #fff;
}
/* 画像エリア */
.card-image {
  width: max(30%, 100px);
  aspect-ratio: 1/1;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* テキストエリア */
.card-text {
  margin-left: 20px;
  line-height: 1.6;
  font-size: clamp(1.60rem, 0.63vw + 1.00rem, 2.20rem);
}
.top-symptoms-section .btn01 {
  margin: 0 auto;
}
.top-price {
  background-color: var(--s2);
  padding: 5% 7.5%;
  margin: 0 max(0.5%, 5px) max(10vw, 80px);
  border-radius: max(1.2vw, 10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.top-price-title {
  background-color: var(--s1);
  border-radius: 100px;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  width: fit-content;
  padding: 15px 30px;
  margin-bottom: max(3%, 30px);
}
.top-price-text01 {
  max-width: 600px;
  margin-bottom: max(5%, 30px);
  font-size: 1.8rem;
}
.first-price-before {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  span {
    font-size: 2.4rem;
  }
}
.top_price_inner {
  text-align: center;
  margin-bottom: max(4%, 30px);
}
.first-price {
  font-size: clamp(6.00rem, 2.92vw + 3.20rem, 8.80rem);
  font-weight: 700;
  position: relative;
  margin: 30px auto 20px;
	width: fit-content;
  &::before {
    content: '¥';
    font-size: clamp(3.00rem, 2.08vw + 1.00rem, 5.00rem);
    position: absolute;
    left: -0.8em;
    bottom: 0;
  }
}
.top-price-text02 {
  font-weight: 700;
  font-size: 1.8rem;
  max-width: 600px;
  margin-bottom: max(6%, 50px);
}
.top-news_ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2cqw;
  margin: 0 0 60px;
  width: 80%;
}
.top_eyecatch {
  width: 100%;
  aspect-ratio: 3/2;
  margin-bottom: 1vw;
  border-radius: max(1vw, 10px);
  overflow: hidden;
}
.top_eyecatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: max(1vw, 10px);
  transition: 1s;
}
.top-newslist_li:hover .top_eyecatch img {
  transform: scale(1.1);
  filter: brightness(0.8);
}
.top-news_title {
  line-height: 1.5;
  margin-bottom: min(1vw, 15px);
}
.top-news_date {
  font-size: 1.4rem;
  margin-left: 1em;
}
.news_cate_label {
  border-radius: 20px;
  background-color: var(--s1);
  font-size: 1.2rem;
  padding: 5px 10px;
  color: #fff;
}
.top-blog {
  width: 85%;
  margin: 0 auto;
}
.top-blog_title {
  font-size: clamp(3.00rem, 1.04vw + 2.00rem, 4.00rem);
  margin-bottom: 3rem;
}
.top-newslist_li {
  color: var(--m);
}
/*///////サブページ共通////////////*/
.sub_title {
  width: 40%;
  height: max(15.89vw, 200px);
  border-radius: 0 0 5vw 0;
  padding: 0 5% 3% 0;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  background-color: var(--s2);
  font-size: max(0.64vw + 2.39rem, 3.00rem);
  font-weight: 700;
}
.sub_hero_pic {
  width: 80%;
  margin: max(3vw, 40px) max(0.5%, 5px) max(7.3vw, 50px) auto;
  img {
    border-radius: max(2.6vw, 25px);
  }
}
/*////////////当院について////////////*/
.about_first_text {
  font-size: max(0.83vw + 1.20rem, 2.00rem);
  margin: 0 10% max(7.3vw, 50px) 19.5%;
}
.about01 {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: max(0.5vw, 5px);
  margin: 0 max(0.5%, 5px) max(12vw, 80px);
}
.abut01_left {
  background-color: var(--p);
  border-radius: max(1.2vw, 10px);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 300px;
  padding: 5%;
  img {
    border-radius: max(1.2vw, 10px);
  }
}
.prof_pic {
  width: max(57%, 240px);
  margin: 0 auto 25px;
  padding: 3%;
}
.name {
  font-size: max(1.67vw + 0.40rem, 2.00rem);
  letter-spacing: 0.1em;
  padding-left: 0.1em;
  line-height: 1.5;
  margin-bottom: 25px;
  font-weight: bold;
}
.prof_list {
  font-weight: 400;
  li {
    margin-bottom: 10px;
    &:nth-child(4), &:nth-child(3) {
      font-weight: 700;
    }
  }
}
.about01_right {
  padding:max(5vw,50px) 5vw;
  background-color: var(--s2);
  border-radius: max(1.2vw, 10px);
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.com_title {
  font-size: clamp(3.00rem, 1.04vw + 2.00rem, 4.00rem);
}
.greet_text {
  margin: max(1.5vw, 20px) 0 60px;
  line-height: 2;
}
.about02 {
  width: min(85%, 1440px);
  margin: 0 auto max(12vw, 80px);
}
.about02_title {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  &::after {
    content: '●　●　●';
    position: absolute;
    left: 50%;
    top: calc(100% + 15px);
    transform: translateX(-50%);
    font-size: 1.4rem;
  }
}
.about02_sub_title {
  font-size: clamp(3.00rem, 1.04vw + 2.00rem, 4.00rem);
  text-align: center;
  margin-bottom: max(3.5vw, 40px);
  span{
  display: inline-block;
  }
}
.about02_inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: min(3.3vw, 40px);
}
.about02_box {
  background-color: var(--s2);
  border-radius: clamp(10px, 1vw, 20px);
  padding: 5% 2.5%;
  min-height: 345px;
  display: flex;
  align-items: center;
  width: calc(50% - min(1.65vw, 20px));
}
.about02_number {
  border-radius: 50%;
  background-color: var(--m);
  width: clamp(40px, 4vw, 80px);
  height: clamp(40px, 4vw, 80px);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(2.20rem, 1.84vw + 0.97rem, 4.50rem);
  padding-bottom: 0.1em;
  margin-right: 4%;
}
.about02_box_title {
  font-size: clamp(1.80rem, 0.80vw + 1.27rem, 2.70rem);
  line-height: 1.4;
  margin-bottom: 18px;
  font-weight: 700;
}
.about02_box_textbox {
  width: calc(97% - clamp(40px, 4vw, 80px));
}
.about03 {
  margin: 0 max(0.5%, 5px) max(12vw, 80px);
}
.about03_pic_wrap {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: max(0.5vw, 5px);
  margin: 0 0 clamp(40px, 6vw, 80px);
  img {
    border-radius: max(1.2vw, 10px);
    object-fit: cover;
    height: 100%;
  }
}
.about03_inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: max(0.5vw, 5px);
  margin: 0 0 clamp(40px, 6vw, 80px);
}
.access_box {
  background-color: var(--p);
  border-radius: max(1.2vw, 10px);
  padding: 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.map {
  height: 50vw;
  iframe {
    border-radius: max(1.2vw, 10px);
    width: 100%;
    height: 100%;
  }
}
.about_address {
  margin: 30px 0;
  line-height: 1.5;
  span{
  display: inline-block;
  }
}
.open_info {
  line-height: 1.6;
  dt {
    float: left;
    border: 1px solid var(--m);
    padding: 5px 7px;
    width: 6em;
    text-align: center;
  }
  dd {
    padding: 5px 0 5px 7em;
    margin-bottom: 1.5em;
	&:last-of-type{
	margin-bottom: 0;
	}
  }
}
/*////////////施術内容////////////*/
.treat01 {
  width: min(85%, 1110px);
  margin: 0 auto max(10vw, 80px);
}
.treat01_title {
  font-size: max(0.83vw + 1.40rem, 2.20rem);
  text-align: center;
  margin-bottom: max(3.5vw, 40px);
  span {
    font-size: max(1.98vw + 1.60rem, 3.50rem);
  }
}
.treat01_text {
  max-width: 800px;
  margin: 0 auto max(5.8vw, 40px);
  line-height: 2;
  font-size: max(0.20vw + 1.41rem, 1.60rem);
}
.treat01_inner_title {
  text-align: center;
  background-color: var(--p);
  width: fit-content;
  font-size: max(0.64vw + 1.57rem, 2.00rem);
  padding: 0.5em 0.8em;
  margin: 0 auto clamp(80px, 6vw, 120px);
}
.answer-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(30px, 2vw, 40px);
  margin-bottom: clamp(40px, 4vw, 75px);
}
.tre_inbox {
  background-color: var(--s2);
  border-radius: 15px;
  padding: min(2vw, 36px);
  min-height: 192px;
  position: relative;
  display: flex;
  align-items: center;
  font-size: clamp(1.60rem, 0.32vw + 1.39rem, 2.00rem);
}
.tre_number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -70%);
  width: 21.8%;
}
.tre_in_text {
  font-size: clamp(1.60rem, 0.21vw + 1.40rem, 1.80rem);
  width: fit-content;
  margin: 0 auto;
}
.treat02 {
  margin: 0 max(0.5%, 5px) max(8vw, 67px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: max(0.5%, 5px);
}
.treat02_left {
  border-radius: max(1.2vw, 10px);
  background-color: var(--s2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8% 6%;
}
.treat02_leftinner {
  width: max(57.45%, 415px);
}
.treat02_text {
  margin-top: 5%;
  line-height: 2;
  font-size: max(0.20vw + 1.41rem, 1.60rem);
}
.treat02_right {
  img {
    border-radius: max(1.2vw, 10px);
    object-fit: cover;
    height: 100%;
  }
}
.treat03_textbox {
  width: min(46%, 750px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  p {
    font-size: max(0.20vw + 1.41rem, 1.60rem);
  }
}
.treat03_title {
  font-size: clamp(2.40rem, 0.94vw + 1.50rem, 3.30rem);
  margin-bottom: 4%;
}
.treat03 {
  display: flex;
  align-items: stretch;
  width: 75%;
  margin: 0 auto max(8vw, 67px);
}
.treat03_pic {
  width: 48%;
  margin-right: 5.5%;
  img {
    border-radius: max(1.2vw, 5px);
    object-fit: cover;
    height: 100%;
  }
}
.treat04 {
  background-color: var(--s2);
  border-radius: max(1.2vw, 5px);
  margin: 0 max(0.5vw, 5px) max(4vw, 40px);
  padding: 5% 0;
}
.flow_wrap {
  width: 85%;
  margin: 0 auto max(8%, 100px);
}
.flow {
  margin-top: max(3%,30px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4vw;
}
.flow_pic {
  margin-bottom: 15px;
  img {
    border-radius: max(0.7vw, 10px);
    width: 100%;
  }
}
.flow_title {
  font-size: 1.8rem;
  margin-bottom: 10px;
  text-indent: -1.3em;
  padding-left: 1.3em;

}
.flow_text {
  line-height: 1.6;
  font-weight: 400;
  font-size: clamp(1.40rem, 0.83vw + 0.60rem, 1.60rem);
}
.treat04_info {
  width: min(85%, 1100px);
  margin: 0 auto;
  background-color: var(--p);
  border-radius: 10px;
  padding: 0 3% 4%;
  p {
    font-size: max(0.20vw + 1.41rem, 1.60rem);
  }
}
.treat04_info_title {
  font-size: clamp(1.80rem, 0.30vw + 1.60rem, 2.20rem);
  color: #fff;
  padding: 10px 20px;
  background-color: var(--s1);
  border-radius: 10px;
  width: fit-content;
  transform: translateY(-50%);
  margin-bottom: 2%;
}
.treat05_pic {
  margin: 0 max(0.5vw, 5px) max(10vw, 80px);
  img {
    border-radius: max(1.2vw, 5px);
  }
}
.treat06 {
  width: min(85%, 1180px);
  margin: 0 auto;
  font-size: max(0.20vw + 1.41rem, 1.60rem);
}
/*アコーディオン*/
/*ボックス全体*/
.accbox {
  margin: 0 auto;
  padding-top: 20px;
}
/*ラベル*/
.accbox label {
  display: block;
  padding: 20px 0px 20px 50px;
  background: #fff;
  cursor: pointer;
  transition: all 0.5s;
  line-height: 2.2rem;
  border-bottom: 1px solid #3c3c3c;
  position: relative;
}
.accbox label:before {
  content: "Q";
  font-size: 3.5rem;
  font-weight: 700;
  position: absolute;
  color: var(--s1);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
/*アイコンを表示*/
.question {
  position: relative;
  display: block;
  padding-right: 30px;
  &::before {
    content: '';
    width: 22px;
    height: 1px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.5s;
    background-color: var(--m);
  }
  &::after {
    content: '';
    height: 22px;
    width: 1px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.5s;
    background-color: var(--m);
  }
}
/*ラベルホバー時*/
.accbox label:hover {
  background-color: var(--p);
}
/*チェックは隠す*/
.accbox input {
  display: none;
}
/*中身を非表示にしておく*/
.accbox .accshow {
  height: 0;
  padding: 0 0 0 49px;
  overflow: hidden;
  transition: 0.2s;
  visibility: hidden;
}
/*クリックで中身表示*/
.cssacc:checked + label + .accshow {
  height: auto;
  padding: 2% 3% 3% 49px;
  background: #FFF;
  visibility: visible;
  border: 1px dotted var(--m);
  line-height: 2rem;
}
/*アイコンを入れ替える*/
.cssacc:checked + label .question::after {
  content: '';
  transform: rotate(90deg);
  transform-origin: top;
  right: 0;
}
/*////////////施術料金////////////*/
.fee-table {
  width: 100%;
  border: 1px solid #ccc;
  margin-bottom: 20px;
}
.fee-table th, .fee-table td {
  padding: 2em 1em;
  text-align: center;
  border: 1px solid #707070;
  line-height: 1.4;
  font-size: 2rem;
  font-weight: 500;
}
th.fee-table_head {
  background-color: var(--s1);
  color: #fff;
  vertical-align: middle;
  padding: 1em;
  span {
    font-size: 1.4rem;
  }
}
.fee-table td {
  width: 42%;
}
th.fee-table_time {
  width: 16%;
  min-width: 170px;
  font-size: 2rem;
  background-color: var(--p);
}
td.fee-table-text {
  text-align: left;
  font-size: 1.6rem;
  line-height: 1.8;
  vertical-align: top;
}
.fee_content_wrap {
  width: min(85%, 1200px);
  margin: clamp(60px, 10vw, 180px) auto 0;
}
.table_wrap {
  margin-bottom: max(8vw, 80px);
}
.fee_info{
  line-height: 1.5;
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 5px;
}
.fee-price {
  background-color: var(--s2);
  padding: 7% 5%;
  margin-bottom: max(10vw, 80px);
  border-radius: max(1.2vw, 5px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  .top-price-text02 {
    margin-bottom: 0;
  }
}
.mente {
  margin-bottom: max(10vw, 80px);
}
.mente_info{
text-indent: -1em;
  padding-left: 1em;
}
.mente_subtitle {
  border-radius: 2em;
  background-color: var(--m);
  color: white;
  padding: 10px 15px;
  display: block;
  width: fit-content;
  margin-bottom: 10px;
}
.mente_title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.mente_text {
  font-size: max(0.20vw + 1.41rem, 1.60rem);
  margin-bottom: 30px;
}
.mente_fee {
  max-width: 762px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 10px;
}
.plan {
  border: 1px solid #707070;
  background-color: var(--s1);
  color: white;
  padding: 30px 20px;
}
.fee {
  padding: 30px 20px;
  border: 1px solid #707070;
  border-left: none;
}
.cancel_title {
  background-color: var(--s1);
  border-radius: 5rem;
  color: white;
  width: fit-content;
  font-size: 2rem;
  padding: 10px 18px;
  margin-bottom: 20px;
}
.can_text {
  margin-bottom: 20px;
}
.can_list {
  margin-bottom: 20px;
  line-height: 1.5;
  font-weight: 700;
  li {
    margin-bottom: 10px;
  }
}
.cancel_info{
text-indent: -1em;
padding-left: 1em;
}
/*////////////症状別一覧////////////*/
.sym_list_wrap {
  width: min(85%, 1440px);
  margin: clamp(60px, 10vw, 180px) auto 0;
}
/*////////////症状別個別////////////*/
.sym_post_wrap {
  width: min(85%, 1000px);
  margin: clamp(60px, 10vw, 180px) auto 0;
}
.sym_title {
  font-size: clamp(1.80rem, 2.36vw + 0.23rem, 4.00rem);
  color: white;
  width: fit-content;
  min-width: 220px;
  text-align: center;
  margin: 0 auto clamp(30px, 3vw, 60px);
  border-radius: 60px;
  padding: 1% 3% 1% calc(3% + 0.05em);
  background-color: var(--s1);
}
.sym_catch {
  margin-bottom: max(6%, 50px);
  img {
    border-radius: clamp(10px, 1.2vw, 20px);
  }
}
.sym_concerns {
  margin-bottom: clamp(80px, 6vw, 120px);
}
.sym_con_list {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 50px 0;
  li {
    position: relative;
    margin-bottom: 2em;
    padding-left: 35px;
    &::before {
      content: '';
      position: absolute;
      top: 2px;
      left: 0;
      background: url("../images/check-circle.svg") no-repeat;
      width: 25px;
      height: 25px;
    }
  }
}
.sym_voice_wrap {
  margin-bottom: clamp(80px, 6vw, 120px);
}
.sym-post {
  margin-bottom: max(15%, 100px);
  mark{
  background: none;
  }
}
.sym-post img, .sym-post iframe, .sym-post embed, .sym-post object, .sym-post video {
  max-width: 100%;
  height: auto;
}
.sym_content h2 {
  font-size: clamp(2.40rem, 0.64vw + 1.97rem, 3.20rem);
  margin: max(6%, 50px) 0 max(3%, 15px);
  position: relative;
  padding-left: 20px;
}
.sym_content h2:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 100%;
  background-color: var(--s1);
  border-radius: 2rem;
}
.sym-post h3 {
  font-size: clamp(1.60rem, 0.75vw + 1.10rem, 2.00rem);
  margin: max(5%, 40px) 0 max(2%, 10px);
  border-bottom: 1px solid var(--m);
  padding-bottom: 5px;
  width: fit-content;
}
.sym-post p {
  margin-bottom: 1em;
}
.sym-post figure {
  margin: max(7%, 40px) 0;
}
.sym-post img {
  border-radius: clamp(10px, 1.2vw, 20px);
}
.sym-post ul {
  list-style-type: square;
  list-style-position: outside;
  line-height: 1.6;
  margin: 0 0 max(3%, 15px) 1.5em;
}
.sym-post ol {
  list-style-position: outside;
  line-height: 1.6;
  margin: 0 0 max(3%, 15px) 1.5em;
}
.sym-post li {
  margin-bottom: 10px;
}
.sym_voice_who {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 20px;
}
.sym_voice_age {
  line-height: 1.5;
}
.sym_voice {
  margin-bottom: 50px;
}
.sym_content {
  .btn01 {
    margin: 0 auto;
  }
}
/*////////////お知らせ一覧////////////*/
.news-list_wrap {
  margin: clamp(60px, 10vw, 180px) auto 0;
  width: 85%;
  display: grid;
  grid-template-columns: 20% 80%;
  gap: max(0.5vw, 5px);
}
.cate_box {
  background-color: var(--p);
  border-radius: max(1.2vw, 10px);
  padding: 4vw 8%;
 position: relative;
}
.cat-item {
  color: var(--m);
  padding: 5px 10px;
  
}
.cat_wrap_left {
  position: sticky;
  top: 4vw;
  left: 0;
  li {
    padding: 5px 0;
    margin-bottom: 1.5em;
	border-radius: 10px;
  border: 1px solid var(--m);
  background-color: white;
  width: fit-content;
  &:hover {
    background-color: var(--s1);
  }
  &:hover .cat-item {
    color: white;
  }
  }
}
.news-list_box {
  background-color: var(--s2);
  border-radius: max(1.2vw, 10px);
  padding: 4vw 6%;
}
/*ページャー*/
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination .page-numbers {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--m);
}
.pagination .current {
  background: var(--s1);
  border-radius: 50%;
  color: #fff;
}
.pagination .prev, .pagination .next {
  background: transparent;
  box-shadow: none;
}
.pagination .dots {
  background: transparent;
  box-shadow: none;
}
.news_ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4cqw 2.2cqw;
  margin: 0 0 clamp(80px, 10vw, 150px);
}
/*////////////////////////お知らせ記事///////////////////////////*/
.news {
  width: min(90%, 900px);
  margin: clamp(120px,15vw,280px) auto 0;
}
.news_head {
  margin-bottom: max(7%, 40px);
}
.post_cate {
  font-size: 1.2rem;
  background-color: var(--s1);
  border-radius: 20px;
  padding: 5px 10px;
  display: inline-block;
  color: white;
}
.news_title {
  font-size: clamp(2.40rem, 1.28vw + 1.55rem, 4.00rem);
  border-bottom: 5px solid var(--s1);
  margin-bottom: 20px;
  padding-bottom: 5px;
}
.news_date {
  font-size: 1.4rem;
  margin-left: 1em;
}
.post_eyecatch {
  margin-bottom: max(6%,40px);
}
.post {
  margin-bottom: max(20%, 100px);
  mark{
  background: none;
  }
}
.post img, .post iframe, .post embed, .post object, .post video {
  max-width: 100%;
  height: auto;
}
.post h2 {
  font-size: clamp(2.00rem, 0.80vw + 1.47rem, 3.00rem);
  margin: max(6%, 50px) 0 max(3%, 15px);
  position: relative;
  padding: 0 0 10px 13px;
  font-weight: 700;
}
.post h2:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background-color: var(--s1);
}
.post h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--s1);
}
.post h3 {
  font-size: clamp(1.80rem, 0.48vw + 1.48rem, 2.40rem);
  margin: max(5%, 40px) 0 max(3%, 15px);
  padding-left: 13px;
  position: relative;
}
.post h3:after {
  content: "";
  width: 5px;
  height: 100%;
  background-color: var(--s1);
  position: absolute;
  top: 0;
  left: 0;
}
.post h4, .post h5, .post h6 {
  font-size: clamp(1.60rem, 0.75vw + 1.10rem, 2.00rem);
  margin: max(5%, 40px) 0 max(1%, 10px);
  border-bottom: 2px dotted var(--s1);
}
.post p {
  margin-bottom: 1em;
}
.post a {
  color: var(--s1);
}
.post figure {
  margin: max(7%, 40px) 0;
}
.post ul {
  list-style-type: square;
  list-style-position: outside;
  line-height: 1.5;
  margin: 0 0 20px 1.5em;
}
.post ol {
  list-style-position: outside;
  line-height: 1.5;
  margin: 0 0 20px 1.2em;
}
.post li {
  margin-bottom: 10px;
}
.news_btn {
  margin: 0 auto;
}
/*////////////////////////お問い合わせ///////////////////////////*/
.contact_tel {
  background-color: var(--p);
  border-radius: 100px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 48%;
  height: clamp(100px, 7.4vw, 143px);
  transition: 0.2s;
  color: var(--m);
  font-weight: 700;
  &:hover{
   color: #fff;
  background-color: var(--s1);
  svg path {
    fill: white;
  }
  }
}
.contact_wrap {
  width: min(90%, 1100px);
  margin: clamp(60px, 10vw, 180px) auto 0;
}
.contact_infobox {
  margin-bottom: 50px;
  display: flex;
  justify-content: space-between;
}
.formWrap {
  width: 100%;
  padding:8%;
  background-color: var(--s2);
  border-radius: clamp(10px, 2vw, 20px);
  position: relative;
}
.input_wrap {
  margin-bottom: 20px;
}
/* IE11 hide native button*/
select::-ms-expand {
  display: none;
}
.require {
  position: relative;
}
.require::after {
  content: "";
  position: absolute;
  left: calc(100% + 10px);
  top: calc(50% + 1px);
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  background-color: var(--s1);
  border-radius: 50%;
}
.input {
  width: 100%;
  height: 56px;
  padding: 5px 16px;
  font-size: 16px;
  margin-top: 15px;
  border-radius: 0;
  border: var(--m) 1px solid;
}
.name_wrap {
  margin-bottom: 50px;
}
#textbox {
  height: 180px;
  font-size: 16px;
  border: var(--m) 1px solid;
}
::-webkit-input-placeholder { /* WebKit, Blink, Edge */
  color: #b9b9b9;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #b9b9b9;
}
::placeholder { /* Others */
  color: #b9b9b9;
}
.mail_info {
  font-size: 1.4rem;
  margin-bottom: 20px;
  line-height: 1;
  padding-left: 17px;
  position: relative;
  &::after {
    content: "";
    position: absolute;
    left: 0;
    top: calc(50% + 1px);
    transform: translateY(-50%);
    width: 17px;
    height: 17px;
    background-color: var(--s1);
    border-radius: 50%;
  }
}
.sumit_wrap {
position: relative;
width: fit-content;
margin: 0 auto;
  &::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background: url("../images/arrow-dropright.svg") no-repeat;
    width: 22px;
    height: 22px;
	z-index: 999;
  }
}
.submit_btn {
  width: 220px;
  height: 64px;
  border: none;
  border-radius: 15px;
  display: flex;
  text-align: left;
  background-color: var(--m);
  align-items: center;
  letter-spacing: 0.05em;
  padding: 0 50px 0 20px;
  color: white;
  font-size: 1.6rem;
  font-weight: 500;
  position: relative;
  font-family: "Zen Maru Gothic", serif;
  &:hover {
    background-color: var(--s1);
  }
}
.mail_title {
  font-size: 1.8rem;
  background-color: var(--s1);
  padding: 0.7em 1.2em;
  border-radius: 50px;
  color: #fff;
  width: fit-content;
  margin-bottom: max(5%,35px);
}
.contact-label {
	font-size: 1.8rem;
  margin-bottom: 10px;
}

.contact-phone {
	font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
}

.eigyo {
	margin-bottom: 80px;
}
@media (orientation: portrait) {
  .sub_anime {
    animation: fadeUp 2s ease 1.2s 1 normal forwards;
    opacity: 0;
  }
  @keyframes fadeUp {
    0% {
      opacity: 0;
      transform: translateY(70px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
/*スマホメニュー消す*/
.mobile{
display: none;
}
#panel {
  display: none;
}
.thanks {
  margin: clamp(200px, 10.00vw + 154px, 346px) auto clamp(80px, 10.00vw + 32px, 224px);
  width: min(85%, 1000px);
}
.thanks_p2 {
  margin-bottom: 80px;
}




