@charset "UTF-8";

/* * {
  outline: 2px solid blue;
} */

html {
  scroll-behavior: smooth;
}

body {
  background-color: rgb(255, 255, 255);
  margin: 0 auto;
  min-width: auto;
  font-family: YuMincho, Hiragino Mincho ProN, serif;
  padding-top: 92px !important;
}

/* .zen-old-mincho-regular {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}
 */

/*-------------------------------------
-----------新しいCSS-------------*/
/* ==== 共通スタイル ==== */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  height: 120px;

}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  font-size: 12px;
  margin: 0;
}

.logo img {
  width: 350px;
  height: auto;
}

nav {
  display: flex;
  margin-top: 10px;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
  padding: 0 30px;
}

.nav-item>a {
  display: block;
  text-decoration: none;
  transition-duration: 0.5s;
  position: relative;
  text-decoration: none;
  color: #6b6b6b;
  text-decoration: none;
  font-weight: bold;
}

.nav-item.has-submenu>a::after {
  content: '';
  display: inline-block;
  margin-left: 7px;
  width: 6px;
  height: 6px;
  border-right: 1px solid #6b6b6b;
  border-bottom: 1px solid #6b6b6b;
  transform: rotate(45deg);
  vertical-align: middle;
}

.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #6b6b6b;
  width: 200px;
  list-style: none;
  margin: 0;
  padding: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.sub-menu li a {
  color: #fff;
  padding: 12px 18px;
  display: block;
  text-align: center;
  text-decoration: none;
}

.sub-menu li a:hover {
  background: #7FD5E7;
}

/* スクロールしたら */
.scroll-nav {
  height: 100px !important;
}

.scroll-nav h1 {
  display: none;
}

.scroll-nav .logo img {
  width: 250px;
  margin: 10px 0 0 0;
}

/* ホバー時のカラー反転 */
.scroll-nav .sub-menu li a:hover {
  background: #7FD5E7;
  color: #fff;
}

.underLine a::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #7FD5E7;
  bottom: -1px;
  /*アンダーラインがaタグの下端から現れる*/
  transform: scale(0, 1);
  /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
  transform-origin: left top;
  /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  transition: transform 0.3s;
  /*変形の時間*/
}

.underLine a:hover::after {
  transform: scale(1, 1);
  /*ホバー後、x軸方向に1（相対値）伸長*/
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 50px;
  height: 25px;
  position: relative;
}

.hamburger span {
  position: absolute;
  height: 4px;
  width: 100%;
  background: #7FD5E7;
  transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 15px;
}

.hamburger span:nth-child(3) {
  top: 30px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 10px;
}

/* ==== スマホ表示用 ==== */
@media (max-width: 768px) {
  nav {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 80%;
    height: 100%;
    flex-direction: column;
    background: #fff;
    transition: right 0.3s ease;
    overflow-y: auto;
  }

  nav.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
  }

  .nav-item>a {
    padding: 20px;
  }

  .hamburger {
    display: flex;
  }

  .sub-menu {
    position: static;
    background: #7FD5E7;
    display: none;
  }

  .nav-item.open .sub-menu {
    display: block;
  }

  .sub-menu li a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
}

.logo img {
  width: 300px;
  margin-top: 5px;
}

.scroll-nav .logo img {
  margin: 8px 0 0 0;
}

@media (max-width: 480px) {
  body {
    padding-top: 67px !important;
  }

  header {
    height: 90px;
  }

  .h1 {
    font-size: 10px;
  }

  .scroll-nav {
    height: 90px;
  }

  .hamburger {
    width: 38px;
  }

  .hamburger span:nth-child(1) {
    top: 0;
  }

  .hamburger span:nth-child(2) {
    top: 12px;
  }

  .hamburger span:nth-child(3) {
    top: 24px;
  }

  .logo img {
    width: 230px;
    margin-top: 3px;
  }

  .scroll-nav .logo img {
    width: 230px;
    margin: 5px 0 0 0;
  }
}

/* ==== デスクトップ表示用 ==== */
@media (min-width: 769px) {
  .nav-item.has-submenu:hover .sub-menu {
    display: block;
  }
}

/*-------------------------------------
-----------TOPに戻るボタン-------------*/
.pagetop {
  height: 70px;
  width: 70px;
  position: fixed;
  right: 0;
  bottom: 0;
  background: #7FD5E7;
  border: solid 2px #fff;
  /* border-radius: 50%; */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.pagetop__arrow {
  height: 10px;
  width: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: translateY(20%) rotate(-45deg);
}


/* サイドボタン */
#slideL {
  z-index: 9999;
  cursor: pointer;
  position: fixed;
  bottom: 20%;
  right: -326px;
  background: #6b6b6b;
  width: 400px;
  color: #fff;
  font-size: 16px;
}

.slide-inner p {
  writing-mode: vertical-rl;
  background: #7FD5E7;
  border: solid 2px #fff;

  color: #fff;
  font-size: 20px;
  font-weight: bold;
  padding: 55px 22px;
}

.slide-inner {
  display: flex;
}

.slide-inner img {
  width: 300px;
  height: auto;
  margin: 20px 0 0 10px;
}

.slide-top {
  margin-top: 50px;
}

.bottom {
  display: none;
}

/*------------------------------------
----------------ファーストビュー------------------*/
.main {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.main img {
  width: 100%;
  height: auto;
}

/*------------------------------------
----------------バナー------------------*/
.bunner {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 100px auto;
  gap: 100px;
}

.bunner img {
  box-shadow: 0px 1px 6px 5px rgba(63, 55, 50, 0.3);
  transition-duration: 0.5s;
  width: auto;
  /* PCでは元サイズのまま */
  max-width: 100%;
}

.bunner img:hover {
  transform: scale(1.1);
}

/*------------------------------------
----------------当院の6つの特徴------------------*/

/* ---------------------------------------------------
新規追加CSS 
---------------------------------------------------*/
.mobile-br {
  display: none;
}

#sec1 {
  padding: 70px 0;
}

.group {
  position: relative;
  margin-bottom: 15px;
  padding: 40px 0 36px;
}

.row {
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  color: #fff;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.item span.fnt-pt {
  font-size: 62px;
  line-height: 62px;
  margin-bottom: 20px;
}

.item dl dt {
  font-size: 22px;
  line-height: 30px;
  letter-spacing: 0.12em;
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
}

.item dl dd {
  line-height: 30px;
  padding-top: 10px;
}

.group1 .photo,
.group3 .photo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
}

.group1 .photo {
  background-image: url("https://sakurasaku-dc.com/wp-content/uploads/2025/04/sec01-top.png");
}

.group3 .photo {
  background-image: url("https://sakurasaku-dc.com/wp-content/uploads/2025/04/sec01-top.png");
}

.group2 {
  position: relative;
  margin-bottom: 15px;
  padding: 102px 0 60px;
}

.group2:before,
.group2:after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  background-size: cover;
}

.group2:before {
  left: 0;
  right: calc(50% + 143px);
  background: url("https://sakurasaku-dc.com/wp-content/uploads/2025/04/sec01-img02.png") no-repeat center right;
}

.group2:after {
  left: calc(50% + 143px);
  right: 0;
  background: url("https://sakurasaku-dc.com/wp-content/uploads/2025/04/sec01-img03.png") no-repeat center left;
}

.group2>* {
  position: relative;
  z-index: 1;
}

.group2 .sec01-h2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  padding-top: 28px;
  color: #070707;
}

.sec01-h2 span {
  color: #7FD5E7;
}

.ttl-common {
  font-size: 32px;
  letter-spacing: 0.12em;
  line-height: 53px;
  color: #070707;
  text-align: center;
  margin-bottom: 20px;
}

.ttl-common span.fnt-open-sans {
  font-size: 12px;
  line-height: 53px;
  letter-spacing: 0.12em;
  display: block;
  color: #217BB5;
  text-transform: uppercase;
  margin-top: -10px;
}

.txt {
  font-size: 22px;
  line-height: 43px;
  letter-spacing: 0.12em;
}

.pc {
  display: inline;
}

