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

:root {
  --aza-pink: #f58aa1;
  --aza-pink-deep: #e85d7e;
  --aza-pink-soft: #fff1f5;
  --aza-green: #78bf82;
  --aza-green-soft: #e4f9ec;
  --aza-blue: #6fa7d8;
  --aza-blue-soft: #eef8ff;
  --aza-yellow: #f3c84f;
  --aza-yellow-soft: #fff8df;
  --aza-orange-soft: #fff2e6;
  --aza-ink: #432f2d;
  --aza-muted: #796765;
  --aza-line: rgba(222, 166, 176, .45);
  --aza-white: rgba(255, 255, 255, .92);
  --aza-shadow: 0 22px 50px rgba(196, 133, 145, .18);
  --aza-radius-lg: 12px;
  --aza-radius-md: 10px;
  --aza-radius-sm: 8px;
}

body {
  margin: 0;
	min-width: inherit;
}

#aza-lp,
#aza-lp * {
  box-sizing: border-box;
}
.aza-lp :where(ul,ol) {
  list-style: disc !important;
}
.aza-lp .aza-flow-list {
  list-style: none !important;
}
#aza-lp {
   padding-bottom: 90px;
   font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
   color: var(--aza-ink);
   line-height: 1.9;
   letter-spacing: .03em;
   overflow: clip;
   font-weight: 500;
   background: radial-gradient(circle at 8% 12%, rgb(255 197 213 / 82%), transparent 22rem), radial-gradient(circle at 88% 8%, rgba(255, 255, 255, 0.9), #0000 24rem), linear-gradient(180deg, #ffedd3 0%, #ffcfe3 40%, #dfffef 100%);
   margin: 0;
}

#aza-lp img {
	display: block;
	max-width: 100%;
	height: auto;
	min-height: auto;
	border-radius: var(--aza-radius-sm);
}

#aza-lp a {
  color: inherit;
  text-decoration: none;
}

.aza-page-nav {
  /*  position: sticky;
  top: 0;
  z-index: 20;
*/
  padding: 12px clamp(16px, 4vw, 40px);
  background: rgb(255 197 197 / 84%);
  /* backdrop-filter: blur(14px); */
  /* border-bottom: 1px solid rgba(245, 138, 161, .18); */
  }

.aza-page-nav__inner {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: flex;
  gap: 10px;
  align-items: center;
  /*  overflow-x: auto;
*/
  scrollbar-width: none;
  flex-wrap: wrap;
}

.aza-page-nav__inner::-webkit-scrollbar { display: none; }

.aza-page-nav__label {
  flex: 0 0 auto;
  margin: 0 6px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--aza-pink-deep);
}

.aza-page-nav a {
  position: relative;
  flex: 0 0 auto;
  padding: 9px 35px 9px 15px;
  /* border: 1px solid rgba(245, 138, 161, .24); */
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  /* box-shadow: 0 10px 22px rgba(234, 111, 137, .09); */
  transition: transform .28s ease, background .28s ease, color .28s ease, box-shadow .28s ease;
}

.aza-page-nav a::before {
  content: "";
  position: absolute;
  right: 16px;
  width: 6px;
  height: 6px;
  /* border-radius: 50%; */
  /* background: var(--aza-ink); */
  /* transform: translateX(-50%) scale(0); */
  /* transition: transform .28s ease; */
  top: 16px;
  border-bottom: 1px solid;
  border-right: 1px solid;
  border-color: var(--aza-ink);
  transform: rotate(45deg);
}

.aza-page-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--aza-pink);
  transform: translateX(-50%) scale(0);
  transition: transform .28s ease;
}

.aza-page-nav a:hover,
.aza-page-nav a.is-active {
  transform: translateY(-2px);
  background: var(--aza-pink);
  color: #fff;
  /* box-shadow: 0 14px 25px rgba(232, 93, 126, .22); */
}

.aza-page-nav a.is-active::after { transform: translateX(-50%) scale(1); }

.aza-hero {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(48px, 8vw, 88px) 0 42px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: stretch;
}

.aza-hero::before,
.aza-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  opacity: .8;
}

.aza-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  padding: 8px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: var(--aza-muted);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 28px rgba(245, 138, 161, .1);
}

