@charset "utf-8";
/**************************************************
 *  リセットCSS
 **************************************************/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
body {
  line-height: 2;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
*, *::before, *::after {
  box-sizing: border-box;
}
del {
  text-decoration: line-through;
}
abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
table {
  border-spacing: 0;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}
input, select {
  vertical-align: middle;
}
/**************************************************
 *  固定CSS
 **************************************************/
html, body{
	height:100%;
	background-color:#fff;
  color: var(--color-text-main);
  font-family: var(--font-base);
  line-height: 2;
  margin:0;
  font-size: 15px;
}
img {
  height: auto;
  vertical-align: bottom;
  max-width: 100%;
}
a {
  color:#333;
  text-decoration: none;
}
a:hover {
  cursor: pointer;
  transition: .3s;
  opacity: .6;
}
button {
  font-family: "Noto Sans JP", sans-serif;
  border: none;
}
button:hover {
  cursor: pointer;
}
section {
  width: 100%;
  position: relative;
}
ul {
  list-style: none;
}



/**************************************************
 *  編集が必要な箇所
 **************************************************/
:root {
  /* ==== テーマカラー ==== */
  --color-primary: #29ACB8;
  --color-primary-dark: #083A6E;
  --color-accent-bg: #FAFAFA;
  --color-border: #E4E7E9;
  --color-text-main: #333;

  /* ==== フォント ==== */
  --font-base: "Noto Sans JP", sans-serif;
  --font-en: "Montserrat", sans-serif;
  --font-number: "Roboto", sans-serif;
}

/* ======== カラーclass設定 ======== */
.text-primary {
  color: var(--color-primary);
}
.primary-dark {
  color: var(--color-primary-dark);
}
.bg-primary {
  background: var(--color-primary);
}
.color-accent-bg {
  background: var(--color-accent-bg);
}
/* ======== フォントclass設定 ======== */
.font-en {
  font-family: var(--font-en);
}
.font-number {
  font-family: var(--font-number);
}


/**************************************************
 *  編集が必要な箇所　ロゴサイズ設定
 **************************************************/
.header__logo {
  max-width: 270px;
  width: 100%;
}
.access__heading {
  max-width: 430px;
  width: 100%;
  margin: 0 auto 30px;
}


/**************************************************
 *  その他CSS
 **************************************************/
/************** 共通CSS **************/
.sec__title {
  font-size: clamp(1.563rem, 1.031rem + 1.77vw, 2.625rem);
  line-height: 1.8;
  text-align: center;
  position: relative;
  margin-bottom: 30px;
}
.sec__title-en::before {
  color: var(--color-primary);
}
.sec__title-en {
  position: relative;
  padding-left: 20px;
  font-family: var(--font-en);
  margin: 0 auto;
  width: fit-content;
  display: block;
}
.sec__title-en::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: '●';
  display: inline-block;
  font-size: 10px;
}
.inner {
  position: relative;
  margin: 0 auto;
  max-width: 1000px;
}
.for-sp {
  display: none!important;
}

/************** モバイルナビ **************/
#sp-nav {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 1000;
  top: 80px;
  right: 0;
  width: 90vw;
  height: calc(100dvh - 80px);
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sp-nav__list {
  width: 80%;
  margin-bottom: 50px;
}
.sp-nav__list--item {
  text-align: center;
  padding: 20px 30px;
  border-bottom: 1px solid var(--color-border);
}
.sp-nav__list--item:last-of-type,.sp-nav__list--item:nth-last-of-type(2) {
  border-bottom: none;
}
.sp-nav__list--item-contact {
  margin-top: 50px;
}
.sp-nav__list--item-contact a {
  color: #fff;
  font-weight: 600;
}
.sp-nav__sns { 
  display: flex;
  align-items: center;
  justify-content: center;
}
.js-hamburger {
  position: relative;
  z-index: 1100;
  cursor: pointer;
  background: unset;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 7px;
}
.js-hamburger.active span:nth-of-type(1) {
  transform: translateY(5px) rotate(-25deg);
}
.js-hamburger.active span:nth-of-type(2) {
  transform: translateY(-5px) rotate(25deg);
}
.hamburger--bar {
  width: 35px;
  height: 2px;
  background: var(--color-primary);
  display: inline-block;
  transition: all 0.4s;
}
#sp-nav.panelactive {
  visibility: visible;
  opacity: 1;
  transition: all 0.4s;
}
.js-hamburger {
  display: none;
}
.drawer-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}
.drawer-bg.active {
  opacity: 1;
  visibility: visible;
}

