@charset "UTF-8";
/* Scss Document */
/* CSS Document */
:root {
  --text-color: #333;
  /*メイン色*/
  --main-color: #b69358;
  /*サブ色*/
  --sub-color: #8dc21f;
  /*サイドメニュー・レイアウト類の背景色*/
  --bg-color: #f5f5f5;
  /*境界線色*/
  --border-color: #eee5d7;
  /*ボタンなどの色*/
  --btn-color: #000;
}

@media (min-width: 641px) and (max-width: 1024px) {
  body,
  .nav_wrap.fixed,
  .mainvisual_wrap,
  #mainvisual,
  header,
  footer {
    min-width: 1300px;
  }
  .tgl_menu_list ul li.nav_mega_menu .mega_menu_wrap {
    width: 1300px;
  }
}
@media screen and (max-width: 640px) {
  body {
    font-size: 14px;
  }
  body,
  .nav_wrap.fixed,
  #mainvisual .inner,
  header,
  footer {
    min-width: 100%;
  }
  /* ナビ展開時スクロール禁止処理 */
  body.nav-open {
    overflow: hidden !important;
  }
  /*============================================================================

    header

  ============================================================================*/
  header {
    display: none;
  }
  /*============================================================================

    nav

  ============================================================================*/
  .nav_wrap {
    position: fixed;
    top: 0;
    left: 0;
    /*z-index: 10000;*/
	  z-index: 99999;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background: #fff;
  }
	.nav_wrap.fixed {
		z-index: 99999;
	}
  .nav_wrap .header_logo {
    text-align: center;
    /*width: calc(100% - 111px);*/
    width: calc(100% - 166px);
  }
  .nav_wrap .header_logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 55px;
    padding: 5px;
  }
  .nav_wrap .header_logo img {
    width: auto;
    height: auto;
    max-height: 45px;
  }
	/*.btn_head_insta {
		display: flex;
		width: 55px;
		z-index: 10000;
	}
  .btn_head_insta a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column wrap;
    text-align: center;
    background: var(--main-color);
    height: 100%;
  }
  .btn_head_insta i {
    display: block;
    color: #fff;
    font-size: 24px;
  }
  .btn_head_insta span {
    color: #fff;
    font-size: 11px;
  }*/
  
  /* 美しい笑顔 */
  .btn_head_ceramic {
		display: flex;
		width: 55px;
		z-index: 10000;
	}
  .btn_head_ceramic a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column wrap;
    text-align: center;
    background: var(--main-color);
    height: 100%;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    line-height: 1.3;
  }
  .btn_head_ceramic i {
    display: block;
    color: #fff;
    font-size: 24px;
  }
  /*.btn_head_ceramic span {
    color: #fff;
    font-size: 11px;
    font-weight: bold;
  }*/
  .btn_head_ceramic span img {
    color: #fff;
    width: 18px;
    height: 18px;
  }
  /* 噛む力を取り戻す */
  .btn_head_implant {
		display: flex;
		width: 55px;
		z-index: 10000;
	}
  .btn_head_implant a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column wrap;
    text-align: center;
    background: var(--sub-color);
    height: 100%;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    line-height: 1.3;
  }
  .btn_head_implant i {
    display: block;
    color: #fff;
    font-size: 24px;
  }
  /*.btn_head_implant span {
    color: #fff;
    font-size: 11px;
    font-weight: bold;
  }*/
  .btn_head_implant span img {
    color: #fff;
    width: 18px;
    height: 18px;
  }
  
  /* ハンバーガーボタン */
  .btn_tgl_menu {
    position: relative;
    right: 0;
    color: #fff;
    width: 55px;
    background: var(--text-color);
    border: none;
    padding: 0;
    margin: 0;
    text-align: center;
    transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .btn_tgl_menu i {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5px;
    margin: auto;
    font-style: normal;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.1em;
  }
  .btn_tgl_menu span {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    width: 35px;
    height: 2px;
    background: #fff;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 1;
  }
  .btn_tgl_menu span:nth-of-type(1) {
    top: 10px;
  }
  .btn_tgl_menu span:nth-of-type(2) {
    top: 20px;
  }
  .btn_tgl_menu span:nth-of-type(3) {
    top: 30px;
  }
  /* MENUボタン押下時 */
  .btn_tgl_menu.active {
    right: 16.25rem;
  }
  .btn_tgl_menu.active span:nth-of-type(1) {
    top: 20px;
    -webkit-transform: rotate(225deg);
            transform: rotate(225deg);
  }
  .btn_tgl_menu.active span:nth-of-type(2) {
    opacity: 0;
  }
  .btn_tgl_menu.active span:nth-of-type(3) {
    top: 20px;
    -webkit-transform: rotate(-225deg);
            transform: rotate(-225deg);
  }
  /* ドロップダウンメニュー */
  .tgl_menu_list {
    position: fixed;
    top: 0;
    right: 0;
    right: -16.25rem;
    /*z-index: 2;*/
	  z-index: 99999;
    overflow: hidden;
    width: 16.25rem;
    height: 100%;
    transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    background: var(--text-color);
    padding: 15px;
  }
  .tgl_menu_list ul {
    flex-flow: column wrap;
  }
  .tgl_menu_list ul li {
    margin-left: 0;
    display: block;
    border-bottom: 1px solid #fff;
    width: 100%;
  }
  .tgl_menu_list ul li:first-child {
    border-top: 1px solid #fff;
  }
  .tgl_menu_list ul li::after {
    display: none;
  }
  .tgl_menu_list ul li a,
  .tgl_menu_list ul li p {
    font-size: 15px;
    display: block;
    text-align: left;
    padding: 15px 10px;
    width: auto;
    color: #fff;
    font-weight: normal;
  }
  .tgl_menu_list ul li a::after,
  .tgl_menu_list ul li p::after {
    display: none;
  }
  .tgl_menu_list ul li a span,
  .tgl_menu_list ul li p span {
    display: none;
  }
  .tgl_menu_list ul li a:hover {
    color: #fff;
  }
  body.nav-open .tgl_menu_list {
    overflow-y: scroll;
    right: 0;
  }
  /* ------- スライドメニュー シングル------- */
  .tgl_menu_list .nav_single_menu div {
    position: static;
    opacity: 1;
    visibility: visible;
    width: 100%;
    padding-bottom: 10px;
    box-shadow: none;
  }
  .tgl_menu_list .nav_single_menu div a {
    margin-left: 15px;
    background: none;
    padding: 3px;
    line-height: 2;
    text-indent: -1.2em;
    padding-left: 1.2em;
    border-bottom: none;
  }
  .tgl_menu_list .nav_single_menu div a::before {
    position: static;
    display: inline;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f105";
    margin-right: 10px;
  }
  .tgl_menu_list .nav_single_menu div a i.nav_arrow {
    display: none;
  }
  .tgl_menu_list .nav_single_menu div a:hover {
    color: #fff;
    background: none;
  }
  /* ------- スライドメニュー メガ------- */
  .tgl_menu_list .nav_mega_menu {
    position: relative;
  }
  .tgl_menu_list .nav_mega_menu p::before {
    position: absolute;
    display: flex;
    align-items: center;
    width: auto;
    height: auto;
    border: none;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f067";
  }
  .tgl_menu_list .nav_mega_menu .mega_menu_wrap {
    display: none;
    position: static;
    opacity: 0;
    visibility: hidden;
    background: none;
    box-shadow: none;
    transition: height 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .tgl_menu_list .nav_mega_menu.active .mega_menu_wrap {
    opacity: 1;
    visibility: visible;
  }
  .tgl_menu_list .mega_menu_inner {
    display: block;
    padding: 0 0 10px 0;
    width: 100%;
  }
  .tgl_menu_list .mega_menu_top a {
    padding: 12px 12px 12px 0;
  }
  .tgl_menu_list .mega_menu_top a::before {
    position: static;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f105";
    border: none;
    margin-right: 10px;
  }
  .tgl_menu_list .menu_list {
    margin-left: 0;
  }
  .tgl_menu_list .nav_mega_menu .mega_menu_inner .menu_list p {
    display: none;
  }
  .tgl_menu_list .nav_mega_menu .mega_menu_inner .menu_list li {
    border: none !important;
  }
  .tgl_menu_list .nav_mega_menu .mega_menu_inner .menu_list li a {
    padding: 3px;
    padding-left: 1.2em;
  }
  .tgl_menu_list .nav_mega_menu div a {
    margin-left: 15px;
    background: none;
    padding: 3px;
    line-height: 2;
    text-indent: -1.2em;
    padding-left: 1.2em;
  }
  /* メガメニュー展開時 */
  .tgl_menu_list .nav_mega_menu.active p::before {
    content: "\f068";
  }
  /* ナビ展開時の後ろの背景 */
  .nav_overlay {
    display: none;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
  }
  body.nav-open .nav_overlay {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  /* ヘッダー固定ボタンエリア */
  .btn_area {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
  }
  .btn_area ul {
    display: flex;
    background: #fff;
  }
  .btn_area li.btn img {
	display: inline-block;
	width: auto;
	height: auto;
	transform: translateY(-6px);
  }
  .btn_area li.btn a {
    position: relative;
    display: flex;
    /*align-items: center;*/
	align-items: flex-end;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
    font-weight: bold;
  }
  /* 準備中用のクラス */
  .btn_area li.btn.coming {
    background: #aaa !important;
  }
  .btn_area li.btn.coming a {
    pointer-events: none;
    padding: 2px 2% 18px;
  }
  .btn_area li.btn.coming a::before {
    content: "（準備中）";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    font-size: 90%;
  }
	
.btn_area .btn_top {
  position: fixed;
  right: 10px;
  bottom: 56px;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  z-index: 9999;
}
.btn_area .btn_top span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 11px;
  margin-right: 3px;
  color: #222;
  text-shadow: 0 1px 2px rgba(255,255,255,0.6),0 3px 8px rgba(0,0,0,0.15);
}
.btn_area .btn_top::after {
  content: "";
  display: block;
  width: 1px;
  height: 65px;
  position: relative;
  right: 4px;
  background-color: #222;
  animation: arrow-move 2s infinite;
  box-shadow:
    0 1px 2px rgba(255,255,255,0.6),
    0 3px 6px rgba(0,0,0,0.18);
}

.btn_area .btn_top::before {
  content: "";
  position: absolute;
  bottom: 62px;
  right: -2px;
  width: 8px;
  transform: rotate(45deg);
  border-top: 1px solid #222;
  border-left: 1px solid #222;
  animation: arrow-move-head 2s infinite;
  filter: drop-shadow(0 1px 2px rgba(255,255,255,0.6))
          drop-shadow(0 3px 6px rgba(0,0,0,0.18));
}

.btn_area .btn_top:hover {
  opacity: 0.6;
  transform: translateY(-5px);
  transition: all 0.3s;
}
  /*============================================================================

  #mainvisual

  ============================================================================*/
  #mainvisual {
    background-position: center;
    background-attachment: scroll;
    height: 200px;
    margin-top: 55px;
  }
  #mainvisual .inner {
    width: auto;
    height: 100%;
  }
  /* 下層ページヘッドライン */
  /* 見出し */
  .mainvisual_headline p.headline {
    font-size: 22px;
  }
  /*============================================================================

  #contents

  ============================================================================*/
  .box1 {
    width: auto;
    margin: 0 6%;
  }
  .box2 {
    width: auto !important;
    margin: 0 6% 80px;
  }
  #contents {
    width: auto;
  }
  #contents_left {
    width: auto;
    float: none;
    margin-right: 0;
  }
  #contents_right {
    width: auto;
    padding: 0 6%;
    float: none;
  }
  #contents iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
  /*============================================================================

  footer

  ============================================================================*/
  .footer_info {
    width: auto;
    padding: 40px 6%;
  }
  .footer_info_left,
  .footer_info_right {
    width: 100%;
    margin: 0 auto;
  }
  .footer_info_right {
    margin-bottom: 20px;
  }
  .footer_info_logo,
  .footer_info_logo img {
    width: 222px;
    height: 148px;
  }
  .footer_info_sche {
    float: none;
    width: 100%;
  }
  .footer_info_sche .tb01 :is(th, td) {
    font-size: 13.5px;
  }
  .footer_info_sche p {
    margin: 0;
  }
  .footer_info_access_map iframe {
    height: 300px;
  }
  .footer_info_access_desc {
    font-size: 14px;
  }
  .footer_info_access_desc i {
    font-size: 20px;
  }
  /* バナーエリア */
  .footer_bnr ul li {
    width: 100%;
    max-width: 250px;
  }
	.footer_announce .box1 {
		padding: 25px 16px 20px;
	}
  /* その他 */
  .footer_other_flex_wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 40px 270px;
  }
  .footer_other_logo {
    max-width: 357px;
    margin-bottom: 36px;
  }
  .footer_other_logo img {
    width: 100%;
    height: auto;
  }
  .footer_other_add {
    font-size: 16px;
    letter-spacing: 0;
    margin-bottom: 15px;
  }
  .footer_other_tel a {
    font-size: 30px !important;
    color: var(--sub-color);
    font-family: var(--Gar);
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1;
  }
  .footer_other_tel a:hover {
    color: var(--sub-color);
  }
  .footer_other_tel a img {
    position: relative;
    top: -2px;
    margin-right: 10px;
  }
  .footer_other_sitemap {
    margin-bottom: 20px;
  }
  .footer_other_sitemap a {
    color: var(--text-color);
    font-size: 14px;
    font-family: var(--ShuM);
    letter-spacing: 0.1em;
    transition: 0.2s ease-in-out;
  }
  .footer_other_sitemap a:hover {
    color: var(--sub-color);
  }
  .pagetop {
    right: 10px;
    bottom: 60px;
    width: 80px;
    height: auto;
  }
  .pagetop img {
    width: 80px;
    height: auto;
  }
  /*============================================================================

  $top

  ============================================================================*/
  /* .sec_banner */
  .sec_banner {
    padding: 40px 0;
  }
  .bnr_list {
    flex-wrap: wrap;
  }
  /* .sec_first */
  .box_first {
    padding: 0 6%;
  }
  .box_first .title_wrap h2 {
    font-size: 24px;
  }
  .box_first .title_wrap h2::before, .box_first .title_wrap h2::after {
    display: none;
  }
  .box_first p {
    font-size: 18px;
  }
  .btn_list {
    flex-wrap: wrap;
  }
  .part_flex_wrap {
    flex-wrap: wrap;
    padding: 0 6%;
    gap: 0 40px;
  }
  .part_flex_item {
    margin-bottom: 50px;
  }
  .part_title {
    max-width: 440px;
    width: 80%;
  }
  .part_title p {
    font-size: 32px;
    margin: -30px auto 5px;
  }
  .part_title p span {
    font-size: 40px;
  }
  .part_title h3 {
    font-size: 20px;
  }
  .part_bg {
    position: relative;
    z-index: 0;
  }
  .part_text {
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    display: flex;
    height: calc(100% - 123px);
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
  }
  .part_text p {
    margin-bottom: 20px;
  }
  /* .sec_news */
  .sec_news {
    padding: 80px 0;
	padding-top: 0;
  }
  .news_btn li {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
  }
  .news_tab {
    padding: 25px 20px;
  }
  .news_tab ul li a {
    align-items: flex-start;
  }
  .news_tab ul li .thumb {
    width: 80px;
  }
  .news_tab ul li .inner {
    width: calc(100% - 100px);
  }
  .news_tab ul li .inner .date {
    font-size: 14px;
    margin-right: 5px;
  }
  .news_tab ul li .inner .category {
    font-size: 14px;
  }
  .news_tab ul li .inner .title {
    overflow: hidden;
    white-space: wrap;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
    /* .sec_partnership */
    .sec_partnership {
    padding: 0 0 60px;
}
    .partnership_wrap {
        padding: 1rem;
    }
    .partnership_contents h2 {
        font-size: 1.2rem;
        padding: 0.5rem 0.1em 0.7rem;
    }
    .partnership_banner {
        flex-wrap: wrap;
        gap: 1rem;
        margin-top: 20px;
    }
    .partnership_contents p {
    margin-top: 1rem;
}
  /* .sec_reason */
  .sec_reason .title_wrap {
    margin-bottom: 60px;
  }
  .reason_flex_wrap {
    gap: 60px 6px;
  }
  .reason_flex_item {
    width: 100%;
  }
  /* .sec_feature */
  .sec_feature {
    padding: 80px 0 100px;
  }
  .sec_feature .title_wrap {
    margin-bottom: 60px;
  }
  .feature_flex_item {
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  .feature_img {
    margin-top: 0;
  }
  .feature_num {
    margin-top: -20px;
    margin-bottom: 10px;
  }
  .feature_num img {
    width: auto;
    height: 70px;
  }
  .feature_text {
    margin-right: 0;
  }
  .feature_text h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .feature_text p {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .feature_flex_item:nth-of-type(2) .feature_text {
    margin-left: auto;
    margin-right: auto;
  }
  .feature_flex_item:nth-of-type(3) .feature_text {
    margin-right: auto;
    max-width: 600px;
  }
  .feature_flex_item:nth-of-type(3) .feature_text p {
    max-width: 550px;
  }
  .btn_flex {
    justify-content: flex-end;
  }
  .btn_flex .btn01 {
  margin-bottom: 10px;
}
  .case_flex {
    margin-bottom: 40px;
  }
  .case_flex li {
    width: 100%;
    margin-bottom: 20px;
  }
  
  /* .sec_medical */
  .sec_medical {
    padding: 80px 0;
  }
  /* .sec_greet */
  .sec_greet {
    /*padding: 80px 0 0;
    background: url(../images/bg_greet_logo.png) no-repeat center bottom 143px/100% auto, #efefef url(../images/bg_greet_text.png) no-repeat right top 39%/90% auto;*/
	  padding: 80px 0 30px;
	  background: url(../images/bg_greet_logo.png) no-repeat center bottom 0px / 100% auto, #efefef url(../images/bg_greet_text.png) no-repeat right top 39% / 90% auto;
  }
  .sec_greet::before, .sec_greet::after {
    display: none;
  }
  .sec_greet .title_wrap {
    margin-bottom: 60px;
  }
  .greet_flex_wrap {
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 100px;
  }
  .greet_text {
    margin-top: 0;
  }
  .greet_text h3 {
    font-size: 20px;
    margin-bottom: 25px;
  }
  .greet_text p {
    font-size: 15px;
  }
  .loop_slide_wrap .slick-initialized .slick-slide img {
    width: 300px;
  }
  /* .sec_back */
  .sec_back {
    padding: 100px 0 75px;
    background-position: center top 80px, center top;
    background-size: 90% auto, cover;
  }
  .sec_back h2 {
    font-size: 26px;
    margin-bottom: 40px;
  }
	/* .sec_top_movie */
.sec_top_movie {
        margin-bottom: 80px;
}
.sec_top_movie .title_wrap{
		margin-bottom: 40px !important;
	}
.sec_top_movie h2::before {
        height: 30px;
}

.top_movie_list {
        flex-direction: column;
	margin-top: 40px;
}

.top_movie_list iframe {
        width: 100%;
        margin-inline: auto;
}

.top_movie_list iframe:not(:first-child) {
        margin-top: 30px;
    }
 /* .sec_top_howtochoose */
	.howtochoose_box{
		padding: 1rem;
	}
	.sec_top_howtochoose {
        margin-bottom: 80px;
		padding: 60px 0 0;
    }
  /* .sec_contact */
  .contact_list {
    flex-wrap: wrap;
  }
	  /* .sec_first */
	.sec_first {
		    /*padding: 97px 0 27px;*/
		    padding: 47px 0 27px;
	}
  /*============================================================================

  $breadcrumbs ぱんくず

  ============================================================================*/
  .breadcrumbs {
    width: 90%;
    margin: 0 5% 40px;
  }
  .breadcrumbs li {
    display: inline-block;
  }
  /*============================================================================

  $共通

  ============================================================================*/
  #contents {
    padding-bottom: 70px;
  }
  .box {
    width: auto;
    padding: 0 6% 8%;
  }
  .text {
    float: none;
    width: auto;
    padding: 0;
    border: none;
  }
  /*============================================================================

  $見出し

  ============================================================================*/
  h1 {
    display: none;
    font-size: 12px;
    width: auto;
    padding: 5px 15px;
    text-align: center;
    position: static;
    margin-top: 0 !important;
    background: var(--bg-color);
  }
  .title_wrap h2 {
    font-size: 26px;
  }
  .title_wrap_02 span {
    font-size: 18px;
  }
  .title_wrap_02 span::before,
  .title_wrap_02 span::after {
    width: 20px;
  }
  .title_wrap_02 span::before {
    left: -25px;
  }
  .title_wrap_02 span::after {
    right: -25px;
  }
  .title_wrap_02 h2 {
    font-size: 180%;
  }
  .tit01 {
    font-size: 160%;
  }
  .tit02 {
    font-size: 140%;
  }
  .tit03 {
    font-size: 120%;
  }
  .nowrap {
    white-space: normal;
  }
  /* テーブル */
  .tb01 {
    white-space: inherit;
  }
  .tb01 th {
    width: 30%;
    font-size: 14px;
  }
  .tb01 td {
    font-size: 14px;
    text-align: center;
  }
  .tb03,
  .tb03 th {
    white-space: inherit;
  }
  .tb03.w075par {
    width: 100%;
  }
  /* 縦積みにした時 */
  .tb03.ver th,
  .tb03.ver td {
    display: block;
    width: 100%;
  }
  .tb03.ver td {
    border-top: none;
  }
  .tb03.ver th:not(:first-child) {
    border-top: none;
  }
  /* 横スクロール */
  .scroll_tb {
    overflow-x: scroll;
  }
  .scroll_tb table {
    width: 816px;
  }
  .scroll_tb table th {
    position: sticky;
    left: 0;
  }
  .scroll_tb table th::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    border: 1px solid #00408f;
  }
  .price .tb03 th,
  .price .tb03 td {
    display: block;
    width: 100%;
    text-align: center;
  }
  .tb04,
  .tb04 th {
    white-space: normal;
  }
  .tb04 th {
    font-size: 13px;
  }
  .tb04 td,
  .tb04 th {
    padding: 2%;
  }
  /* アンカーリンク */
  .ank02 {
    width: 100%;
  }
  .ank02 li {
    width: 100%;
  }
  .ank03 {
    width: 100%;
  }
  .ank03 li {
    width: 100%;
  }
  .ank04 {
    width: 100%;
  }
  .ank04 li {
    width: 48%;
  }
  /* 画像右寄せ */
  .img_fr {
    float: none;
    margin-left: 0;
    text-align: center;
    max-width: 100%;
  }
  .img_fr img {
    margin-bottom: 15px;
  }
  /*============================================================================

  $doctor

  ============================================================================*/
  /* ごあいさつ */
  .doctor_greet .text {
    float: none;
    width: auto;
    margin-right: auto;
  }
  .doctor_greet .top_doctor_img dd {
    position: static;
    color: var(--main-color);
    background: none;
  }
  /* 経歴、資格 */
  .doctor_carr_sec1 {
    float: none;
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .doctor_img_wrap {
    max-width: 100%;
    width: 100%;
  }
  .doctor_right a {
    display: block;
  }
  .doctor_right a:not(:last-of-type) {
    margin-bottom: 10px;
  }
  .doctor_right img {
    width: 100%;
  }
  /*============================================================================

  $clinic

  ============================================================================*/
  .clinic_sec1 {
    max-width: 100%;
  }
  /* 医院概要 */
  .clinic_sec1 dt {
    width: 30%;
  }
  .clinic_sec1 dd a:hover {
    color: inherit;
  }
  .clinic_sec1 .schedule {
    width: 100%;
    margin: auto;
  }
  .clinic_sec1 .schedule .tb01 {
    width: 100%;
  }
  [class^=clinic_slide_wrap]:not(.clinic_slide_wrap_flex) {
    max-width: 100%;
  }
  /* 院内スライド横 */
  .clinic_slide_wrap2 .clinic_slide_wrap_flex .slick-slider {
    display: block !important;
  }
  .clinic_slide_wrap2 .clinic_slide_wrap_flex .slick-list {
    width: 100%;
  }
  .clinic_slide_wrap2 .clinic_slide_wrap_flex .slick-dots {
    margin-top: 20px;
    width: 100%;
    justify-content: space-between;
  }
  .clinic_slide_wrap2 .clinic_slide_wrap_flex .slick-dots li {
    width: 15%;
    margin-bottom: 10px;
  }
  /*============================================================================

  $facilities

  ============================================================================*/
  .facilities_equip dl {
    width: 100%;
    margin-left: 0;
    padding: 6% 10% 10%;
  }
  .facilities_equip_img {
    width: 100%;
    margin-bottom: 8%;
    margin-left: 0;
  }
  .facilities_equip2 dl,
  .facilities_equip2 dl:nth-child(3n) {
    width: 90%;
    margin: 0 5% 30px;
  }
  .facilities_equip2 dl:nth-child(even) {
    margin-right: 5%;
  }
  .facilities_equip3 dl {
    width: 90%;
    margin: 0 5% 30px;
  }
  .facilities_equip3 dl:nth-child(even) {
    margin-right: 5%;
  }
  .facilities_equip3 dl,
  .facilities_equip3 dl:nth-child(3n) {
    width: 90%;
    margin: 0 5% 30px;
  }
  /*============================================================================

  $access

  ============================================================================*/
  .access_wrap [class^=access] {
    margin-bottom: 40px;
    width: 100%;
  }
  .access_wrap [class^=access]:last-child {
    margin-bottom: 0;
  }
  .access_wrap [class^=access] iframe {
    height: 300px;
  }
  .access_list {
    padding: 30px 15px 0;
  }
  .access_list dl {
    width: 100%;
    margin-bottom: 30px;
  }
  /* deduction
  -------------------------------------------------- */
  .deduction_formula {
    display: block;
    text-align: left;
    border: 1px dashed #90c31f;
    padding: 20px 3%;
  }
  .deduction_formula span {
    display: inline;
    min-height: unset;
    width: auto;
    margin: 5px 0 0 0.5em;
    padding: 0;
    border: none;
  }
  .deduction_formula span:first-of-type {
    display: inline;
    margin: 0;
    width: auto;
  }
  .deduction_bnrs {
    text-align: center;
  }
  .deduction_bnrs a {
    width: 100%;
    max-width: 260px;
    margin: 0 auto 15px;
    text-align: center;
  }
  .deduction_bnrs a:last-of-type {
    margin-bottom: 0;
  }
  .deduction_bnrs img {
    width: 100%;
    height: auto;
  }
  /* sitemap
  -------------------------------------------------- */
  .list_sitemap li a {
    padding: 10px 20px;
  }
  .list_sitemap li a:after {
    right: 7px;
  }
  /* highquality
  -------------------------------------------------- */
  .high_quality .box2:first-child dt {
    float: none;
    margin-bottom: 20px;
  }
  .high_quality .box2:first-child dd {
    float: none;
    width: 100%;
  }
  .high_quality .tb01 :is(th, td) {
    display: block;
    width: 100%;
  }
  /* concept
  -------------------------------------------------- */
  .concept_img {
    flex-direction: column;
    width: 100%;
  }
  .concept_img li {
    width: 100%;
  }
  .concept_img li:not(:last-child) {
    margin-bottom: 30px;
  }
  .accordion_icon {
    float: none;
  }
  .switch {
    padding: 10px;
  }
  /* flow
  -------------------------------------------------- */
  .flow {
    margin: 0 0 50px;
    padding: 20px;
    flex-direction: column;
  }
  .flow .num {
    margin-bottom: 20px;
    font-size: 30px;
    line-height: 50px;
  }
  .flow .text {
    margin-bottom: 20px;
    width: 100%;
  }
  .flow_Box::before {
    display: none;
  }
  .flow_Box_gbt .gbt_movie {
    width: auto;
    height: auto;
  }
  /* clinic
  -------------------------------------------------- */
  /* 院内スライド */
  .clinic_slides1 {
    margin-bottom: 20px;
  }
  .clinic_slides1 .flexslider {
    float: none;
    width: 100%;
  }
  .clinic_slides1 .flexslider li div {
    display: block;
    margin-top: 5%;
    margin-left: 0;
    text-align: center;
    background: none;
  }
  .clinic_slides1 .flexslider p {
    color: var(--main-color);
    display: block;
  }
  .clinic_slides1 .flex-control-nav.flex-control-thumbs {
    position: absolute;
    right: auto;
    width: auto;
    top: auto;
    bottom: 7%;
    z-index: 2;
  }
  .clinic_slides1 .flex-control-thumbs li {
    position: relative;
    width: 14.3%;
    margin: 0 0 4% 2%;
  }
  .clinic_slides1 .flex-control-thumbs img {
    border: 3px solid #e0e0e0;
  }
  .character_box {
    padding-top: 0;
    width: 100%;
  }
  #characteristic01 .character_img {
    padding-top: 0;
  }
  .character_left_wrapper .character_img,
  .character_left_wrapper .character_text,
  .character_right_wrapper .character_img,
  .character_right_wrapper .character_text {
    margin: 0;
    width: 100%;
    float: none;
  }
  .character_box h3 {
    font-size: 180%;
  }
  .character_text {
    padding: 10px 6%;
  }
  #characteristic01 .character_right_wrapper::after,
  #characteristic04 .character_right_wrapper::after {
    background: none;
  }
  .clinic_sec1 {
    width: 100%;
  }
  .clinic_slides1 .flex-control-nav.flex-control-thumbs {
    margin-top: 10px;
    position: static;
  }
  /* medical - 
  --------------------------------------------------*/
  .medical_menu {
    padding-right: 0;
  }
  .medical_menu::before {
    display: none;
  }
  .detail_box {
    display: none;
  }
  .layout01 dt, .layout01 dd {
    display: block;
  }
  .layout01 dt {
    width: 100%;
  }
  .layout01 dt em {
    margin-bottom: 5px;
  }
  .layout02 dl dd:nth-child(1) {
    float: none;
    margin: 0;
  }
  .layout02 dl dd:nth-child(1) img {
    width: 100%;
  }
  .layout03 dt, .layout03 dd {
    display: block;
    width: 100%;
  }
  .layout03 dt img, .layout05 dt img {
    width: 40%;
  }
  .layout03 dd h5 {
    margin-top: 12px;
  }
  .layout04 dl {
    display: block;
  }
  .layout04 dt, .layout04 dd {
    display: block;
    width: 100%;
  }
  .layout04 dt {
    margin-bottom: 10px;
    text-align: center;
  }
  .layout04 dt img {
    width: 35%;
  }
  .layout05 dt, .layout05 dd {
    display: block;
    padding: 10px 0;
    width: 100%;
  }
  .layout05 dt strong {
    display: block;
  }
  .layout05 dd:nth-child(2), .layout05 dd:nth-child(3) {
    padding: 20px;
    width: 100%;
  }
  .layout05 dd:nth-child(3) {
    border-left: none;
    border-top: 1px solid #e2e2e2;
  }
  .layout07 {
    flex-direction: column;
  }
  .layout07 dl {
    width: 100%;
  }
  .layout06 dl, .layout06 dt, .layout06 dd {
    display: block;
  }
  .layout06 dt, .layout06 dd:nth-child(2), .layout06 dd:nth-child(3) {
    width: 100%;
  }
  .layout06 dd:nth-child(3), .layout05 dd:nth-child(3) {
    border-left: none;
    border-top: 1px dotted #b2d95b;
  }
  .medical_contents iframe {
    width: 100%;
    height: 350px;
  }
  /*============================================================================

  $contact

  ============================================================================*/
  .contact th,
  .contact td {
    display: block;
    width: 100%;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #1F2774;
    padding: 10px 5%;
  }
  .contact tr:last-child td {
    border-bottom: none;
  }
  .contact input[type=date] {
    display: block;
    margin-bottom: 10px;
  }
  .contact select {
    display: block;
    margin-bottom: 20px;
  }
  .submit_btn input {
    max-width: 110px;
  }
  /*==================================================================

  .layout

  ==================================================================*/
  .layout_tit {
    font-size: 18px;
  }
  .layout_tit em {
    font-size: 24px;
  }
  /* 1つ並びのレイアウト。画像は無し、左にタイトル、右に文章 */
  .layout01 .layout01_box {
    display: block;
  }
  .layout01 .layout01_title {
    width: 100%;
  }
  .layout01 .layout01_text {
    width: 100%;
  }
  .layout01 .layout01_text img {
    width: 70%;
    margin: 0 auto;
    display: block;
  }
  /* 2つ並びのレイアウト。最初(dt)にタイトル、画像がその下(dd)、画像の下に文章 */
  .layout02 {
    display: block;
  }
  .layout02 .layout02_box {
    width: 100%;
  }
  .layout02 .layout02_box img {
    width: 70%;
    margin: 0 auto;
    display: block;
  }
  /* 1つ並びのレイアウト。画像が左、右にタイトル、タイトル下に文章 */
  .layout03 {
    margin: 0 0 15px;
  }
  .layout03 .layout03_box {
    display: block;
  }
  .layout03 .layout03_title {
    width: 100%;
  }
  .layout03 .layout03_title img {
    width: 70%;
    margin: 0 auto;
    display: block;
    padding: 0;
  }
  .layout03 .layout03_text {
    width: 100%;
    padding: 15px 3% 1%;
  }
  /* 1つ並びのレイアウト。画像が左、右にタイトル、タイトル下に文章、タイトルと文章のエリア(dd)は背景色が別の色 */
  .layout04 .layout04_box {
    display: block;
  }
  .layout04 .layout04_title {
    width: 100%;
    padding: 2%;
  }
  .layout04 .layout04_title img {
    width: 70%;
    margin: 0 auto;
    display: block;
  }
  .layout04 .layout04_text {
    width: 100%;
  }
  /* 1つ並びで3列に区切られたレイアウト。画像が左、画像の下にタイトル、右に文章 */
  .layout05 .layout05_box {
    display: block;
  }
  .layout05 .layout05_title {
    width: 100%;
    text-align: center;
    display: block;
  }
  .layout05 .layout05_title img {
    width: 70%;
    margin: 0 auto;
    display: block;
  }
  .layout05 .layout05_text1:nth-child(2) {
    width: 100%;
    margin-top: 10px;
  }
  .layout05 .layout05_text1:nth-child(3) {
    width: 100%;
    border-left: none;
  }
  /* 1つ並びで3列に区切られたレイアウト。左がタイトル、真ん中と右に文章 */
  .layout06 {
    margin: 0 0 15px;
  }
  .layout06 .layout06_box {
    display: block;
  }
  .layout06 .layout06_title {
    width: 100%;
    padding: 3%;
    display: block;
    text-align: center;
  }
  .layout06 .layout06_title img {
    width: 70%;
    margin: 0 auto;
    display: block;
  }
  /* 数字 */
  .layout06 .layout06_text1:nth-child(2) {
    width: 100%;
    margin-top: 10px;
  }
  .layout06 .layout06_text1:nth-child(3) {
    width: 100%;
    border-left: none;
  }
  /* 3つ並びのレイアウト。 */
  .layout07 {
    display: block;
  }
  .layout07 .layout07_box {
    display: block;
    width: 100%;
  }
  /* layout09 */
  .layout09 .layout09_box {
    display: block;
  }
  .layout09 .layout09_title {
    width: 100%;
    text-align: center;
    display: block;
  }
  .layout09 .layout09_title img {
    width: 70%;
    margin: 0 auto;
    display: block;
  }
  .layout09 .layout09_text1 {
    width: 100%;
    margin-top: 10px;
  }
  /* layout10 */
  .layout10 .flow_box {
    justify-content: space-between;
    padding: 6%;
  }
  .layout10 .flow_box::before {
    display: none;
  }
  .layout10 .flow_box .number {
    width: 42px;
    height: 42px;
    margin-right: 0;
    font-size: 20px;
  }
  .layout10 .flow_box .layout10_box {
    width: 80%;
  }
  .layout10 .flow_box .layout10_text .title {
    font-size: 14px;
    line-height: 1.4;
  }
  .layout10 .flow_box .layout10_text .title span {
    display: block;
    padding-bottom: 8px;
    font-weight: bold;
  }
  .layout10 .flow_box .layout10_text .title span::after {
    display: none;
  }
  .course_ablation::before {
    display: none;
  }
  /* layout11 */
  [class^=layout11_text] dl dt,
  [class^=layout11_text] dl dd {
    margin-left: 0;
    width: 100%;
  }
  [class^=layout11_text] dl dt {
    margin-bottom: 0;
  }
  [class^=layout11_text] dl dd {
    margin-bottom: 5px;
  }
  .layout11_image02 {
    flex-wrap: wrap;
  }
  .layout11_image02 span {
    width: 100%;
  }
  .layout11_image02 span:last-child {
    margin-top: 40px;
  }
  .layout11_image02 span:last-child::before {
    top: -32px;
    bottom: auto;
    left: 0;
    right: 0;
    justify-content: center;
    content: "\f078";
  }
  /*============================================================================

  $news

  ============================================================================*/
  .news_list li a {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  /*============================================================================

  $column

  ============================================================================*/
	.column_list {
		gap: 30px;
	}
	.column_post,
	.column_post_implant,
	.column_post_aesthetic-dentistry {
		width: 100%;
		max-width: 380px;
	}
	.column_post .column_tit,
	.column_post_implant .column_tit,
	.column_post_aesthetic-dentistry .column_tit {
		margin: 14px auto 20px;
	}
  /*============================================================================

  $mpcloud_schedule

  ============================================================================*/
  #mpcloud_schedule {
    width: 100%;
    right: 0;
    left: 0;
    border-radius: 0;
  }
  .time_close {
    right: 20px;
    font-size: 17px;
  }
  .schedule_time {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  .schedule_time dt {
    width: 35%;
    margin-bottom: 5px;
  }
  .schedule_time dd {
    width: 65%;
    margin-bottom: 5px;
  }
  .schedule_time dd i {
    margin: 0 3px 0 15px;
    vertical-align: text-bottom;
  }
  /*common*/
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .pc_inline {
    display: none !important;
  }
  .sp_inline {
    display: inline !important;
  }
  .pc_table {
    display: table !important;
  }
  .sp_table {
    display: table !important;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  .sp_mb00 {
    margin-bottom: 0 !important;
  }
  .sp_mr00 {
    margin-right: 0 !important;
  }
  .sp_ml00 {
    margin-left: 0 !important;
  }
  .sp_mt00 {
    margin-top: 0 !important;
  }
  .sp_pb00 {
    padding-bottom: 0 !important;
  }
  .sp_pr00 {
    padding-right: 0 !important;
  }
  .sp_pl00 {
    padding-left: 0 !important;
  }
  .sp_pt00 {
    padding-top: 0 !important;
  }
  .sp_center {
    text-align: center;
  }
}
@media screen and (max-width: 320px) {
  .main_open {
    position: absolute;
    top: auto;
    bottom: 50px;
    right: 0;
    left: 0;
    width: 50%;
    margin: auto;
  }
  .part_bg {
    height: 600px;
  }
  .sp_inline_iP {
    display: inline !important;
  }
}