@charset "UTF-8";
/*--  TOP --*/
.catch-layout {
  display: flex;
  align-items: center;
  gap: 60px;
}
.catch-logo img {
  width: 450px;
  max-width: 100%;
}
.catch-text {
  color: #5fb6c6;
}
.catch-copy {
  font-size: 26px;
  line-height: 1.6;
  margin-top: 20px;
	margin-bottom: 30px;
}

.catch-tel {
  display: inline-block;
  background: #f07a2f;
  color: #fff;
  font-size: 28px;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
}

.catch-notes {
  margin-top: 20px;
}

.catch-notes small {
  display: block;
  font-size: 14px;
  color: #666;
}
.catch-notes small a{
	text-decoration: underline;
}
.catch-tel {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.catch-tel__icon svg {
  fill: currentColor; 
}

.catch-tel__num {
  line-height: 1;
}

@media (max-width: 768px) {
	h2.catch-logo{
		width: 50vw;
        margin: -23vw auto 0;
        position: relative;
        z-index: 10;
    }
	.catch-copy{
		font-size: 5vw;
        text-align: center;
        margin: -3vw 0 0;
        position: relative;
        z-index: 11;
	}
}
ul.box-info__note{
	line-height: 24px;
	margin-top: 30px;
}
ul.box-info__note li{
	text-indent: -1.5em;
	padding-left: 1.5em;
}
ul.box-info__note li::before{
	content: "※";
  margin-right: 0.3em;
}

.info-bg{
	background-color: rgba(var(--secondary-rgb), 0.2);
}
/*--  診療理念 --*/
h4.policy_sub{
	font-size: 1.2em;
	font-weight: bold;
	color: #ee7836;
}

/*--  Q&A --*/
dl.faq{
	padding: 0 1.5rem;
}
.faq dt {
    margin-bottom: 1em;
    font-weight: 600;
}

.faq dt::before,
.faq dd::before {
    margin-right: .4em;
}

.faq dt::before {
    content: "Q.";
	color:#EE7836;
}

.faq dd {
    margin: 0 0 2.5em;
    padding: 1em 1.5em 1em 3em;
    background: rgba(var(--secondary-rgb), 0.1);
	text-indent: -1.5em;
}

.faq dd::before {
    content: "A.";
	color: #64C4DB;
}

/*-- TOPスライダー --*/
.marquee{
  overflow: hidden;
  width: 100%;
  padding: 50px 0;
}
.marquee__track{
  display: flex;
  align-items: center;
  gap: 30px;              
  width: max-content;
  animation: marquee-right 35s linear infinite; 
}
.marquee__item{
  flex: 0 0 auto;
  width: clamp(160px, 20vw, 320px);  
  aspect-ratio: 1 / 1;              
  margin: 0;
  background: #fff;
}
.marquee__item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes marquee-right{
  from { transform: translateX(-50%); }
  to   { transform: translateX(0%); }
}

.marquee:hover .marquee__track{
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce){
  .marquee__track{ animation: none; }
}

/*-- TOP FLOW --*/
.sc-flow {
  --flow-accent: #f07a2b;
  --flow-arrow: #6cc6df;
  --flow-active-bg: #eeeeee;

  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
  padding: 24px 0;
}

.sc-flow__steps {
  display: grid;
  gap: 18px;
}

.sc-flow__step {
  position: relative;
  width: 100%;
  border: none;
  cursor: pointer;
  background: var(--flow-accent);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  padding: 14px 16px;
  border-radius: 0;
  text-align: center;
  transition: all 0.18s ease;
}

/* PC：下向き三角 */
.sc-flow__step::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--flow-arrow);
}

.sc-flow__step:last-child::after {
  display: none;
}

.sc-flow__step:not(.is-active) {
  filter: saturate(0.92);
  opacity: 0.95;
}

.sc-flow__step:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.sc-flow__step.is-active {
  background: var(--flow-active-bg);
  color: var(--flow-accent);
  filter: none;
  opacity: 1;
  outline: none;
}

.sc-flow__content {
  min-width: 0;
}

.sc-flow__panel {
  display: none;
	width: 90%;
}

.sc-flow__panel.is-active {
  display: block;
  animation: sc-flow-fade 0.22s ease both;
}

@keyframes sc-flow-fade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.sc-flow__media {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  background: #fff;
}

.sc-flow__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
}

.sc-flow__num {
  position: absolute;
  left: 16px;
  bottom: 18px;
  font-size: clamp(34px, 4.5vw, 64px);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: rgba(240, 122, 43, 0.72);
  text-shadow: 0 1px 0 rgba(255,255,255,0.35);
}

