.flex{
  display: flex;
  justify-content: center;
  gap: 5rem;
  justify-content: flex-start;
  align-items: flex-start;
}
.flex .flex-content{
  flex: 1;
  display: block;
}
@media (max-width: 768px) {
  .flex{
  flex-direction: column-reverse;
  gap: 4rem;
}
}
/* =========================
   HERO
========================= */

.hero {
  position: relative;
  overflow: hidden;
  padding: 10%;

  background-color: #eae6e7;
  background-image: url(../img/sub-common/hero-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;

  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url();
  background-repeat: no-repeat;
  background-size:contain;
  background-position: calc(50% + 20vw) bottom;

  z-index: -1;
  opacity: 0;
  filter: blur(40px);
  animation: heroReveal 1.6s ease-out forwards;
}
.hero__whitening::before {
  background-image: url(../img/sub/model-whitening.webp);
}

.hero__personalColor::before{
  background-image: url(../img/sub/model-whitening-pc.webp);
}
.hero__orthodontics::before{
  background-image: url(../img/sub/model-orthodontics.webp);
}

.hero__bridalcare::before{
  background-image: url(../img/sub/model-bridalcare.webp);
}
.hero__childcare::before{
  background-image: url(../img/sub/model-childcare.webp);
}

/*SVG TEXT */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;  
  background-image: url(../img/sub-common/trancent-whitening.svg);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 100%;
  z-index: 2;
  opacity: 0;
  transform: translateX(-40px);
  animation: heroAfterReveal 1.4s ease-out forwards;
  animation-delay: 1s;
}
.hero__orthodontics::after{
  background-image: url(../img/sub-common/hero_text_orthodontics.svg);
}

.hero__bridalcare::after{
  background-image: url(../img/sub-common/hero_text_bridalcare.svg);
}

.hero__childcare::after{
  background-image: url(../img/sub-common/hero_text_childcare.svg?01);
}
/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .hero::after {
    animation: none;
    opacity: 1;
    transform: none;
    filter: none;
  }
}

/* =========================
   HERO TEXT
========================= */

.hero__text {
  position: relative;
  padding-top: var(--space-xl);
  z-index: 3;
}

.hero__text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  width: 45px;
  height: 2px;
  background-color: #b98685;
}

/* =========================
   SECTION TITLE
========================= */
h2{
  text-align: center;
}
.hero-title__en {
  display: block;
  font-size: var(--font-size-xs);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.3em;
  width: 100%;
}

.hero-title__jp {
  display: inline-block;
  margin-bottom: var(--space-m);
  overflow: hidden;
}

/* 1文字ずつアニメーション */
.hero-title__jp .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(1em);
  animation: reveal 0.8s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

/* =========================
   SP
========================= */

@media (max-width: 768px) {
  .hero {
    padding: 100px 1rem 30px;
  }

  .hero::before {
    background-size: 400px;
  background-position: calc(50% + 30vw) bottom;
  }

 .hero  .section-title__jp {
    font-size: 1.6rem;
    margin-bottom: 0;
  }
  .hero::after {
  background-size: 200%;
}

  .hero__text {
    padding-top: var(--space-m);
    margin-bottom: 100px;
  }
}

/* =========================
   KEYFRAMES
========================= */

