@charset "UTF-8";
/******************************************************************
 * TOP
******************************************************************/
/* ローディングムービー */
/* 画面全体のオーバーレイ */
.loader-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #fff;          /* 背景は必要に応じて変更 */
  display: grid;
  place-items: center;
  opacity: 1;
  visibility: visible;
  transition: opacity .45s ease;  /* フェード時間 */
  will-change: opacity;           /* モバイルで安定させる */
}

/* フェード開始（JSで .is-fading を付与） */
.loader-overlay.is-fading {
  opacity: 0;
}

/* フェード完了後に不可視を確定（JSで transitionend 時に付与） */
.loader-overlay.is-hidden {
  visibility: hidden;
}

/* スクロールロック（bodyには当てない方針なのでhtmlに） */
html.is-loading {
  overflow: hidden;
}

/* ローダー本体（アニメーション文字） */
.loader {
  width: 60px;
  height: 16px;
  display: flex;
  justify-content: space-between;
  animation: l3-0 2s infinite alternate;
}
.loader:before,
.loader:after {
  content: "";
  width: 16px;
  background: #3FB8AF;
  animation: l3-1 1s infinite alternate;
}
.loader:after {
  background: #FF3D7F;
  --s:-1;
}
@keyframes l3-0 {
   0%,40%   {transform: rotate(0)}
   80%,100% {transform: rotate(.5turn)}
}
@keyframes l3-1 {
   80%,100% {transform: translate(calc(var(--s,1)*14px))}
}

/* 任意：スキップボタン */
.loader-skip {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  font: 600 14px/1 system-ui, sans-serif;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid #cfd8dc;
  background: #ffffff;
  cursor: pointer;
  opacity: 0;
  transition: opacity .3s ease;
}
.loader-skip.is-visible { opacity: .85; }

/* 動きが苦手な方へ配慮 */
@media (prefers-reduced-motion: reduce) {
  .loader, .loader-overlay { animation: none !important; }
  .loader-overlay { transition: opacity .2s ease; }
}


main.top{
    box-sizing: border-box;
    overflow: hidden;
}
.top-mv {
    background: #fff;
    position: relative;
    z-index: -1;
}
.top-mv__wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.top-mv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1; /* 背景として後ろに配置 */
}

.top-mv__address {
  width: 100%;
  display: block;
  font-weight: 500;
  color: #fff;
  position: absolute;
  top: 122px;
  left: auto;
  right: 12px;
  text-align: right;
}
.top-mv__address-txt--map {
  font-size: 18px;
  letter-spacing: 0.1em;
}
.top-mv__address-txt--map::before {
  content: "";
  aspect-ratio: 17/24;
  width: 100%;
  max-width: 1em;
  display: inline-block;
  background: url(../img/common/icon/map-icon.png) center/cover no-repeat;
  margin-right: 0.8888888889em;
  transform: translateY(3px);
}
.top-mv__address-txt--parking {
  margin-right: 9px;
  font-size: 16px;
  letter-spacing: 0.1em;
}
.top-mv__address-txt--parking::before {
  content: "";
  aspect-ratio: 23/20;
  width: 100%;
  max-width: 1.4375em;
  display: inline-block;
  background: url(../img/common/icon/car-icon.png) center/cover no-repeat;
  margin-right: 0.5625em;
  transform: translateY(3px);
}
.top-mv__inner {
  width: 100%;
  height: 900px;
}
.top-mv__logo {
  position: absolute;
  top: 28px;
  left: 4.53125%;
}
.top-mv__content {
  width: 50.87%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  row-gap: 120px;
  margin-inline-start: auto;
  color: #fff;
}
.top-mv__ttl {
  font: 500 90px "Shippori Mincho", serif;
  line-height: 1.6666666667;
  letter-spacing: 0.1em;
}
.top-mv__ttl span {
	font-size:30px;
	display:block;
}	
.top-mv__list {
  display: flex;
  justify-content: center;
  -moz-column-gap: 19px;
       column-gap: 19px;
  padding-left: 5px;
  color: #fff;
}
.top-mv__item {
  width: 100%;
  max-width: 293px;
}
.top-mv + .c-bnr {
  margin-top: 113px;
}

.top-mv-logo {
  width: 100%;
  max-width: 245px;
  display: block;
}
.top-mv-logo__img {
  text-align: center;
}
.top-mv-logo__txt {
  margin-top: 0.9444444444em;
  padding: 2px 33px 5px;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: #fff;
  text-align: center;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.top-mv-item {
  aspect-ratio: 1/1;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url(../img/top/mv-item-bg.png) center/cover no-repeat;
  font: 500 43.88px "Shippori Mincho", serif;
  letter-spacing: 0.1em;
  line-height: 1.33;
  text-align: center;
}
.top-mv-item__ttl {
  font-size: 35.11px;
  letter-spacing: 0.025em;
}
.top-mv-item__ttl--large {
  font-size: 45px;
  letter-spacing: 0.025em;
}
.top-mv-item__ttl span {
  font-size: 32.18px;
}

.top-intro {
  width: 100%;
  padding-top: 73px;
  overflow: hidden;
}
.top-intro__head {
  margin-bottom: -54px;
  text-align: center;
  position: relative;
  z-index: 0;
}
.top-intro__head::before {
  content: "";
  display: block;
  border-right: 735px solid rgba(0, 0, 0, 0);
  border-top: 131px solid #fff;
  border-left: 735px solid rgba(0, 0, 0, 0);
  position: absolute;
  bottom: -29%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.top-intro__ttl {
  display: inline-block;
  padding: 0.5em 1.4791666667em 0.3958333333em 1.7708333333em;
  background: #f1ecd9;
  font-weight: 700;
  font-size: 48px;
  letter-spacing: 0.1em;
  line-height: 1.3;
  color: #4a4a4a;
  border-radius: 2.1875em;
  position: relative;
}
.top-intro__ttl::before {
  content: "";
  display: block;
  border-right: 0.46875em solid rgba(0, 0, 0, 0);
  border-top: 0.8125em solid #f1ecd9;
  border-left: 0.46875em solid rgba(0, 0, 0, 0);
  position: absolute;
  bottom: -26%;
  left: 50%;
  transform: translateX(-50%);
}
.top-intro__txt {
  margin: 23px 0 0 12px;
  font-weight: 500;
  font-size: 36px;
  letter-spacing: 0.1em;
  line-height: 1.9;
  color: #333333;
}
.top-intro__txt span {
  font-weight: 700;
}
.top-intro__content {
  padding: 167px 25px 107px;
  background: url(../img/top/intro-bg.jpg) center/cover no-repeat;
}
.top-intro__list {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 61px 50px;
  margin-inline: auto;
}

.top-intro-item {
  padding: 10px 20px;
  width: 100%;
  max-width: 500px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fff;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.75;
  letter-spacing: 0.025em;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0px 13px 16px 0px rgba(47, 47, 47, 0.19);
}
.top-intro-item:nth-child(1) {
  line-height: 1.3333333333;
}
.top-intro-item:nth-child(1) span {
  color: #4da5d7;
}
.top-intro-item:nth-child(2) span {
  color: #62a933;
}
.top-intro-item:nth-child(3) span {
  color: #c28400;
}
.top-intro-item:nth-child(4) span {
  color: #f2929b;
}
.top-intro-item:nth-child(5) span {
  color: #537c93;
}
.top-intro-item:nth-child(6) span {
  color: #b88741;
}
.top-intro-item__txt {
  margin-top: 23px;
}

.top-intro-bnr {
  width: 100%;
  height: 300px;
  display: block;
  background: #f48fa1;
  padding: 21px 35px 26px 36px;
  position: relative;
  z-index: 0;
}
.top-intro-bnr::before, .top-intro-bnr::after {
  content: "";
  aspect-ratio: 295/300;
  width: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
  height: 100%;
  display: block;
  background: url(../img/top/intro-bnr-fig.png) center/cover no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: -2;
  opacity:0.6;
}
.top-intro-bnr::before {
  left: 0;
}
.top-intro-bnr::after {
  left: auto;
  right: 0;
  transform: translateY(-50%) scale(-1);
}
.top-intro-bnr__content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  position: relative;
}
.top-intro-bnr__content::before {
  content: "";
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 138px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff url(../img/common/company-logo.png) 41.5% 63%/56% 53% no-repeat;
  border-radius: 50%;
  position: absolute;
  top: -32.5%;
  left: 49.87%;
  transform: translateX(-50%);
}
.top-intro-bnr__ttl {
  padding: 0 0.6666666667em 0.4166666667em 0.5625em;
  font-size: 48px;
  font-weight:600;	
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: rgb(255, 248, 245);
  border-bottom: 3px solid #fff;
}
.top-intro-bnr__ttl-shadow {
  text-shadow: 0px 9px 18px rgba(206, 36, 84, 0.39);
}
.top-intro-bnr__ttl-em {
  display: inline-block;
  margin-left: 0.1875em;
  color: rgb(244, 141, 170);
  letter-spacing: 0;
  position: relative;
}
.top-intro-bnr__ttl-em:first-of-type {
  margin-left: 0.1458333333em;
}
.top-intro-bnr__ttl-em::after {
  content: "";
  width: 1.6458333333em;
  height: 1.6458333333em;
  display: inline-block;
  background-color: rgb(255, 244, 222);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.top-intro-bnr__ttl-em span {
  text-shadow: unset;
  position: relative;
  z-index: 1;
}

/* R7.7/28更新分 */
section#clinic-point-link {
    margin: 100px 0px 150px 0px;
}
#clinic-point-link .inner{
	width: 100%;
    margin-inline: auto;
    padding: 0px;
}

#clinic-point-link .clinic-point-link__row {
  position:relative;
  display: flex;
  justify-content:space-between;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

#clinic-point-link .clinic-point-link__row::before {
    position: absolute;
    content: "";
    display: block;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    height: 50%;
    background: #fffcf5;
    left: 0;
    bottom: 0;
    z-index: -1;
}

#clinic-point-link .clinic-point-link__label {
font-size:90px;
  font-weight: 700;
  font-family:"Zen Kaku Gothic New", serif;
  flex-shrink: 0;
    letter-spacing: 0.075em;
}

#clinic-point-link .clinic-point-link__row:nth-of-type(1) .clinic-point-link__label,
#clinic-point-link .clinic-point-link__row:nth-of-type(5) .clinic-point-link__label,
#clinic-point-link .clinic-point-link__row:nth-of-type(9) .clinic-point-link__label {
  color: #f3a159;
}

#clinic-point-link .clinic-point-link__row:nth-of-type(3) .clinic-point-link__label,
#clinic-point-link .clinic-point-link__row:nth-of-type(7) .clinic-point-link__label {
  color: #f48fa1;
}


#clinic-point-link .clinic-point-link__band {
  display: inline-block;
  text-decoration: none;
  padding: 25px 24px 25px 50px;
  font-weight: bold;
  font-size: 40px;
  color: #fff;
  border-radius: 80px 0 0 80px;
  transition: opacity 0.3s ease;
  flex-grow: 1;
  text-align: center;	
}

#clinic-point-link .clinic-point-link__band--orange {
  background-color: #f3a159;
}

#clinic-point-link .clinic-point-link__band--pink {
  background-color: #f48fa1;
}

#clinic-point-link .clinic-point-link__band:hover {
  opacity: 0.85;
}

#clinic-point-link .clinic-point-link__point{
	padding-left:15px;
    letter-spacing: 2px;	
}

#clinic-point-link .clinic-point-link__content {
  position:relative;
  display: flex;
  gap: 60px;
  align-items: flex-start;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
}

#clinic-point-link .clinic-point-link__content::before {
    position: absolute;
    content: "";
    display: block;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    height: 100%;
    background: #fffcf5;
    left: 0;
    top: 0;
    z-index: -1;
}

#clinic-point-link .clinic-point-link__image {
  flex: 1;
  max-width: 100%;
}

#clinic-point-link .clinic-point-link__image img {
  width: 100%;
  height: auto;
  display: block;
}

#clinic-point-link .clinic-point-link__text {
  flex: 1;
  font-size: 20px;
  font-weight: 500;
  line-height: 2.5;
  letter-spacing: 1px;
}

.clinic-point-link__text span {
    font-size: 30px;
    font-weight: 600;
    color: #f3a159;
}

/* <main-style> ============================ */
.main__action {
    text-align: center;
	line-height: 0;
	margin-top: 10px;
}
.main__scroll-box {
    width: 50px;
	display: inline-block;
}
.main__scroll-text {
    display: block;
    font-size: 18px !important;
    color: #696969 !important;	
}
.main__action:hover .main__scroll-box {
  animation: scroll-down 3s infinite;
}


@media (max-width: 750px) {
.main__scroll-box {
    width: 30px;
}
}

/* Animate scroll icon */
@keyframes scroll-down {
  0%, 100% {
    transform: translateY(0rem);
    opacity: 1;
  }

  35% {
    transform: translateY(1rem);
    opacity: 0;
  }

  70% {
    transform: translateY(-1rem);
    opacity: 0;
  }
}



@media (max-width: 1300px) {
	#clinic-point-link .clinic-point-link__label {
    font-size: 100px;
	margin-bottom: -25px;
}
	
	#clinic-point-link .clinic-point-link__row {
	flex-direction:column;
	gap:0;
	padding-bottom: 30px;
	}
	
	#clinic-point-link .clinic-point-link__point {
		padding: 17px;
	}
	
	#clinic-point-link .clinic-point-link__band {
		font-size:28px;
    border-radius: 80px;
}
	
	#clinic-point-link .clinic-point-link__row::before {
    height: 65%;
}
}

@media (max-width: 750px) {
section#clinic-point-link {
    margin: 50px 0px 50px 0px;
}	
  #clinic-point-link .clinic-point-link__row {
    flex-direction: column;
    align-items: flex-start;
	margin-top: 50px;
	padding-bottom: 10px; 
  }

  #clinic-point-link .clinic-point-link__label {
	 font-size: 40px; 
     margin: auto;
	 letter-spacing: 0.055em;
  }

  #clinic-point-link .clinic-point-link__band {
    width: 100%;
	font-size: 20px;
    text-align: center;
  }
	
  #clinic-point-link .clinic-point-link__content {
 	flex-direction:column;
    gap: 15px;
	}
#clinic-point-link .clinic-point-link__text {
    flex: 1;
    font-size: 15px;
    line-height: 1.8;	
}	
.clinic-point-link__text span {
	font-size: 18px;
}
#clinic-point-link .inner{
	width: 100%;
    margin-inline: auto;
    padding: 0px 15px;
}		
}

@media (max-width: 500px) {
	#clinic-point-link .clinic-point-link__label {
		font-size: 36px;
		line-height: 1;
	}
	
	#clinic-point-link .clinic-point-link__band {
		text-align: center;
		font-size: 15px;
		padding: 10px 5px;
		width: 95%;
		margin: auto;
	}

	#clinic-point-link .clinic-point-link__content::before {
    height: 110%;
}
}

.top-point01 {
  padding-top: 100px;
}
.top-point01__content {
  padding: 50px 0 100px;
  background: url(../img/top/point01-bg.png) 50% -302px/cover no-repeat;
}
.top-point01__catch {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 0 1.4166666667em;
  font-weight: 700;
  font-size: 48px;
  letter-spacing: 0.075em;
  line-height: 1.2;
  color: #444444;
  text-align: center;
  position: relative;
  transform: translateX(0.1875em);
}
.top-point01__catch::before, .top-point01__catch::after {
  content: "";
  width: 0.0625em;
  height: 1.5208333333em;
  background: #444444;
  position: absolute;
  top: auto;
  bottom: -0.1666666667em;
  left: 0.5416666667em;
  transform: rotate(-34deg);
}
.top-point01__catch::after {
  left: auto;
  right: 0.6041666667em;
  transform: rotate(34deg);
}
.top-point01__intro {
  margin: 40px 0 0 9px;
  font-size: 30px;
  font-weight:600;
  letter-spacing: 0.075em;
  line-height: 1.75;
  color: #444444;
  text-align: center;
}
.top-point01__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(auto, 807px));
  gap: 38px;
  width: 100%;
  max-width: 1300px;
  margin: 26px auto 0;
}