.aza-kicker span {
  color: var(--aza-pink-deep);
  font-weight: 600;
}

.aza-hero h1 {
  margin: 0;
  font-size: clamp(34px, 7.4vw, 76px);
  line-height: 1.18;
  letter-spacing: .05em;
  font-weight: 600;
	position: inherit;
  left:inherit;
  width: inherit;
  height: inherit;
  overflow: inherit;
}
.aza-hero h1 img {
	padding: 0 6%;
}
.aza-hero h1 strong {
  display: inline-block;
  margin-top: 8px;
  color: var(--aza-pink-deep);
  font-size: 1.15em;
  text-shadow: 5px 7px 0 rgba(255, 230, 237, .9);
}

.aza-hero__lead {
  max-width: 670px;
  margin: 24px 0 0;
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 600;
}

.aza-hero__questions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
}

.aza-hero__questions span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: 999px;
  background: #fff;
  color: var(--aza-muted);
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(120, 191, 130, .13);
}

.aza-hero__questions span::before {
  content: "?";
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--aza-yellow-soft);
  color: var(--aza-pink-deep);
  font-weight: 600;
}

.aza-hero__actions,
.aza-contact__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
  justify-content: center;
  align-items: center;
}

.aza-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease;
  font-size: 1.1em;
}

.aza-button:hover {
  transform: translateY(-3px);
}