@media screen and (max-width: 1080px) {
  .row {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }

  .row .item {
    width: calc(50% - 10%);
    /* gapぶん差し引く */
  }

  #mainimage #keyvisual .txt_key {
    left: auto;
    right: 20px;
  }

  #sec1 {
    padding: 60px 0;
  }

  #sec1 .group {
    position: relative;
    margin-bottom: 10px;
    padding: 10px 0 48px 0;
    max-height: 240px;
  }

  #sec1 .row {
    max-width: calc(100% - 25px);
  }

  #sec1 .item h3 {
    font-size: 48px;
    line-height: 62px;
    letter-spacing: 0;
    margin-bottom: 10px;
  }

  #sec1 .item dl dt {
    font-size: 15px;
    font-weight: 900;
    line-height: 25px;
    letter-spacing: 0.06em;
    border-bottom: 1px solid #fff;
    padding-bottom: 5px;
  }

  #sec1 .item dl dd {
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 0.1em;
    padding-top: 5px;
  }

  #sec1 .group1 .photo {
    background: url("https://sakurasaku-dc.com/wp-content/uploads/2025/04/sec01-top.png") no-repeat center center;
    background-size: cover;
  }

  #sec1 .group1 .row .item:first-child dl {
    width: auto;
  }

  #sec1 .group1 .row .item:last-child {
    width: 50%;
  }

  #sec1 .group1 .row .item:last-child dl {
    width: 100%;
  }

  #sec1 .group3 .photo {
    background: url("https://sakurasaku-dc.com/wp-content/uploads/2025/04/sec01-top.png") no-repeat center center;
    background-size: cover;
  }

  #sec1 .group3 .row .item:first-child dl {
    width: auto;
  }

  #sec1 .group3 .row .item:last-child {
    width: 50%;
    padding: 0 60px 0 0;
  }

  #sec1 .group2 {
    background: none;
    background-size: 0;
    position: relative;
    margin-bottom: 15px;
    padding: 0 0 0 0;
  }

  #sec1 .group2:before {
    background: none;
    right: 100%;
  }

  #sec1 .group2:after {
    background: none;
    left: 100%;
  }

  #sec1 .group2 .row {
    max-width: 100%;
    flex-wrap: wrap;
  }

  #sec1 .group2 .row .item {
    width: 100%;
    background: url("https://sakurasaku-dc.com/wp-content/uploads/2025/04/sec01-img02.png") no-repeat center center;
    background-size: cover;
    padding: 3px 20px 33px 20px;
    max-height: 200px;
  }

  #sec1 .group2 .row .item:last-child {
    background: url("https://sakurasaku-dc.com/wp-content/uploads/2025/04/sec01-img03.png") no-repeat center center;
    background-size: cover;
    padding: 3px 20px 33px 8%;
  }

  .text-right dt,
  .text-right dd {
    text-align: right;
  }

  .text-right span {
    display: block;
    text-align: right;
  }

  #sec1 .group2 .sec01-h2 {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    padding: 40px 20px;
    padding-top: 40px;
    color: #070707;
    width: 100%;
  }

  #sec1 .group2 .sec01-h2 h2 {
    margin-bottom: 5px;
  }

  #sec1 .group2 .sec01-h2 .txt {
    font-size: 20px;
    line-height: 38px;
    letter-spacing: 0.1em;
  }
}

@media screen and (max-width: 767px) {
  .row {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }

  .item {
    text-align: left;
  }

  .group2 .sec01-h2 {
    position: relative;
    background-size: 100%;
    padding: 40px 20px;
  }

  .ttl-common {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .ttl-common span.fnt-open-sans {
    margin-top: -20px;
  }

  .txt {
    font-size: 20px;
    line-height: 38px;
    letter-spacing: 0.1em;
  }

  #sec1 .group2 .row .item {
    padding: 3px 20px 33px 20px;
  }

  #sec1 .group2 .row .item:last-child {
    padding: 3px 20px 33px 20px;
  }

  #sec1 .group3 .row .item:last-child {
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  .item span.fnt-pt {
    font-size: 60px;
    line-height: 60px;
    margin-bottom: 20px;
  }
}

/* ---------------------------------------------------
新規追加CSSここまで 
---------------------------------------------------*/


/*------------------------------------
----------------当院が選ばれる理由------------------*/
.sec02 {
  width: 100%;
  height: 645px;
  margin: 0 auto;
  position: relative;
  /* position: relative; */
  /* background: linear-gradient(90deg, rgba(255, 255, 255, 1), rgba(249, 249, 249, 1) 56%, rgba(196, 196, 196, 1));
  background-image: url(https://sakurasaku-dc.com/wp-content/uploads/2025/04/sec02-haikei.png);
  background-repeat: no-repeat;
  background-size: cover; */
}

.sec02::before {
  content: '';
  width: calc(100% - 100px);
  height: 530px;
  background: #6b6b6b;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.sec02-h2 {
  width: 100%;
  height: auto;
  text-align: center;
}

.sec02-h2 h2 {
  margin-top: 50px;
  font-size: 32px;
  color: #fff;
  text-align: center;
}

.h2-span {
  font-size: 16px;
  color: #7FD5E7;
}

.sec02-flex {
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 50px;
  /* background: lightcyan; */
  /* clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%); */
}

.sec02_box {
  padding: 0 20px;
}

.sec02-text {
  height: auto;
  width: 37%;
  transform: translate(-68%, 3%);
  color: #fff;
}

.sec02-text .sec02-text01,
.sec02-text .sec02-text02,
.sec02-text .sec02-text03,
.sec02-text .sec02-text04 {
  width: 100%;
  margin: 0 auto;
  border-bottom: 1px solid #fff;
  line-height: 200%;
}

.sec02-text h3 {
  font-size: 18px;
  margin-top: 35px;
}

.sec02-pic {
  position: absolute;
  top: 96px;
  right: 0;
  width: 50%;
  height: 400px;
}

.sec02-pic img {
  box-shadow: 0px 1px 6px 5px rgba(63, 55, 50, 0.3);

}

/*------------------------------------
----------------痛くない歯医者をお探しの方へ------------------*/
.sec03 {
  width: 100%;
  height: auto;
  margin: 200px auto 100px auto;
  position: relative;
}

.sec03-h2 {
  width: 100%;
  height: auto;
  margin: 200px auto 100px auto;
}

.sec03-h2 h2 {
  margin-top: 25px;
  font-size: 32px;
  text-align: center;
}

.sec03-flexBox {
  max-width: 1140px;
  margin: 0 auto;
}

.sec03-flex {
  position: relative;
  display: flex;
  justify-content: center;
  height: 550px;
  margin: 50px auto;
}

/* .sec03-flexBox .sec03-flex:nth-of-type(2) {
  flex-direction: row-reverse;
} */

.sec03-box01 {
  position: absolute;
  width: 50%;
  height: auto;
  top: 20%;
  right: 3%;
  background: #fff;
  padding: 50px 45px;
  z-index: 2;
  border-radius: 10px;

}

.sec03-img01,
.sec03-img03 {
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: 0px 0px 8px 1px #888;
}

.sec03-img01 img,
.sec03-img03 img {
  width: 700px;
  height: auto;
}

.li-1 {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  padding: 30px 0 20px 0;
  border-bottom: 1px solid #7FD5E7;
}

.li-2 {
  padding: 30px 0;
  line-height: 2;
}

.border-bottom {
  border-bottom: 5px solid rgba(127, 213, 231, .5);
  font-weight: 600;
}

.sec03-box02 {
  position: absolute;
  width: 50%;
  height: auto;
  top: 20%;
  left: 3%;
  background: #fff;
  padding: 50px 45px;
  z-index: 2;
  border-radius: 10px;
  
}

.sec03-img02 {
  position: absolute;
  top: 0;
  right: 0;
}

.sec03-img02 img {
  width: 700px;
  height: auto;
  box-shadow: 0px 0px 17px 0px #6b6b6b;
}

.sec03-box03 {
  position: absolute;
  width: 50%;
  height: auto;
  top: 20%;
  right: 3%;
  background: #fff;
  padding: 50px 45px;
  z-index: 2;
  border-radius: 10px;
}

/*------------------------------------
----------------症例紹介------------------*/
.sec04 {
  width: 100%;
  height: auto;
  margin: 0 auto 140px auto;
}