.top-point01-item {
  display: flex;
  flex-direction: column;
}
.top-point01-item--a .top-point01-item-detail__ttl-txt {
  border-color: #ec8b44;
}
.top-point01-item--a .top-point01-item-detail__ttl-txt .em {
  color: #ec8b44;
}
.top-point01-item--b .top-point01-item-detail__ttl-txt {
  border-color: #289dc3;
}
.top-point01-item--b .top-point01-item-detail__ttl-txt::before {
  border-left-color: #289dc3;
}
.top-point01-item--b .top-point01-item-detail__ttl-txt .em {
  color: #289dc3;
}
.top-point01-item__head {
  display: block;
  aspect-ratio: 7/5;
  width: 100%;
  max-width: 700px;
  margin-inline: auto;
  padding-top: 60px;
  border-radius: 20px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: translateX(6px);
  position: relative;
  z-index: 1;
}
.top-point01-item--a .top-point01-item__head {
  background-image: url(../img/top/point01-a-bg.jpg);
}
.top-point01-item--b .top-point01-item__head {
  background-image: url(../img/top/point01-b-bg.jpg);
}
.top-point01-item__icon {
  width: 2.3333333333em;
  height: 2.2166666667em;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  font-weight: 500;
  font-size: 60px;
  letter-spacing: 0.15em;
  line-height: 1;
  color: #fff;
  position: absolute;
  top: -0.2833333333em;
  left: -0.3166666667em;
}
.top-point01-item__icon span {
  padding: 0 0 0.15em 0.15em;
}
.top-point01-item--a .top-point01-item__icon {
  background-image: url(../img/top/point01-a-txt-bg.png);
}
.top-point01-item--b .top-point01-item__icon {
  background-image: url(../img/top/point01-b-txt-bg.png);
}
.top-point01-item--b .top-point01-item__icon span {
  padding-bottom: 0.05em;
}
.top-point01-item__ttl {
  text-align: center;
}
.top-point01-item__ttl-sub {
  display: inline-block;
  padding: 0.2291666667em 0.7916666667em 0.25em;
  border-radius: 100px;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.15em;
  line-height: 1.2;
  color: #fff;
  text-align: center;
}
.top-point01-item--a .top-point01-item__ttl-sub {
  background-color: #f48fa1;
}
.top-point01-item--b .top-point01-item__ttl-sub {
  background-color: #2f6073;
}
.top-point01-item__ttl-txt {
  margin-top: 0.1388888889em;
  font-weight: 700;
  font-size: 72px;
  letter-spacing: 0;
  line-height: 1.2;
}
.top-point01-item--a .top-point01-item__ttl-txt {
  color: #6b4c3b;
}
.top-point01-item--b .top-point01-item__ttl-txt {
  color: #2f6073;
}

.top-point01-item-detail {
  height: 100%;
  margin-top: -111px;
  padding: 154px 78px 13px 68px;
  color: #3b3b3b;
  background: #fff;
  box-shadow: 0px 0px 27.52px 4.48px rgba(113, 113, 113, 0.13);
}
.top-point01-item-detail__ttl:not(:first-of-type) {
  margin-top: 21px;
}
.top-point01-item-detail__ttl-txt {
  padding: 0 0 5px 1.6333333333em;
  font-weight: 500;
  font-size: 30px;
  letter-spacing: 0.15em;
  line-height: 1.2;
  border-style: solid;
  border-bottom-width: 0.1em;
  position: relative;
}
.top-point01-item-detail__ttl-txt::before {
  content: "";
  display: inline-block;
  border-top: 13px solid rgba(0, 0, 0, 0);
  border-left: 23px solid #ec8b44;
  border-bottom: 13px solid rgba(0, 0, 0, 0);
  position: absolute;
  top: 11px;
  left: 12px;
}
.top-point01-item-detail__ttl-txt span {
  font-weight: 700;
}
.top-point01-item-detail__txt {
  margin-top: 1.1111111111em;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.75;
}

.top-point01-desc {
  max-width: 1300px;
  margin-inline: auto;
  padding: 127px 0;
  position: relative;
}
.top-point01-desc__img {
  aspect-ratio: 65/41;
  width: 100%;
  max-width: 650px;
  overflow: hidden;
}
.top-point01-desc__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-point01-desc__box {
  width: 66.5%;
  max-width: 1055px;
  margin-left: 34.5%;
  padding: 1.9583333333em 3.2916666667em 1.4583333333em 3.125em;
  background: #fff;
  border: 1px solid #bfbfbf;
  font-weight: 500;
  font-size: 24px;
  color: #333333;
  line-height: 1.75;
  letter-spacing: 0;
  position: relative;
  z-index: 0;
}
.top-point01-desc__box::before, .top-point01-desc__box::after {
  content: "";
  display: inline-block;
  position: absolute;
  z-index: -1;
}
.top-point01-desc__box::before {
  border-bottom: 86px solid rgba(0, 0, 0, 0);
  border-left: 86px solid #f7e8e8;
  top: 30px;
  left: 32px;
}
.top-point01-desc__box::after {
  border-top: 86px solid rgba(0, 0, 0, 0);
  border-right: 86px solid #f7e8e8;
  top: auto;
  left: auto;
  bottom: 24px;
  right: 34px;
}
.top-point01-desc__box span {
  color: #755943;
}

.top-point01-merit {
  margin-top: 61px;
  text-align: center;
}
.top-point01-merit__content {
  display: inline-flex;
  flex-direction: column;
  padding: 0 100px 0 135px;
  position: relative;
}
.top-point01-merit__content::before, .top-point01-merit__content::after {
  content: "";
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 68px;
  background: #f8c8d0;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.top-point01-merit__content::after {
  left: auto;
  right: 0;
}
.top-point01-merit__txt {
  display: inline-block;
  font-weight: 500;
  font-size: 40px;
  color: #333333;
  line-height: 1.6;
  letter-spacing: 0.1em;
  text-align: center;
}
.top-point01-merit__txt:nth-child(1) {
  margin-left: 0.325em;
}
.top-point01-merit__txt:nth-child(3) {
  margin: 0.3em 0 0 0.325em;
}
.top-point01-merit__txt-large {
  font-size: 1.5em;
  letter-spacing: 0.1em;
}
.top-point01-merit__txt-large span {
  display: inline-block;
  padding-left: 0.1833333333em;
  line-height: 1.49;
  border: 5px dotted #000000;
}
.top-point01-merit__txt-large .merit {
  margin-right: -0.1833333333em;
  padding-left: 0.2166666667em;
}
.top-point01-merit__txt-large .demerit {
  margin-right: 0.3166666667em;
  margin-left: -0.2666666667em;
}

.top-point01-worries {
  padding: 138px 0 122px;
  background: url(../img/top/point01-worries-bg.jpg) center/cover no-repeat;
  position: relative;
  z-index: 0;
}
.top-point01-worries::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(52, 52, 52, 0.61);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.top-point01-worries__ttl {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 0 50px 0 63px;
  font: 500 48px "Shippori Mincho", serif;
  letter-spacing: 0.15em;
  text-align: center;
  color: #fff;
  position: relative;
  transform: translateX(-9px);
}
.top-point01-worries__ttl::before, .top-point01-worries__ttl::after {
  content: "";
  width: 3px;
  height: 63px;
  background: #fff;
  position: absolute;
  top: auto;
  bottom: 32px;
  left: 22px;
  transform: rotate(-40deg);
}
.top-point01-worries__ttl::after {
  left: auto;
  right: 22px;
  transform: rotate(40deg);
}
.top-point01-worries__ttl span {
  display: block;
  padding-bottom: 29px;
  border-bottom: 5px dotted #fff;
}
.top-point01-worries__list {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(3, minmax(auto, 283px));
  justify-content: center;
  gap: 78px 93px;
  margin: 45px auto 0;
  padding: 50px 20px 67px;
  background: #f7f5f4;
  border-radius: 30px;
}
.top-point01-worries__item-ttl {
  padding-bottom: 23px;
  font-weight: 500;
  font-size: 22px;
  line-height: 2.182;
  letter-spacing: 0.15em;
  color: #3f2a2a;
  text-align: center;
  position: relative;
}
.top-point01-worries__item-ttl::before {
  content: "";
  display: inline-block;
  border-top: 20px solid #b09f90;
  border-right: 11.5px solid rgba(0, 0, 0, 0);
  border-left: 11.5px solid rgba(0, 0, 0, 0);
  position: absolute;
  top: auto;
  left: 49%;
  bottom: 0;
  transform: translateX(-50%);
}
.top-point01-worries__item-img {
  width: -moz-fit-content;
  width: fit-content;
  margin: 17px auto 0;
}

.top-point01-case {
  padding: 97px 0 75px;
}
.top-point01-case__ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  font: 500 72px "Shippori Mincho", serif;
  line-height: 1;
  letter-spacing: 0.15em;
  color: #333333;
  text-align: center;
}
.top-point01-case__ttl::before, .top-point01-case__ttl::after {
  content: "";
  flex: 1;
  display: block;
  width: 100%;
  max-width: 245px;
  border-bottom: 5px dotted #a5a5a5;
  box-sizing: border-box;
  transform: translateY(5px);
}
.top-point01-case__ttl::before {
  margin-right: 39px;
}
.top-point01-case__ttl::after {
  margin-left: 34px;
}
.top-point01-case__list {
  max-width: 1496px;
  margin: 51px auto 0;
  transform: translateX(-6px);
}
.top-point01-case__list .slick-arrow {
  aspect-ratio: 61/107;
  width: 100%;
  max-width: 61px;
  display: block;
  background: url(../img/common/arrow.png) center/cover no-repeat;
  position: absolute;
  top: 62%;
  left: -4.8%;
  z-index: 1;
  transform: translateY(-50%);
}
.top-point01-case__list .slick-next {
  left: auto;
  right: -5.6%;
  transform: translateY(-50%) scale(-1);
}
.top-point01-case__item {
  margin: 95px 10px 0;
  padding: 85px 172px 78px 183px;
  background: #f5f5f5;
  color: #333333;
  border-radius: 60px 60px 0 0;
  position: relative;
  z-index: 0;
}
.top-point01-case__item-num {
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 6.8em;
  background: #f5f5f5;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.6;
  letter-spacing: 0.18em;
  border-radius: 50%;
  position: absolute;
  top: -12.3%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.top-point01-case__item-num span {
  padding: 0 0 0.6666666667em 0.3333333333em;
}
.top-point01-case__item-ttl {
  margin-top: 2.0833333333em;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.75;
  letter-spacing: 0.1em;
}
.top-point01-case__item-txt {
  margin-top: 1.6666666667em;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.75;
  letter-spacing: 0.1em;
}

.top-point01-case-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 81px;
       column-gap: 81px;
}
.top-point01-case-column__ttl {
  padding: 2px 0.5em;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.333;
  letter-spacing: 0.15em;
  color: #fff;
  text-align: center;
}
.top-point01-case-column__ttl--before {
  background: #eb97a0;
}
.top-point01-case-column__ttl--after {
  background: #eda43e;
}
.top-point01-case-column__img {
  margin-top: 13px;
  aspect-ratio: 520/325;
  width: 100%;
}
.top-point01-case-column__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-point02 {
padding-top:100px;
padding-bottom: 100px;	
}

.top-point02-intro {
  min-height: 717px;
  padding: 117px 0 96px;
  background: #f8f5ee;
  position: relative;
}
.top-point02-intro__inner {
  width: 100%;
  max-width: 1688px;
  margin-inline: auto;
  padding: 0 25px;
}
.top-point02-intro__list {
  font-weight: 500;
  font-size: 48px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: #4a4a4a;
}
.top-point02-intro__item {
  padding-left: 1.2291666667em;
  position: relative;
}
.top-point02-intro__item:nth-child(2) {
  margin: 0.2083333333em 0 0 1.1875em;
}
.top-point02-intro__item:nth-child(3) {
  margin: 0.3958333333em 0 0 2.7291666667em;
}
.top-point02-intro__item:nth-child(4) {
  margin: 0.4375em 0 0 3.8333333333em;
}
.top-point02-intro__item:nth-child(5) {
  margin: 0.1458333333em 0 0 5.8333333333em;
}
.top-point02-intro__item::before {
  content: "";
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 0.6458333333em;
  display: inline-block;
  border-radius: 50%;
  background: #f8c8d0;
  position: absolute;
  top: 0.75em;
  left: 0;
}
.top-point02-intro__item .underline {
  border-bottom: 10px solid #fff;
}
.top-point02-intro__item .em {
  font-weight: 700;
  font-size: 1.25em;
  letter-spacing: 0.1em;
  color: #ee7a9b;
}
.top-point02-intro__item .decrease-spacing {
  display: inline-block;
  margin-left: -0.5em;
  margin-right: -0.5em;
}
.top-point02-intro__img {
  width: 100%;
  max-width: 51.0416666667%;
  height: 691px;
  display: block;
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 33.3% 100%);
  position: absolute;
  top: auto;
  right: 0;
  bottom: -6.1%;
  left: auto;
  z-index: 1;
}
.top-point02-intro__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-point02-parking {
  padding: 26px 25px;
  position: relative;
}
.top-point02-parking__img {
  width: 100%;
  max-width: 40%;
  height: 481px;
}
.top-point02-parking__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-point02-parking__detail {
  width: 60.5%;
  max-width: 1100px;
  padding: 2.3666666667em 1em 2.3666666667em 1.7666666667em;
  margin: 0 auto 0 33.2%;
  background: #fff;
  font-weight: 500;
  font-size: 24px;
  color: #333333;
  line-height: 1.75;
  letter-spacing: 0;
  box-shadow: 0 14px 25.38px 1.62px rgba(151, 151, 151, 0.34);
  position: relative;
  z-index: 0;
}
.top-point02-parking__detail::after {
  content: "";
  display: inline-block;
  border-bottom: 7.1666666667em solid #f7e8e8;
  border-left: 7.1em solid rgba(0, 0, 0, 0);
  position: absolute;
  top: auto;
  right: 1.1666666667em;
  bottom: 1.2666666667em;
  left: auto;
  z-index: -1;
}
.top-point02-parking + .top-point02-itero {
  margin-top: -321px;
}

.top-point02-itero {
  padding-top: 390px;
  background: #f6f6f6;
}
.top-point02-itero__content {
  width: 100%;
  max-width: 1500px;
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 93px;
       column-gap: 93px;
  margin-inline: auto;
}
.top-point02-itero__catch {
  display: inline-flex;
  position: relative;
}
.top-point02-itero__catch-txt {
  font: 500 70px "Shippori Mincho", serif;
  color: #333333;
  line-height: 2.51;
  letter-spacing: 0.15em;
  writing-mode: vertical-rl;
}
.top-point02-itero__catch-txt span {
  white-space: nowrap;
  background: #fff;
  padding: 0.575em 0.475em 0.375em 0.3625em;
  border: 1px solid #333333;
  letter-spacing: 2px;	
}
.top-point02-itero__catch-txt span:nth-of-type(2) {
  margin-top: 1.225em;
  padding: 0.575em 0.4375em 0.425em 0.4em;
}
.top-point02-itero__free {
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 3.5833333333em;
  background: rgba(89, 167, 197, 0.74);
  font-weight: 500;
  font-size: 72px;
  letter-spacing: 0;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  top: auto;
  right: -1.2em;
  bottom: -0.8em;
  left: auto;
}
.top-point02-itero__free-inner {
  width: calc(100% - 0.3611111111em);
  height: calc(100% - 0.3611111111em);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.1944444444em;
  border: 1px solid #fff;
  border-radius: 50%;
}
.top-point02-itero__free-txt {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 0.1388888889em;
}
.top-point02-itero__free-txt span {
  margin-bottom: -0.9em;
  font-size: 0.4166666667em;
  letter-spacing: 0.15em;
  line-height: 1.6;
  border-bottom: 1px solid #fff;
}
.top-point02-itero__detail {
  padding-top: 11px;
}
.top-point02-itero__sub {
  font: 500 72px "Shippori Mincho", serif;
  letter-spacing: 0.15em;
  line-height: 1.389;
  background: linear-gradient(to left, #0c1446, #0c1446 20%, #2ab2df 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.top-point02-itero__ttl {
  display: inline-block;
  margin: 0.1066666667em 0 0 0.0333333333em;
  padding-right: 0.44em;
  font: 500 150px "Shippori Mincho", serif;
  letter-spacing: 0.15em;
  line-height: 1;
  color: #333333;
  position: relative;
}
.top-point02-itero__ttl span {
  display: block;
  font: 500 0.1066666667em "Zen Kaku Gothic New", serif;
  letter-spacing: 0.15em;
  position: absolute;
  top: 3.3125em;
  right: 0;
}
.top-point02-itero__txt {
  margin-top: 3.9em;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: #333333;
}
.top-point02-itero__imgs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 60px;
       column-gap: 60px;
  max-width: 1256px;
  margin-top: 97px;
  transform: translateX(-5px);
}
.top-point02-itero__img {
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
}
.top-point02-itero__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-point02-sidebar {
  margin-top: -5.5px;
}
.top-point02-sidebar__check {
  display: grid;
  grid-template-columns: 26.6% 1fr;
  justify-content: center;
  align-items: flex-end;
  -moz-column-gap: 80px;
       column-gap: 80px;
}
.top-point02-sidebar__img {
  width: 342px;
  height: 305px;
  display: flex;
  justify-content: flex-end;
  margin-inline-start: auto;
  position: relative;
  z-index: 0;
}
.top-point02-sidebar__img::before {
  content: "";
  aspect-ratio: 1/1;
  width: 100%;
  display: block;
  background: #ffeca4;
  border-radius: 50%;
  position: absolute;
  top: 30%;
  left: 0;
  z-index: -1;
}
.top-point02-sidebar__img img {
  aspect-ratio: 233/305;
  width: 100%;
  max-width: 233px;
  display: block;
  margin-inline: auto 4.3%;
}
.top-point02-sidebar__list {
  margin: auto 0 auto 8px;
  padding: 80px 0 40px;
}
.top-point02-sidebar__item {
  padding-left: 2.3333333333em;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.2;
  color: #333333;
  line-height: 1.5;
  letter-spacing: 0.15em;
  position: relative;
}
.top-point02-sidebar__item::before {
  content: "";
  width: 1.4666666667em;
  height: 1.3em;
  display: block;
  background: url(../img/common/check-icon.png) center/cover no-repeat;
  position: absolute;
  top: 0.1333333333em;
  left: 0;
}
.top-point02-sidebar__item span {
  color: #f36060;
}
.top-point02-sidebar__item:not(:first-child) {
  margin-top: 0.4666666667em;
}
.top-point02-sidebar__txt {
  padding: 0.9166666667em 6% 1.0625em 1.5%;
  background: url(../img/top/point02-sidebar-bg.jpg) center/cover no-repeat;
  font-weight: 500;
  font-size: 48px;
  letter-spacing: 0.15em;
  line-height: 1.75;
  color: #fff;
  position: relative;
}
.top-point02-sidebar__txt::before {
  content: "";
  display: inline-block;
  border-right: 0.625em solid rgba(0, 0, 0, 0);
  border-left: 0.625em solid rgba(0, 0, 0, 0);
  border-bottom: 1.0416666667em solid #f9aebb;
  position: absolute;
  top: -1.0416666667em;
  left: 50.04%;
  transform: translateX(-50%);
}
.top-point02-sidebar__detail {
  width: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
  display: block;
  margin-inline: auto;
}