@keyframes heroReveal {
  from {
    opacity: 0;
    filter: blur(40px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes heroAfterReveal {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(1em);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
 Common Page --flow
========================= */

.flow .section-title__en{
    background-image: url(../img/sub-common/ttl-flow.svg);
}
.content__topText{
  text-align: center;
  margin-bottom: var(--space-xl);
}

.flow__list{
  max-width: 900px;
  margin: 0 auto;
}
.flow__item {
  display: flex;
  gap: 3rem;
  padding-bottom: var(--space-xl);
}
.flow__text__withBg{
  background-color: #f2f2f2;
  padding: 0.5rem;
}
.flow__index {
  position: relative;
}

.flow__index::after {
  content: "";
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background-image: radial-gradient(circle, #ccc 40%, transparent 41%);
  background-size: 4px 8px;
  background-repeat: repeat-y;
}
.flow__number {
  width: 40px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #c9c7c7; 
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: #fff;
  margin-top: 1.5em;
}

.flow__body {
  flex: 1;
  padding: 1rem;
}
.sister{
  background-color: #f6f4fb;
  position: relative;
}
.sister span{
  background-color: #b6aeb3;
  padding: 3px 10px;
  border-radius: 50px;
  color: #fff;
  font-weight: bold;
  position: absolute;
  right: 1em;
  top: -1em;
  font-size: var(--font-size-xs);
}
.flow__title {
  width: 100%;
  display: block;
  position: relative;
  margin-bottom: var(--space-l);
  padding-bottom: .3em;
}

.flow__title:before{
  content: "";
  width:100%;
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: solid #dedede 3px;
}
.flow__title:after{
  content: "";
  width: 10%;
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: solid #b4c5ee 3px;
}


.flow__item:last-child .flow__index::after {
  display: none;
}

@media (max-width: 768px) {

.flow__body {
  padding: 0 0 0 1rem;
}
.flow__number {
  margin-top: 0.3em;
}
.flow__item {
  gap: .5rem;
}

}
/* =========================
 whitening Page --sideefect
========================= */

.sideeffects .section-title__en{
    background-image: url(../img/sub-common/ttl-sideeffect.svg);
}
.sideeffects th{
  font-weight: normal;
}
.sideeffects table{
  width: 100%;
  text-align: left;
  font-size: 14px;
}
.sideeffects tr.ttl{
  background-color: #c9c7c7;
  color: #fff;
}
.sideeffects tr.ttl th{

  font-weight: bold;
}
.sideeffects table,
.sideeffects td,
.sideeffects th{
  padding: 1.5rem 1rem;
  border-collapse: collapse;
}

.sideeffects tbody th,
.sideeffects tbody td{
  border-bottom: solid #767474 0.5px;
}
.compare-table tbody tr:nth-child(even) {
  background-color: #f7f7f7;
}
.sideeffects table td span.blue{
  color: #6388b5;
  display: inline-block;
}
.sideeffects table td span.red{
  color: #b56386;
  display: inline-block;
}
.sideeffects table td span.notes{
  font-size: 11px;
  display: block;
}
.sideeffects .compare-table th:first-child {
  width: 20%;
}
/* =========================
 whitening Page --price-time
========================= */
.price-time{
  background-color: #f6f4fb;
}
.price-time .section-title__en{
    background-image: url(../img/sub-common/ttl-price-time.svg);
}
.price-time table{
  width: 100%;
  text-align: left;
  font-size: 14px;
  background-color: #fff;
}
.price-time tr.ttl{
  background-color: #c9c7c7;
  color: #fff;
}
.price-time tbody tr:nth-child(even) {
  background-color: #f7f7f7;
}
.price-time tr.ttl th{

  font-weight: bold;
}
.price-time table,
.price-time td,
.price-time th{
  padding: 1.5rem 1rem;
  border-collapse: collapse;
}
.price-time table th:first-child {
  width: 60%;
}

@media (max-width: 768px) {
  .price-time table th:first-child {
  width: 55%;
}
}
/********


********/
.pc-price-time{
  padding: 5%;
}
.pc-price-time .section-title__en{
    background-image: url(../img/sub-common/ttl-price-time.svg);
}
.pc-price-time__caution{
  background-color: #e8e4e5;
  padding: var(--space-l);
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  text-align: center;
}
.pc-price-time__inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 4rem;
  align-items: start;
}

.pc-price-time__nav {
  position: sticky;
  margin-top: 50px;
  top: 100px; 
  margin-left: 1rem;
}
.pc-price-time__nav li{
  margin-bottom: 1em;
}
.pc-price-time__nav li {
  position: relative;
  padding-left: 2em;
  margin-bottom: 1em;
}
@media (max-width: 768px) {

  .pc-price-time__inner {
    display: block;
    font-size: 0.875rem;
  }

  .pc-price-time__nav {
    position: static; 
  margin-top: 0;
  top: unset; 
  margin-left: 0;
  }

  .pc-price-time__nav ul {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.75rem 1rem;
    text-align: left;
  }

  .pc-price-time__nav li {
    margin-bottom: 0;
  }

  .pc-price-time__nav a {
    display: block;
    padding: 0.75em 0.5em;
    text-align: left;
    font-size: 0.875rem;
    white-space: nowrap;
  }
}

.pc-price-time__nav li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);

  width: 1.4em;
  height: 1.4em;

  background: no-repeat center / contain
    url("../img/sub/pc-price-time__nav_check.svg");
}
.pc-price-time__content table{
  width: 100%;
}

.pc-price-time h3{
  position: relative;
  padding: .8em;
  margin-bottom: var(--space-l);
}
.pc-price-time h3:before{
  content: "";
  width:100%;
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: solid #cbcbcb 3px;
}
.pc-price-time h3:after{
  content: "";
  width: 10%;
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: solid #928196 3px;
}
.pc-price-time__contentInner{
  padding-top: 50px;
}

/***/
.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th{
  background-color: #b4b0b5;
  color: #fff;
  font-weight: normal;
  width: 60%;
}
.price-table th:nth-child(2),
.price-table th:nth-child(3){
  width: 20%;
}

.price-table th,
.price-table td {
  padding: 1.2em 1em;
  text-align: left;
}
.price-table td:nth-child(1){
  border-right: solid #d6d6d6 1px;
}

.price-table tr:nth-child(even) {
background-color: #f7f7f7;
}

span.type16{
  color: #9dafdb;
  margin-right: 3px;
}
span.typeFace{
  color: #f9bd87;
  margin-right: 3px;
}
span.typEphysique{
  color: #db9dc9;
  margin-right: 3px;
}
.smaller{
  font-size: var(--font-size-xs);
}
.option{
  font-size: var(--font-size-xs);
  border: solid 1px #333;
  padding: 3px 5px;
  margin-right: 10px;
  border-radius: 3px;
  color: #333;
}
/****/
.rowspan td:nth-last-child(2),
.rowspan td:nth-last-child(3){
  border-right: none;
}
.rowspan tbody tr,
.rowspan tbody td{
  background-color: #fff;
}
.rowspan tbody td.bg{
  background-color: #F7F7F7 !important;
}

.rowspan th{
  width: 40%;
}
.rowspan th:nth-child(2){
  width: 30%;
}
.rowspan th:nth-child(3),
.rowspan th:nth-child(4){
  width: 15%;
}

@media (max-width: 768px) {
  
.rowspan th{
  width: 35%;
}
.rowspan th:nth-child(2){
  width: 35%;
}
.rowspan th:nth-child(3){
  width: 5%;
}
.rowspan th:nth-child(4){
  width: 30%;
}
}
/**********************/
.aboutWhiteningPC {
  padding-bottom: 0;

}
.aboutWhitening h2,
.beforeEvent h2,
.aboutWhiteningPC h2{
  margin: 0 0 var(--space-xl);
  text-align: left;
}
.aboutWhitening p,
.beforeEvent p,
.aboutWhiteningPC p{
  
  margin-bottom: var(--space-l);
}
.wrapImg {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  display: inline-block;
  width: 100%;
}

.wrapImg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url();
  background-size: cover;
  background-position: center;
}
.aboutWhitening .wrapImg::before {
  background-image: url(../img/sub-common/aboutWhitening.webp);
}
.beforeEvent .wrapImg::before {
  background-image: url(../img/sub-common/beforeEvent.webp);
}
.aboutWhiteningPC .wrapImg::before {
  background-image: url(../img/sub/personalColor.webp);
}

.featurePC__01 .wrapImg::before{
  background-image: url(../img/sub/featurePC01.webp);
}
.featurePC__02 .wrapImg::before{
  background-image: url(../img/sub/featurePC02.webp);
}
.featurePC__03 .wrapImg::before{
  background-image: url(../img/sub/featurePC03.webp);
}
.orthodonticsFeature__01 .wrapImg::before{
  background-image: url(../img/sub/orthodonticsFeature__01.webp);
}
.orthodonticsFeature__02 .wrapImg::before{
  background-image: url(../img/sub/orthodonticsFeature__02.webp);
}

.bridalcareFeature__01 .wrapImg::before{
  background-image: url(../img/sub/bridalcareFeature__01.webp);
}

.bridalCarePlan .wrapImg::before{
   background-image: url(../img/sub/bridalcareFeature__01.webp);

}

.wrapImg.is-visible::before {
  transform: scale(1);
  opacity: 1;
}

.img-zoom {
  overflow: hidden;
  position: relative;
}

.img-zoom::before {
  content: "";

  position: absolute;
  inset: 0;

  background-size: cover;
  background-position: center;

  transform: scale(1.15);
  transition: all 1.6s ease-out;
  opacity: 0;
}

.img-zoom.is-visible::before {
  transform: scale(1);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .img-zoom::before {
    transform: scale(1);
    transition: none;
  }
}
/******/
.bridalCarePlan {
  text-align: left;
}

/* リード */
.bridalCarePlan__lead {
  font-size: 1.2em;
  margin-bottom: 2rem;
}

/* 導入文 */
.bridalCarePlan__intro {
  margin-bottom: 1.5rem;
}

/* リスト */
.bridalCarePlan__list {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
}

.bridalCarePlan__item {
  padding: 1.2rem 1rem;
  text-align: center;
  flex: 1;
  color: #fff;
}
.bridalCarePlan__item:nth-child(1) {
  background-color: #d2bbc1;
}

.bridalCarePlan__item:nth-child(2) {
  background-color: #bbbcd2;
}

.bridalCarePlan__item:nth-child(3) {
  background-color: #c9c1b2;
}
.bridalCarePlan__img {
  min-height: 600px;
  position: relative;

  background:
    url("../img/sub/bridalCarePlan.webp") no-repeat center / contain;

  overflow: visible; 
  display: block;
}
.bridalCarePlan__img:after{
  content: "";
  min-width: 50%;
  height: 80px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(../img/sub/justforyou.svg) no-repeat center / contain;
;

  
}

.bridalCarePlan__imgWrap {
  position: relative;
  min-height: 600px;
}

/* ズラしたい背景 */
.bridalCarePlan__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: -20%; 
  left: -50%;
  width: 100%;
  height: 100%;
  background: #e8e8f7;
  z-index: -1;
}