.sec04-h2 {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.sec04-h2 h2 {
  padding-top: 16px;
  font-size: 32px;
  text-align: center;
}

.sec04-h2 .h2-span {
  text-align: center;
  display: block;
}

.sec04-h3 h3 {
  font-size: 20px;
  text-align: center;
  margin: 50px 0;
}

.caseBox {
  width: 90%;
  height: auto;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px 0px;

}

.case01 {
  width: 30%;
  height: 550px;
  text-align: center;
  background: rgba(255, 255, 255, .8);
  /* margin: 47px 34px 0 50px; */
  margin: 0 auto;
  box-shadow: 0px 0px 20px -5px #7d7d7d;
}

.case01 h3 {
  text-align: center;
  margin-top: 30px;
}

.case01 p {
  text-align: center;
}

.case01 img {
  width: 90%;
  height: 170px;
}


.img01,
.img02 {
  text-align: center;
}

.img01 {
  text-align: center;
  position: relative;
  margin-top: 30px;
}

.img01 p {
  position: absolute;
  top: 2px;
  left: 39px;
  font-size: 25px;
}

.img02 {
  text-align: center;
  position: relative;
}

.img02 p {
  position: absolute;
  top: 2px;
  left: 39px;
  font-size: 25px;
}

/*------------------------------------
----------------院長紹介------------------*/
.sec05 {
  width: 100%;
  height: 800px;
  margin: 0 auto;
  position: relative;
  /* background: linear-gradient(90deg, rgba(196, 196, 196, 1), rgba(249, 249, 249, 1) 56%, rgba(255, 255, 255, 1)); */
}

.sec05::before {
  content: '';
  width: calc(100% - 150px);
  /* width: 100%; */
  height: 700px;
  background: #6b6b6b;
  position: absolute;
  left: 0;
  z-index: -1;
}

.sec05-h2 {
  width: 100%;
  text-align: center;
}

.sec05-h2 h2 {
  font-size: 32px;
  text-align: center;
  color: #fff;
}

.h2-span {
  font-size: 16px;
  color: #7FD5E7;
}

.sec05-flex {
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: flex;
  gap: 20px;
}

.sec05-text {
  position: absolute;
  top: 6%;
  left: 2%;
  /* min-width: 338px; */
  width: 55%;
  /* background-color: #fff; */
  padding: 0px 60px 100px 90px;
  color: #fff;
}

.sec05-text h3 {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  border-bottom: 2px solid #fff;
  padding: 20px 0 10px 0;
  color: #fff;

}

.sec05-text br {
  display: none;
}

.ja {
  font-size: 20px;
  margin-left: 20px;
  color: #fff;

}

.en {
  font-size: 16px;
  color: #7FD5E7;
  margin-left: 20px;
}

.sec05-p {
  padding-top: 40px !important;
}

.sec05-text p {
  padding: 10px 0;
}

.sec05-span {
  font-size: 20px;
  font-weight: bold;
  color: #7FD5E7;
}

.sec05-pic {
  position: absolute;
  top: 8%;
  right: 0;
  width: 40%;
  min-width: 400px;
  height: auto;
}

/* ボタンデザイン */
.sec05-Btn {
  overflow: hidden;
  padding: 10px;
  border-radius: 0;
  background: #fff;
}

.sec05Btn {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  bottom: 0;
  left: 17%;
}

.sec05Btn a {
  color: #6b6b6b;
}

.sec05-Btn span {
  position: relative;
}

.sec05-Btn:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  -webkit-transform: translateX(-96%);
  transform: translateX(-96%);
  background: #7FD5E7;
}

.sec05-Btn:hover:before {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}

.s5Btn {
  font-size: 16px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding: 15px 90px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  /* color: #fff; */
  border: 1px solid #000;
}

Btnarrow::after {
  content: '';
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 42%;
  right: 13px;
  /*矢印の形状*/
  width: 5px;
  height: 5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  /*アニメーションの指定*/
  transition: all .3s;
}

/*hoverした際の移動*/
.Btnarrow01:hover::after {
  right: 11px;
}


/*------------------------------------
----------------診療メニュー------------------*/
.sec06 {
  width: 100%;
  /* height: 585px; 強制的に高さを指定してしまうと画面幅が変わってもその高さになってしまうので要素同士が重なってしまう*/
  margin: 0 auto;
  position: relative;
  /* background: linear-gradient(90deg, rgba(196, 196, 196, 1), rgba(249, 249, 249, 1) 56%, rgba(255, 255, 255, 1));
  background-image: url(https://sakurasaku-dc.com/wp-content/uploads/2025/04/shinnryoukoumoku.png);
  background-repeat: no-repeat;
  background-size: cover;
  box-sizing: border-box; */
}

.sec06-h2 {
  width: 100%;
  height: auto;
  margin-top: 100px;
  text-align: center;
}

.sec06-h2 h2 {
  margin-top: 16px;
  font-size: 32px;
  /* font-weight: 400; */
  text-align: center;
}

.h2-span {
  font-size: 16px;
  color: #7FD5E7;
}

.menuBox {
  width: 90%;
  height: auto;
  margin: 0 auto;
  padding: 60px 5px;
  /* display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px; */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 25px 3%;
}

.menu-item {
  width: 100%;
  max-width: 200px;
  /* 通常時の幅（調整可） */
  text-align: center;
  /* margin-top: 70px; */
  margin: 0 auto;
  background: #6b6b6b;
  border: 2px solid #fff;
  outline: 3px solid #6b6b6b;
  box-shadow: 0px 0px 6px 9px rgba(63, 55, 50, 0.3);
  transition-duration: 0.5s;
}

.menu-item img {
  text-align: center;
}

.menu-img {
  max-width: 200px;
  padding: 20px;
}

.menu-text {
  color: #fff;
  /* color: #7FD5E7; */
  text-align: center;
  padding-bottom: 20px;
}

.menu-item a {
  text-decoration: none;
}

/* ホバーで画像かわる */
.menu-item:hover {
  opacity: .7;
}

.switch_image {
  position: relative;
}

.switch_image img {
  transition-duration: 0.5;
}

.switch_image:hover img:first-of-type {
  opacity: 0;
}

.switch_image img:last-of-type {
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0;
}

.switch_image:hover img:last-of-type {
  opacity: 1;
}

/*------------------------------------
----------------当院はホワイトエッセンス加盟院です------------------*/
.sec07 {
  width: 100%;
  padding: 80px 0;
  /* height: 600px; */
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

/* .sec07::before {
  content: '';
  width: calc(85%);
  border: 2px solid #777777;
  height: 558px;
  position: absolute;
  top: 19%;
  left: 10%;
  z-index: 1;
} */

.sec07-h2 {
  /* position: absolute;
  top: -5%;
  left: 0; */
  width: 100%;
  height: auto;
  text-align: center;
  z-index: 3;
}

.sec07-h2 h2 {
  margin-top: 50px;
  font-size: 32px;
  text-align: center;
}

.h2-span {
  font-size: 16px;
  color: #7FD5E7;
}

/* .sec07-flex {
  width: 100%;
  height: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  background-image: url(https://sakurasaku-dc.com/wp-content/uploads/2025/04/sec07-img.png);
  background-repeat: no-repeat;
  background-position: 103% 97%;
  background-size: 750px auto;
  position: relative;
}

.sec07-flex::before {
  content: '';
  width: calc(100% - 150px);
  height: 133px;
  background: linear-gradient(90deg, rgba(196, 196, 196, 1), rgba(249, 249, 249, 1) 80%, rgba(255, 255, 255, 1));
  position: absolute;
  top: 35%;
  left: 0;
  z-index: -1;
}

.sec07-pic,
.sec07-text {
  width: 50%;
}

.sec07-pic {
  width: 28%;
  position: absolute;
  top: 19%;
  left: 7%;
}

.sec07-text {
  position: absolute;
  top: 20%;
  left: 40%;
}

.sec07-text h3 {
  position: absolute;
  top: -29;
  left: 5%;
  font-size: 20px;
  line-height: 220%;
}

.sec07-text .txt01 {
  font-size: 24px;
  font-weight: 900;
}

.sec07-text .blue {
  color: #015DB2;
  font-size: 27px;
  font-weight: bolder;
}

.sec07-text-center {
  font-size: 20px;
  margin: 43px 0 0 40px;
}

.sec07-text-bottom {
  margin: 50px 0 0 90px;
  transform: translate(205px, 10px);
}

.sec07-text-bottom li::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  background-image: url(https://sakurasaku-dc.com/wp-content/uploads/2025/04/Vector\ 6.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}

.sec07-text-bottom li:last-child::before {
  opacity: 0;
} */

/* ------------------------------------------
新規追加分CSS 
------------------------------------------*/
.whitening-section {
  max-width: 1200px;
  margin: 40px auto;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  position: relative;
  background-color: #fff;
}

.whitening-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  width: calc(100% - 40px);
  height: 100%;
  border: 2px solid #777777;
  box-sizing: border-box;
  pointer-events: none;
  z-index: 1;
}