span.c-contact-bnr__icon.orange {
    background: #f6821c;
}
span.c-contact-bnr__icon.pink {
    background: #e55c6c;
}

.top-point02-flow {
  padding-top: 60px;
  color: #333333;
}
.top-point02-flow__inner {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  padding: 0 25px;
}
.top-point02-flow__head {
  text-align: center;
}
.top-point02-flow__catch-logo {
  width: 100%;
  max-width: clamp(93.5px, 9.7395833333vw, 187px);
  margin-inline: auto;
  transform: translateX(-12px);
}
.top-point02-flow__catch-txt {
  margin-top: -0.3333333333em;
  padding-left: 0.2777777778em;
  font: 400 clamp(18px, 1.875vw, 36px) "Shippori Mincho", serif;
  letter-spacing: 0.15em;
  line-height: 1;
}
.top-point02-flow__ttl {
  margin-top: 0.21875em;
  padding-left: 0.25em;
  font-weight: 700;
  font-size: clamp(24px, 2.5vw, 48px);
  letter-spacing: 0.15em;
  line-height: 1.5;
}
.top-point02-flow__list {
  counter-reset: num;
  margin-top: 48px;
}
.top-point02-flow__notes {
  margin-top: 25px;
  font-weight: 500;
  font-size: clamp(14px, 0.9375vw, 18px);
  letter-spacing: 0.15em;
  line-height: 1.2;
}
.top-point02-flow__note {
  padding-left: 1em;
  position: relative;
}
.top-point02-flow__note::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.top-point02-flow__note:not(:first-child) {
  margin-top: 0.5555555556em;
}

.top-point02-flow-item {
  background: #f4f4f4;
  font-weight: 500;
  font-size: clamp(14px, 1.25vw, 20px);
  letter-spacing: 0.15em;
  line-height: 1.75;
  border-radius: 1.25em;
  color: #333333;
  position: relative;
}
.top-point02-flow-item::before {
  counter-increment: num;
  content: counter(num, decimal-leading-zero);
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 2.35em;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  font: 500 clamp(30px, 3.125vw, 60px) "Shippori Mincho", serif;
  letter-spacing: 0.075em;
  color: #f48fa1;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0.75em;
  transform: translateY(-50%);
  z-index: 2;
}
.top-point02-flow-item:not(:first-child) {
  margin-top: 2.1666666667em;
}
.top-point02-flow-item:last-child {
  background-color: #fff0f3;
}
.top-point02-flow-item:last-child::before {
  color: #f0ac6f;
}
.top-point02-flow-item__ttl {
  font-weight: 700;
  font-size: clamp(24px, 1.875vw, 36px);
  letter-spacing: 0.15em;
  line-height: 1.5;
}
.top-point02-flow-item__content {
  padding: 38px 51px 51px clamp(126px, 13.125vw, 252px);
}
.top-point02-flow-item__detail {
  display: flex;
  -moz-column-gap: clamp(20px, 2.1354166667vw, 41px);
       column-gap: clamp(20px, 2.1354166667vw, 41px);
  margin-top: 0.6666666667em;
}
.top-point02-flow-item__txt {
  flex: 1;
}
.top-point02-flow-item__bnrs {
  display: flex;
  -moz-column-gap: clamp(25px, 2.9166666667vw, 56px);
       column-gap: clamp(25px, 2.9166666667vw, 56px);
  margin-top: 0.7222222222em;
  font-weight: 500;
  font-size: clamp(18px, 1.875vw, 30px);
  letter-spacing: 0.15em;
  line-height: 1.2;
  color: #fff;
  text-align: center;
}
.top-point02-flow-item__bnr {
  position:relative;
  width: 100%;
  max-width: clamp(247px, 25.7291666667vw, 494px);
  height: clamp(78.5px, 8.1770833333vw, 140px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.5em 0.5em 0.5em 0.5em;
  border-top-left-radius: 1.6666666667em;
  transition: opacity 0.2s ease;
}
.top-point02-flow-item__bnr:hover {
  opacity: 0.7;
}
.top-point02-flow-item__bnr--tel {
  background: #f3a159;
}
.top-point02-flow-item__bnr--tel span {
  margin: 4px 0 7px;
}
.top-point02-flow-item__bnr--web {
  background: #f48fa1;
}
.top-point02-flow-item__img {
  width: 100%;
  max-width: clamp(193px, 20.1041666667vw, 386px);
}
.top-point02-flow-item__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: clamp(10px, 1.0416666667vw, 20px);
}


/* 追記分 */
.top-point02-flow__head.blue{
	margin-top:150px;
}

@media screen and (max-width: 959px){
.top-point02-flow__head.blue{
	margin-top:80px;
}
}	
	
.top-point02-flow__list.blue{
	counter-reset: num 5;
}

.top-point02-flow-item.blue {
  background-color: #e5f3fa;
}

.top-point02-flow-item.blue::before {
    counter-increment: num;
    content: counter(num, decimal-leading-zero);
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 2.35em;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    font: 500 clamp(30px, 3.125vw, 60px) "Shippori Mincho", serif;
    letter-spacing: 0.075em;
    color: #2372b5;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 0.75em;
    transform: translateY(-50%);
    z-index: 2;
}

.top-point02-flow-item.num06::after{
	content: "";
	display: block;
	border-left: 5px dotted #f48fa1;
	width: 0;
    height: 150%;
    position: absolute;
    top: 130%;
	left: clamp(56.75px, 5.9114583333vw, 113.5px);
	transform: translateY(-50%);
	z-index: 1;
}


/*ポイント02診療時間・電話・住所*/
.top-point02__info {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  -moz-column-gap: 30px;
       column-gap: 30px;
  margin-top: 48px;
    padding: 50px 150px;	
    background: #e5e5e5;	
}
.top-point02__time {
  width: 100%;
}
.top-point02__time-note {
  margin-top: 11px;
  padding: 0 30px;
  font-weight: 500;
}
.top-point02__address {
  width: 40%;
  margin-top: 25px;
  font-weight: 500;	
}

.top-point02-time {
  width: 100%;
  line-height: 2;
  table-layout: auto;
  color: #484848;	
}
.top-point02-time th, .top-point02-time td {
  font-weight: 500;
  text-align: center;
  border-bottom: 1px solid #484848;
}
.top-point02-time th {
  width: 31.5%;
}
dt.top-point02-address__ttl {
    background: #484848;
    color: #ffffff;
    display: inline-block;
    padding: 0px 30px;
	margin-top:15px;
    border-radius: 5px;
}

@media screen and (min-width: 751px){
  .top-point02-time th, .footer-time td {
    padding: 6px 15px;
  }
  .top-point02-time th {
    padding-left: 22px;
  }
  .top-point02-time td {
    padding: 6px 15px;
  }
  .top-point02-time td:last-child {
    padding-right: 32px;
  }
  .top-point02-time tbody tr:last-child th {
    padding-top: 19px;
    padding-bottom: 21px;
  }
  .top-point02-time tbody tr:last-child td {
    padding-top: 13px;
  }
  .top-point02-time tbody th, .top-point02-time tbody td {
    padding: 22px 15px 23px;
  }
  .top-point02-time tbody td {
    padding: 20px 15px 16px;
    font-size: 22px;
  }
}


@media screen and (min-width: 960px){
  .top-point02__time {
    width: 60%;
  }
.top-point02__address {
    width: 35%;
}	
}

@media screen and (max-width: 1260px){
.top-point02__info {
    padding: 50px 50px;
}
  .top-point02__time {
    width: 70%;
  }
.top-point02__address {
    width: 25%;
}		
}

@media screen and (max-width: 959px){
  .top-point02__info {
    margin-top: 30px;
  }
  .top-point02__time-note {
    margin-top: 0.5em;
    padding: 0 5px;
  }
  .top-point02-time th, .top-point02-time td {
    padding: 0.5em 0;
  }
  .top-point02-time th {
    width: 35%;
  }
  .top-point02-time tbody th, .top-point02-time tbody td {
    padding: 1em 0;
  }
  .top-point02-address {
    grid-template-columns: 26% 1fr;
    gap: 20px;
  }
  .top-point02-address__txt {
    font-size: 16px;
	line-height: 1.6;  
  }
  .top-point02-address__txt a {
    margin-left: 0;
    padding-bottom: 6px;
    font-size: 18px;
  }
.top-point02__info {
    padding: 50px 20px;
}
  .top-point02__time {
    width: 100%;
  }
.top-point02__address {
    width: 100%;
}	
}



@media screen and (max-width: 1025px) {
.top-point02-flow-item.num06::after{
	content: "";
	display: block;
	border-left: 5px dotted #f48fa1;
	width: 0;
    height: 110%;
    position: absolute;
    top: 105%;
	left: clamp(56.75px, 5.9114583333vw, 113.5px);
	transform: translateY(-50%);
	z-index: 1;
}
}

@media screen and (max-width: 750px) {
	.top-point02-flow-item.num06::after {
display:none;
}
}

.top-point02-flow__list.blue .top-point02-flow-item__txt span{
	color:#e57b90;
	font-weight:bold;
}

.top-point02-flow__list.blue .top-point02-flow-item__txt strong{
	color:#dd2121;
}

.top-point02-flow-item__card-group {
	margin-top:25px;
  display: flex;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
}

.top-point02-flow-item__card {
    background: #fff;
    border-radius: 12px;
    padding: 10px;
    text-align: center;
    width: 23%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 240px;
}

.top-point02-flow-item__card img {
    width: 90%;
    aspect-ratio: 5 / 6;
    object-fit: contain;
    display: block;
    margin: auto;
}

.top-point02-flow-item__card-title {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 12px;
  color: #333;
  line-height: 1.2;	
}

.top-point02-flow-item__diagnosis {
    position: relative;
	top:-25px;
    display: flex;
    gap: 40px;
    padding: 0 20px;
    justify-content: center;
    z-index: 1;
}

.diagnosis-card {
  background-color: #b6e8ff;
  padding: 40px;
  position: relative;
  text-align: center;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  width: 47%;
  box-sizing: border-box;
}