.sc-flow__title {
  margin: 18px 0 10px;
  color: var(--flow-accent);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.sc-flow__text {
  margin: 0;
  color: #555;
  line-height: 2;
  font-size: 16px;
}

@media (max-width: 991.98px) {

  .sc-flow {
    grid-template-columns: 1fr;
    gap: 18px;
  }
	.sc-flow__panel {
		width: 100%;
	}

  .sc-flow__content { order: 1; }
  .sc-flow__steps   { order: 2; }
  .sc-flow__steps {
    display: flex;
    align-items: stretch;
    /*gap: 6px;*/             
    overflow: visible;    
    padding: 14px 0 0;
  }

  .sc-flow__step {
    position: relative;
    flex: 1 1 0;            
    width: auto;           
    min-width: 0;           
    height: 150px;
    padding: 10px 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: 0.06em;
    white-space: normal;
  }

  .sc-flow__step::after {
    display: none;
  }

  .sc-flow__step:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 50%;
    right: calc(-10px / 2 - 10px);  
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 10px solid var(--flow-arrow);
    z-index: 5;
    pointer-events: none;
  }
}

/*--診療案内--*/
.link_dentistry {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 64px;
	/*padding-top: 50px;*/
}

.link_dentistry > div {
  width: 100%;
  min-width: 0;
}

.link_dentistry .btn-readmore {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: none;
  text-align: center;
  white-space: normal;
  word-break: break-word;
}
.link_dentistry > div:last-child:nth-child(odd) {
  grid-column: 1 / -1;      
  justify-self: center;   
  width: 50%;               
}
@media (max-width: 768px) {
  .link_dentistry {
    grid-template-columns: 1fr;
    gap: 20px;
	  padding-top: 0;
  }
	.link_dentistry > div {
		width: 90%;
		margin: 0 auto;
	}
	.link_dentistry > div:last-child:nth-child(odd){
    grid-column: auto;
    width: 90%;
    justify-self: auto;
  }
}
.cont__subtitle {
  /*margin-top: 30px;*/
  font-family: var(--fontfamily02);
  font-size: 24px;
  color: var(--secondary);
}
@media (max-width: 991px) {
  .cont__subtitle {
    font-size: 22px;
	  margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .cont__subtitle{
    font-size: 20px;
  }
}
.remarks-box{
	background: rgba(var(--secondary-rgb), 0.1);
	position: relative;
  padding:40px 40px;
  margin-top: 30px;
  font-size: 16px;	
}
@media (max-width: 575px) {
	.remarks-box{
		padding:40px 30px;
	}
}
.pattern__cont__text02{
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 2;
}

@media (max-width: 1399px){
  .pattern__cont__text02{
    font-size: 16px;
  }
}

.pattern__cont__text02 > li{
  position: relative;
  margin: 0;
  padding-left: 26px;
}

.pattern__cont__text02 > li + li{
  margin-top: 18px;
}

.pattern__cont__text02 > li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 12px;
  height: 12px;
  background: var(--font-body-color);;
}

.pattern__cont__text02 .ttl{
  display: inline-block;
  font-weight: 700;
  font-size: 1.1em;       
  letter-spacing: .03em;
}

.pattern__cont__text02 br{
  display: block;
  content: "";
  margin-top: 6px;
}

@media (max-width: 768px){
  .pattern__cont__text02 > li{
    padding-left: 22px;
  }

  .pattern__cont__text02 > li::before{
    width: 10px;
    height: 10px;
    top: 0.7em;
  }

  .pattern__cont__text02 .ttl{
    font-size: 1.05em;
  }
}

.remarks-title{
  font-family: var(--fontfamily02);
  font-size: 22px;
  color: var(--secondary);
	font-weight: bold;
}
@media (max-width: 991px) {
  .remarks-title {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .remarks-title{
    font-size: 20px;
  }
}

.pattern__cont__text02{
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 2;
}

@media (max-width: 1399px){
  .pattern__cont__text02{
    font-size: 16px;
  }
}

.pattern__cont__text02 > li{
  position: relative;
  margin: 0;
  padding-left: 26px; 
}

.pattern__cont__text02 > li + li{
  margin-top: 18px;
}

.pattern__cont__text02 > li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 12px;
  height: 12px;
  background: var(--font-body-color);
}

.pattern__cont__text02 .ttl{
  display: inline-block;
  font-weight: 700;
  font-size: 1.1em;
  letter-spacing: .03em;
}

.pattern__cont__text02 br{
  display: block;
  margin-top: 6px;
}

.pattern__list__dotted02{
  margin-top: 20px;
  list-style: none;
  padding: 0;
}

.pattern__list__dotted02 li{
  position: relative;
  padding-left: 22px;
  color: var(--color08);
  line-height: 2;
	margin-bottom: 20px;
}