.whitening-image {
  flex: 1 1 45%;
  position: relative;
  z-index: 2;
  margin-left: -20px;
  /* display: flex; */
  align-items: center;
  justify-content: center;
}

.whitening-image img {
  width: 90%;
  height: auto;
  display: block;
  margin: 20px 0 0;
  max-width: 400px;
}

.whitening-content {
  flex: 1 1 55%;
  padding: 40px 30px;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.whitening-content h3 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: normal;
  line-height: 2;
  margin-bottom: 1em;
}

.whitening-content .txt01 {
  font-size: clamp(22px, 2.5vw, 26px);
  font-weight: 900;
}

.whitening-content .blue {
  color: #015DB2;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: bold;
}

.whitening-box {
  background: linear-gradient(to right, #e6e6e6 0%, #fdfdfd 100%);
  padding: 20px;
  margin-bottom: 1.5em;
  line-height: 1.7;
  width: 100%;
  border-radius: 6px;
  box-sizing: border-box;
}

.whitening-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 3;
}

.whitening-list li {
  margin-bottom: 10px;
  padding-left: 1.5em;
  text-indent: -1.5em;
  line-height: 1.8;
}

.whitening-list li::before {
  content: '✔';
  color: #888;
  margin-right: 8px;
}

.bg-deco-image {
  position: absolute;
  bottom: clamp(-100px, -18vw, -200px);
  right: clamp(10px, 3vw, 50px);
  width: clamp(180px, 80%, 100%);
  z-index: 1;
  pointer-events: none;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .whitening-section {
    flex-direction: column;
  }

  .whitening-section::before {
    left: 10px;
    width: calc(100% - 20px);
  }

  .whitening-image {
    display: flex;
    margin-left: 0;
    justify-content: center;
  }

  .whitening-content {
    padding: 20px;
  }
}

/* ------------------------------------------
新規追加分CSS ここまで
------------------------------------------*/
/* ボタンデザイン */
.sec07-Btn {
  overflow: hidden;
  /* padding: 15px; */
  border-radius: 0;
  background: #6b6b6b;
}

.sec07Btn {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 20px;
  text-align: center;
  /* position: absolute;
  top: 118%;
  left: 18%; */
}

.sec07Btn a {
  color: #fff;
}

.sec07-Btn span {
  position: relative;
}

.sec07-Btn:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  -webkit-transform: translateX(-96%);
  transform: translateX(-96%);
  background: #7FD5E7;
}

.sec07-Btn:hover:before {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}

.s7Btn {
  font-size: 20px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding: 15px 40px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  color: #fff;
  border: 1px solid #000;
}

.Btnarrow01::after {
  content: '';
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 42%;
  right: 13px;
  /*矢印の形状*/
  width: 5px;
  height: 5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  /*アニメーションの指定*/
  transition: all .3s;
}

/*hoverした際の移動*/
.Btnarrow01:hover::after {
  right: 11px;
}

/*------------------------------------
----------------ピックアップ診療------------------*/
.sec08 {
  width: 100%;
  height: auto;
  /*   margin: 400px auto 180px auto; */
}

.sec08-h2 {
  width: 100%;
  height: auto;
  margin: 0 auto;
  text-align: center;
}

.sec08-h2 h2 {
  padding-top: 16px;
  font-size: 32px;
  text-align: center;
}

.h2-span {
  font-size: 16px;
  color: #7FD5E7;
}

.sec08-h3 {
  width: 15%;
  margin: 70px auto 0 auto;
  padding-bottom: 15px;
  font-size: 20px;
  text-align: center;
  border-bottom: 1px solid #000;
}

.whitening {
  width: 100%;
  height: 900px;
  position: relative;
}

.sec08-flex01 {
  width: 100%;
  height: 600px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 60px;
}

.whitening::before {
  content: '';
  width: calc(100% - 100px);
  /* width: 100%; */
  height: 495px;
  background: #6b6b6b;
  /* background-image: linear-gradient(90deg, rgba(107, 107, 107, 1), rgba(228, 228, 228, 1) 43%, rgba(255, 255, 255, 1)); */
  position: absolute;
  top: 19%;
  left: 0;
  z-index: -1;
}

.sec08-box {
  max-width: 400px;
  width: 26%;
  height: 470px;
  margin-top: 80px;
  background: #fff;
  box-shadow: 0px 0px 15px -5px #777777;
}

.sec08-box h4 {
  font-size: 18px;
  font-weight: 900;
  max-width: 400px;
  padding: 10px;
  background-color: #6b6b6b;
  color: #fff;
  /* text-align: center; */
}

.sec08-p2 {
  padding: 20px;
}

.sec08-p {
  padding: 35px 20px 20px 20px !important;
}

/* セラミック治療 */
.ceramic {
  width: 100%;
  height: 900px;
  position: relative;
}

.sec08-flex02 {
  width: 100%;
  height: 600px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 60px;
}

.ceramic::before {
  content: '';
  width: calc(100% - 100px);
  /* width: 100%; */
  height: 495px;
  background: #6b6b6b;
  /* background-image: linear-gradient(90deg, rgba(107, 107, 107, 1), rgba(228, 228, 228, 1) 43%, rgba(255, 255, 255, 1)); */
  position: absolute;
  top: 19%;
  right: 0;
  z-index: -1;
}

.sec08-box02 {
  max-width: 400px;
  width: 26%;
  height: 470px;
  margin-top: 80px;
  background: #fff;
  box-shadow: 0px 0px 15px -5px #777777;
}

.sec08-box02 h4 {
  font-size: 18px;
  font-weight: 900;
  max-width: 400px;
  padding: 10px;
  background-color: #6b6b6b;
  color: #fff;
  /* text-align: center; */
}

.sec08-p3 {
  padding: 16px;
}

.sec08-p4 {
  padding: 16px;
}

/* ボタンデザイン */
.sec08-Btn {
  overflow: hidden;
  padding: 15px;
  border-radius: 0;
  background: #fff;
}

.sec08Btn {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  margin-top: 100px;
}

.sec08Btn a {
  color: #6b6b6b;
}

.sec08-Btn span {
  position: relative;
}

.sec08-Btn:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  -webkit-transform: translateX(-96%);
  transform: translateX(-96%);
  background: #7FD5E7;
}

.sec08-Btn:hover:before {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}

.s8Btn {
  font-size: 18px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding: 15px 90px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  /* color: #fff; */
  border: 1px solid #000;
}

.Btnarrow::after {
  content: '';
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 42%;
  right: 13px;
  /*矢印の形状*/
  width: 5px;
  height: 5px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(45deg);
  /*アニメーションの指定*/
  transition: all .3s;
}

/*hoverした際の移動*/
.Btnarrow:hover::after {
  right: 11px;
}