.diagnosis-card__label {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  padding: 4px 16px;
  font-weight: bold;
  font-size: 16px;
  border-radius: 4px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

.diagnosis-card__caption {
  margin-top: 30px;
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight:500;
  line-height: 1.6;
  color: #0e124b;
}

.diagnosis-card__caption.caption-01{
	text-align:left;
}

@media screen and (max-width: 750px) {
.top-point02-flow-item__card-group {
    flex-direction: row;
    justify-content: center;
    align-items: center;
	gap: 5px;
}
	
.top-point02-flow-item__diagnosis {
    position: relative;
    top: -30px;
    display: flex;
    gap: 15px;
    padding:15px;
    justify-content: center;
}
.top-point02-itero__ttl span {
  font-size: 11px;
  top: 1em;
  right: -15px;	
}	
.diagnosis-card {
    background-color: #b6e8ff;
    padding: 15px;
    position: relative;
    text-align: center;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 47%;
    box-sizing: border-box;
    min-width: none;		
}
	
.top-point02-flow-item__card {
    width: 47%;
    min-width: 0px;
}	
	
.diagnosis-card__label {
    top: 5px;
    left: 50%;
    font-size: 15px;
}
	
.diagnosis-card__caption {
	margin-top: 15px;
}
.top-point02-flow-item__card-title {
  margin-bottom: 5px;
}	
}

@media screen and (max-width: 600px) {
.top-point02-flow-item__diagnosis{
	flex-direction:column;	
    align-items: center;
}

.diagnosis-card {
	width: 85%;
}	
}

/*  */


.top-point03 {
  padding-top: 100px;
}
.top-point03__content {
  padding: 93px 0 260px;
  background: url(../img/top/point03-bg.png) top/cover no-repeat;
}

.top-point03-worries {
  width: 100%;
  max-width: 1432.84px;
  margin-inline: auto;
  position: relative;
}
.top-point03-worries__img {
  display: inline-block;
  width: 100%;
  max-width: clamp(145px, 15.1041666667vw, 290px);
  position: absolute;
  top: auto;
  left: 1px;
  bottom: -12px;
}
.top-point03-worries__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-point03-worries__content {
  width: auto;
  max-width: 1207.84px;
  background: #fff;
  background: linear-gradient(165.3deg, #fff 55.5%, #f5f5f5 55.5%);
  margin-left: clamp(112.5px, 11.71875vw, 225px);
  padding: 1.0666666667em 2.5333333333em 1.6666666667em 4.4em;
  font-weight: 500;
  font-size: clamp(15px, 1.5625vw, 30px);
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #333333;
  border: 1px solid #0c1446;
  border-radius: clamp(20px, 2.0833333333vw, 40px);
}
.top-point03-worries__ttl {
  font-weight: 700;
  font-size: clamp(20px, 2.5vw, 48px);
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: #3a3a3a;
}
.top-point03-worries__list {
  margin-top: 33px;
}
.top-point03-worries__item {
  padding-left: 1.7333333333em;
  position: relative;
}
.top-point03-worries__item::before {
  content: "";
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 1.1em;
  background: url(../img/common/check-mark.png) center/cover no-repeat;
  position: absolute;
  top: 0.1666666667em;
  left: 0.0666666667em;
}
.top-point03-worries__item:not(:first-child) {
  margin-top: 0.9em;
}
.top-point03-worries__item span {
  font-weight: 700;
  color: #e47895;
}

.top-point03-desc {
  padding-top: 98px;
}
.top-point03-desc__ttl {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 0 1.9166666667em 0.3333333333em;
  font-weight: 500;
  font-size: clamp(36px, 3.75vw, 72px);
  letter-spacing: 0.15em;
  line-height: 1.5;
  text-align: center;
  transform: translateX(0.2638888889em);
}
.top-point03-desc__ttl::before, .top-point03-desc__ttl::after {
  content: "";
  width: 3px;
  height: 2.6388888889em;
  background: #333333;
  position: absolute;
  top: auto;
  left: 0.4444444444em;
  bottom: 0;
}
.top-point03-desc__ttl::before {
  transform: rotate(-19.5deg);
}
.top-point03-desc__ttl::after {
  left: auto;
  right: 0.4444444444em;
  bottom: -0.0416666667em;
  transform: rotate(19.5deg);
}
.top-point03-desc__ttl-sub {
  font-weight: 500;
  font-size: clamp(18px, 1.875vw, 36px);
  letter-spacing: 0.05em;
  line-height: 1;
}
.top-point03-desc__ttl-txt {
  margin-top: 0.2777777778em;
  font-weight: 600;	
}
.top-point03-desc__ttl-txt .underline {
  padding: 0 0.0833333333em 0.0694444444em 0.1666666667em;
  position: relative;
  z-index: 0;
}
/*.top-point03-desc__ttl-txt .underline::before {
  content: "";
  width: 100%;
  height: 0.4166666667em;
  display: block;
  background: #f9c9d6;
  position: absolute;
  top: auto;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}*/
.top-point03-desc__ttl-txt .dot {
  position: relative;
}
.top-point03-desc__ttl-txt .dot::before {
  content: "";
  display: block;
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 0.1388888889em;
  background: #333;
  position: absolute;
  top: 1px;
  left: 36%;
  transform: translateX(-50%);
  border-radius: 50%;
}
.top-point03-desc__txt {
  width: 100%;
  max-width: 1337px;
  margin: 19px auto 0;
  padding: 1.25em 0.8333333333em 2.0833333333em 2.6666666667em;
  font-weight: 500;
  font-size: clamp(18px, 1.875vw, 36px);
  line-height: 2.1;
  letter-spacing: 0em;
  background: #fff;
}
.top-point03-desc__txt .dotted-line {
  border-bottom: 0.1944444444em dotted #8f8f8f;
}
.top-point03-desc__txt .dotted-line:not(:has(.em)) {
  padding-bottom: 2px;
}
.top-point03-desc__txt .em {
  font-size: 1.3333333333em;
  letter-spacing: 1px;
  color: #e47895;
}
.top-point03-desc__txt .color-red {
  color: #cb3333;
}

.top-point03-message {
  display: flex;
  gap: clamp(16px, 1.6666666667vw, 32px);
  justify-content: center;
  margin-top: 58px;
}
.top-point03-message__ttl {
  color: #fff;
  font-size: 1.6em;
  letter-spacing: 0.15em;
  line-height: 1.5;
}
.top-point03-message__list {
  width: 100%;
  max-width: clamp(400px, 41.71875vw, 801px);
  font-weight: 500;
  font-size: clamp(15px, 1.5625vw, 30px);
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: #07166d;
}
.top-point03-message__item {
  width: 100%;
  max-width: clamp(360px, 37.5vw, 720px);
  min-height: clamp(100px, 10.4166666667vw, 200px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1em 0.6666666667em;
  border-radius: clamp(10px, 1.0416666667vw, 20px);
  position: relative;
}
.top-point03-message__item:not(:first-child) {
  margin-top: 11px;
}
.top-point03-message__item::before {
  content: "";
  display: inline-block;
  border-style: solid;
  border-width: 0.8833333333em 0 0.8833333333em 2.7126666667em;
  border-color: rgba(0, 0, 0, 0);
  position: absolute;
  top: 50%;
  left: auto;
  right: 0;
  transform: translate(100%, -50%);
}
.top-point03-message__item--01 {
  background: #6dc6c0;
}
.top-point03-message__item--01::before {
  border-left-color: #6dc6c0;
}
.top-point03-message__item--02 {
  padding-top: 2.1333333333em;
  background: #6cbddb;
}
.top-point03-message__item--02::before {
  border-left-color: #6cbddb;
}
.top-point03-message__txt {
  margin-top: 1.0666666667em;
  padding: 0.8em 1.1em 0.5666666667em;
  border-radius: clamp(10px, 1.0416666667vw, 20px);
  background: #fff;
}
.top-point03-message__note {
  margin-top: 0.4166666667em;
  font-size: 0.8em;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #333333;
}
.top-point03-message__img {
  margin: auto 0;
  transform: translateY(4px);
}
.top-point03-message__img img {
  aspect-ratio: 487/489;
  width: 100%;
  max-width: clamp(243.5px, 25.3645833333vw, 487px);
}

.top-point03-orthodontics__list {
  width: 100%;
  max-width: clamp(872.5px, 90.8854166667vw, 1745px);
  margin: -110px auto 0;
}

.top-point03-orthodontics-item:not(:first-child) {
  margin-top: 45px;
}
.top-point03-orthodontics-item__head {
  max-width: clamp(335px, 34.8958333333vw, 670px);
  margin-inline: auto;
  padding: 0.5208333333em 20px 0.3541666667em 34px;
  font-size: clamp(20px, 2.5vw, 48px);
  border-radius: clamp(15px, 1.5625vw, 30px) clamp(15px, 1.5625vw, 30px) 0 0;
  position: relative;
}
.top-point03-orthodontics-item__head::before {
  content: "";
  display: block;
  position: absolute;
  top: auto;
}
.top-point03-orthodontics-item:not(:first-child) .top-point03-orthodontics-item__head {
  margin-top: 50px;
}
.top-point03-orthodontics-item--wire .top-point03-orthodontics-item__head {
  background: #f9e3e5;
  color: #6f503e;
}
.top-point03-orthodontics-item--wire .top-point03-orthodontics-item__head::before {
  width: clamp(135px, 14.0625vw, 270px);
  height: clamp(96.5px, 10.0520833333vw, 193px);
  left: -24.8%;
  bottom: -25%;
  background: url(../img/top/point03-wire-orthodontics.png) center/cover no-repeat;
}
.top-point03-orthodontics-item--mouthpiece .top-point03-orthodontics-item__head {
  padding: 0.7708333333em 17px 0.3958333333em;
  background: #c9ebf7;
  color: #306074;
}
.top-point03-orthodontics-item--mouthpiece .top-point03-orthodontics-item__head::before {
  width: clamp(138.5px, 14.4270833333vw, 277px);
  height: clamp(78.5px, 8.1770833333vw, 157px);
  left: -26.1%;
  bottom: -10.5%;
  background: url(../img/top/point03-mouthpiece-orthodontics.png) center/cover no-repeat;
}
.top-point03-orthodontics-item__ttl {
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.5;
  text-align: center;
}
.top-point03-orthodontics-item__ttl span {
  text-decoration: underline;
  text-underline-offset: 8px;
}
.top-point03-orthodontics-item__body {
  background: #f7f7f7;
  border: 5px solid #e9e9e9;
  border-radius: 25px;
}
.top-point03-orthodontics-item--wire .top-point03-orthodontics-item__body {
  padding: 4.5625em clamp(46px, 4.7916666667vw, 92px);
  border-color: #f9e3e5;
}
.top-point03-orthodontics-item--mouthpiece .top-point03-orthodontics-item__body {
  padding: 5em clamp(46px, 4.7916666667vw, 92px) 3.625em;
  border-color: #c9ebf7;
}
.top-point03-orthodontics-item__price {
  display: flex;
  -moz-column-gap: clamp(35px, 3.6458333333vw, 70px);
       column-gap: clamp(35px, 3.6458333333vw, 70px);
  justify-content: center;
}
.top-point03-orthodontics-item__price:has(.top-point03-price:nth-of-type(3)) {
  -moz-column-gap: clamp(15px, 1.6145833333vw, 31px);
       column-gap: clamp(15px, 1.6145833333vw, 31px);
}
.top-point03-orthodontics-item__plus {
  height: 1em;
  display: inline-block;
  margin: auto 0;
  font: 500 clamp(30px, 3.125vw, 60px) "Shippori Mincho", serif;
  line-height: 1;
  letter-spacing: 0;
  color: #333333;
  transform: translateY(-0.57em);
}

.top-point03-price {
  width: 100%;
  max-width: clamp(225px, 23.4375vw, 450px);
  font-weight: 500;
  font-size: clamp(12px, 0.9375vw, 18px);
  letter-spacing: 0;
  line-height: 1.5;
  color: #333333;
}
.top-point03-price__content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #fff;
  padding: 2.2777777778em 1.1111111111em 1.3888888889em;
  text-align: center;
  border-radius: clamp(10px, 1.0416666667vw, 20px);
}
.top-point03-price__ttl {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(16px, 1.875vw, 36px);
  letter-spacing: 0.075em;
}
.top-point03-price__txt {
  margin-top: -2px;
}
.top-point03-price__num {
  font-weight: 700;
  font-size: clamp(40px, 3.75vw, 72px);
  letter-spacing: 0.15em;
  line-height: 1;
  transform: translateX(-0.0833333333em);
}
.top-point03-price__num .underline {
  padding-left: 0.1805555556em;
  position: relative;
  z-index: 0;
}
.top-point03-price__num .underline::before {
  content: "";
  width: 100%;
  height: 0.3611111111em;
  display: block;
  background: #fffca5;
  position: absolute;
  top: auto;
  left: 50%;
  bottom: 0.1805555556em;
  transform: translateX(-50%);
  z-index: -1;
}
.top-point03-price__num .yen {
  font-size: 0.6666666667em;
  letter-spacing: 0.15em;
}
.top-point03-price__num .mon {
  font-size: 0.4166666667em;
  letter-spacing: 0.15em;
}
.top-point03-price--wire .top-point03-price__num .underline::before {
  min-width: clamp(111.5px, 11.6145833333vw, 223px);
  background: #f9e3e5;
}
.top-point03-price--mouthpiece .top-point03-price__num .underline::before {
  background: #c9ebf7;
}
.top-point03-price__tax {
  margin-top: 0.5em;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(14px, 1.0416666667vw, 20px);
  letter-spacing: 0;
}
.top-point03-price__note {
  margin-top: 7px;
  padding: 0 1.8333333333em 0 1.2777777778em;
  line-height: 1.75;
}

.top-point03-extraction {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 40px;
       column-gap: 40px;
  max-width: 1460px;
  margin-inline: auto;
  padding: 43px 20px;
  font-size: clamp(14px, 0.9375vw, 18px);
  color: #333333;
}
.top-point03-extraction__ttl {
  font: 500 clamp(18px, 1.875vw, 36px) "Shippori Mincho", serif;
  letter-spacing: 0.15em;
  line-height: 1.5;
}
.top-point03-extraction__txt {
  grid-template-columns: clamp(343.5px, 35.78125vw, 687px) 1fr;
}
.top-point03-extraction__detail {
  margin: auto 0;
  padding: 0.8333333333em clamp(30px, 5.2083333333vw, 100px) 0 0;
  letter-spacing: 0;
  line-height: 1.75;
}
.top-point03-extraction__price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  row-gap: 7px;
  padding: 0.8888888889em 0 0.4444444444em clamp(30px, 6.9791666667vw, 134px);
  border-style: solid;
  border-color: #818181;
}
.top-point03-extraction__price-num {
  font-weight: 500;
  font-size: clamp(24px, 2.5vw, 48px);
  letter-spacing: 0.15em;
  line-height: 1;
}
.top-point03-extraction__price-num .yen {
  font-size: 0.75em;
}
.top-point03-extraction__price-tax {
  font: 500 clamp(14px, 1.0416666667vw, 20px) "Shippori Mincho", serif;
  letter-spacing: 0;
  line-height: 1.75;
}

.top-point03-loan {
  padding: 158px 0 80px;
}
.top-point03-loan__head {
  display: flex;
  align-items: center;
}
.top-point03-loan__ttl {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 14.5972222222em;
  font: 500 clamp(24px, 3.75vw, 72px) "Shippori Mincho", serif;
  line-height: 1.75;
  letter-spacing: 0.15em;
  color: #fff;
  position: relative;
}
.top-point03-loan__ttl .txt-bg {
  width: -moz-fit-content;
  width: fit-content;
  display: inline-flex;
  align-items: baseline;
  padding: 0.1944444444em 0.8333333333em;
  background: rgba(253, 147, 0, 0.66);
  white-space: nowrap;
}
.top-point03-loan__ttl .txt-bg:nth-child(1) {
  padding-left: 0.2361111111em;
  padding-right: 1.1111111111em;
}
.top-point03-loan__ttl .txt-bg:nth-child(2) {
  margin: -0.3055555556em 0 0 auto;
  padding-right: 0.4583333333em;
}
.top-point03-loan__ttl .txt-bg span {
  margin-left: -0.4333333333em;
  font-size: 0.8333333333em;
  letter-spacing: 0.15em;
  transform: translateY(0.1111111111em);
}
.top-point03-loan__intro {
  margin-top: 38px;
  width: 100%;
  max-width: 24.1111111111em;
  min-height: 5.8055555556em;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-inline: auto;
  padding: 0 2em 0 2em;
  font-weight: 500;
  font-size: clamp(18px, 1.875vw, 36px);
  letter-spacing: 0.15em;
  line-height: 1.75;
  color: #333333;
  position: relative;
}
.top-point03-loan__intro::before, .top-point03-loan__intro::after {
  content: "";
  display: inline-block;
  border-color: rgba(0, 0, 0, 0);
  border-style: solid;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.top-point03-loan__intro::before {
  border-left-color: #f3a158;
  border-width: 2.9027777778em 0 2.9027777778em 1.9166666667em;
}
.top-point03-loan__intro::after {
  border-right-color: #f3a158;
  border-width: 2.9027777778em 1.9166666667em 2.9027777778em 0;
  left: auto;
  right: 0;
}

.top-point03-payment {
  width: 100%;
  max-width: 1639px;
  margin: 42px auto 0;
  padding: 37.5px 20px 44px;
  background: #efefef;
}
.top-point03-payment__ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: clamp(20px, 1.875vw, 36px);
  letter-spacing: 0.15em;
  line-height: 1.75;
}
.top-point03-payment__ttl::before, .top-point03-payment__ttl::after {
  content: "";
  flex: 1;
  width: 100%;
  max-width: 7.6388888889em;
  height: 0.1388888889em;
  border-bottom: 0.1388888889em dotted #392525;
  box-sizing: content-box;
  transform: translateY(-1px);
}
.top-point03-payment__ttl::before {
  margin-right: 1.3333333333em;
}
.top-point03-payment__ttl::after {
  margin-left: 0.75em;
}
.top-point03-payment__list {
  display: flex;
  justify-content: center;
  gap: 30px clamp(62px, 6.4583333333vw, 124px);
  margin-top: 38px;
}
.top-point03-payment__item {
  aspect-ratio: 1/1;
  width: 100%;
  max-width: clamp(150px, 15.625vw, 300px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  font-weight: 500;
  font-size: clamp(15px, 1.5625vw, 30px);
  letter-spacing: -0.05em;
  line-height: 1.5;
}
.top-point03-payment__item:nth-child(1) {
  letter-spacing: 0.05em;
}
.top-point03-payment__item:nth-child(2) {
  padding-bottom: 9px;
}
.top-point03-payment__item:nth-child(3) {
  padding-top: 4px;
}
.top-point03-payment__item:nth-child(1) .top-point03-payment__item-ttl {
  padding-left: 3px;
}
.top-point03-payment__item:nth-child(2) .top-point03-payment__item-ttl {
  padding-right: 5px;
}
.top-point03-payment__item:nth-child(3) .top-point03-payment__item-ttl {
  padding-left: 0.2777777778em;
}
.top-point03-payment__item-icon {
  width: 100%;
  margin-top: 0.5333333333em;
}
.top-point03-payment__item-icon img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-point03-payment__item-icon--cash {
  max-width: 3.6666666667em;
}
.top-point03-payment__item-icon--card {
  max-width: 4.3em;
}
.top-point03-payment__item-icon--loan {
  max-width: 4.4em;
}
.top-point03-payment__item:nth-child(2) .top-point03-payment__item-icon {
  margin-top: 1em;
}

.top-point03-loan-about {
  max-width: 1540px;
  display: flex;
  align-items: flex-start;
  gap: 20px clamp(30px, 5.5729166667vw, 107px);
  margin: 49px auto 0;
}
.top-point03-loan-about__jaccs {
  width: 100%;
  max-width: 462px;
  padding: 19px 5px 28px 18px;
  border-top: 5px solid #009944;
  border-bottom: 5px solid #009944;
}
.top-point03-loan-about__jaccs-logo {
  aspect-ratio: 421/169;
  width: 100%;
  max-width: clamp(210.5px, 21.9270833333vw, 421px);
  margin: auto;
}
.top-point03-loan-about__jaccs-txt {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0.7777777778em auto 0;
  font: 500 clamp(18px, 1.875vw, 36px) "Shippori Mincho", serif;
  letter-spacing: 0.15em;
  line-height: 1.75;
  color: #333333;
}
.top-point03-loan-about__content {
  width: 100%;
  max-width: 880px;
  font-weight: 500;
  font-size: clamp(14px, 0.9375vw, 18px);
  letter-spacing: 0.15em;
  line-height: 1.75;
}
.top-point03-loan-about__ttl {
  font-size: 2.6666666667em;
  letter-spacing: 0.15em;
  line-height: 1.5;
}
.top-point03-loan-about__txt {
  margin-top: 1.1111111111em;
}
.top-point03-loan-about__detail:not(:first-child) {
  margin-top: 1.3333333333em;
}
.top-point03-loan-about__detail:last-child {
  margin-top: 1.7222222222em;
}

.top-point03-service {
  margin-top: 41px;
}
.top-point03-service__bnr {
  padding: 0.65em 0 0.6em;
  background: url(../img/top/point03-service-bg.jpg) center/cover no-repeat;
  font: 500 clamp(20px, 3.125vw, 60px) "Shippori Mincho", serif;
  letter-spacing: 0.15em;
  line-height: 1.7;
  color: #fff;
  text-align: center;
  position: relative;
}
.top-point03-service__bnr::before {
  content: "";
  border: solid 0.6566666667em rgba(0, 0, 0, 0);
  border-top: 1.1375em solid #f398a9;
  position: absolute;
  top: auto;
  bottom: 0.3166666667em;
  left: 49.92%;
  transform: translate(-50%, 100%);
}
.top-point03-service__bnr-txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.top-point03-service__content {
  margin-top: 77px;
}
.top-point03-service__ttl {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 0 7px 8px 15px;
  font-weight: 700;
  font-size: clamp(22px, 1.875vw, 36px);
  letter-spacing: 0.15em;
  color: #d94762;
  line-height: 1.5;
  text-align: center;
  position: relative;
}
.top-point03-service__ttl::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.25em;
  background: url(../img/common/wavy.png) -1.3055555556em 0/1.5833333333em 0.25em repeat-x;
  position: absolute;
  top: auto;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.top-point03-service__ttl span {
  font-size: 0.8333333333em;
  letter-spacing: 0.15em;
}
.top-point03-service__case {
  width: 100%;
  max-width: 1310.16px;
  margin: 38px auto 0;
}
.top-point03-service__about {
  margin-top: 2.7916666667em;
  font-weight: 500;
  font-size: clamp(14px, 1.25vw, 24px);
  letter-spacing: 0.15em;
  line-height: 1.75;
  color: #333333;
}
.top-point03-service__about-ttl {
  font: 500 2em "Shippori Mincho", serif;
  letter-spacing: 0.15em;
}
.top-point03-service__about-txt {
  margin-top: 1.0833333333em;
  padding: 0 0.25em;
}

.top-point03-case__head {
  width: 100%;
  margin-top: 30px;	
  min-height: 85px;
  display: grid;
  grid-template-columns: 85px 1fr;
  align-items: flex-start;
  background: #f6d6b9;
}
.top-point03-case__head::before {
  content: "例";
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: clamp(24px, 2.5vw, 48px);
  letter-spacing: 0.15em;
  line-height: 1;
  color: #fff;
  background: linear-gradient(-45deg, #f0ac6f 50%, #f3a158 50%);
}
.top-point03-case__ttl {
  margin: auto 0;
  padding: 0.0833333333em 1.8055555556em 0.2777777778em;
  font-weight: 500;
  font-size: clamp(18px, 1.875vw, 36px);
  letter-spacing: 0.15em;
  line-height: 1.5;
  color: #392525;
}
.top-point03-case__ttl span {
  font-size: 1.3333333333em;
  letter-spacing: 0.05em;
}
.top-point03-case__content {
  padding: 34px 25px 38px;
  background: #f4f4f4;
}

.top-point03-case-detail {
  width: 100%;
  max-width: clamp(544px, 56.6666666667vw, 1088px);
  display: grid;
  grid-template-columns: 11.5666666667em 1fr;
  gap: clamp(4.5px, 0.46875vw, 9px);
  margin-inline: auto;
  font-weight: 500;
  font-size: clamp(14px, 1.5625vw, 30px);
  letter-spacing: 0.15em;
  line-height: 1.5;
  color: #392525;
}
.top-point03-case-detail__txt span {
  /*display: inline-flex;*/
  margin: -0.1em 0 0 0.5666666667em;
  padding: 0 5px 4px clamp(5px, 0.7291666667vw, 14px);
  background: #fff;
  color: #d11e1e;
  border: clamp(1px, 0.15625vw, 3px) solid #392525;
}

.top-point03-case-detail__txt span.big {
        display: inline-block;
        border: none;
        background: none;
        font-weight: 600;
        padding: 0;
        margin: 0px 0px 0px 0px;
        border-bottom: solid 5px #d9d215;
}

.top-point03-case-detail__box {
  display: flex;
}

.top-point04 {
    padding-top: 100px;
  color: #333333;
}

.top-point04-desc {
  padding: 41px 0 62px;
  background: url(../img/top/point04-bg.png) 0 -21px/cover no-repeat;
  font-weight: 500;
  font-size: clamp(15px, 1.5625vw, 30px);
  line-height: 1.75;
  letter-spacing: 0.05em;
}
.top-point04-desc__inner {
  width: 100%;
  max-width: clamp(650px, 67.7083333333vw, 1300px);
  margin-inline: auto;
}
.top-point04-desc__head {
  margin-inline: auto;
  padding-right: clamp(153px, 15.9375vw, 306px);
  font: 500 clamp(20px, 3.75vw, 72px) "Shippori Mincho", serif;
  letter-spacing: 0.15em;
  line-height: 1.75;
  position: relative;
}
.top-point04-desc__head img {
  aspect-ratio: 290/282;
  width: 100%;
  max-width: clamp(145px, 15.1041666667vw, 290px);
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: -17px;
  right: 0;
  left: auto;
}
.top-point04-desc__content {
  display: grid;
  grid-template-columns: clamp(175px, 18.2291666667vw, 350px) 1fr;
  gap: 30px clamp(38px, 3.9583333333vw, 76px);
  margin: 40px auto 0;
}
.top-point04-desc__img {
  width: 60%;
  margin:0 auto;	
}
.top-point04-desc__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: clamp(10px, 1.0416666667vw, 20px);
}
.top-point04-desc__sub {
  padding-left: 0.3em;
  font-weight: 700;
  font-size: clamp(18px, 1.875vw, 36px);
  color: #583535;
  line-height: 1.75;
  letter-spacing: 0.05em;
  text-indent: -1em;
}
.top-point04-desc__detail {
  margin-top: 0.8em;
}
.top-point04-desc__detail-txt:not(:first-child) {
  margin-top: 1em;
}
.top-point04-desc__detail-txt .underline {
  position: relative;
  z-index: 0;
}
.top-point04-desc__detail-txt .underline::before {
  content: "";
  width: 100%;
  height: 0.5em;
  background: #fffca5;
  position: absolute;
  top: auto;
  bottom: -0.0666666667em;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
}

.top-point04-trouble {
  padding: 16px 0 clamp(50px, 7.2395833333vw, 139px);
  position: relative;
}
.top-point04-trouble::after {
  content: "";
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  aspect-ratio: 1316/87;
  width: 100%;
  max-width: clamp(658px, 68.5416666667vw, 1316px);
  display: block;
  background: #f7f7f7;
  position: absolute;
  top: auto;
  bottom: 0;
  left: 51%;
  transform: translateX(-50%);
}
.top-point04-trouble__ttl {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-bottom: 0.4em;
  font-weight: 700;
  font-size: clamp(18px, 2.0833333333vw, 40px);
  line-height: 1.5;
  letter-spacing: 0.05em;
  border-bottom: 0.2em dotted #ef8b8b;
}
.top-point04-trouble__list {
  width: 100%;
  max-width: 1293px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  flex-wrap: wrap;
  gap: clamp(25px, 2.6041666667vw, 50px) clamp(15px, 1.6145833333vw, 31px);
  margin: 29px auto 0;
}

.top-point04-trouble-item {
  width: 100%;
  max-width: 300px;
  background: #feb8c4;
  border-radius: 10px;
  padding: 10px 20px clamp(20px, 2.1354166667vw, 41px);
}
.top-point04-trouble-item--long {
  max-width: 100%;
  padding-top: clamp(10px, 0.9375vw, 18px);
  grid-column: 1/5;
}
.top-point04-trouble-item__row {
  width: 100%;
  max-width: 79%;
  display: grid;
  grid-template-columns: clamp(90px, 9.375vw, 180px) 1fr;
  -moz-column-gap: clamp(22px, 4.5833333333vw, 88px);
       column-gap: clamp(22px, 4.5833333333vw, 88px);
  margin-inline: auto;
}
.top-point04-trouble-item__img {
  width: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
}
.top-point04-trouble-item__ttl {
  font-weight: 700;
  font-size: clamp(18px, 1.875vw, 36px);
  letter-spacing: 0;
  line-height: 1.5;
  color: #fff;
}
.top-point04-trouble-item__icon {
  aspect-ratio: 1/1;
  width: 100%;
  max-width: clamp(90px, 9.375vw, 180px);
  margin-top: 15px;
  border-radius: clamp(5px, 0.5208333333vw, 10px);
  overflow: hidden;
}
.top-point04-trouble-item--long .top-point04-trouble-item__icon {
  margin-top: 6px;
}
.top-point04-trouble-item__txt {
  padding-top: clamp(13px, 1.3541666667vw, 26px);
}

.top-point04-trouble-desc {
  width: 100%;
  max-width: 711px;
  font-weight: 500;
  font-size: clamp(12px, 1.25vw, 24px);
  letter-spacing: 0.05em;
  line-height: 1.75;
  color: #333333;
}
.top-point04-trouble-desc__ttl {
  width: 100%;
  padding: 0.3611111111em 0.5555555556em 0.4166666667em 0.8888888889em;
  background: #ef8b8b;
  border-radius: 100px;
  font-weight: 700;
  font-size: clamp(18px, 1.875vw, 36px);
  letter-spacing: 0;
  line-height: 1.5;
  color: #fff;
  text-align: center;
}
.top-point04-trouble-desc__txt {
  width: 100%;
  max-width: 570px;
  margin: 1.0416666667em auto 0;
}

.top-point04-merit {
  padding-top: 41px;
  color: #333333;
}
.top-point04-merit__ttl {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 0 4.8em 0 3.3333333333em;
  font-weight: 600;
  font-size: clamp(16px, 1.5625vw, 30px);
  letter-spacing: 0.1em;
  line-height: 1.75;
  text-align: center;
  position: relative;
}
.top-point04-merit__ttl::before, .top-point04-merit__ttl::after {
  content: "";
  width: 0.1em;
  height: 4.6666666667em;
  display: inline-block;
  background: #333333;
  position: absolute;
  top: auto;
  bottom: -1px;
  left: 3.41%;
  transform: rotate(-20deg);
}
.top-point04-merit__ttl::after {
  left: auto;
  right: 3.41%;
  transform: rotate(20deg);
}
.top-point04-merit__ttl .em {
  vertical-align: sub;
  font-size: 1.6em;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.top-point04-merit__ttl .underline {
  position: relative;
  z-index: 0;
}
.top-point04-merit__ttl .underline::before {
  content: "";
  width: clamp(100%, 27.96875vw, 537px);
  height: 0.6em;
  display: inline-block;
  background-color: #f9c9d6;
  position: absolute;
  top: auto;
  bottom: -0.2666666667em;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.top-point04-merit__txt {
  width: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 2.5416666667em auto 0;
  font-weight: 500;
  font-size: clamp(16px, 1.25vw, 24px);
  letter-spacing: 0.15em;
  line-height: 1.75;
  text-align: center;
}
.top-point04-merit__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(auto, 545px));
  justify-content: center;
  gap: 30px clamp(18px, 1.9010416667vw, 36.5px);
  margin-top: clamp(32px, 3.3333333333vw, 64px);
}

.top-point04-merit-item {
  min-height: 10.0333333333em;
  padding: clamp(10px, 1.0416666667vw, 20px);
  background: #fdefe2;
  font-weight: 500;
  font-size: clamp(18px, 1.5625vw, 30px);
  letter-spacing: 0;
  line-height: 1.75;
  text-align: center;
  position: relative;
  z-index: 0;
}
.top-point04-merit-item::after {
  content: "";
  border-left: clamp(27.5px, 2.8645833333vw, 55px) solid rgba(0, 0, 0, 0);
  border-bottom: clamp(27.5px, 2.8645833333vw, 55px) solid #fff;
  position: absolute;
  top: auto;
  right: clamp(10px, 1.0416666667vw, 20px);
  bottom: clamp(10px, 0.8333333333vw, 16px);
  left: auto;
  z-index: -1;
}
.top-point04-merit-item__ttl {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 0 2px clamp(6px, 0.6770833333vw, 13px) clamp(2px, 1.0416666667vw, 20px);
  border-bottom: 2px solid #dd712a;
}
.top-point04-merit-item__ttl img {
  width: clamp(60px, 6.1458333333vw, 118px);
}
.top-point04-merit-item__txt {
  margin-top: 1.7333333333em;
}
.top-point04-merit-item__txt span {
  font-weight: 700;
  color: #dd712a;
}

.top-point05 {
  padding:200px 0 150px 0px;
}
.top-point05__intro {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.075em 0 1.15em;
  background: #877d7d;
  font-weight: 500;
  font-size: clamp(22px, 2.0833333333vw, 40px);
  letter-spacing: 0;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  position: relative;
}
.top-point05__intro::before {
  content: "";
  border-top: clamp(23.5px, 2.4479166667vw, 47px) solid #877d7d;
  border-right: clamp(13.5px, 1.40625vw, 27px) solid rgba(0, 0, 0, 0);
  border-left: clamp(13.5px, 1.40625vw, 27px) solid rgba(0, 0, 0, 0);
  position: absolute;
  top: auto;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
}
.top-point05__content {
  background: url(../img/top/point05-bg.png) top/contain;
}
.top-point05__wrap {
  width: 100%;
  max-width: 1386px;
  margin-inline: auto;
  padding: clamp(61px, 6.3541666667vw, 122px) 25px;
}
.top-point05__detail {
  width: 100%;
  max-width: calc(100% - 5px);
  margin: clamp(51px, 5.3125vw, 102px) 0 0 auto;
  padding: 1.3em 1.1666666667em 2.3333333333em;
  background: #fbf6f2;
  font-weight: 500;
  font-size: clamp(14px, 1.5625vw, 30px);
  letter-spacing: 0;
  line-height: 1.75;
  border: clamp(3px, 0.3125vw, 6px) solid #f29441;
}

.top-point05-item {
  display: flex;
  font: 500 36px "Shippori Mincho", serif;
  letter-spacing: 0;
  line-height: 1.2;
  color: #333333;
}
.top-point05-item:not(:first-child) {
  margin-top: 1.6111111111em;
}
.top-point05-item--02 {
  justify-content: flex-end;
}
.top-point05-item__content {
  display: inline-block;
  padding: 0.8888888889em 0.8611111111em 0.8888888889em 1.3888888889em;
  background: #fff;
  border: 2px solid #333333;
  position: relative;
}
.top-point05-item__content::before {
  content: "";
  width: 100%;
  display: inline-block;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  left: auto;
}
.top-point05-item--01 .top-point05-item__content::before {
  aspect-ratio: 239/162;
  max-width: 239px;
  background-image: url(../img/top/point05-img01.png);
  top: -29%;
  right: -18.6%;
}
.top-point05-item--02 .top-point05-item__content {
  width: 100%;
  max-width: 928px;
}
.top-point05-item--02 .top-point05-item__content::before {
  aspect-ratio: 65/122;
  max-width: 130px;
  background-image: url(../img/top/point05-img02.png);
  top: -30%;
  right: -7.7%;
}
.top-point05-item--02 .top-point05-item__txt {
  letter-spacing: 0.15em;
}
.top-point05-item__ttl {
  margin-top: 5px;
  font-size: 2em;
  letter-spacing: 0.06em;
  text-align: center;
}

.top-point05-bnr {
  display: grid;
  grid-template-columns: clamp(248px, 25.8333333333vw, 496px) 1fr clamp(251.5px, 26.1979166667vw, 503px);
  margin: clamp(67px, 6.9791666667vw, 134px) auto 0;
}
.top-point05-bnr__img {
  width: 100%;
}
.top-point05-bnr__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-point05-bnr__img--left {
  max-width: 498px;
}
.top-point05-bnr__img--right {
  max-width: 503px;
}
.top-point05-bnr__content {
  padding: 2.1666666667em 2.9166666667em;
  background: linear-gradient(to right, #f48fa1 30px, #f9e4e4 30px, #f9e4e4 calc(100% - 30px), #f48fa1 calc(100% - 30px));
  font: 500 clamp(15px, 1.25vw, 24px) "Shippori Mincho", serif;
  line-height: 1.75;
  letter-spacing: 0.05em;
  text-align: center;
  position: relative;
  z-index: 0;
}
.top-point05-bnr__content::before {
  content: "";
  aspect-ratio: 1/1;
  display: block;
  width: 100%;
  max-width: clamp(71.5px, 7.4479166667vw, 143px);
  background: url(../img/top/point05-bnr-logo.png) center/cover no-repeat;
  position: absolute;
  top: -16%;
  left: 50%;
  transform: translateX(-50%);
}
.top-point05-bnr__content::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/top/point05-bnr-slash.png) center/cover no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.top-point05-bnr__ttl {
  padding: 0 0 0.3611111111em 0.1805555556em;
  font-size: clamp(20px, 3.2vw, 60px);
  line-height: 1.5277777778;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #3c2f21;
}
.top-point05-bnr__txt {
  margin-top: 2.0833333333em;
}

.top-faq {
  padding-top: 162px;
  color: #4d4640;
}
.top-faq__content {
  margin-top: -104px;
  padding: 103px 0 165px;
  background-color: #fff;
  background-image: radial-gradient(circle, #efefef 5px, transparent 5px);
  background-position: 0 -12px;
  background-size: 40px 40px;
}
.top-faq__list {
  width: 100%;
  max-width: 1411px;
  margin: 69px auto 0;
}

.top-faq-item {
  padding-left: 6.1666666667em;
  font-weight: 500;
  font-size: clamp(14px, 0.9375vw, 18px);
  letter-spacing: 0.027em;
  line-height: 2;
  position: relative;
}
.top-faq-item:not(:first-child) {
  margin-top: 2.7777777778em;
}
.top-faq-item__head {
  cursor: pointer;
  min-height: 75px;
  display: flex;
  align-items: center;
  padding: 0.5em 2.5em 0.6666666667em 0.4583333333em;
  font-weight: 500;
  font-size: 1em;
  line-height: 1.25;
  letter-spacing: 0.18em;
  border-bottom: 1px solid #4d4640;
  position: relative;
}
.top-faq-item__head::before {
  cursor: pointer;
  content: "Q";
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eda43e;
  font-size: 1.25em;
  letter-spacing: 0;
  line-height: 1;
  color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: -3em;
}
.top-faq-item__btn {
  width: 100%;
  height: 100%;
  max-width: 1.25em;
  background: unset;
  position: absolute;
  top: 40%;
  right: 0.875em;
  left: auto;
  transform: translateY(-50%);
}
.top-faq-item__btn::before, .top-faq-item__btn::after {
  content: "";
  width: 100%;
  height: 2px;
  display: block;
  background: #4d4640;
  position: absolute;
  top: 63%;
  left: 0;
  transform: translateY(-50%);
}
.top-faq-item__btn::after {
  transform: rotate(90deg) translateY(-50%);
}
.top-faq-item.active .top-faq-item__btn::after {
  transform: translateY(-50%);
}
.top-faq-item__content {
  display: none;
  padding: 1.3333333333em 0 0.8333333333em 0.6111111111em;
}

.top-greeting-content {
  padding: 130px 0 104px;
}
.top-greeting-content__txt {
  width: 100%;
  max-width: 1920px;
  display: grid;
  grid-template-columns: 1fr clamp(463px, 48.2291666667vw, 926px);
  gap: 30px clamp(15px, 1.8229166667vw, 35px);
  align-items: flex-start;
  margin: 62px auto 0;
  font-size: clamp(14px, 0.9375vw, 18px);
  letter-spacing: 0.1em;
}

.top-greeting-detail {
  width: 100%;
  max-width: 700px;
  padding: 30px 20px 30px 90px;
  font-weight: 500;
  line-height: 2.2222222222;
  /*margin-inline-start: auto;*/
}
.top-greeting-detail__ttl {
  font-size: 2em;
  letter-spacing: 0.1em;
  line-height: 1.5277777778;
}

.top-greeting-doctor {
  padding: 0 0 clamp(20px, 2.1354166667vw, 41px) 0;
  position: relative;
}
.top-greeting-doctor__img {
  width: 100%;
  max-width: 870px;
  border-radius: 0 clamp(126px, 7.65625vw, 147px) clamp(126px, 7.65625vw, 147px) 0;
  overflow: hidden;
}
.top-greeting-doctor__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-greeting-doctor__txt {
  padding: 4.3333333333em 2.7222222222em 3em 3.0555555556em;
  background: #eb9f34;
  color: #fff;
  text-align: center;
  border-radius: 140px 140px 0 0;
  position: absolute;
  top: auto;
  right: -30px;
  bottom: 0;
}
.top-greeting-doctor__position {
  font-weight: 500;
  font-size: clamp(14px, 1.2489583333vw, 23.98px);
  letter-spacing: 0.1em;
  line-height: 1;
}
.top-greeting-doctor__name {
  margin-top: 7px;
}
.top-greeting-doctor__name-jp {
  padding-bottom: 0.2251688767em;
  font-weight: 700;
  font-size: clamp(18px, 2.0817708333vw, 39.97px);
  letter-spacing: 0.1em;
  line-height: 1.5;
  position: relative;
}
.top-greeting-doctor__name-jp::before {
  content: "";
  width: 1.376032024em;
  height: 2px;
  display: block;
  background: #fff;
  position: absolute;
  top: auto;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.top-greeting-doctor__name-en {
  margin-top: 1.5634771732em;
  font-weight: 700;
  font-size: clamp(12px, 0.8328125vw, 15.99px);
  letter-spacing: 0.2em;
  line-height: 1.5;
  color: #fcfcdb;
}

.top-greeting-history {
  padding: 101px 0 140px;
  background: #fff0c1;
  position: relative;
}
.top-greeting-history::before {
  content: "";
  display: block;
  aspect-ratio: 492/542;
  width: 100%;
  max-width: clamp(246px, 25.625vw, 492px);
  background: url(../img/top/greeting-flower02.png) center/cover no-repeat;
  position: absolute;
  top: clamp(-382px, -19.8958333333vw, -191px);
  left: 0;
}
.top-greeting-history__list {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(12px, 1.1458333333vw, 22px) clamp(15px, 1.5625vw, 30px);
  align-items: flex-start;
}
.top-greeting-history__item {
  height: 100%;
  padding: 2em 2.8333333333em 1.7222222222em;
  font-weight: 500;
  font-size: clamp(14px, 0.9375vw, 18px);
  letter-spacing: 0.1em;
  line-height: 2;
  background: #fff;
  color: #333333;
  background-image: linear-gradient(to right, #eb9f34, #eb9f34 8px, transparent 8px, transparent 14px), linear-gradient(to bottom, #eb9f34, #eb9f34 8px, transparent 8px, transparent 14px), linear-gradient(to left, #eb9f34, #eb9f34 8px, transparent 8px, transparent 14px), linear-gradient(to top, #eb9f34, #eb9f34 8px, transparent 8px, transparent 14px);
  background-size: 14px 2px, 2px 14px, 14px 2px, 2px 14px;
  background-position: left top, right top, right bottom, left bottom;
  background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
}

.top-greeting-history-content__ttl {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.5em;
       column-gap: 0.5em;
  font-weight: 700;
  font-size: 1.6666666667em;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.top-greeting-history-content__ttl::before, .top-greeting-history-content__ttl::after {
  content: "";
  flex: 1;
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 0.5666666667em;
  display: block;
  background: #fa8f6e;
  border-radius: 50%;
}
.top-greeting-history-content__txt {
  margin-top: 6px;
}

.top-greeting-picture {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
}
.top-greeting-picture__item {
  aspect-ratio: 767/400;
  width: 100%;
  max-width: 1920px;
}
.top-greeting-picture__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-greeting-picture__thumbs {
  margin: 22px 19px 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(20px, 2.0833333333vw, 40px);
}
.top-greeting-picture__thumb {
  aspect-ratio: 3/2;
  width: 100%;
  max-width: 600px;
  transition: 0.3s;
}
.top-greeting-picture__thumb:not(.checked) {
  cursor: pointer;
  opacity: 0.5;
}
.top-greeting-picture__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 751px){
  .top-point01-desc__img {
    position: absolute;
    top: 50.5%;
    left: 0;
    transform: translateY(-50%);
  }
  .top-point02-parking__img {
    position: absolute;
    top: 46.6%;
    left: 0;
    transform: translateY(-50%);
  }
  .top-point02-flow-item::after {
    content: "";
    display: block;
    border-left: 5px dotted #f48fa1;
    width: 0;
    height: 123%;
    position: absolute;
    top: 100%;
    left: clamp(56.75px, 5.9114583333vw, 113.5px);
    transform: translateY(-50%);
    z-index: 1;
  }
  .top-point02-flow-item:last-child::after {
    content: none;
  }
  .top-point03-extraction__ttl {
    padding-bottom: 4px;
  }
  .top-point03-extraction__txt {
    flex: 1;
    max-width: 1112px;
    min-height: 114px;
    display: grid;
  }
  .top-point03-extraction__price {
    border-left-width: 2px;
  }
  .top-point03-loan__head {
    -moz-column-gap: clamp(60px, 6.25vw, 120px);
         column-gap: clamp(60px, 6.25vw, 120px);
  }
  .top-point03-loan__head::after {
    content: "";
    flex: 1;
    width: 100%;
    height: 1px;
    display: block;
    background: #244363;
    margin-bottom: 14px;
  }
  .top-point03-loan__ttl {
    margin-left: 0.5555555556em;
  }
  .top-point03-loan-about__txt {
    padding: 0 0.5555555556em;
  }
  .top-point03-service__about {
    padding: 0 0.4583333333em;
  }
  .top-point04-desc__content {
    padding: 0 17px;
  }

  .top-point05-item__ttl {
    padding: 0 6px;
  }
  .top-point05-item--02 .top-point05-item__content {
    margin-right: 4.9%;
  }
  .top-greeting-content {
    position: relative;
    z-index: 0;
  }
  .top-greeting-content::before {
    content: "";
    aspect-ratio: 240/785;
    width: 100%;
    max-width: clamp(120px, 12.5vw, 240px);
    display: block;
    background: url(../img/top/greeting-flower01.png) center/cover no-repeat;
    position: absolute;
    top: auto;
    bottom: clamp(188.5px, 19.6354166667vw, 377px);
    left: 0;
    z-index: -1;
  }
}
@media screen and (min-width: 960px){
  .top-mv__item--01 .top-mv-item {
    padding-top: 18px;
    padding-right: 5px;
  }
  .top-mv__item--01 .top-mv-item__txt {
    padding-left: 11px;
    padding-top: 2px;
  }
  .top-mv__item--02 .top-mv-item {
    padding-top: 18px;
    padding-left: 4px;
  }
  .top-mv__item--02 .top-mv-item__txt {
    padding-top: 3px;
  }
  .top-mv__item--03 {
    margin-left: 7px;
  }
  .top-mv__item--03 .top-mv-item {
    padding-top: 10px;
    padding-right: 4px;
  }
  .top-mv__item--03 .top-mv-item__txt {
    padding-left: 8px;
  }
  .top-intro-item:nth-child(1) {
    padding-top: 32px;
  }
  .top-intro-item:nth-child(2) {
    padding-top: 18px;
  }
  .top-intro-item:nth-child(3) {
    padding-top: 14px;
    padding-bottom: 20px;
  }
  .top-intro-item:nth-child(4) {
    padding-top: 27px;
  }
  .top-intro-item:nth-child(5) {
    padding-top: 7px;
  }
  .top-intro-item:nth-child(6) {
    padding-top: 12px;
  }
  .top-intro-item:nth-child(3) .top-intro-item__txt {
    margin-top: 47px;
  }
  .top-intro-item:nth-child(4) .top-intro-item__txt {
    margin-top: 19px;
    padding-right: 5px;
  }
  .top-intro-item:nth-child(5) .top-intro-item__txt {
    margin-top: 16px;
  }
  .top-intro-item:nth-child(6) .top-intro-item__txt {
    margin-top: 9px;
  }
  .top-intro-item:nth-child(3) .top-intro-item__icon {
    transform: translateX(8%);
  }
  .top-intro-item:nth-child(4) .top-intro-item__icon {
    transform: translateX(-17%);
  }
  .top-intro-bnr__content {
    padding: 38px 0 0 12px;
  }
  .top-point01 .c-point-ttl__jp {
    padding-left: 112px;
  }
  .top-point01__list {
    transform: translateX(-4px);
  }
  .top-point01-item-detail__ttl:last-of-type {
    margin-top: 42px;
  }
  .top-point01-case__ttl {
    margin-right: 4px;
  }
  .top-point02-flow__list {
    transform: translateX(3px);
  }
  .top-point02-flow__notes {
    padding: 0 25px;
  }
  .top-point02-flow-item__ttl {
    padding-left: 9px;
  }
  .top-point02-flow-item__detail {
    padding-left: 17px;
  }
  .top-point02-flow-item__txt {
    padding-top: 1em;
  }
  .top-point03-worries {
    transform: translateX(2px);
  }
  .top-point03-desc__ttl-sub {
    padding-right: 6px;
  }
  .top-point03-message {
    transform: translateX(-11px);
  }
  .top-point03-extraction {
    transform: translateX(22px);
  }
  .top-point03-loan__intro {
    transform: translateX(2px);
  }
  .top-point03-payment {
    transform: translateX(-2px);
  }
  .top-point03-loan-about__jaccs {
    margin-top: 14px;
  }
  .top-point03-loan-about__jaccs-logo {
    transform: translateX(-2px);
  }
  .top-point03-service__bnr-txt {
    padding-left: 13px;
  }
  .top-point03-service__ttl {
    transform: translateX(-2px);
  }
  .top-point04 .c-point-ttl {
    min-height: 374px;
  }
  .top-point04-desc__head {
    transform: translateX(5px);
  }
  .top-point04-desc__img {
    margin-top: 3px;
	width:100%;
  }
  .top-point04-merit__ttl {
    transform: translateX(-4px);
  }
  .top-point04-merit__txt {
    transform: translateX(-10px);
  }
  .top-point04-merit__list {
    transform: translateX(-9px);
  }
  .top-point04-merit-item__ttl {
    transform: translateX(-3px);
  }
  .top-point04-merit-item__txt {
    padding-right: 0.5666666667em;
  }
  .top-point05 .c-point-ttl {
    min-height: 374px;
  }
  .top-point05-bnr__txt {
    padding-left: 2.2083333333em;
  }
  .top-faq .c-ttl {
    transform: translateX(11px);
  }
  .top-faq .c-ttl__jp {
    margin: 40px 10px 0 0;
    letter-spacing: 0.1em;
  }
  .top-faq__list {
    transform: translateX(-11px);
  }
  .top-greeting-content .c-ttl {
    transform: translateX(4px);
  }
  .top-greeting-content .c-ttl__jp {
    margin-top: 35px;
    transform: translateX(3px);
  }
  .top-greeting-detail__txt {
    margin-top: 2.1666666667em;
  }
  .top-greeting-doctor__name-en {
    margin-right: 0.6253908693em;
  }
  .top-greeting-history__item {
    min-height: 220.34px;
  }
  .top-greeting-history__item--01 .top-greeting-history-content__ttl {
    padding-left: 4px;
  }
  .top-greeting-history__item--02 {
    padding: 36px 43px 31px;
  }
  .top-greeting-history__item--03 {
    padding: 27px 47px 43px;
  }
  .top-greeting-history__item--03 .top-greeting-history-content__ttl {
    -moz-column-gap: 12px;
         column-gap: 12px;
    padding-left: 8px;
  }
  .top-greeting-history__item--03 .top-greeting-history-content__txt {
    margin-top: 10px;
  }
  .top-greeting-history__item--04 {
    padding: 34px 43px 27px;
    height: auto;
  }
  .top-greeting-history__item--04 .top-greeting-history-content__ttl {
    -moz-column-gap: 13px;
         column-gap: 13px;
  }
  .top-greeting-history__item--04 .top-greeting-history-content__txt {
    margin-top: 8px;
  }
}
@media screen and (max-width: 1920px){
  .top-point01-item-detail {
    padding-right: 4.0625vw;
    padding-left: 3.5416666667vw;
  }
  .top-point01-item-detail__ttl-txt {
    font-size: 1.5625vw;
  }
  .top-point01-item-detail__ttl-txt::before {
    border-top-width: 0.6770833333vw;
    border-left-width: 1.1979166667vw;
    border-bottom-width: 0.6770833333vw;
    top: 0.5729166667vw;
    left: 0.625vw;
  }
  .top-point01-item-detail__ttl-txt span {
    font-weight: 700;
  }
 /* .top-point01-item-detail__txt {
    font-size: 0.9375vw;
  }*/
  .top-point01-merit__content {
    margin-right: 2.2916666667vw;
    padding: 0 5.2083333333vw 0 7.03125vw;
  }
  .top-point01-merit__content::before, .top-point01-merit__content::after {
    max-width: 3.5416666667vw;
  }
  .top-point01-case-column {
    -moz-column-gap: 4.21875vw;
         column-gap: 4.21875vw;
  }
  .top-point01-case-column__ttl {
    font-size: 1.875vw;
  }
  .top-point01-case-column__img {
    margin-top: 0.6770833333vw;
  }
  .top-point02-intro {
    min-height: 37.34375vw;
    padding: 6.09375vw 0 5vw;
  }
  .top-point02-intro__list {
    font-size: 2.5vw;
  }
  .top-point02-intro__img {
    height: 35.9895833333vw;
  }
  .top-point02-parking__img {
    height: 25.0520833333vw;
  }
  /*.top-point02-parking__detail {
    font-size: 1.2vw;
  }*/
  .top-point02-parking + .top-point02-itero {
    margin-top: -16.71875vw;
  }
  .top-point02-itero {
    padding-top: 5vw;
  }
  .top-point02-itero__content {
    -moz-column-gap: 8vw;
         column-gap: 8vw;
  }
  .top-point02-itero__catch-txt {
    font-size: 3vw;
  }
  .top-point02-itero__free {
    font-size: 3.75vw;
  }
  .top-point02-itero__sub {
    font-size: 3vw;
  }
  .top-point02-itero__ttl {
    font-size: 7.8125vw;
  }
  .top-point02-itero__txt {
    font-size: max(1vw, 16px);
  }
  .top-point02-itero__imgs {
    -moz-column-gap: 3.125vw;
         column-gap: 3.125vw;
    margin-top: 5.0520833333vw;
  }
  .top-point02-itero__img {
    border-radius: 1.5625vw;
  }
  .top-point02-sidebar__check {
    -moz-column-gap: 4.1666666667vw;
         column-gap: 4.1666666667vw;
  }
  .top-point02-sidebar__img {
    width: 17.8125vw;
    height: 15.8854166667vw;
  }
  .top-point02-sidebar__img img {
    max-width: 12.1354166667vw;
  }
  .top-point02-sidebar__list {
    margin-left: 0.4166666667vw;
    padding: 4.1666666667vw 0 2.0833333333vw;
  }
  .top-point02-sidebar__item {
    font-size: 1.5625vw;
  }
  .top-point02-sidebar__txt {
    font-size: 2.5vw;
  }
}
@media screen and (max-width: 1920px) and (min-width: 751px){
  .top-mv__content {
    row-gap: 1.25vw;
  }
  .top-mv__ttl {
    font-size: 4.6875vw;
  }
  .top-mv__ttl span {
    font-size: 2vw;
  }	
  .top-mv-item {
    font-size: 2.2854166667vw;
  }
  .top-mv-item__ttl {
    font-size: 1.8286458333vw;
  }
  .top-mv-item__ttl--large {
    font-size: 2.34375vw;
  }
  .top-mv-item__ttl span {
    font-size: 1.6760416667vw;
  }
  .top-point01-item__head {
    max-width: 36.4583333333vw;
    padding-top: 3.125vw;
    border-radius: 1.0416666667vw;
    transform: translateX(0.3125vw);
  }
  .top-point01-item__icon {
    font-size: 3.125vw;
  }
  .top-point01-item__ttl-sub {
    font-size: 1.25vw;
  }
  .top-point01-item__ttl-txt {
    font-size: 3.3vw;
  }
}
@media screen and (max-width: 1920px) and (min-width: 960px){
  .top-intro-item {
	font-size: 1.2vw;
  }
  .top-intro-bnr__ttl {
    font-size: 2.5vw;
  }
  .top-point01-desc__img {
    max-width: 33.8541666667vw;
  }
  .top-point01-desc__box::before {
    border-bottom-width: 4.4791666667vw;
    border-left-width: 4.4791666667vw;
    top: 1.5625vw;
    left: 1.6666666667vw;  
  }
  .top-point01-desc__box::after {
    border-top-width: 4.4791666667vw;
    border-right-width: 4.4791666667vw;
    bottom: 1.25vw;
    right: 1.7708333333vw;
  }
}
@media screen and (max-width: 1670px){
  .top-point01-case__list .slick-arrow {
    left: 0;
  }
  .top-point01-case__list .slick-next {
    left: auto;
    right: 0;
  }
.top-point01-desc__box{
    font-size: 18px;		
  }	
  .top-point02-parking__detail {
    font-size: 18px;
  }	
}
@media screen and (max-width: 1400px){
  .top-point05-item {
    font-size: clamp(14px, 2.5714285714vw, 36px);
  }
  .top-point05-item--01 .top-point05-item__content::before {
    max-width: clamp(119.5px, 17.0714285714vw, 239px);
  }
  .top-point05-item--02 .top-point05-item__content {
    max-width: clamp(464px, 66.2857142857vw, 928px);
  }
  .top-point05-item--02 .top-point05-item__content::before {
    max-width: clamp(65px, 9.2857142857vw, 130px);
  }
}
@media screen and (max-width: 1345px){
  .top-point01-worries__list {
    gap: 4.0625vw 4.84375vw;
  }
}
@media screen and (max-width: 1200px){
  .top-point01-item-detail {
    padding-right: 20px;
    padding-left: 20px;
  }
  .top-point01-item-detail__ttl-txt {
    font-size: 18px;
  }
  .top-point01-item-detail__ttl-txt::before {
    border-top-width: 8px;
    border-left-width: 13px;
    border-bottom-width: 8px;
    top: 6px;
    left: 6px;
  }
  .top-point01-item-detail__txt {
    font-size: 14px;
  }
  .top-point01-merit {
    margin-top: 0;
  }
  .top-point01-merit__content {
    margin-right: 0;
  }
  .top-point01-merit__txt {
    font-size: 30px;
  }
}
@media screen and (max-width: 1020px){
  .top-point01__catch {
    font-size: 40px;
  }
}
@media screen and (max-width: 959px){
  .top-mv__address {
    top: 85px;
  }
  .top-mv__address-txt--map {
    font-size: 14px;
  }
  .top-mv__address-txt--parking {
    font-size: 12px;
  }
  .top-mv__inner {
    height: 500px;
  }
  .top-mv-logo {
    max-width: 122px;
  }
  .top-mv-logo__txt {
    font-size: 10px;
    padding: 2px 1em;
  }
  .top-intro__head {
    margin-bottom: -29px;
  }
  .top-intro__ttl {
    font-size: 30px;
  }
  .top-intro__txt {
    font-size: 26px;
  }
  .top-intro__content {
    padding: 167px 25px 107px;
  }
  .top-intro__list {
    gap: 30px 25px;
  }
  .top-intro-item {
    min-height: 200px;
    padding: 10px 0.5em;
    font-size: 14px;
    border-radius: 10px;
  }
  .top-intro-item__txt {
    margin-top: 10px;
  }
  .top-intro-item__icon {
    max-width: 80px;
    max-height: 50px;
  }
  .top-intro-item__icon img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .top-intro-bnr {
    height: 240px;
    padding: 20px;
  }
  .top-intro-bnr__content::before {
    max-width: 100px;
  }
  .top-intro-bnr__ttl {
    font-size: 28px;
    border-bottom-width: 2px;
  }
  .top-point01 {
    padding-top: 60px;
  }
  .top-point01__content {
    background-position: 50% -200px;
  }
  .top-point01__list {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .top-point01-desc {
    padding: 60px 0;
  }
  .top-point01-desc__img {
    max-width: 325px;
  }
  .top-point01-desc__box {
    font-size: 16px;
  }
  .top-point01-desc__box::before {
    border-bottom-width: 43px;
    border-left-width: 43px;
    top: 15px;
    left: 15px;
  }
  .top-point01-desc__box::after {
    border-top-width: 43px;
    border-right-width: 43px;
    bottom: 15px;
    right: 15px;
  }
  .top-point01-merit__txt {
    font-size: 24px;
  }
  .top-point01-worries {
    padding: 70px 0 60px;
  }
  .top-point01-worries__ttl {
    padding: 0 25px 0 30px;
    font-size: 24px;
    transform: translateX(-4.5px);
  }
  .top-point01-worries__ttl::before, .top-point01-worries__ttl::after {
    width: 1.5px;
    height: 31px;
    bottom: 16px;
    left: 11px;
  }
  .top-point01-worries__ttl::after {
    left: auto;
    right: 11px;
  }
  .top-point01-worries__ttl span {
    padding-bottom: 14.5px;
    border-bottom-width: 3px;
  }
  .top-point01-worries__list {
    gap: 10px;
    margin-top: 25px;
    padding: 25px 20px 35px;
    border-radius: 15px;
  }
  .top-point01-worries__item-ttl {
    padding-bottom: 12px;
    font-size: 14px;
  }
  .top-point01-worries__item-ttl::before {
    border-top-width: 10px;
    border-right-width: 6px;
    border-left-width: 6px;
  }
  .top-point01-worries__item-img {
    width: auto;
    margin-top: 8px;
    text-align: center;
  }
  .top-point01-worries__item-img img {
    width: 80%;
    max-height: 100px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .top-point01-case {
    padding: 40px 0 60px;
  }
  .top-point01-case__ttl {
    font-size: 36px;
  }
  .top-point01-case__ttl::before, .top-point01-case__ttl::after {
    max-width: 120px;
    border-width: 3px;
    transform: translateY(3px);
  }
  .top-point01-case__ttl::before {
    margin-right: 20px;
  }
  .top-point01-case__ttl::after {
    margin-left: 17px;
  }
  .top-point01-case__list {
    margin-top: 30px;
    transform: unset;
  }
  .top-point01-case__list .slick-arrow {
    width: 30px;
  }
  .top-point01-case__item {
    margin: 78px 10px 0;
    padding: 50px 35px 40px;
    border-radius: 30px 30px 0 0;
  }
  .top-point01-case__item-num {
    font-size: 24px;
  }
  .top-point01-case__item-ttl {
    font-size: 18px;
  }
  .top-point01-case__item-txt {
    font-size: 15px;
  }
  .top-point01-case-column {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .top-point01-case-column__ttl {
    font-size: 18px;
  }
  .top-point01-case-column__img {
    margin-top: 6px;
  }
  .top-point02 {
    padding-bottom: 60px;
	padding-top: 30px;  
  }
  .top-point02-itero__content {
    -moz-column-gap: 45px;
         column-gap: 45px;
  }
  .top-point02-itero__catch-txt {
    font-size: 32px;
  }
  .top-point02-itero__free {
    font-size: 28px;
	width: 150px;
    max-width: 6em;
    right: -3em; 
  }
  .top-point02-itero__sub {
    font-size: 28px;
  }
  .top-point02-itero__ttl {
    font-size: 90px;
  }
  .top-point02-itero__txt {
    margin-top: 1em;
    font-size: 16px;
  }
  .top-point02-sidebar {
    margin-top: 0;
  }
  .top-point02-sidebar__check {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .top-point02-sidebar__img {
    width: 171px;
    height: 153px;
  }
  .top-point02-sidebar__img img {
    max-width: 117px;
  }
  .top-point02-sidebar__list {
    margin-left: 0.4166666667vw;
    padding: 60px 0 40px;
  }
  .top-point02-sidebar__item {
    font-size: 16px;
  }
  .top-point02-sidebar__txt {
    font-size: 18px;
  }
  .top-point03-orthodontics-item--wire .top-point03-orthodontics-item__body {
    padding: 40px 20px 20px;
  }
  .top-point03-orthodontics-item--mouthpiece .top-point03-orthodontics-item__body {
    padding: 40px 20px 20px;
  }
  .top-point03-extraction__detail {
    padding-right: 30px;
  }
  .top-point03-extraction__price {
    padding-left: 30px;
  }
  .top-point03-loan {
    padding: 80px 0 0;
  }
  .top-point03-loan-about {
    gap: 20px 30px;
  }
  .top-point03-loan-about__jaccs {
    max-width: 40%;
    padding: 18px 10px;
    border-top-width: 3px;
    border-bottom-width: 3px;
  }
  .top-point04 {
    padding-bottom: 60px;
  }
  .top-point05__list {
    max-width: 90%;
    margin-inline: auto;
  }
  .top-point05-item--01 .top-point05-item__content::before {
    top: -40%;
  }
  .top-point05-item--02 .top-point05-item__content::before {
    right: -40px;
  }
  .top-point05-bnr {
    grid-template-columns: 0.5fr 1fr 0.5fr;
  }
  .top-point05-bnr__content {
    background: linear-gradient(to right, #f48fa1 15px, #f9e4e4 15px, #f9e4e4 calc(100% - 15px), #f48fa1 calc(100% - 15px));
  }
  .top-faq {
    padding-top: 40px;
  }
  .top-faq__content {
    margin-top: -52px;
    padding: 51.5px 0 82.5px;
    background-image: radial-gradient(circle, #efefef 2.5px, transparent 2.5px);
    background-position: 0 -6px;
    background-size: 20px 20px;
  }
  .top-faq__list {
    margin-top: 35px;
  }
  .top-greeting-content {
    padding: 40px 0 60px;
  }
  .top-greeting-content__txt {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 30px;
  }
  .top-greeting-history {
    padding: 50px 0 70px;
  }
}
@media screen and (max-width: 750px){
  .top-mv__wrap {
    padding-bottom: 20px;
    background-position: left 0;
  }
  .top-mv__bg {
    object-position: left center;
  }	
  .top-mv__address {
    top: 65px;
    right: 6px;
  }
  .top-mv__address-txt--map {
    font-size: 10px;
  }
  .top-mv__address-txt--parking {
    font-size: 10px;
  }
  .top-mv__inner {
    height: 450px;
  }
  .top-mv__logo {
    top: 10px;
    left: 10px;
  }
  .top-mv__content {
    width: 100%;
    row-gap: 20px;
    padding-top: 50px;
  }
  .top-mv__ttl {
    font-size: 25px;
  }
  .top-mv__ttl span {
    font-size: 16px;
  }	
  .top-mv__list {
    -moz-column-gap: 10px;
         column-gap: 10px;
    margin-top: 20px;
    padding-left: 0;
  }
  .top-mv__item {
    max-width: 110px;
  }
  .top-mv + .c-bnr {
    margin-top: 40px;
  }
  .top-mv-logo {
    max-width: 100px;
  }
  .top-mv-logo__txt {
    font-size: 8px;
    padding: 2px 1em;
  }
  .top-mv-item {
    font-size: 18px;
  }
  .top-mv-item__ttl {
    font-size: 15px;
  }
  .top-mv-item__ttl--large {
    font-size: 16px;
  }
  .top-mv-item__ttl span {
    font-size: 14px;
  }
  .top-intro {
    padding-top: 40px;
  }
  .top-intro__head::before {
    border-right-width: 367.5px;
    border-top-width: 75px;
    border-left-width: 367.5px;
    bottom: -40px;
  }
  .top-intro__ttl {
    font-size: 20px;
  }
  .top-intro__txt {
    font-size: 16px;
  }
  .top-intro__content {
    padding: 100px 10px 80px;
  }
  .top-intro__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .top-intro-item {
    min-height: auto;
    font-size: 15px;
  }
  .top-intro-bnr {
    height: 180px;
    padding: 10px;
  }
  .top-intro-bnr__content {
    padding: 0 10px;
    border-width: 1px;
  }
  .top-intro-bnr__content::before {
	max-width: 70px;
  }
  .top-intro-bnr__ttl {
    font-size: 20px;
    text-align: center;
    line-height: 1.8;
    border-bottom-width: 1px;
  }
  .top-point01__content {
    background-position: 50% -250px;
    padding: 30px 0 50px;
  }
  .top-point01__catch {
    font-size: 21px;
  }
  .top-point01__list {
    grid-template-columns: 100%;
  }
  .top-point01__intro {
    margin: 20px 0 0;
    font-size: 15px;
  }
  .top-point01-item__head {
    max-width: 90%;
    padding-top: 30px;
    border-radius: 10px;
    transform: unset;
  }
  .top-point01-item__icon {
    font-size: 30px;
  }
  .top-point01-item__ttl-sub {
    font-size: 14px;
  }
  .top-point01-item__ttl-txt {
    font-size: 30px;
  }
  .top-point01-desc__img {
    max-width: 100%;
  }
  .top-point01-desc__box {
    width: 100%;
    margin: 30px 0 0 0;
    padding: 35px 30px;
  }
  .top-point01-desc__box::before {
    border-bottom-width: 30px;
    border-left-width: 30px;
  }
  .top-point01-desc__box::after {
    border-top-width: 30px;
    border-right-width: 30px;
  }
  .top-point01-merit {
    margin: 0 -20px;
  }
  .top-point01-merit__content {
    width: 100%;
    padding: 0 25px;
  }
  .top-point01-merit__content::before, .top-point01-merit__content::after {
    max-width: 20px;
  }
  .top-point01-merit__txt {
    font-size: 16px;
  }
  .top-point01-merit__txt:nth-child(1) {
    margin-left: 0;
  }
  .top-point01-merit__txt:nth-child(3) {
    margin: 0;
  }
  .top-point01-merit__txt-large span {
    border-width: 3px;
  }
  .top-point01-worries {
    padding-top: 40px;
  }
  .top-point01-worries__ttl {
    font-size: 21px;
  }
  .top-point01-worries__list {
    max-width: 560px;
    grid-template-columns: repeat(auto-fill, minmax(auto, 125px));
    grid-template-columns: repeat(3, 1fr);
  }
  .top-point01-worries__item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    gap: 0;
  }
  .top-point01-worries__item-ttl {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    line-height: 1.5;
  }
  .top-point01-worries__item-img {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .top-point01-case__ttl {
    font-size: 28px;
  }
  .top-point01-case__list {
    margin: 30px -20px 0;
  }
  .top-point01-case__list .slick-arrow {
    width: 25px;
  }
  .top-point01-case__item {
    margin-top: 58px;
    padding: 40px 30px;
    border-radius: 20px 20px 0 0;
  }
  .top-point01-case__item-num {
    font-size: 18px;
  }
  .top-point01-case__item-ttl {
    font-size: 16px;
  }
  .top-point01-case__item-txt {
    font-size: 14px;
  }
  .top-point02-intro {
    min-height: auto;
    margin-top: 40px;
    padding: 45% 0 60px;
  }
  .top-point02-intro__img {
    aspect-ratio: 2/1;
    max-width: 90%;
    height: auto;
    top: -40px;
    bottom: auto;
  }
  .top-point02-intro__list {
    font-size: 20px;
  }
  .top-point02-intro__item:nth-child(2) {
    margin: 5px 0 0 0.25em;
  }
  .top-point02-intro__item:nth-child(3) {
    margin: 5px 0 0 0.5em;
  }
  .top-point02-intro__item:nth-child(4) {
    margin: 5px 0 0 0.75em;
  }
  .top-point02-intro__item:nth-child(5) {
    margin: 5px 0 0 1em;
  }
  .top-point02-parking {
    padding: 26px 0;
  }
  .top-point02-parking__img {
    max-width: 100%;
    height: 240px;
  }
  .top-point02-parking__detail {
    width: 100%;
    padding: 35px 25px;
    margin: 30px auto 0;
    font-size: 16px;
  }
  .top-point02-parking__detail::after {
    content: "";
    border-bottom-width: 107px;
    border-left-width: 107px;
    right: 20px;
    bottom: 20px;
  }
  .top-point02-parking + .top-point02-itero {
    margin-top: -150px;
  }
  .top-point02-itero {
    padding-top: 30px;
  }
  .top-point02-itero__content {
    flex-direction: column;
  }
  .top-point02-itero__catch {
    margin-inline: auto;
  }
  .top-point02-itero__catch-txt {
    font-size: 28px;
  }
  .top-point02-itero__free {
    font-size: 40px;
  }
  .top-point02-itero__sub {
    font-size: 20px;
  }
  .top-point02-itero__ttl {
    font-size: 60px;
  }
  .top-point02-itero__txt {
    font-size: 16px;
  }
  .top-point02-itero__imgs {
    -moz-column-gap: 10px;
         column-gap: 10px;
    margin-top: 30px;
    transform: translateX(0);
  }
  .top-point02-itero__img {
    border-radius: 10px;
  }
  .top-point02-sidebar__check {
    display: flex;
    flex-direction: column-reverse;
  }
  .top-point02-sidebar__img {
    width: 171px;
    height: 153px;
    margin-inline: auto;
    justify-content: center;
    transform: translateX(-50%);
  }
  .top-point02-sidebar__img img {
    max-width: 117px;
  }
  .top-point02-sidebar__list {
    margin-left: 0;
    padding: 40px 0 20px;
  }
  .top-point02-sidebar__item {
    font-size: 16px;
  }
  .top-point02-sidebar__txt {
    padding: 1em 0;
    font-size: 16px;
    text-align: center;
  }
  .top-point02-sidebar__txt::before {
    border-right-width: 20px;
    border-left-width: 20px;
    border-bottom-width: 30px;
    top: -30px;
    left: 60%;
    transform: translateX(-50%) skewX(34deg);
  }
  .top-point02-sidebar__detail {
    max-width: 100%;
    padding: 0;
  }
  .top-point02-flow {
    padding-top: 40px;
  }
  .top-point02-flow-item {
    padding-top: 20px;
  }
  .top-point02-flow-item::before {
    max-width: 70px;
    margin-inline: auto;
    position: unset;
    transform: unset;
	}
	.top-point02-flow-item.blue::before {
		max-width: 70px;
		margin-inline: auto;
		position: unset;
		transform: unset;
	}	
  .top-point02-flow-item__ttl {
    font-size: 18px;
    text-align: center;
  }
  .top-point02-flow-item__content {
    padding: 20px 20px 40px;
  }
  .top-point02-flow-item__detail {
    flex-direction: column;
    row-gap: 10px;
  }
  .top-point02-flow-item__bnrs {
    row-gap: 10px;
    flex-direction: column;
    align-items: center;
  }
  .top-point02-flow-item__bnr--tel span {
    margin: 2px 0 3px;
  }
  .top-point02-flow-item__img {
    max-width: clamp(375px, 100%, 265px);
    margin-inline: auto;
  }
  .top-point03 {
    padding-bottom: 60px;
    padding-top: 30px;  	  
  }
  .top-point03__content {
    padding: 40px 0 130px;
  }
  .top-point03-worries__img {
    max-width: 120px;
    left: -15px;
    bottom: -12px;
  }
  .top-point03-worries__content {
    margin-left: 0;
    padding: 30px 20px;
    font-size: 16px;
  }
  .top-point03-worries__ttl {
    text-align: center;
  }
  .top-point03-worries__list {
    margin: 20px 0 0 100px;
  }
  .top-point03-desc {
    padding-top: 50px;
  }
  .top-point03-desc__ttl {
    font-size: 30px;
    padding: 0 1em 12px;
	letter-spacing: 2.5px;  
  }
  .top-point03-desc__ttl::before, .top-point03-desc__ttl::after {
    width: 2px;
  }
  .top-point03-desc__ttl-sub {
    font-size: 16px;
  }
  .top-point03-desc__txt {
    padding: 1em;
    font-size: 16px;
  }
  .top-point03-message {
    flex-direction: column;
    row-gap: 30px;
    margin-top: 40px;
  }
  .top-point03-message__list {
    max-width: 100%;
  }
  .top-point03-message__item {
    width: 100%;
    max-width: clamp(360px, 37.5vw, 720px);
    min-height: clamp(100px, 10.4166666667vw, 200px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    padding: 1em 0.6666666667em;
    border-radius: clamp(10px, 1.0416666667vw, 20px);
    position: relative;
  }
  .top-point03-message__item:not(:first-child) {
    margin-top: 30px;
  }
  .top-point03-message__item::before {
    content: "";
    width: 0;
    display: inline-block;
    border-style: solid;
    border-width: 20px 20px 0 20px;
    border-color: rgba(0, 0, 0, 0);
    top: auto;
    left: 50%;
    right: 0;
    bottom: 0;
    transform: translate(-50%, 100%);
  }
  .top-point03-message__item--01 {
    background: #6dc6c0;
  }
  .top-point03-message__item--01::before {
    border-top-color: #6dc6c0;
  }
  .top-point03-message__item--02 {
    padding-top: 2.1333333333em;
    background: #6cbddb;
  }
  .top-point03-message__item--02::before {
    border-top-color: #6cbddb;
  }
  .top-point03-message__img {
    text-align: center;
  }
  .top-point03-orthodontics-item__head {
    max-width: calc(100% - 26px);
  }
  .top-point03-orthodontics-item--wire .top-point03-orthodontics-item__head::before {
    aspect-ratio: 541/387;
    width: 100%;
    max-width: 100px;
    height: auto;
    left: -35px;
    bottom: -40px;
  }
  .top-point03-orthodontics-item--mouthpiece .top-point03-orthodontics-item__head::before {
    aspect-ratio: 278/157;
    width: 100%;
    max-width: 100px;
    height: auto;
    left: -35px;
    bottom: -40px;
  }
  .top-point03-orthodontics-item__body {
    border-width: 3px;
    border-radius: 13px;
  }
  .top-point03-orthodontics-item__price {
    flex-direction: column;
  }
  .top-point03-orthodontics-item__plus {
    margin: 0.5em auto;
    transform: unset;
  }
  .top-point03-price {
    max-width: 100%;
  }
  .top-point03-extraction {
    display: block;
    padding: 20px;
  }
  .top-point03-extraction__ttl {
    text-align: center;
  }
  .top-point03-extraction__txt {
    display: block;
  }
  .top-point03-extraction__detail {
    margin-top: 20px;
    padding: 0 0 20px;
  }
  .top-point03-extraction__price {
    padding: 20px 0 0;
    border-top-width: 1px;
  }
  .top-point03-loan__ttl {
    margin-inline: auto;
  }
  .top-point03-loan__intro {
    max-width: 100%;
    font-size: 15px;
  }
  .top-point03-payment {
    width: auto;
    margin: 42px 0px 0;
  }
  .top-point03-payment__ttl::before {
    margin-right: 12px;
  }
  .top-point03-payment__ttl::after {
    margin-left: 12px;
  }
  .top-point03-payment__list {
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
  }
  .top-point03-loan-about {
    flex-direction: column;
  }
  .top-point03-loan-about__jaccs {
    max-width: 100%;
  }
  .top-point03-loan-about__jaccs-txt {
    text-align: center;
  }
  .top-point03-loan-about__ttl {
    font-size: 24px;
  }
  .top-point03-service__content {
    margin-top: 40px;
  }
  .top-point03-service__case {
    margin-top: 20px;
  }
  .top-point03-service__about-ttl {
    font-size: 20px;
  }
  .top-point03-case__head {
    min-height: 40px;
    grid-template-columns: 40px 1fr;
  }
  .top-point03-case__head::before {
    font-size: 20px;
  }
  .top-point03-case__ttl {
    padding: 3px 10px;
    font-size: 12px;
  }
  .top-point03-case__ttl span {
    font-size: 18px;
  }
  .top-point03-case__content {
    padding: 10px 0px 10px 20px;
  }
  .top-point03-case-detail {
    grid-template-columns: repeat(2, 1fr);
  }
  .top-point03-case-detail__txt span {
    font-size: 15px;
	line-height: 1.2;
    letter-spacing: 0; 
  }
	.top-point03-case-detail__txt span.big {
		font-size: 20px;
	}
	.top-point03-payment__item {
	  max-width: clamp(130px, 15.625vw, 300px);
	}	
	.top-point03-payment__item-icon--cash {
		max-width: 2.8em;
	}
	.top-point03-payment__item:nth-child(2) .top-point03-payment__item-icon {
	   margin-top: 10px;	
		max-width: 3.2em;
	}
	.top-point03-payment__item-icon--loan {
		max-width: 3.7em;
	}
.top-point04 {
    padding-top: 0px;
    }
  .top-point04-desc {
    padding: 40px 0 30px;
  }
  .top-point04-desc__head {
    padding-right: 0;
  }
  .top-point04-desc__head img {
    max-width: 100px;
    top: -60px;
    right: -10px;
  }
  .top-point04-desc__ttl {
    text-align: center;
  }
  .top-point04-desc__content {
    display: grid;
    grid-template-columns: 100%;
    margin-top: 20px;
  }
  .top-point04-desc__sub {
    padding-left: 0;
  }
  .top-point04-trouble {
    padding-bottom: 90px;
  }
  .top-point04-trouble::after {
    aspect-ratio: 6/1;
    max-width: 325px;
  }
  .top-point04-trouble__ttl {
    text-align: center;
  }
  .top-point04-trouble__list {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(25px, 2.6041666667vw, 50px) clamp(15px, 1.6145833333vw, 31px);
  }
  .top-point04-trouble-item {
    max-width: 100%;
  }
  .top-point04-trouble-item--long {
    grid-column: 1/3;
  }
  .top-point04-trouble-item__row {
    max-width: 100%;
  }
  .top-point04-merit__ttl {
    padding: 0 30px;
  }
  .top-point04-merit__ttl::before {
    left: 1.41%;
  }
  .top-point04-merit__ttl::after {
    right: 1.41%;
  }
  .top-point04-merit__ttl .em {
    font-size: 20px;
  }
  .top-point04-merit__list {
    grid-template-columns: 100%;
  }
  .top-point05 {
    padding:100px 0px 60px 0px;
  }
  .top-point05__list {
    max-width: 100%;
  }
  .top-point05-item {
    font-size: 15px;
  }
  .top-point05-item--02 {
    margin-left: 0;
  }
  .top-point05-item__content {
    width: 100%;
    display: block;
    padding: 30px 10px;
  }
  .top-point05-item--01 .top-point05-item__content {
    max-width: 325px;
  }
  .top-point05-item--01 .top-point05-item__content::before {
    max-width: 100px;
    top: -29%;
    right: -20px;
  }
  .top-point05-item--02 .top-point05-item__content {
    max-width: 464px;
    margin-inline-start: auto;
  }
  .top-point05-item--02 .top-point05-item__content::before {
    max-width: 55px;
    right: -20px;
  }
  .top-point05-item__txt {
    padding: 0 10px;
  }
  .top-point05-bnr {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "content content" "left right";
    margin-top: 37px;
  }
  .top-point05-bnr__img--left {
    grid-area: left;
  }
  .top-point05-bnr__img--right {
    grid-area: right;
  }
  .top-point05-bnr__content {
    grid-area: content;
    padding-top: 45px;
  }
  .top-point05-bnr__content::before {
    top: -35px;
  }
  .top-faq {
    margin-top: 60px;
  }
  .top-faq-item {
    padding-left: 50px;
  }
  .top-faq-item:not(:first-child) {
    margin-top: 25px;
  }
  .top-faq-item__head {
    padding: 0 1.3em 0.6666666667em 0.4583333333em;
  }
  .top-faq-item__head::before {
    max-width: 50px;
    top: 4px;
    left: -50px;
  }
  .top-faq-item__btn {
    right: 0;
  }
  .top-faq-item__btn::before, .top-faq-item__btn::after {
    top: 50%;
  }
  .top-greeting-content__txt {
    display: flex;
    flex-direction: column;
  }
.top-greeting-doctor {
    padding: 0 30px clamp(20px, 2.1354166667vw, 41px) 0;
}	
  .top-greeting-detail {
    padding: 0 25px;
    position: relative;
    z-index: 0;
  }
  .top-greeting-detail::before {
    content: "";
    aspect-ratio: 240/785;
    width: 100%;
    max-width: 90px;
    display: block;
    background: url(../img/top/greeting-flower01.png) center/cover no-repeat;
    position: absolute;
    top: -44px;
    left: 0;
    z-index: -1;
  }
  .top-greeting-detail__ttl {
    font-size: 22px;
  }
  .top-greeting-detail__txt {
    margin-top: 20px;
  }
  .top-greeting-doctor__txt {
    padding: 40px 25px 25px;
  }
.top-greeting-doctor__txt {
    padding: 30px 25px 20px;	
    right: 5px;
	}	
.top-greeting-doctor__name-en {
    margin-top: 10px;
    font-size: 11px;
	letter-spacing:1px;
	}	
  .top-greeting-history::before {
    max-width: 200px;
    top: -120px;
  }
  .top-greeting-history__list {
    grid-template-columns: 100%;
  }
  .top-greeting-history__item {
    padding: 20px 15px;
  }
  .top-greeting-history-content__ttl {
    justify-content: center;
    font-size: 22px;
  }
  .top-greeting-picture__thumbs {
    margin: 10px 0 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
}

.red{
    color: #f36060!important;
}