.pattern__list__dotted02 li + li{
  margin-top: 10px;
}

.pattern__list__dotted02 li::before{
  content: "●";
  position: absolute;
  left: 0;
  top: 0.1em;
  font-weight: 700;
  color: var(--secondary);
}

.pattern__list__dotted02 .ttl{
  display: inline-block;
  font-weight: 700;
  font-size: 1.15em;   
  letter-spacing: .03em;
  line-height: 1.5;
}

.pattern__list__dotted02 br{
  display: block;
  margin-top: 6px;
}

@media (max-width:768px){
  .pattern__list__dotted02 .ttl{
    font-size: 1.1em;
	  line-height: 1.2;
  }
}

@media (max-width: 768px){
  .pattern__cont__text02 > li{
    padding-left: 22px;
  }

  .pattern__cont__text02 > li::before{
    width: 10px;
    height: 10px;
    top: 0.7em;
  }

  .pattern__cont__text02 .ttl{
    font-size: 1.05em;
  }
}


/* ===================================
  ● ドットリスト
=================================== */

.pattern__list__dotted02{
  margin-top: 20px;
}

.pattern__list__dotted02 li{
  position: relative;
  padding-left: 20px;
  color: var(--color08);
}

/* 最初以外だけ余白 */
.pattern__list__dotted02 li + li{
  margin-top: 5px;
}

.pattern__list__dotted02 li::before{
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: var(--secondary);
}

.ml{
	margin-left: 1.6em;
	padding-right: 1.6em;
}

.pattern__table table{
  width: 100%;
  table-layout: fixed;      
  border-collapse: collapse;
}

.pattern__table th:first-child,
.pattern__table td:first-child{
  width: 18%;
}

.pattern__table th:not(:first-child),
.pattern__table td:not(:first-child){
  width: 27.33%;
}

.pattern__table .table-img{
  width: 100%;
  height: 180px;             
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;      
}

.pattern__table .table-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;         
  object-position: center;
  display: block;
}

.pattern__table td > img{
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.pattern__table th,
.pattern__table td{
  vertical-align: top;
}

@media (max-width: 768px){
  .pattern__table .table-img{
    height: 120px;
  }
}

/*-- Sitemap --*/
.p-sitemap{
  --orange: var(--secondary) ;      
  --orange-line: #EAAA85; 
  --wrap: 1100px;
}

.p-sitemap{
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 24px;
  color: var(--text);
}

.p-sitemap_border{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 0 0 22px;
  font-size: 16px;
  color: #666;
  letter-spacing: .06em;
  line-height: 1;
}

.p-sitemap_border::before,
.p-sitemap_border::after{
  content: "";
  flex: 1;
  height: 2px;
  background: var(--secondary);
  transform: translateY(1px);
}

.p-sitemap_ttl{
  margin: 0 0 26px;
  padding: 22px 28px;
  background: var(--secondary);
  color: #fff;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: .04em;
}

.is-sp{ display: none; }

.p-sitemap_list{
  list-style: none;
  margin: 0;
  padding: 0;
}

.p-sitemap_list > li{
  position: relative;
  padding: 18px 0 18px 40px; 
  border-bottom: 2px dotted var(--secondary);
}

.p-sitemap_list > li:last-child{
  border-bottom: none;
}

.p-sitemap_list > li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--secondary);
  transform: translateY(-50%);
}

.p-sitemap_list > li > p{
  margin: 0;
}

.p-sitemap_list a{
  display: block;
  color: var(--text);
  text-decoration: none;
  font-size: 18px;
  line-height: 1.2;
}

.p-sitemap_list a:hover{
  opacity: .75;
}

@media (max-width: 767px){
  .p-sitemap{
    padding-inline: 16px;
  }

  .p-sitemap_border{
    font-size: 14px;
    gap: 14px;
  }

  .p-sitemap_ttl{
    font-size: 20px;
    padding: 16px 16px;
  }

  .is-sp{ display: inline; }

  .p-sitemap_list > li{
    padding: 16px 0 16px 34px;
  }

  .p-sitemap_list > li::before{
    width: 16px;
    height: 16px;
  }

  .p-sitemap_list a{
    font-size: 16px;
  }
}

/*-- デンタルドック --*/
.flow-arrow-scope .pattern__block__wrap + .pattern__block__wrap{
  position: relative;
  margin-top: 150px; 
}

.flow-arrow-scope .pattern__block__wrap + .pattern__block__wrap::before{
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 18px solid  var(--primary); 
}

@media (max-width: 767px){
	.flow-arrow-scope .pattern__block__wrap + .pattern__block__wrap{
  margin-top: 100px; 
}
	.flow-arrow-scope .pattern__block__wrap + .pattern__block__wrap::before{
  top: -80px;
}