/* メイン画像 */
.bridalCarePlan__img {
  position: relative;
  z-index: 1;
  min-height: 600px;
  background: url("../img/sub/bridalCarePlan.webp") no-repeat center / contain;
}



/* 説明文 */
.bridalCarePlan__text,
.bridalCarePlan__closing {
  margin-bottom: 1.8rem;
}


/* SP */
@media (max-width: 768px) {
  .bridalCarePlan__list {
  display: flex;
  gap: 0.3rem;
}

.bridalCarePlan__item {
  padding: 0.5rem .2rem;
}
.bridalCarePlan__img {
  min-height: 500px;
  min-width: 400px;
  margin: 0 auto;
}
.bridalCarePlan__imgWrap{
  min-height: unset;
}
.bridalCarePlan .flex{
  align-items: center;
flex-direction: column;
gap:2rem

}
}

/*******************/
.bridalcareFeature__inner{
  padding: 5% 0;
  display: flex;
  justify-content: center;
  gap: 5rem;
  justify-content: flex-start;
  align-items: flex-start;
}
.bridalcareFeature__inner .flex-content{
  flex: 1;
  display: block;

}
.bridalcareFeature .bridalcareFeature__copy{
  margin-bottom: var(--space-l);
  font-size: 1.4rem;
}
.bridalcareFeature__bottomText{
  margin-top: var(--space-xl);
}
.bridalcareFeature p{
  margin-bottom: var(--space-l);
}
@media (max-width: 768px) {
  .bridalcareFeature__inner {
  padding:0;
  gap: 1rem;
  flex-direction: column;
}
}
/********/
/* セクション全体 */
.bridalImageDesign {
  background-image: url();
  background-repeat: no-repeat;
  background: no-repeat center / cover
    url("../img/sub/bridalImageDesign_bg.webp");
    color: #fff;
    padding: 10% 0;
}