.aza-button--primary {
  color: #fff !important;
  background: linear-gradient(135deg, #f47c98, #f1aa75);
  /* box-shadow: 0 16px 32px rgba(232, 93, 126, .24); */
}

.aza-button--soft {
  background: #ffffff;
  color: var(--aza-pink-deep) !important;
  border: 1px solid rgba(245, 138, 161, .32);
  /* box-shadow: 0 14px 28px rgba(245, 138, 161, .14); */
}

.aza-button--line {
  color: #fff !important;
  background: linear-gradient(135deg, #32c466, #19a65b);
  /* box-shadow: 0 16px 32px rgba(25, 166, 91, .22); */
}

.aza-hero__visual {
	position: relative;
	z-index: 1;
	min-height: 390px;
}

.aza-photo-card {
  margin: 0;
  overflow: hidden;
  /* border-radius: 42px; */
  /* background: #fff; */
  /* box-shadow: var(--aza-shadow); */
  /* border: 12px solid rgba(255, 255, 255, .74); */
}

/*.aza-photo-card--hero {
   transform: rotate(1.5deg); 
}*/

.aza-photo-card--hero img {
  width: 100%;
  min-height: 390px;
  object-fit: cover;
  object-position: left;
		border-radius: var(--aza-radius-lg) !important;
}

.aza-hero__note-img {
	position: absolute;
	width: min(420px, 50%);
	left: -8%;
	bottom: 0;
	animation: aza-float 4.8s ease-in-out infinite;
}

@keyframes aza-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

.aza-hero__stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 6px;
}

.aza-stat {
  min-height: 122px;
  padding: 22px 24px;
  border-radius: var(--aza-radius-md);
  background: rgba(255, 255, 255, .76);
  /* border: 1px solid rgba(245, 138, 161, .28); */
  /* box-shadow: 0 16px 34px rgba(245, 138, 161, .11); */
}

.aza-stat p { margin: 0; color: var(--aza-pink-deep); font-weight: 600; line-height: 1.55; }
.aza-stat strong {display: block;margin-top: 4px;color: var(--aza-pink-deep);font-size: clamp(50px, 6vw, 61px);line-height: 1.1;}
.aza-stat strong span { margin-left: 3px; font-size: .45em; }
.aza-stat small { display: block; margin-top: 4px; color: var(--aza-muted); font-size: 12px; line-height: 1.3em;}
.aza-stat--green { border-color: rgba(120, 191, 130, .34); }
.aza-stat--green p, .aza-stat--green strong {color: #40ab69;}
.aza-stat--yellow { border-color: rgba(243, 200, 79, .5); }
.aza-stat--yellow p, .aza-stat--yellow strong {color: #ffad13;}

.aza-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(44px, 2vw, 576px) 0;
  position: relative;
}

.aza-section__head {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}

.aza-section__head--left {
  margin-left: 0;
  text-align: left;
}

.aza-section__label {
  display: inline-flex;
  margin: 0 auto 8px !important;
  padding: 4px 12px !important;
  border-radius: 999px;
  background: var(--aza-pink-soft);
  color: var(--aza-pink-deep);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
}

.aza-section h2 {
	margin: 0;
	font-size: clamp(24px, 4.8vw, 34px);
	line-height: 1.35;
	font-weight: 600;
	color: inherit;
	background: none;
	position: inherit;
	font-family: inherit;
	padding: 0;
}

.aza-section__head p:last-child,
.aza-section__head--left p:last-child {
  margin: 12px 0 0;
  color: var(--aza-muted);
  font-weight: 600;
}

.aza-feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.aza-card,
.aza-feature,
.aza-disease,
.aza-family-card,
.aza-policy,
.aza-case-grid,
.aza-laser-panel,
.aza-doctor__profile,
.aza-doctor__message,
.aza-faq-list,
.aza-contact__intro,
.aza-contact__info {
  /* border: 1px solid rgba(245, 138, 161, .24); */
  border-radius: var(--aza-radius-lg);
  background: var(--aza-white);
  /* box-shadow: var(--aza-shadow); */
}

.aza-card,
.aza-feature {
  padding: 24px;
}

.aza-feature {
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}
.aza-feature-grid{
  counter-reset: number 0;
  position: relative;
}
.aza-feature-grid .aza-feature::before {
	counter-increment: number 1;
	content: counter(number);
	position: absolute;
	top: -5px;
	left: -5px;
	z-index: 3;
	color: #fff;
	background: var(--aza-yellow);
	padding: 0.6em;
	border-radius: 999px;
	width: 40px;
	height: 40px;
	text-align: center;
	font-size: 1.2em;
	line-height: 1em;
}
.aza-icon {
	/* width: 92px; */
	/* height: 92px; */
	margin: 0 auto 14px;
	display: grid;
	place-items: center;
	/* border-radius: 28px; */
	background: #fff;
	overflow: hidden;
}

.aza-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: var(--aza-radius-sm);
}

.aza-feature h3, .aza-card h3, .aza-laser-list h3, .aza-doctor h3, .aza-contact h3 {
	margin: 0 0 10px;
	color: var(--aza-pink-deep);
	font-size: 20px;
	line-height: 1.45;
	font-weight: 600;
	border: none;
	font-family: inherit;
	position: inherit;
	padding: 0;
}

.aza-feature p,
.aza-card p,
.aza-faq-item p {
  margin: 0;
  color: var(--aza-muted);
  font-weight: 600;
}

.aza-disease-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: 24px;
  align-items: stretch;
}

.aza-disease-list {
  display: grid;
  gap: 16px;
}

.aza-disease {
  padding: 22px 26px;
}

.aza-disease h3 {
	margin: 0 0 8px;
	font-size: 21px;
	font-weight: 600;
	border: none;
}

.aza-disease--red h3 { color: var(--aza-pink-deep); }
.aza-disease--blue h3 { color: var(--aza-blue); }
.aza-disease--yellow h3 { color: #d4941d; }

.aza-disease ul,
.aza-laser-list ul,
.aza-doctor__profile ul {
  margin: 0;
  padding-left: 1.25em;
}
.aza-disease ul {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 10px;
  align-items: start;
  justify-items: stretch;
  padding: 0;
}
.aza-disease li {
  list-style:none;
  font-size: 0.9em;
  line-height: 1.5em;
	transition: transform .28s ease, box-shadow .28s ease, background .28s ease;
}
.aza-disease li:hover {
	transform: translateY(-3px);
	transition: transform .28s ease, box-shadow .28s ease, background .28s ease;
}
.aza-disease li,
.aza-disease li, .aza-laser-list li, .aza-doctor__profile li {
	font-weight: 500;
	color: var(--aza-ink);
	padding: 0 !important;
}
.aza-disease li a.thumb img {
	object-fit: contain;
	min-height: 70px !important;
	background: #000;
	height: 106px !important;
	width: 100%;
}
.aza-disease li a.thumb {
  display: block;
  margin-bottom: 7px;
}
.aza-disease ul li a:not(.thumb)::before {
	content: "";
	position: relative;
	left: 0;
	top: 2px;
	width: 24px;
	height: 17px;
	margin: 0 5px 0 0;
	border-radius: 999px;
	line-height: 8px;
	background-image: url(aza-assets/icon_arrow_btn_menu.png);
	display: inline-block;
	background-repeat: no-repeat;
	background-size: cover;
}

.aza-family-card {
  padding: 28px;
  display: grid;
  align-content: center;
  text-align: center;
  background: var(--aza-pink-soft);
}

.aza-family-card img {
  width: min(220px, 100%);
  margin: 0 auto 16px;
  border-radius: 26px;
}

.aza-family-card p {
  margin: 0;
  color: var(--aza-pink-deep);
  font-weight: 600;
	padding: 22px 0;
}

.aza-policy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 30px;
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  background: linear-gradient(135deg, rgba(255, 255, 255, .9), rgba(239, 250, 243, .75));
	margin: clamp(44px, 2vw, 576px) auto;
}