/*------------------------------------
----------------お支払い方法------------------*/
.sec09 {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.sec09-h2 {
  width: 100%;
  height: auto;
  margin: 0 auto;
  text-align: center;
}

.sec09-h2 h2 {
  padding-top: 16px;
  font-size: 32px;
  text-align: center;
}

.h2-span {
  font-size: 16px;
  color: #7FD5E7;
}

.sec09-flex {
  width: 75%;
  margin-top: 20px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  justify-content: center;
}

.sec09Box {
  width: 25%;
}

.sec09Box p {
  text-align: center;
}

.sec09-text {
  text-align: center;
  margin-top: 50px;
}

/*------------------------------------
----------------さくらさくデンタルクリニックについて------------------*/
.sec10 {
  width: 100%;
  height: auto;
  margin: 200px auto 100px auto;
}

.sec10Box {
  width: 100%;
  /* height: 800px; */
  background-image: url(https://sakurasaku-dc.com/wp-content/uploads/2025/06/螟冶ｦｳ_01-1-scaled.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 20px;
}

.sec10-h2 {
  width: 100%;
  height: auto;
  margin: 0 auto 50px auto;
  text-align: center;
}

.sec10-h2 h2 {
  padding-top: 80px;
  font-size: 32px;
  text-align: center;
  color: #fff;
}

.h2-span {
  font-size: 16px;
  color: #7FD5E7;
}

.sec10-flex {
  width: 75%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 1);
  padding: 30px 25px;
}


.info {
  width: 100%;
  padding: 35px 20px 20px 20px;
}

.info dl {
  width: 100%;
  display: flex;
  border-bottom: 1px solid #000;
}

.info dl dt {
  width: 25%;
  font-weight: bold;
}

.info dl dt,
dd {
  padding: 15px 0;
}


.table {
  margin: 20px 0 50px 0;
  text-align: center;
}

table {
  margin: 35px auto 20px auto;
  font-weight: bold;
}

table tr:first-child {
  border-bottom: 1px solid #000;
}

table tr:last-child {
  border-bottom: 1px solid #000;
}

table th {
  text-align: center;
  padding: 15px 40px 15px 25px;
}

table td {
  padding: 15px 30px 15px 0px;
  font-weight: 900;
}

.td01 {
  color: #7FD5E7;
}

/* ボタンデザイン */
.sec10-Btn {
  overflow: hidden;
  padding: 15px;
  border-radius: 0;
  background: #fff;
}

.sec10Btn {
  margin-top: 50px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  /* position: absolute;
  top: 118%;
  left: 18%; */
}

.sec10Btn a {
  color: #6b6b6b;
}

.sec10-Btn span {
  position: relative;
}

.sec10-Btn:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  -webkit-transform: translateX(-96%);
  transform: translateX(-96%);
  background: #7FD5E7;
}

.sec10-Btn:hover:before {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}

.s10Btn {
  font-size: 16px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding: 15px 90px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  /* color: #fff; */
  border: 1px solid #000;
}

.Btnarrow::after {
  content: '';
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 42%;
  right: 13px;
  /*矢印の形状*/
  width: 5px;
  height: 5px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(45deg);
  /*アニメーションの指定*/
  transition: all .3s;
}

/*hoverした際の移動*/
.Btnarrow:hover::after {
  right: 11px;
}

iframe {
  width: 100%;
}

@media screen and (max-width: 1080px) {
  .sec10-flex {
    width: 90%;
    margin: 0 auto;
    display: block;
    justify-content: center;
    gap: 30px;
    background: rgba(255, 255, 255, 1);
    padding: 30px 25px;
  }

  .info {
    width: 100%;
    padding: 35px 20px 20px 20px;
  }
}

/*------------------------------------
----------------お知らせ------------------*/
.sec11 {
  width: 100%;
  height: auto;
  margin: 50px auto 150px auto;
}

.sec11-h2 {
  width: 100%;
  height: auto;
  margin: 0 auto 50px auto;
  text-align: center;
}

.sec11-h2 h2 {
  padding-top: 80px;
  font-size: 32px;
  text-align: center;
}

.h2-span {
  font-size: 16px;
  color: #7FD5E7;
}