/************** メインCSS **************/
html {
  scroll-behavior: smooth;
}
.header {
  position: fixed;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  height: 80px;
  width: 100%;
  z-index: 1100;
  top: 0;
}
.header__inner {
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gnav {
  height: 100%;
}
.gnav__list {
  display: flex;
  height: 100%;
  align-items: center;
}
.gnav__list--item {
  font-size: 15px;
  font-weight: 600;
  padding: 0 25px;
}
.gnav__list--item a {
  width: 100%;
}
.gnav__list--contact {
  height: 100%;
  display: flex;
  align-items: center;
}
.gnav__list--contact a {
  color: #fff;
}
.index {
  padding-top: 80px;
}
.fv {
  background-image: url(../img/fv_pc.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  max-width: 1440px;
  width: 100%;
  height: 53vh;
  min-height: 570px;
  margin: 0 auto;
}

.fv__inner {
  display: flex;
  align-items: center;
  height: 100%;
}
.fv__title {
  font-size: clamp(2.063rem, 1.375rem + 2.29vw, 3.438rem);
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: .1rem;
}
.fv__lead {
  font-size: clamp(0.938rem, 0.781rem + 0.52vw, 1.25rem);
  margin-bottom: 35px;
}
.fv__text-image {
  display: flex;
  align-items: center;
  gap: 40px;
}
.fv__text-image-item {
  max-width: 135px;
  width: 100%;
}
.about {
  padding: 100px 0;
}
.about__intro__text {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 80px;
}
.about__intro__heading {
  font-size: clamp(1.25rem, 0.938rem + 1.04vw, 1.875rem);
  margin-bottom: 30px;
}
.about__intro__image {
  border-radius: 8px;
}
.about__worry {
  width: fit-content;
  padding: 20px 30px 30px;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  margin: 0 auto 80px;
}
.about__worry__heading {
  font-size: clamp(1.25rem, 1.094rem + 0.52vw, 1.563rem);
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
.about__worry__box {
  display: flex;
  align-items: center;
  gap: 40px;
}
.about__worry__image {
  max-width: 190px;
  width: 100%;
}
.about__worry__list-item {
  margin-bottom: 5px;
  font-weight: 500;
}
.about__worry__list-item img {
  margin-right: 10px;
}
.about__point__wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.about__point__card img {
  border-radius: 8px;
}
.about__point-en {
  font-size: 15px;
  font-family: var(--font-en);
  display: block;
  margin: 20px auto 5px;
  text-align: center;
}
.about__point__heading {
  font-size: clamp(1.25rem, 1.094rem + 0.52vw, 1.563rem);
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 20px;
}
.clinic {
  padding: 100px 0;
}
.clinic__content {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}
.clinic__heading {
  font-weight: 600;
  font-size: clamp(1.25rem, 0.938rem + 1.04vw, 1.875rem);
  line-height: 1.5;
  margin-bottom: 20px;
}
.clinic__text {
  flex: 1;
}
.clinic__image {
  flex: 0 0 400px;
}
.clinic__image-img {
  border-radius: 8px;
  width: 100%;
}
.clinic__text hr {
  position: relative;
  border: none; 
  height: 1px;
  background: var(--color-border);
  width: 100%;
}
.clinic__text hr::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 15%;
  background: var(--color-primary);
}
.cta {
  position: relative;
  background-image: url(../img/cta_bg_pc.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  padding: 100px 0;
  color: #fff;
  text-align: center;
}
.cta::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  opacity: .88;
}
.cta__heading {
  font-size: clamp(1.563rem, 1.031rem + 1.77vw, 2.625rem);
  margin-bottom: 10px;
  letter-spacing: .1rem;
}
.cta__lead {
  font-weight: 600;
  letter-spacing: .05rem;
  margin-bottom: 40px;
}
.cta__btn {
  display: flex;
  gap: 30px;
  justify-content: center;
}
.cta__btn-item {
  padding: 15px 30px;
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  font-size: clamp(1rem, 0.938rem + 0.21vw, 1.125rem);
  max-width: 280px;
  width: 100%;
}
.cta__btn--tel {
  border: 2px solid #fff;
  color: #fff;
  font-weight: 600;
}
.cta__btn--web {
  background: #fff;
}
.access {
  padding: 100px 0;
}
.access__tel {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}
.access__tel img {
  width: 35px;
  height: 35px;
  margin-right: 15px;
}
.access__tel-number {
  font-size: clamp(1.875rem, 1.563rem + 1.04vw, 2.5rem);
  font-weight: 500;
  font-family: var(--font-number);
}
.access__address {
  display: block;
  margin: 0 auto 30px;
  width: fit-content;
}
.access iframe {
  margin-bottom: 30px;
  width: 100%;
}
.access__content {
  display: flex;
  gap: 40px;
}
.access__info {
  padding: 20px;
  flex: 1;
}
.access__info-item:first-of-type {
  margin-bottom: 20px;
}
.access__train,.access__car {
  position: relative;
  padding-left: 20px;
  font-weight: 500;
}
.access__train::before,.access__car::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: '●';
  display: inline-block;
  font-size: 10px;
}
.access__train__list {
  padding-left: 12px;
}
.access__train__list-item {
  list-style: disc;
  margin-left: 10px;
}
.access__train__list ::marker {
  font-size: 10px;
}
.access__train::before,.access__car::before {
  color: var(--color-primary);
}
.access__timetable {
  border: 1px solid var(--color-primary);
  margin-bottom: 10px;
}
.access__time th {
  padding: 0 15px;
  color: #fff
}
.access__timetable tbody tr:first-of-type td {
  border-bottom: 1px solid var(--color-primary);
}
.access__time td {
  padding: 10px 15px;
}
.cases {
  padding: 100px 0;
}
.cases__btn {
  padding: 15px;
  border: 1px solid #cecece;
  width: fit-content;
  margin: 0 auto;
  max-width: 260px;
  width: 100%;
}
.cases__btn a{
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.instagram__box-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 50px auto;
  max-width: 700px;
  width: 100%;
}
.instagram__box-list-item {
  position: relative;
}
.instagram__box-list-item:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.instagram__box-list-item a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.instagram__box-list-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.fixed-cta {
  display: none;
}
.fixed-cta {
  align-items: center;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 800;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  transition: opacity .4s ease, transform .4s ease;
}
.fixed-cta.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.fixed-cta__btn {
  padding: 8px 30px;
  color: #fff;
  text-align: center;
  font-size: 14px;
  line-height: 1.3;
  height: 60px;
}
.fixed-cta__tel {
  flex: 1;
  border-radius: 0 5px 0 0;
}
.fixed-cta__number {
  font-family: var(--font-number);
  font-size: 20px;
}
.fixed-cta__info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.fixed-cta__access {
  background: var(--color-primary-dark);
  border-radius: 5px 0 0 0;
}
.footer {
  padding: 40px 0 30px;
  border-top: 1px solid var(--color-border);
}
.footer__btn {
  display: flex;
  gap: 30px;
  justify-content: center;
}
.footer__btn-item {
  padding: 15px 30px;
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  max-width: 280px;
  width: 100%;
}
.footer__btn--tel {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  font-weight: 600;
}
.footer__btn--web {
  font-weight: 600;
  color: #fff;
}
.footer__sns { 
  display: flex;
  align-items: center;
  justify-content: center;
}
.sns-icon {
  padding: 30px;
}
.sns-icon img {
  width: 30px;
}
address {
  text-align: center;
  font-style: normal;
  font-size: 13px;
}