.aza-policy p + p { margin-top: 14px; }
.aza-policy__message {
  padding: 16px 18px !important;
  border-radius: 20px;
  background: #fff;
  /* border: 1px dashed rgba(245, 138, 161, .44); */
}
.aza-contact__note strong {
	color: var(--aza-pink-deep);
	border-bottom: 1px solid;
}
.aza-policy__message strong {
	color: var(--aza-pink-deep);
}
.aza-policy__image img {
  width: 220px;
  margin: 0 auto;
  border-radius: 26px;
/*  box-shadow: 0 16px 34px rgba(245, 138, 161, .12);
*/}

.aza-laser-panel {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  padding: clamp(24px, 5vw, 44px);
  background: linear-gradient(135deg, rgba(255, 255, 255, .95), rgba(238, 248, 255, .7));
}

.aza-laser-machine img {
  width: min(330px, 100%);
  margin: 0 auto;
  border-radius: 28px;
  /* background: #fff; */
}

.aza-laser-list p {
  margin: 12px 0 0;
  padding: 14px 16px;
  border-radius: 18px;
  background: var(--aza-yellow-soft);
  color: var(--aza-ink);
  font-weight: 600;
}

.aza-flow-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 22px;
  /* border: 1px solid rgba(111, 167, 216, .25); */
  border-radius: var(--aza-radius-lg);
  background: rgba(255, 255, 255, .86);
  /* box-shadow: var(--aza-shadow); */
}

#contents_left .blog_content ol.aza-flow-list > li {
  position: relative!important;
  min-height: 176px!important;
  padding: 18px 10px 14px !important;
  text-align: center!important;
	transform: none;
/*  border-radius: 24px;4
  background: linear-gradient(180deg, #fff, #fff8fb);
*/}

.aza-flow-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -9px;
  top: 50%;
  width: 15px;
  height: 15px;
  border-top: 5px solid #f5bd70;
  border-right: 5px solid #f5bd70;
  transform: translateY(-50%) rotate(45deg);
  border-radius: 3px;
}

.aza-flow-list span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--aza-pink);
  color: #fff;
  font-weight: 600
}