.news-itiran {
  width: 1000px;
  margin: 0 auto;
  padding: 50px 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

.news-itiran dl {
  width: 800px;
  margin: 0 auto;
  padding-left: 100px;
  display: flex;
  justify-content: flex-start;
  gap: 150px;
  border-bottom: 1px dotted #000;
}

.news-itiran dl dt,
.news-itiran dd {
  padding: 20px 40px;
}

.news-itiran dl dd a {
  text-decoration: none;
  color: #000;
}

/*------------------------------------
----------------フッター------------------*/
footer {
  width: 100%;
  height: auto;
}

.footer-top {
  width: 100%;
  height: 300px;
  background-image: url(https://sakurasaku-dc.com/wp-content/uploads/2025/06/險ｺ蟇溷ｮ､_07-1-scaled.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position-y: 83%;
}


.footer-top-flex {
  display: flex;
  justify-content: space-evenly;
}

.footerText {
  margin-top: 87px;
}

.footerText h3 {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
}

.footerText p {
  text-align: center;
  padding-top: 30px;
  color: #fff;
}

.f-img {
  margin-top: 61px;
}

.f-img02 {
  margin-top: 20px;
}

.footer-top-flex img {
  display: block;
  width: 400px;
  height: auto;
  transition-duration: .5s;
}

.footer-top-flex img:hover {
  transform: scale(1.1);
}

.footer-bottom {
  width: 100%;
  height: auto;
  background: linear-gradient(90deg, rgba(196, 196, 196, 1), rgba(249, 249, 249, 1) 56%, rgba(255, 255, 255, 1));
}

.footer-bottom-flex {
  display: flex;
  justify-content: center;
  gap: 215px;
}

.footer-info {
  width: 550px;
  height: auto;
  text-align: center;
}

.footer-info p {
  text-align: center;
}

.f-logo {
  width: 400px;
  height: auto;
  margin: 50px auto 20px auto;
  transition-duration: .5s;
}

.f-logo:hover {
  opacity: .5;
}

.f-b-img {
  margin: 40px 0 50px 0;
}

.f-b-img img {
  display: block;
  width: 250px;
  height: auto;
  margin: 20px auto;
  transition-duration: .5s;
}

.f-b-img img:hover {
  transform: scale(1.1);
}

.footer-menu-flex {
  display: flex;
  gap: 40px;
  margin-top: 145px;
}

.html {
  scroll-behavior: none;
}

* {
  box-sizing: border-box;
}

.footer-menu ul li {
  padding-top: 15px;
}

.footer-menu ul a {
  text-decoration: none;
  color: #000;
  transition-duration: .5s;
}

.footer-menu ul a:hover {
  text-decoration: underline #7FD5E7;
  opacity: .7;
}

small {
  display: block;
  margin-top: 110px;
}


/*------------------------------------
---------------タブレット------------------*/

@media screen and (max-width:768px) {
  html {
    scroll-behavior: none;
  }


  .body {
    max-width: 768px;
    min-width: 481px;
  }

  header,
  .sec01,
  .sec02,
  .sec03,
  .sec04,
  .sec05,
  .sec06,
  .sec07,
  .sec08,
  .sec09,
  .sec10,
  .sec11 footer {
    max-width: 100%;
  }

  * {
    box-sizing: border-box;
  }

  /*-------------サイドボタン-----------------------
---------------タブレット------------------*/
  #slideL {
    display: none;
  }

  .slide-inner p {
    background: #7FD5E7;
    border: solid 2px #fff;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    padding: 55px 22px;
  }

  .slide-inner {
    display: block;
  }

  .slide-inner img {
    width: 300px;
    height: auto;
    margin: 20px 0 0 10px;
  }

  .slide-top {
    margin-top: 50px;
  }

  /* ------------------------------------------------------
  ------------------下に固定------------------------------------ */
  .bottom {
    display: flex;
    justify-content: flex-start;
    width: 83%;
    gap: 0;
    height: auto;
    position: fixed;
    z-index: 150;
    bottom: 3px;
    left: 0;
  }

  .bottomBtn {
    display: block;
    text-align: center;
    width: 48%;
    height: auto;
    margin: 0 auto;
    padding: 19px 0;
    border: 2px solid #fff;
    outline: 3px solid #7FD5E7;
    background: #7FD5E7;
    transition-duration: 0.5s;
    line-height: 120%;
  }

  .bottomBtn a {
    text-decoration: none;
    font-size: 18px;
    color: #fff;
  }

  /*-------------タブレット-------------------
----------------ヘッダー------------------*/
  header {
    display: block;
  }

  .h_logo {
    margin: 10px 0 0 10px;
  }

  .h_logo img {
    width: 300px;
    margin-top: 5px;
  }

  .scroll-nav .h-logo {
    margin: 5px 0 0 15px !important;
  }

  /*------------------------------------
----------------ファーストビュー------------------*/
  .main {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .main img {
    width: 100%;
    height: auto;
  }

  /*-----------タブレット----------------
----------------バナー------------------*/
  .bunner {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    /* モバイルでは間隔狭めに */
    margin: 25px auto;
  }

  .bunner a {
    width: 90%;
    margin: 0 auto;
  }


  /*--------------------タブレット----------------
----------------当院が選ばれる理由------------------*/
  .sec02 {
    height: 826px;
  }

  .sec02::before {
    height: 630px;
  }

  .sec02-h2 h2 {
    margin-top: 50px;
    font-size: 24px;
    color: #fff;
    text-align: center;
  }

  .h2-span {
    font-size: 14px;
    color: #7FD5E7;
  }

  .sec02-flex {}

  .sec02-text {
    width: 80%;
    transform: translate(-10%, 5%);
  }

  .sec02-text ul {
    width: 100%;
    margin: 0 auto;
    border-bottom: 1px solid #fff;
  }

  .sec02-pic {
    top: 490px;
    width: 85%;
    height: 200px;
  }

  /*-------------タブレット-----------------------
----------------痛くない歯医者をお探しの方へ------------------*/
  .sec03 {
    margin: 200px auto 0 auto;
  }

  .sec03-h2 h2 {
    font-size: 24px;
  }

  .sec03-flexBox {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }

  .sec03-flex {
    display: block;
    height: 740px;
    margin: 0 auto;
  }

  .sec03-box01,
  .sec03-box02,
  .sec03-box03 {
    text-align: center;
    width: 100%;
    top: 60%;
    left: 0%;
    padding: 0 40px 30px 40px;
  }

  .sec03-img01,
  .sec03-img02,
  .sec03-img03 {
    position: static;
    width: 90%;
    margin: 0 auto;
  }

  .li-1 {
    padding-top: 45px;
  }

  .li-2 {
    padding: 30px;
    line-height: 1.8;
  }

  .border-bottom {
    border-bottom: 4px solid rgba(127, 213, 231, .5);
    font-weight: 600;
  }




  /*------------タブレット------------------------
----------------症例紹介------------------*/
  .sec04 {
    width: 100%;
    height: auto;
    margin: 0 auto 140px auto;
  }

  .sec04-h2 {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .sec04-h2 h2 {
    padding-top: 16px;
    font-size: 24px;
    text-align: center;
  }

  .sec04-h2 .h2-span {
    text-align: center;
    display: block;
  }

  .sec04-h3 h3 {
    font-size: 18px;
    text-align: center;
    margin: 50px 0;
  }

  .caseBox {
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 45px 0px;
  }

  .case01 {
    width: 45%;
    height: 500px;
    text-align: center;
    background: rgba(255, 255, 255, .8);
    /* margin: 47px 34px 0 50px; */
    margin: 0 auto;
    box-shadow: 0px 0px 20px -5px #7d7d7d;
  }

  .case01 h3 {
    text-align: center;
    margin-top: 30px;
  }

  .case01 p {
    text-align: center;
  }

  .case01 img {
    width: 90%;
    height: 150px;
  }

  .img01,
  .img02 {
    text-align: center;
  }

  .img01 {
    text-align: center;
    position: relative;
    margin-top: 30px;
  }

  .img01 p {
    position: absolute;
    top: 2px;
    left: 39px;
    font-size: 25px;
  }

  .img02 {
    text-align: center;
    position: relative;
  }

  .img02 p {
    position: absolute;
    top: 2px;
    left: 39px;
    font-size: 25px;
  }

  /*------------タブレット------------------------
----------------院長紹介------------------*/
  .sec05 {
    width: 100%;
    height: 1030px;
    margin: 0 auto;
    position: relative;
    /* background: linear-gradient(90deg, rgba(196, 196, 196, 1), rgba(249, 249, 249, 1) 56%, rgba(255, 255, 255, 1)); */
  }

  .sec05::before {
    content: '';
    width: calc(100% - 95px);
    /* width: 100%; */
    height: 900px;
    background: #6b6b6b;
    position: absolute;
    left: 0;
    z-index: -1;
  }

  .sec05-h2 {
    width: 100%;
    text-align: center;
  }

  .sec05-h2 h2 {
    font-size: 24px;
    text-align: center;
    color: #fff;
  }

  .h2-span {
    font-size: 14px;
    color: #7FD5E7;
  }

  .sec05-flex {
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    gap: 0;
  }

  .sec05-text {
    position: absolute;
    top: 6%;
    left: 2%;
    /* min-width: 338px; */
    width: 80%;
    /* background-color: #fff; */
    padding: 0px 25px 100px 20px;
    color: #fff;
  }

  .sec05-text h3 {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    border-bottom: 2px solid #fff;
    padding: 20px 0 10px 0;
    color: #fff;
  }

  .sec05-text br {
    display: none;
  }

  .ja {
    font-size: 16px;
    margin-left: 20px;
    color: #fff;
  }

  .en {
    font-size: 14px;
    color: #7FD5E7;
    margin-left: 20px;
  }

  .sec05-p {
    padding-top: 40px !important;
  }

  .sec05-text p {
    padding: 10px 0;
  }

  .sec05-span {
    font-size: 20px;
    font-weight: bold;
    color: #7FD5E7;
  }

  .sec05-pic {
    position: absolute;
    top: 70%;
    right: 0;
    width: 40%;
    min-width: 400px;
    height: auto;
  }

  /* ボタンデザイン */
  .sec05-Btn {
    overflow: hidden;
    padding: 10px;
    border-radius: 0;
    background: #fff;
  }

  .sec05Btn {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    left: 10%;
  }

  .sec05-Btn span {
    position: relative;
  }

  .sec05-Btn:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    -webkit-transform: translateX(-96%);
    transform: translateX(-96%);
    background: #7FD5E7;
  }

  .sec05-Btn:hover:before {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  .s5Btn {
    font-size: 16px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding: 15px 90px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    /* color: #fff; */
    border: 1px solid #000;
  }

  Btnarrow::after {
    content: '';
    /*絶対配置で矢印の位置を決める*/
    position: absolute;
    top: 42%;
    right: 13px;
    /*矢印の形状*/
    width: 5px;
    height: 5px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    /*アニメーションの指定*/
    transition: all .3s;
  }

  /*hoverした際の移動*/
  .Btnarrow01:hover::after {
    right: 11px;
  }

  /*-----------タブレット-------------------------
----------------診療メニュー------------------*/
  .sec06 {
    height: auto;
  }

  .sec06-h2 h2 {
    font-size: 24px;
  }

  /*----------タブレット--------------------------
----------------当院はホワイトエッセンス加盟院です------------------*/
  .sec07 {
    width: 100%;
    /* height: 600px; */
    margin: 0 auto;
    position: relative;
    z-index: 5;
  }

  .sec07-h2 h2 {
    font-size: 24px;
  }

  .sec07-flex::before {
    height: 200px;
    top: 33%;
  }

  .sec07-pic {
    left: 4%;
  }

  .sec07-flex {
    display: block;
    height: 865px;
    background-position: 30% 93%;
    background-size: 639px auto;
  }

  .sec07-text h3 {
    font-size: 18px;
  }

  .sec07-text {
    top: 17%;
    left: 37%;
  }

  .sec07-text .txt01 {
    font-size: 22px;
  }

  .sec07-text-center {
    font-size: 16px;
    margin: 30px 0 0 30px;
  }

  .sec07-text-bottom {
    margin: 30px 0 0 75px;
  }

  .sec07Btn {
    top: 122%;
    left: 12%;
  }

  .s7Btn {
    font-size: 18px;
  }

  /*--------------タブレット----------------------
----------------ピックアップ診療------------------*/
  /* .sec08 {
  margin: 340px auto 0px auto;
} */
  .sec08-h2 {
    margin-top: 68px;
  }

  .sec08-h2 h2 {
    font-size: 24px;
  }

  .sec08-h3 {
    width: 40%;
    margin: 59px auto 0 auto;
    font-size: 18px;
  }

  .whitening {
    height: 1950px;
  }

  .whitening::before {
    content: '';
    width: calc(100% - 80px);
    height: 1431px;
    background: #6b6b6b;
    top: 10%;
  }

  .sec08-flex01,
  .sec08-flex02 {
    display: block;
  }

  .sec08-box,
  .sec08-box02 {
    width: 100%;
    margin: 80px auto 0 auto;
  }

  .sec08Btn01 {
    position: absolute;
    bottom: 7%;
    left: 23%;
  }

  .s8Btn {
    font-size: 16px;
  }

  .ceramic {
    height: 1950px;
  }

  .ceramic::before {
    content: '';
    width: calc(100% - 80px);
    /* width: 100%; */
    height: 1431px;
    background: #6b6b6b;
    top: 10%;
  }

  /*----------タブレット--------------------------
----------------お支払い方法------------------*/
  .sec09 {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .sec09-h2 {
    width: 100%;
    height: auto;
    margin: 0 auto;
    text-align: center;
  }

  .sec09-h2 h2 {
    padding-top: 16px;
    font-size: 24px;
    text-align: center;
  }

  .h2-span {
    font-size: 14px;
    color: #7FD5E7;
  }

  .sec09-flex {
    width: 100%;
    margin-top: 20px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    justify-content: center;
  }

  .sec09Box {
    width: 25%;
  }

  .sec09Box p {
    text-align: center;
  }

  .sec09-text {
    text-align: center;
    margin-top: 50px;
  }


  /*------------タブレット------------------------
----------------さくらさくデンタルクリニックについて------------------*/
  .sec10 {
    width: 100%;
    height: auto;
    margin: 135px auto 50px auto;
  }

  .sec10Box {
    width: 100%;
    /* height: 1200px; */
    background-image: url(https://sakurasaku-dc.com/wp-content/uploads/2025/04/sec10-img.png);
    background-repeat: no-repeat;
    background-size: cover;
  }

  .sec10-h2 {
    width: 100%;
    height: auto;
    margin: 0 auto 50px auto;
    text-align: center;
  }

  .sec10-h2 h2 {
    padding-top: 80px;
    font-size: 24px;
    text-align: center;
    color: #fff;
  }

  .h2-span {
    font-size: 14px;
    color: #7FD5E7;
  }

  .sec10-flex {
    width: 90%;
    margin: 0 auto;
    display: block;
    justify-content: center;
    gap: 0;
    background: rgba(255, 255, 255, 1);
    padding: 30px 25px;
  }

  .info {
    width: 90%;
    margin: 0 auto;
    padding: 35px 20px 20px 20px;
  }

  .info dl {
    width: 100%;
    display: flex;
    border-bottom: 1px solid #000;
  }

  .info dl dt {
    width: 25%;
    font-weight: bold;
  }

  .info dl dt,
  dd {
    padding: 15px 0;
  }

  .table {
    width: 100%;
    margin: 20px auto 50px auto;
    text-align: center;
  }

  table {
    margin: 35px auto 20px auto;
    font-weight: bold;
  }

  table tr:first-child {
    border-bottom: 1px solid #000;
  }

  table tr:last-child {
    border-bottom: 1px solid #000;
  }

  table th {
    text-align: center;
    padding: 10px 25px 10px 5px;
  }

  table td {
    padding: 15px 30px 15px 0px;
    font-weight: 900;
  }

  .td01 {
    color: #7FD5E7;
  }

  .table p {
    text-align: center;
  }


  /* ボタンデザイン */
  .sec10-Btn {
    overflow: hidden;
    padding: 15px;
    border-radius: 0;
    background: #fff;
  }

  .sec10Btn {
    margin-top: 50px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    /* position: absolute;
  top: 118%;
  left: 18%; */
  }

/*   .sec10Btn a {
    color: #000;
  } */

  .sec10-Btn span {
    position: relative;
  }

  .sec10-Btn:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    -webkit-transform: translateX(-96%);
    transform: translateX(-96%);
    background: #7FD5E7;
  }

  .sec10-Btn:hover:before {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  .s10Btn {
    font-size: 16px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding: 15px 90px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    /* color: #fff; */
    border: 1px solid #000;
  }

  .Btnarrow::after {
    content: '';
    /*絶対配置で矢印の位置を決める*/
    position: absolute;
    top: 42%;
    right: 13px;
    /*矢印の形状*/
    width: 5px;
    height: 5px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(45deg);
    /*アニメーションの指定*/
    transition: all .3s;
  }

  /*hoverした際の移動*/
  .Btnarrow:hover::after {
    right: 11px;
  }

  iframe {
    width: 100%;
    height: 300px;
  }

  /*---------------タブレット---------------------
----------------お知らせ------------------*/
  .sec11 {
    width: 100%;
    height: auto;
    margin: 50px auto 150px auto;
  }

  .sec11-h2 {
    width: 100%;
    height: auto;
    margin: 0 auto 50px auto;
    text-align: center;
  }

  .sec11-h2 h2 {
    padding-top: 80px;
    font-size: 24px;
    text-align: center;
  }

  .h2-span {
    font-size: 14px;
    color: #7FD5E7;
  }

  .news-itiran {
    width: 90%;
    margin: 0 auto;
    padding: 50px 0;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
  }

  .news-itiran dl {
    width: 100%;
    margin: 0 auto;
    padding-left: 0px;
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    border-bottom: 1px dotted #000;
  }

  .news-itiran dl dt,
  .news-itiran dd {
    padding: 20px 40px;
  }

  .news-itiran dl dd a {
    text-decoration: none;
    color: #000;
  }

  /*------------タブレット------------------------
----------------フッター------------------*/
  footer {
    width: 100%;
    height: auto;
    padding-bottom: 40px;
  }

  .footer-top {
    width: 100%;
    height: auto;
    background-image: url(https://sakurasaku-dc.com/wp-content/uploads/2025/06/螟冶ｦｳ_01-4-scaled.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: 83%;
  }

  .footer-top-flex {
    margin: 0 auto;
    display: block;
    justify-content: space-evenly;
  }

  .footerText {
    margin-top: 0;
    padding-top: 70px;
  }

  .footerText h3 {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
  }

  .footerText p {
    text-align: center;
    padding-top: 30px;
    color: #fff;
  }

  .f-img {
    display: flex;
    flex-direction: column;
    /* 縦方向に並べる */
    align-items: center;
    /* 中央寄せ */
    list-style: none;
    padding: 0;
    margin: 0 auto;
    gap: 10px;
    /* 画像の間に少しスペース（お好みで） */
  }

  .f-img01 {
    margin-top: 30px;
  }

  .f-img02 {
    margin-top: 20px;
    margin-bottom: 60px;
  }

  .footer-top-flex img {
    display: block;
    width: 400px;
    height: auto;
    transition-duration: .5s;
  }

  .footer-bottom {
    width: 100%;
    height: auto;
    background: linear-gradient(90deg, rgba(196, 196, 196, 1), rgba(249, 249, 249, 1) 56%, rgba(255, 255, 255, 1));
  }

  .footer-bottom-flex {
    display: block;
    justify-content: center;
    gap: 0;
  }

  .footer-info {
    width: 100%;
    height: auto;
    text-align: center;
  }

  .footer-info p {
    text-align: center;
  }

  .f-logo {
    width: 360px;
    height: auto;
    margin: 50px auto 20px auto;
    transition-duration: .5s;
  }

  .f-logo:hover {
    opacity: .5;
  }

  .f-b-img {
    margin: 40px 0 50px 0;
  }

  .f-b-img img {
    display: block;
    width: 250px;
    height: auto;
    margin: 20px auto;
    transition-duration: .5s;
  }

  .f-b-img img:hover {
    transform: scale(1.1);
  }

  .footer-menu-flex {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-top: 70px;
  }

  .footer-menu ul li {
    padding-top: 15px;
  }

  .footer-menu ul a {
    text-decoration: none;
    color: #000;
    transition-duration: .5s;
  }

  .footer-menu ul a:hover {
    text-decoration: underline #7FD5E7;
    opacity: .7;
  }

  small {
    display: block;
    margin-top: 90px;
    padding-bottom: 60px;
    text-align: center;
  }

  .html {
    scroll-behavior: none;
  }

  * {
    box-sizing: border-box;
  }
}

/*------------------------------------
---------------スマホ------------------*/

@media screen and (max-width:480px) {
  html {
    scroll-behavior: none;
  }

  .body {
    max-width: 450px;
    min-width: 290px;
  }

  header,
  .sec01,
  .sec02,
  .sec03,
  .sec04,
  .sec05,
  .sec06,
  .sec07,
  .sec08,
  .sec09,
  .sec10,
  .sec11 footer {
    max-width: 100%;
  }

  * {
    box-sizing: border-box;
  }

  .h2-span {
    font-size: 12px;
  }

  /*-----------スマホ----------------
----------------ヘッダー------------------*/
  header {
    height: 95px;
  }

  .h1 {
    font-size: 10px !important;
  }

  .h_logo img {
    width: 230px;
    margin-top: 3px;
  }

  .scroll-nav {
    height: 90px !important;
  }

  .scroll-nav .h2 {
    display: none;
  }

  .scroll-nav .h_logo {
    width: 230px;
    margin: 5px 0 0 15px;
  }

  .hamburger-btn {
    top: 6px;
    right: 8px;
    width: 100px;
    height: 70px;
  }

  .hamburger-btn span {
    left: 22px;
    width: 60px;
    height: 5px;
  }

  /* 通常時の線の位置 */
  .hamburger-btn span:nth-child(1) {
    top: 20px;
    /* ← 上の線 */
  }

  .hamburger-btn span:nth-child(2) {
    top: 37px;
    /* ← 中央の線 */
  }

  .hamburger-btn span:nth-child(3) {
    top: 55px;
    /* ← 下の線 */
  }

  .pagetop {
    height: 60px;
    width: 60px;

  }

  .bottomBtn {
    display: block;
    text-align: center;
    width: 47%;
    height: auto;
    margin: 0 auto;
    padding: 14px 0;
    border: 2px solid #fff;
    outline: 3px solid #7FD5E7;
    background: #7FD5E7;
    transition-duration: 0.5s;
    line-height: 120%;
  }

  /*-----------スマホ----------------
----------------バナー------------------*/
  .bunner {
    gap: 30px;
    /* バナー同士の間隔 */
    margin-top: 50px;
  }

  .bunner img {
    max-width: 100%;
  }

  /*-----------スマホ----------------
----------------当院の特徴------------------*/
  .sec01-h2 {
    font-size: 20px;
  }

  .mobile-br {
    display: block;
  }

  /*-----------スマホ----------------
----------------当院が選ばれる理由------------------*/
  .sec02 {
    padding: 10px 0;
    height: 750px;
  }

  .sec02::before {
    content: '';
    width: 100%;
    height: 620px;

  }

  .sec02-h2 {
    font-size: 20px;
  }

  .sec02-text {
    width: 100%;
    /* transform: translate(6%, 8%); */
    margin: 0 auto;
    transform: none;
  }

  .sec02-pic {
    top: 605px;
    width: 90%;
  }

  /*-----------スマホ----------------
----------------痛くない歯医者をお探しの方へ------------------*/
  .sec03 {
    margin: 200px auto 20px auto;
  }

  .sec03-h2 {
    margin: 200px auto 40px auto;
  }

  .sec03-h2 h2 {
    font-size: 20px;
  }

  .sec03-flexBox {
    height: auto;
  }

  .sec03-flex {
    height: 450px;
  }

  .sec03-img01,
  .sec03-img02,
  .sec03-img03 {
    position: static;
    width: 90%;
    margin: 0 auto;
    height: 180px;
  }

  .sec03-img01 img,
  .sec03-img02 img,
  .sec03-img03 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0px 0px 5px 1px #888;
  }

  .sec03-box01 {
    text-align: center;
    width: 100%;
    top: 45%;
    left: 0%;
    padding: 0 10px 0 10px;
  }

  .sec03-box02 {
    text-align: center;
    width: 100%;
    top: 46%;
    left: 0%;
    padding: 0 10px 0 10px;
  }

  .sec03-box03 {
    text-align: center;
    width: 100%;
    top: 46%;
    left: 0%;
    padding: 0 10px 0 10px;
  }

  .magin-top100 {
    margin-top: 70px;
  }

  .li-1 {
    font-size: 18px;
    padding: 20px 0 10px 0;
  }

  .li-2 {
    padding: 15px;
    line-height: 1.7;
  }

  .border-bottom {
    border-bottom: 4px solid rgba(127, 213, 231, .5);
    font-weight: 600;
  }

  /*------------スマホ------------------------
----------------症例紹介------------------*/
  .sec04 {
    width: 100%;
    height: auto;
    margin: 0 auto 110px auto;
  }

  .sec04-h2 h2 {
    font-size: 20px;
  }

  .sec04-h3 h3 {
    font-size: 18px;
    margin: 30px 0;
  }

  .case01 {
    width: 90%;
    height: 450px;
  }

  .img01 p {
    left: 30px;
    font-size: 18px;
  }

  .img02 p {
    left: 30px;
    font-size: 18px;
  }

  .case01 img {
    height: 130px;
  }

  /*------------スマホ------------------------
----------------院長紹介------------------*/
  .sec05::before {
    content: '';
    width: calc(100% - 25px);
    height: 950px;
  }

  .sec05-h2 h2 {
    font-size: 20px;
  }

  .sec05-text {
    width: 95%;
    padding: 0px 23px 100px 0px;
  }

  .sec05-span {
    font-size: 17px;
  }

  .sec05-pic {
    top: 76%;
    min-width: 320px;
  }

  .sec05Btn {
    bottom: 3%;
    left: 7%;
  }

  .s5Btn {
    font-size: 16px;
    padding: 10px 60px;
  }

  /*-----------スマホ-------------------------
----------------診療メニュー------------------*/
  .sec06 {
    height: 710px;
  }

  .sec06-h2 h2 {
    font-size: 20px;
  }

  .menuBox {
    width: 90%;
    gap: 25px 5%;
    padding: 30px 5px;
  }

  .menu-item {
    /* width: calc(50% - 45px);
  margin-top: 40px; */
  }

  /*-----------スマホ-------------------------
----------------ホワイトエッセンス加盟院------------------*/
  .sec07-h2 h2 {
    font-size: 20px;
  }

  .s7Btn {
    font-size: 16px;
  }

  /*-----------スマホ-------------------------
----------------ピックアップ診療------------------*/
  .sec08-h2 h2 {
    font-size: 20px;
  }

  .sec08-h3 {
    width: 40%;
    margin: 35px auto 0 auto;
    padding-bottom: 10px;
    font-size: 17px;
  }

  .sec08-box,
  .sec08-box02 {
    width: 90%;
    margin: 50px auto 0 auto;
  }

  .whitening {
    height: 1780px;
  }

  .whitening::before {
    width: calc(100% - 50px);
  }

  .sec08Btn01 {
    position: absolute;
    bottom: 4%;
    left: 10%;
  }

  .s8Btn {
    font-size: 16px;
    padding: 10px 40px;
  }

  .ceramic {
    height: 1780px;
  }

  .ceramic::before {
    content: '';
    width: calc(100% - 50px);
  }

  /*-----------スマホ-------------------------
----------------お支払方法-----------------*/
  .sec09-h2 h2 {
    font-size: 20px;
  }

  .sec09-flex {
    gap: 20px;
  }

  .sec09Box {
    width: 30%;
  }

  .sec09Box p {
    font-size: 14px;
  }

  .sec09-text {
    margin-top: 30px;
  }

  /*-----------スマホ-------------------------
--------さくらさくデンタルクリニックについて-----------------*/
  .sec10 {
    margin: 75px auto 25px auto;
  }

  .sec10-h2 h2 {
    padding-top: 65px;
    font-size: 20px;
  }

  .sec10-h2 {
    margin: 0px auto 30px auto;
  }

  .sec10Box {
    width: 100%;
    /* height: 865px; */
  }

  .sec10-flex {
    width: 90%;
    padding: 0;
  }

  .table {
    padding-bottom: 20px;
  }

  .info {
    font-size: 14px;
    width: 100%;
    padding: 10px;
  }

  table th {
    font-size: 14px;
    text-align: center;
    padding: 10px 10px 10px 5px;
  }

  table td {
    font-size: 13px;
    padding: 10px 15px 10px 0px;
    font-weight: 900;
  }

  .table p {
    font-size: 14pxx;
  }


  .sec10Btn {
    margin-top: 35px;
  }

  .s10Btn {
    font-size: 16px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding: 10px 50px;
  }

  iframe {
    height: 200px;
  }

  /*-----------スマホ-------------------------
--------お知らせ-----------------*/
  .sec11 {
    width: 100%;
    height: auto;
    margin: 0px auto 95px auto;
  }

  .sec11-h2 {
    margin: 0 auto 30px auto;
  }

  .sec11-h2 h2 {
    padding-top: 40px;
    font-size: 20px;
  }

  .news-itiran {
    padding: 20px 0px 35px 0;
    font-size: 15px;
  }

  .news-itiran dl dt,
  .news-itiran dd {
    padding: 15px 10px;
  }

  /*-----------スマホ-------------------------
--------フッター-----------------*/
  .footerText {
    margin-top: 0;
    padding-top: 50px;
  }

  .footerText h3 {
    text-align: center;
    font-size: 18px;
  }

  .footerText p {
    font-size: 15px;
  }

  .f-img {
    width: 90%;
  }

  .f-logo {
    width: 250px;
    margin: 35px auto 20px auto;
  }

  .footer-info p {
    font-size: 15px;
    padding: 0 10px;
  }

  .footer-menu-flex {
    gap: 60px;
  }


}