/* リード文 */
.bridalImageDesign__lead {
  text-align: center;
      margin-bottom: var(--space-xl);
    font-size: 1.4rem;
}
/* リスト */
.bridalImageDesign__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
}

/* 各アイテム */
.bridalImageDesign__item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  text-align: center;
  padding: 2rem 0 1rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.6;
  border: solid 1px #fff;
}

/* 共通アイコン */
.bridalImageDesign__item::before {
  content: "";
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* アイコン差し替え */
.bridalImageDesign__item.is-makeup::before {
  background-image: url("../img/sub/icon-makeup.webp");
}

.bridalImageDesign__item.is-dress::before {
  background-image: url("../img/sub/icon-dress.webp");
}

.bridalImageDesign__item.is-hair::before {
  background-image: url("../img/sub/icon-hair.webp");
}

.bridalImageDesign__item.is-bouquet::before {
  background-image: url("../img/sub/icon-bouquet.webp");
}

/* 下部テキスト */
.bridalImageDesign__note {
  text-align: center;
}

/* SP */
@media (max-width: 768px) {
  .bridalImageDesign__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/*******/

.orthodonticsFeature__inner{
  padding: 5% 0;
  display: flex;
  justify-content: center;
  gap: 5rem;
  justify-content: flex-start;
  align-items: flex-start;
}
.orthodonticsFeature__inner .flex-content{
  flex: 1;
  display: block;

}
.orthodonticsFeature__inner:nth-child(1){
  flex-direction: row-reverse;
}
.orthodonticsFeature__02{
  background-color: #fff;
}
.orthodonticsFeature .orthodonticsFeature__copy{
  margin-bottom: var(--space-l);
  font-size: 1.4rem;
}
.orthodonticsFeature__text {
  padding: 0 5%;
}
.orthodonticsFeature__caution{
  font-size: var(--font-size-xs);
}
.orthodonticsFeature__bottomText{
  margin-top: var(--space-xl);
}
.orthodonticsFeature__02 .orthodonticsFeature__bottomText{
  font-size: var(--font-size-xs);
  background-color: #eeeded;
  padding: 1rem;
}
.orthodonticsFeature p{
  margin-bottom: var(--space-l);
}
@media (max-width: 768px) {
  .orthodonticsFeature__inner,
  .orthodonticsFeature__inner:nth-child(1) {
  padding:0;
  gap: 1rem;
  flex-direction: column;
}
}

/*********************/

.orthodonticsPrice .section-title__en{
    background-image: url(../img/sub-common/ttl-price.svg);
}
.orthodonticsPrice__note{
  background-color: #fff;
  padding: 1.5rem 1rem;
  margin: var(--space-l) auto;
}
.orthodonticsPrice .flex-content{
  background-color: #fff;
}
.orthodonticsPrice__conditions{
  
  display: flex;
  justify-content: center;
  gap: 5rem;
  justify-content: flex-start;
}
.orthodonticsPrice__condition{
  flex: 1;
  background-color: #fff;
}
.orthodonticsPrice__condition p{
  padding: 1rem;
}
.orthodonticsPrice__conditionTitle{
  
  background-color: #c9c7c7;
  color: #fff;
  font-size: 1rem;
  
    padding: 1.5rem 1rem;
    text-align: center;
    font-weight: 600;
    margin-bottom: var(--space-m);
}

@media (max-width: 768px) {
  
.orthodonticsPrice__conditions{
  gap: 1rem;
  flex-direction: column;
}
}

/*********************/

.featurePC{
  background-color: #f7f7f7;
}
.featurePC .section-title__en{
    background-image: url(../img/sub-common/ttl-features.svg);
}
.featurePC .featurePC__inner{
  padding: 5% 0;
  
  display: flex;
  justify-content: center;
  gap: 5rem;
  justify-content: flex-start;
  align-items: flex-start;
}
.featurePC .featurePC__inner .flex-content{
  
  flex: 1;
  display: block;

}
.featurePC .featurePC__inner:nth-child(3){
  flex-direction: row-reverse;
}
.featurePC__02{
  background-color: #fff;
}
.featurePC h3{
  background-color: #e8e4e5;
  padding: .8em;
  text-align: center;
  margin-bottom: var(--space-l);
}
.featurePC__text {
  padding: 0 5%;
}
.featurePC p{
  margin-bottom: var(--space-l);
}
.featurePC li{
  padding: 1em 0;
  border-bottom: solid 1px #b6b6b6;
  position: relative;
}
.featurePC li:last-child{
  border-bottom: none;

}
.checkList {
  list-style: none;
  padding: 0;
  margin: 0;
}
.checkList li {
  padding: 1em 0;
  border-bottom: solid 1px #b6b6b6;
  position: relative;
  padding-left: 1.8em;
}
.checkList li:last-child{
  border-bottom: none;
}

.checkList li::before {
  content: "";
  position: absolute;

  left: 0;
  top: 50%;
  transform: translateY(-50%);

  width: 1em;
  height: 1em;
  background: no-repeat center / contain
    url("../img/sub/icon-check.svg");
}
@media (max-width: 768px) {
.featurePC .featurePC__inner,
.featurePC .featurePC__inner:nth-child(3){
  flex-direction: column-reverse;
  gap: 2rem;
}
}
/****/

.feature {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature .section-title__en{
    background-image: url(../img/sub-common/ttl-features.svg);
}
.feature li {
  position: relative;
  padding: 1rem 1rem 1rem 3.5rem;
  line-height: 1.6;
}

.feature li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top:50%;
  width: 20px;
  height: 20px;
  background-image: url("../img/sub-common/circle-check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(-50%);
}

.feature li:nth-child(odd) {
  background-color: #f8f6fc;
}


/*****/
.coolBright .coolBright_content{
display: flex;
gap:5rem;
justify-content: flex-start;
  align-items: flex-start;
}

.coolBright .coolBright_content div:nth-child(2){
position: relative;
}
.coolBright .coolBright_content div:nth-child(2):before{
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 100px;
  top:-100px;
  right: 0;
  background-color: #e2e8f6;
  background: linear-gradient(180deg, #f7ebf9 0%, #e2e8f6 100%);
  z-index: -1;
  aspect-ratio: 1 / 1;
}
.coolBright .coolBright_content div:nth-child(2) img:nth-child(2){
  position: absolute;
  right: -15%;
  bottom:-150px;
  width: 70%;
  
}
.coolBright__visual{
  margin-bottom: 100px;
}
.coolBright__visual::before {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 1.2s ease,
    transform 1.2s ease;
}

.coolBright__visual.is-visible::before {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {

.coolBright .coolBright_content{
  flex-direction: column;
}
.coolBright .coolBright_content div:nth-child(2){
  width: 100%;
}
.coolBright .coolBright_content div:nth-child(2):before{
  width: 150px;
  height: 150px;
  top:-80px;
}
.coolBright .coolBright_content div:nth-child(2) img:nth-child(2){
  position: absolute;
  right: -0%;
  bottom:-100px;
  width: 50%;
  
}
.coolBright__visual{
  margin-bottom: 100px;
}
}

/***************/

.obi__item{
  background-image: url(../img/sub/obi1.webp);
  height: 327px;
  background-repeat: no-repeat;
  background-size: cover;
}
.reservation-notes .obi__item{
  background-image: url(../img/sub/obi2.webp);
  height: 327px;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}
.flow__typeTtl{
  background-color: #e8e4e5;
  margin-bottom: var(--space-m);
  padding: 0.5rem;
}
.flow__body .allTypeWrap{
  border: solid #e8e4e5 2px;
  padding: 1rem;
  margin-bottom: var(--space-l);
}
.flow__body .allTypeWrap p:not(:last-child){
  margin-bottom: var(--space-m);
}
.bg_gray{
  padding: 2rem 1rem;
  background: #f1f1f1;
  text-align: center;
}
.reservation-notes{
  background-color: #f6f4fb;
  padding-top: 0;
}
.reservation-notes ul{
  margin-bottom: 3px;
}
.reservation-notes h2{
  margin-bottom: var(--space-xl);
}
.reservation-notes h3{
  background-color: #e8e4e5;
  padding: 1.5rem 1rem;
  text-align: center;
  font-size: 1rem;
}
.reservation-notes .layout{
  background-color: #fff;
  transform: translateY(-100px);
  border-radius: 30px;
  padding: 5%;
  z-index: 1;
}
.reservation-notes li{
  padding: 1rem;
}
.reservation-notes li:last-child{
  margin-bottom: var(--space-l);
}
.reservation-notes li:nth-child(odd) {
  background-color: #f7f7f7;
}


@media (max-width: 768px) {

.obi__item{
  height: 300px;
}
.reservation-notes .obi__item{
  height: 200px;
}

}


/***/

/* ===== タイトル ===== */
.reservation-accordion__title {
  position: relative;
  cursor: pointer;
  padding: 1rem 2.5rem 1rem 0;
  font-weight: normal;
}

/* 矢印 */
.reservation-accordion__title::after {
  content: "›";
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%) scaleY(1) rotate(90deg); /* 初期：下向き */
  transition: transform 0.3s ease;
  font-size: 2.5em;
  line-height: 1;
  color: #c7bfc1;
}
.reservation-accordion__title::before{
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgb(255, 255, 255);
  width: 41px;
  height: 41px;
  border-radius: 25px;
}

/* ===== コンテンツ（閉） ===== */
.reservation-accordion__content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.reservation-accordion.is-open .reservation-accordion__content {
  max-height: 1000px;
}

.reservation-accordion.is-open .reservation-accordion__title::after {
 
  transform: translateY(-50%) scaleY(-1) rotate(90deg);
}

@media (max-width: 768px) {
  
.reservation-notes h3{
  padding: 1.5rem 60px 1.5rem .5rem;
  text-align: left;
}
}

/*******/

.bridalcare__intro{
  text-align: center;
  padding-block: 0;
  padding: 5% 0 0;

}
.bridalcare__intro .gradiant{
  
      margin-bottom: var(--space-xl);
}
.bridalcare__lead{
  text-align: center;
      margin-bottom: var(--space-xl);
    font-size: 1.4rem;
}

/************/
.image-diagnosis__intro {

  text-align: center;
   margin-bottom: 5%;
}
.image-diagnosis__intro p{
  font-size: 1.3rem;
}

.image-diagnosis__intro p + p {
  font-size: 1rem;
  margin-bottom: var(--space-l);
}

/* list */
.image-diagnosis__list {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* item */
.image-diagnosis__item {
  flex: 1;
  text-align: center;
}

.image-diagnosis__item img {
  width:200px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-bottom: 1rem;
}

.image-diagnosis__item span {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* SP */
@media (max-width: 768px) {
  .image-diagnosis__list {
    flex-direction: column;
    gap: 4rem;
  }
}

/**************************************/
.generalOrthodontics{
  background-image: url(../img/common/bg-wave.webp);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
.generalOrthodontics__lead{
  text-align: center;
      margin-bottom: var(--space-xl);
    font-size: 1.4rem;
}
span.row{
  display: block;
}

.generalOrthodontics__types{
  
  display: flex;
  justify-content: center;
  gap: 5rem;
  justify-content: flex-start;

}

.generalOrthodontics__type{
  flex: 1;
  display: block;
}
.generalOrthodontics__intro{
  text-align: center;
      margin-bottom: var(--space-xl);
}
.generalOrthodontics__type{
  background-color: #f2f2f2;
  padding: 1rem;

}
.generalOrthodontics__typeText li {
  position: relative;
  padding-left: 1.6em; 
}

.generalOrthodontics__typeText li::before {
  content: "";
  position: absolute;
  left: 0;
   top: 0.3em; /* 行中央に寄せる */
  width: 1.2em;
  height: 1.2em;
  background: url("../img/sub/icon-caution.svg") no-repeat center / contain;
}
.generalOrthodontics__typeTitle span{
  background-color:#b4b0b5;
  color: #fff;
  padding: .2em .5em;
  position: relative;
}
.generalOrthodontics__typeTitle.has-icon {
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.generalOrthodontics__typeTitle.has-icon::before {
  content: "";
  width: 2.5em; 
  height: 2.5em;  flex-shrink: 0;
}
.generalOrthodontics__typeTitle.is-wire::before {
  
  background: url("../img/sub/generalOrthodontics__type_icon1.webp") center / contain no-repeat;

}

.generalOrthodontics__typeTitle.is-mouthpiece::before {
  background: url("../img/sub/generalOrthodontics__type_icon2.webp") center / contain no-repeat;

}

.generalOrthodontics__typeTitle{
      margin-bottom: var(--space-s);

}
.generalOrthodontics__arrow {
  text-align: center;
}
.generalOrthodontics__arrow img{
     margin: var(--space-xl) 0;
     max-width: 50px;
}
.generalOrthodontics__result{
  text-align: center;
    font-size: 1.2rem;
}


@media (max-width: 768px) {

.generalOrthodontics__types{
  
  gap: 1rem;
  flex-direction: column;
}
.generalOrthodontics__arrow img{
     margin: var(--space-m) 0;
     max-width: 30px;
}
}
/******/
.santebon {
  background-color: #F8F6FB;
}

.santebon__logo {
  text-align: center;
  margin-bottom: var(--space-m);
}

.santebon__logo img {
  max-width: 200px; /* 適宜 */
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

.santebon__text {
  margin-bottom: var(--space-m);
}

.santebon__link {
  display: inline-block;
}
/*****/
.policy {
  padding: 80px 0;
  background-color: #f9fafb;
}
.policy__content_all{
  padding: var(--space-m);
  background: #fff;
  border-radius: 30px;
  margin: 0 auto;
}
.policy__content {
  margin-bottom: var(--space-l);
}

.policy__title {
  margin: 40px 0;
  text-align: center;
  font-size: 1.3rem;
}

.policy__body {
  line-height: 2;
  color: #333;
  font-size: 0.95rem;
}

.policy__body p {
  margin-bottom: 24px;
}

.policy__content h2 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  padding-left: 12px;
  border-left: 4px solid #cfd8dc;
  text-align: left;
  padding: .7rem;
  background: #f5f7f8;
}

.policy__info {
  background: #f5f7f8;
  padding: 16px 20px;
  border-radius: 6px;
  font-size: 0.9rem;
}

/* SP調整 */
@media (max-width: 768px) {

  .policy__content_all{
  padding: var(--space-m) 1rem;
}

}


.childcare-intro::before{
    content:"";
  width: 350px;
  height: 150px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  background: linear-gradient(180deg, #f7ebf9 0%, #e2e8f6 100%);
 
}
.childcare-intro{
  text-align: center;
  position: relative;
  background-color: #f7f7f7;
  z-index: 0;
}
.childcare-intro__copy {
  margin: var(--space-xl) auto;
}
.childcare-intro__copy span{
  display: block;
font-size: 22px;
line-height: 2;}
.childcare-intro .age {
  margin-bottom: var(--space-m);
  font-size: var(--font-size-xs);
}
.childcare-intro .age span{
  border: solid #333 1px;
  padding: 5px;
}
.childcare-intro .small{
  font-size: var(--font-size-xs);
  margin-bottom: var(--space-xl);
}
.childcare-intro .small a{
border-bottom: solid #333 1px;
}

.childcare-intro .wrapImg{
  max-width:80%
}
.childcare-intro .wrapImg::before{
   background-image: url(../img/sub/childcare-items1.webp);

}
@media (max-width: 768px) {
  
.childcare-intro .wrapImg{
  max-width:60%;
  text-align: left;
}
  
.childcare-intro .wrapImg {
    display:block;}

.childcare-intro::before{
  width: 60%;
  height: 100px;
}
  
.childcare-intro__copy span{
  display: inline-block;
font-size: 18px;}
}
/********************/
.childcare-items{
  display: flex;
}

@media (max-width: 768px) {
.childcare-items{
  flex-direction: column;
  gap: 1rem;
}
}

.childcare-items h2{
  margin-bottom: var(--space-l);
}
.childcare-items ul{
  
  margin-bottom: var(--space-l);
}
.childcare-items img {
  width: 100%;
  height: auto;
}
.childcare-items__left,
.childcare-items__right{
  flex: 1;
}
.childcare-items__left {
  position: relative;
}
.childcare-items__left:before{
  content:"";
  width: 80%;
  height: 80%;
  position: absolute;
  left: -50%;
  top: -30%;
  z-index: -10;
  background: linear-gradient(180deg, #f7ebf9 0%, #e2e8f6 100%);
 
}
.childcare-items__left img{
  max-width: 400px;
}
.childcare-items__left .childcare-items__img-absolute {
  position: absolute;
  bottom: -0%;
  left: -10%;
  width: 200px;
}
.childcare-items__right ul {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  max-width: 80%;
  margin: var(--space-l) auto;
}

.childcare-items__right ul li {
  width: calc(50% - 3px);
  background-color: #e8e8f7;
}

@media (max-width: 768px) {
  .childcare-items__left:before{
  height: 100%;
  top: unset;
  bottom: -70%;
 
}
.childcare-items__left {
  margin-bottom: 80px;
}
.childcare-items__left .childcare-items__img-absolute {
  bottom: -70px;
  left: unset;
  width: 40vw;
  right: 5%;
}
.childcare-items__right ul {
  max-width: 100%;
  font-size: .8rem;
}

}
/***********************/
.childcare-notes .obi__item{
  background-image: url(../img/sub/obi3.webp);
  height: 327px;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}
.childcare-notes{
  background-color: #f6f4fb;
  padding-top: 0;
}

.childcare-notes span{
  display: inline-block;
}
.childcare-notes .layout{
  background-color: #fff;
  transform: translateY(-100px);
  border-radius: 30px;
  padding: 5%;
  z-index: 1;
}

.childcare-notes h2{
  margin-bottom: var(--space-xl);
}
/* 外側の注意項目のみ */
.childcare-notes__all > li {
  padding: 0;
}
/* 見出しブロック */
.childcare-notes h3 {
  background-color: #e8e4e5;
  padding: .5rem 1rem;
  text-align: center;
  font-size: 1rem;
  margin: 0;
}

/* 外側liの交互背景 */
.childcare-notes__all > li:nth-child(odd) {
  background-color: #f7f7f7;
}
.childcare-notes__item h4{
  border-bottom: solid #b2b2b2 1px;
  margin: 1rem 0 0.5rem;
  padding: .5rem 0;
  display: block;
  min-width: 100%;
}
/* 本文・条件エリア */
.childcare-notes__item > p,
.childcare-notes__conditions {
  padding: 1rem .5rem;
}

/* 条件リスト内のliは素に戻す */
.childcare-notes__conditions li {
  padding: 0.3rem 0;
  background: none;
}
.childcare-notes__conditions span.red{
  color: #b56386;
  display: block;
}
@media (max-width: 768px) {
.childcare-notes__item .flex{
  flex-direction: column;
  gap: 1rem;
}
}

@media (max-width: 768px) {
.childcare-notes .obi__item{
  height: 200px;
  background-position: -200px 0;
}

}