.aza-flow-list li:nth-child(2) span { background: #40ab62; }
.aza-flow-list li:nth-child(3) span { background: #f0bb3f; }
.aza-flow-list li:nth-child(4) span { background: #498ec1; }
.aza-flow-list li:nth-child(5) span { background: #9a79c8; }
.aza-flow-list li:nth-child(6) span { background: #ee8b3a; }

.aza-flow-list img {
	width: 86%;
	height: 74px;
	object-fit: contain;
	margin: 12px auto 8px;
	border-radius: var(--aza-radius-sm);
}

.aza-flow-list strong {
  display: block;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
}

.aza-care-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 22px;
  margin-top: 24px;
}

.aza-card--soft {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fff, #fff7df);
}

.aza-card__mascot {
  width: 160px;
  margin: 18px auto 0;
}

.aza-photo-placeholders {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.aza-photo-placeholders figure {
  margin: 0;
}

.aza-photo-placeholders img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
/*  border-radius: 18px;
  border: 4px solid #fff;
  box-shadow: 0 10px 22px rgba(84, 64, 64, .12);*/
}

.aza-photo-placeholders figcaption {
  margin-top: 5px;
  color: var(--aza-muted);
  text-align: center;
  font-size: 12px;
  font-weight: 600;
}

/*.aza-doctor {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}*/
.aza-doctor-box {
	display: grid;
	grid-template-columns: minmax(280px, .8fr) minmax(0, 1fr);
	gap: 30px;
	align-items: stretch;
	/* padding: clamp(24px, 5vw, 44px); */
	/* background: linear-gradient(135deg, rgba(255, 255, 255, .95), rgba(238, 248, 255, .7)); */
}
.aza-doctor-box ul li {
	list-style-type: disc !important;
}
.aza-doctor__profile,
.aza-doctor__message {
  padding: clamp(26px, 4vw, 42px);
}

.aza-doctor__portrait {
	width: 160px;
	/* height: 160px; */
	margin: 0 0 18px;
	/* border-radius: 50%; */
	overflow: hidden;
	/* border: 8px solid #fff; */
	/* box-shadow: 0 18px 34px rgba(245, 138, 161, .18); */
	/* background: #fff; */
}

.aza-doctor__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}

.aza-doctor__profile h3 {
  /* color: var(--aza-ink); */
  font-size: 26px;
}

.aza-doctor__profile ul {margin-bottom: 14px;}
.aza-doctor__message p + p { margin-top: 14px; }

.aza-faq { padding-bottom: 82px; }
.aza-faq-list {
  position: relative;
  z-index: 1;
  padding: 22px;
  display: grid;
  gap: 12px;
}
.icon-question {
  background-color: var(--aza-yellow);
  padding: 6px 10px;
  border-radius: 100px;
  margin-right: 6px;
  line-height: 1em;
  width: 32px;
  height: 31px;
  display: inline-block;
  color: black;
}
.aza-faq-item {
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--aza-green-soft);
}

.aza-faq-item button {
  width: 100%;
  border: 0;
  padding: 18px 47px 18px 10px;
  background: transparent;
  color: var(--aza-ink);
  text-align: left;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  position: relative;
}

.aza-faq-item button::after {
  content: "+";
  position: absolute;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
  /* display: grid; */
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--aza-green-soft);
  color: #33a764;
  font-size: 24px;
  transition: transform .25s ease, background .25s ease;
  line-height: 25px;
  text-align: center;
}

.aza-faq-item.is-open button::after {
  content: "-";
  background: var(--aza-pink-soft);
  color: var(--aza-pink-deep);
}

.aza-faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .32s ease;
}

.aza-faq-item.is-open .aza-faq-item__answer { max-height: 180px; }
.aza-faq-item__answer p { padding: 0 20px 18px; }

.aza-faq__mascot {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 82px;
  border-radius: 22px;
}

.aza-contact {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 24px;
  padding-bottom: 90px;
 }

.aza-contact__intro,
.aza-contact__info {
  padding: clamp(17px, 4vw, 42px);
}

.aza-contact__intro {
  background: linear-gradient(135deg, #fff, #fff1f5);
}

.aza-contact__image {
  width: 180px;
  margin: 18px auto 0;
  border-radius: 24px;
}

.aza-contact__info dl {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.aza-contact__info dl div {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: var(--aza-green-soft);
}
.aza-contact__info dl div:nth-child(2) {
  background-color: var(--aza-blue-soft);
}
.aza-contact__info dl div:nth-child(3) {
  background-color: var(--aza-pink-soft);
}
/*.aza-contact__info dt { font-weight: 600; *//* color: #2fa461; }*/
.aza-contact__info dd {margin: 0;/* font-weight: 800; */}
.aza-contact__note {padding: 16px;border-radius: 18px;/* background: var(--aza-yellow-soft); */font-size: 0.8em;}
.aza-contact__balloons {
	position: absolute;
	right: 10px;
	bottom: -64px;
	width: 80px;
}

[data-aza-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .72s ease, transform .72s ease;
}

[data-aza-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .aza-section__head--left {
    margin: 0 auto 32px;
    text-align: center;
  }
	.aza-doctor__portrait {
		margin: 0 auto 20px;
	}
	.aza-doctor__profile h3 {
		text-align: center;
	}
  .aza-disease-wrap,
  .aza-policy,
  .aza-laser-panel,
  .aza-care-grid,
  .aza-doctor,
  .aza-doctor-box,
  .aza-contact {
    grid-template-columns: 1fr;
  }

  .aza-hero__stats,
  .aza-feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .aza-flow-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .aza-flow-list li:nth-child(3)::after { display: none; }
}

@media (max-width: 700px) {
  #aza-lp { line-height: 1.8; }
  .aza-page-nav { padding: 10px 12px; }
.aza-page-nav__inner {
	gap: 8px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}
	.aza-page-nav__label { display: none; }
  .aza-page-nav a {padding: 8px 12px;font-size: 14px;}

  .aza-hero,
  .aza-section {
    width: min(100% - 22px, 1180px);
  }

  .aza-hero {
    padding-top: 36px;
  }

  .aza-hero__visual { min-height: auto; }
  .aza-photo-card--hero img { min-height: 300px; }
   .aza-hero {
    grid-template-columns: 1fr;
  }
.aza-hero__note-img {
	width: 100%;
	position: relative;
	bottom: inherit;
	left: inherit;
	padding: 0 6%;
	top: -5%;
}
	.aza-feature-grid {
		grid-template-columns: 1fr;
	}
	.aza-icon {
		width: 45%;
		float: left;
		padding-right: 24px;
	}
	.aza-feature {
		text-align: left;
	}
  .aza-hero__stats,
  .aza-photo-placeholders {
    grid-template-columns: repeat(2,1fr);
    gap: 8px;
  }
  .aza-stat:nth-child(1) {
	grid-column: 1/3;
	text-align: center;
}
  .aza-flow-list {
    grid-template-columns: 1fr 1fr 1fr;
    padding: 14px;
    gap: 4px;
  }
  .aza-disease ul {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .aza-flow-list li { min-height: 160px; }
  .aza-card,
  .aza-feature,
  .aza-disease,
  .aza-family-card,
  .aza-policy,
  .aza-laser-panel,
  .aza-doctor__profile,
  .aza-doctor__message,
  .aza-faq-list,
  .aza-contact__intro,
  .aza-contact__info {
    border-radius: var(--aza-radius-lg);
  }

  .aza-contact__buttons,
  .aza-hero__actions {
    display: flex;
  }

  .aza-contact__info dl div {
    /* grid-template-columns: 1fr; */
    gap: 0;
  }
  .aza-faq-list {
    padding: 8px;
  }
  br.pc {
    display: none;
  }
  br.mobile {
    display: block !important;
  }
  .aza-button {
    width: 100%;
    display: block;
    text-align: center;
  }
}


br.mobile {
	display: none;
}

@media (max-width: 400px) {
  .aza-page-nav a {font-size: 13px;padding-right: 30px;}
  .aza-page-nav__inner {/* grid-template-columns: repeat(1, 1fr); */
    letter-spacing: -1px;}
  .aza-disease ul {    grid-template-columns: 1fr 1fr;}
  .aza-family-card {padding: 10px;}
  .aza-stat {padding: 20px}
}






/* column */
.blog_content {
	margin: 0 !important;
}
.side_area{display:none;}
#contents {
	width: 100%;
	margin: 0 !important;
	background: none !important;
}
#contents_left {
	float: left;
	width: 100% !important;
}
.blog_box {
border:none ;
background:none;
box-shadow: none;
}
.blog_tit,
#mainvisual,
.blog_class,
.breadcrumbs {
display:none;
}
h1 {padding:0 !important;}
.blog_box h3::after {
	display: none;
}
#contents {
	margin: 0 !important;
	padding-bottom: 0;
}
.blog_box {
	padding: 0 !important;
	margin: 0 !important;
}
.blog_content > div ol li::before {
	display: none !important;
}
main  {
	line-height: 0;
}
@media only screen and (max-width: 640px) {
  #contents {
    padding-top: 40px !important;
	}
}