@charset "utf-8";
/* CSS Document */

html {
  font-size: 10px;
  scroll-behavior: smooth;
}
body {
  font-family: "游ゴシック";
  color: #333;
  margin: 0 auto;
  max-width: 1920px;
}
a {
  text-decoration: none;
}
li {
  list-style: none;
}
img {
  max-width: 100%;
}
.sp-only {
  display: none;
}
.flex {
  display: flex;
}
.row {
  flex-direction: row-reverse;
}
.wrap {
  flex-wrap: wrap;
}
.ffft {
  font-family: "Futura PT Medium", "Futura PT Bold", "Futura PT Light";
}
.ffym {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
.fftm {
  font-family: "ten-mincho", serif;
}
.ffci {
  font-family: Cinzel, "Cinzel Black", "Cinzel Medium", "Cinzel SemiBold";
}
.fwb {
  font-weight: 600;
}
.white {
  color: #fff;
}
.sec-padding {
  padding: 10rem 0;
}
.sec-ttl {
  max-width: 900px;
  border-bottom: 1px solid #64381a;
  padding-bottom: 5px;
  margin-bottom: 10rem;
}
.secttl-tc {
  margin-left: auto;
  margin-right: auto;
}
.secttl-tc h4,
.secttl-tc p {
  text-align: center;
}
.secttl-tl {
  padding-left: 5rem;
}
.sec-ttl h3 {
  font-size: 60px;
  line-height: 0.8;
}
.sec-ttl h3 span {
  font-size: 80px;
}
.sec-ttl p {
  font-size: 30px;
  color: #c59125;
}
.mb25{
  margin-bottom: 25px;
}
.tc{
  text-align: center;
}

/*--- ヘッダー ---*/
#header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  z-index: 2;
}
.header-in {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
}
.head-logo {
  width: 400px;
}
.re-bnr {
  width: 200px;
  padding: 5px 0;
}
.re-bnr a {
  display: block;
  text-align: center;
  font-size: 24px;
  color: #333;
}
.insta_bnr{
  width: 50px;
  margin: 15px 10px 0 0;
}
.tel-bnr {
  background: #f6edd8;
}
.tel-bnr a i {
  color: #64381a;
}
.web-bnr {
  background: #ab9258;
}
.web-bnr a i {
  color: #f6edd8;
}

/*--- メインビジュアル ---*/
.mainvisual {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
}
.catch-copy {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%);
}
.catch-copy h2,
.catch-copy h3 {
  text-align: center;
}
.catch-copy h2 {
  /*font-size: 60px;*/
  font-size: 55px;
  letter-spacing: 3px;
    color: #FFFFFF;
    line-height: 1.6;
}
.catch-copy h2 span {
  font-size: 80px;
  color: #64381a;
  text-shadow: 3px 3px 10px #FFE, -3px -3px 10px #fff;
}
.catch-copy h3 {
  margin-top: 3rem;
  font-size: 30px;
  line-height: 1.5;
}

/*グローバルメニュー*/
.g-nav {
  background: #e6e0d0;
  width: 100%;
  padding: 3rem 0;
}
.g-nav.fixed {
  position: fixed; /*fixedを設定して固定*/
  z-index: 999; /*最前面へ*/
  top: 0; /*位置指定*/
  left: 0; /*位置指定*/
  padding: 2rem 0;
}
/*========= ナビゲーションドロップダウンのためのCSS ===============*/

/*==ナビゲーション全体の設定*/
nav {
  width: 70%;
  margin: auto;
}
/*ナビゲーションを横並びに*/
nav ul {
  justify-content: space-between;
}
/*2階層目以降は横並びにしない*/
nav ul ul {
  display: block;
}
/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
nav ul li {
  position: relative;
}
/*ナビゲーションのリンク設定*/
nav ul li a {
  display: block;
  color: #333;
  transition: all 0.3s;
  text-align: center;
  font-size: 2rem;
}

nav ul li a:hover {
  color: #7d7d7d;
}

/*== 2・3階層目の共通設定 */

/*下の階層を持っているulの指定*/
nav li.has-child ul {
  /*絶対配置で位置を指定*/
  position: absolute;
  left: 50%;
  top: 7rem;
  transform: translate(-50%);
  z-index: 4;
  /*形状を指定*/
  background: #f9f6ee;
  width: 30rem;
  /*はじめは非表示*/
  visibility: hidden;
  opacity: 0;
  /*アニメーション設定*/
  transition: all 0.3s;
}
.has-child li a {
  padding: 1rem;
  font-size: 1.8rem;
}
/*hoverしたら表示*/
nav li.has-child:hover > ul,
nav li.has-child ul li:hover > ul,
nav li.has-child:active > ul,
nav li.has-child ul li:active > ul {
  visibility: visible;
  opacity: 1;
}

/*ナビゲーションaタグの形状*/
nav li.has-child ul li a {
  color: #333;
  border-bottom: solid 1px rgba(255, 255, 255, 0.6);
}

nav li.has-child ul li:last-child a {
  border-bottom: none;
}

nav li.has-child ul li a:hover,
nav li.has-child ul li a:active {
  background: #a79877;
}

@media screen and (max-width: 1280px) {
  nav {
    width: 80%;
    margin: auto;
  }
}

/*--- Info＆News ---*/
#info-news {
}
#info-news .inner {
  /*width: 50%;*/
  width: 90%;
  margin: 0 auto;
  /*padding: 30px 0;*/
  /*padding: 50px 0;*/
  padding: 10rem 0 5rem;
}
.inttl {
  font-size: 36px;
  color: #64381a;
  padding-left: 50px;
}
.news-scroll {
  /*height: 400px;*/
  height: 350px;
  overflow-y: scroll;
}
.info-adress {
  text-align: center;
  margin: 3rem auto;
  font-size: 22px;
}
.info-adress i {
  color: #f68947;
  font-size: 30px;
  margin-right: 10px;
}
.timetable {
  width: 70%;
  margin: 3rem auto;
}
.timetable-memo {
  margin-top: 20px;
  font-size: 16px;
}
.timetable-memo span {
  color: #c59125;
}

#news dl {
  width: 80%;
  margin: 3rem auto;
  font-size: 16px;
}
#news dl dt {
  width: 25%;
  padding: 10px 0;
  border-bottom: 1px solid #7e7768;
  border-top: 1px solid #7e7768;
  color: #c59125;
  text-align: center;
}
#news dl dd {
  width: 75%;
  padding: 10px 0;
  border-bottom: 1px solid #7e7768;
  border-top: 1px solid #7e7768;
}

.news-title {
  color: #000 !important;
  text-decoration: none;
}
.news-title:hover {
  text-decoration: underline;
}

.news-title-single {
  color: #000 !important; /* 黒文字に強制 */
  cursor: default !important; /* 通常のカーソルに */
  text-decoration: none !important; /* 下線を消す */
}

.news-title-single:hover {
  text-decoration: none !important; /* ホバー時も下線なし */
  color: #000 !important; /* ホバー時も色を維持 */
  cursor: default !important;
}

@media screen and (max-width: 1280px) {
  .timetable {
    width: 90%;
    margin: 3rem auto;
  }
  #news dl {
    width: 90%;
  }
}

/*--- 感染症対策 ---*/
#covid19 {
  padding: 5rem 0;
}
.accordion-001 {
  max-width: 900px;
  margin: 0 auto;
}
.accordion-001 summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 4rem 0;
  text-align: center;
  box-sizing: border-box;
  background: url("../img/bg02.jpg");
  background-size: cover;
  background-position: center;
  margin: 0 auto;
  font-size: 4rem;
  cursor: pointer;
}
.accordion-001 summary::-webkit-details-marker {
  display: none;
}

.accordion-001 summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 3px solid #707070;
  border-right: 3px solid #707070;
  content: "";
  transition: transform 0.3s;
}
.accordion-001[open] summary::after {
  transform: rotate(225deg);
}
.accordion-open {
  transform: translateY(-10px);
  opacity: 1;
  margin: 0;
  padding: 1em 2em 2em 2em;
  transition: transform 0.5s, opacity 0.5s;
  background: url("../img/bg02.jpg");
  background-size: cover;
  background-position: center;
}
.accordion-open[open] {
  transform: none;
  opacity: 1;
}
.covid19-flex {
  display: flex;
  justify-content: space-between;
  align-content: center;
  flex-wrap: wrap;
}
.covid19-list {
  width: 23%;
  margin: 0 auto;
  padding: 30px 0;
  text-align: center;
}
.covid19-list img {
  width: 70%;
  margin: 0 auto;
}
.covid19-list span {
  display: inline-block;
  text-align: center;
  padding: 5px 0;
  font-size: 2rem;
}

/*--- 初めての方へ ---*/
.first-container {
  max-width: 900px;
  margin: auto;
  padding: 3rem 0;
  background: url("../img/bg04.jpg");
  background-size: cover;
}
.first-ttl {
  text-align: center;
  font-size: 28px;
}
.first-txt {
  font-size: 20px;
  text-align: center;
  margin-top: 3rem;
}
.first-container .re-bnr {
  margin: 3rem auto 0 auto;
  width: 300px;
  padding: 2rem 0;
}
.first-container .re-bnr a {
  font-size: 28px;
}
.first-container .re-bnr a i {
  margin-right: 16px;
}

/*--- 治療方針 ---*/
#policy {
  margin-top: 12rem;
  background: url("../img/bg06.jpg");
  background-size: cover;
}
#policy .inner {
  width: 90%;
  margin: 5rem auto;
  justify-content: space-between;
  align-items: center;
}
#policy .inner .txt {
  width: 55%;
}
.policy-ttl {
  width: 90%;
  border-bottom: 3px solid #64381a;
  padding-bottom: 8px;
  margin-bottom: 20px;
}
.policy-sub-ttl {
  font-size: 28px;
    letter-spacing: .1em;
    line-height: 1.6;
}
.policy-txt {
  font-size: 20px;
  line-height: 2;
}
#policy .inner .img {
  width: 40%;
}

@media screen and (max-width: 1280px) {
  #policy .inner {
    width: 90%;
  }
}

/*--- 特徴 ---*/
#features {
  background: url("../img/bg01.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.features-wrapper {
  flex-direction: column;
  gap: 10rem;
}
.feature-item {
  width: 100%;
  padding: 5rem 0;
}
.feature-item .inner {
  width: 85%;
  margin: auto;
  justify-content: space-between;
  align-items: center;
}
.feature-item .inner .txt {
  width: 48%;
}
.feature-item .inner .img {
  width: 45%;
}
.feature-item .inner .img img {
  width: 100%;
}
.feature-ttl {
      font-size: max(2vw, 28px);
    display: flex;
    align-items: center;
}
.feature-ttl span {
  font-size: 75px;
  margin-right: 20px;
  color: #64381a;
  font-style: oblique;
}
.feature-txt {
  margin-top: 2rem;
  font-size: 17px;
  line-height: 2;
}
.leftbg {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 0.8) 85%,
    rgba(255, 255, 255, 0) 15%,
    rgba(255, 255, 255, 0) 100%
  );
}
.rightbg {
  background: linear-gradient(
    -90deg,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 0.8) 85%,
    rgba(255, 255, 255, 0) 15%,
    rgba(255, 255, 255, 0) 100%
  );
}
.leftbg.feature-item .inner
{
    margin-left:calc(100 / 1920* 100vw);
}
.rightbg.feature-item .inner
{
    margin-right:calc(100 / 1920* 100vw);
}
@media screen and (max-width: 1280px) {
  .feature-item .inner {
    width: 80%;
  }
    .rightbg.feature-item .inner {
    margin-right: calc(50 / 767 * 100vw);
}
    .leftbg.feature-item .inner {
    margin-left: calc(50 / 767 * 100vw);
}
}
  .leftbg {
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.8) 0%,
      rgba(255, 255, 255, 0.8) 95%,
      rgba(255, 255, 255, 0) 5%,
      rgba(255, 255, 255, 0) 100%
    );
  }
  .rightbg {
    background: linear-gradient(
      -90deg,
      rgba(255, 255, 255, 0.8) 0%,
      rgba(255, 255, 255, 0.8) 95%,
      rgba(255, 255, 255, 0) 5%,
      rgba(255, 255, 255, 0) 100%
    );
  }
}

/*--- 診療案内 ---*/
#medical {
  background: url("../img/bg03.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.mi-wrapper {
  width: 90%;
  margin: 10rem auto 0 auto;
  justify-content: center;
  gap: 5rem;
}
.mi-item {
  width: 30%;
  padding: 5rem 0;
}
.mi-item .mi-icon {
  width: 15%;
  margin: 0 auto;
}
.mi-item .txt {
  width: 80%;
  margin: 0 auto;
  padding-top: 15px;
}
.mi-ttl {
  font-size: max(2vw , 26px);
  text-align: center;
  color: #333;
}
.mi-txt {
  font-size: 16px;
  line-height: 2;
  margin-top: 1rem;
}
.readmore {
  margin-top: 1rem;
  width: 30%;
  border-bottom: 1px solid #c59125;
  font-size: 16px;
  color: #c59125;
}
.readmore a {
  font-size: 16px;
  color: #c59125;
}

.mi01 {
  /*background: url("../img/med-item01.png");*/
  background-color: #e5e3dd;
  background-size: cover;
  background-position: center;
}
.mi02 {
  /*background: url("../img/med-item02.png");*/
  background-color: #e5e3dd;
  background-size: cover;
    background-position: center;
}
.mi03 {
  /*background: url("../img/med-item03.png");*/
  background-color: #e5e3dd;
  background-size: cover;
    background-position: center;
}
.mi04 {
  /*background: url("../img/med-item04.png");*/
  background-color: #e5e3dd;
  background-size: cover;
    background-position: center;
}
.mi05 {
  /*background: url("../img/med-item05.png");*/
  background-color: #e5e3dd;
  background-size: cover;
    background-position: center;
}
.mi06 {
  /*background: url("../img/med-item06.png");*/
  background-color: #e5e3dd;
  background-size: cover;
    background-position: center;
}
.mi07 {
  /*background: url("../img/med-item06.png");*/
  background-color: #e5e3dd;
  background-size: cover;
    background-position: center;
}
.mi08 {
  /*background: url("../img/med-item06.png");*/
  background-color: #e5e3dd;
  background-size: cover;
    background-position: center;
}
.mi09 {
  /*background: url("../img/med-item06.png");*/
  background-color: #e5e3dd;
  background-size: cover;
    background-position: center;
}

@media screen and (max-width: 1280px) {
  .mi-wrapper {
    width: 90%;
    gap: 5rem;
  }
  .mi-item {
    width: calc(48% - 5rem);
    padding: 5rem 0;
  }
}
.medical-content-txt-flex
{
    display: flex;
    justify-content: space-between;
    margin: 4rem auto;
}
.m-content {
    width: 30%;
    margin: 3rem auto;
}
.m-content-ttl {
    font-size: 24px;
    color: #FFFFFF;
    font-weight: 700;
    text-align: center;
    background: #726342;
    padding: 15px 0;
	margin-bottom: 25px;
}
.m-content-txt {
    margin-top: 25px;
    font-size: 18px;
}
/*--- ご挨拶 ---*/
#greeting {
  background: url("../img/img01.png") left 0 top 0 / 50% auto no-repeat;
}
#greeting .inner {
  width: 70%;
  margin: auto;
  justify-content: space-between;
  align-items: center;
}
#greeting .inner .txt {
  width: 48%;
}
#greeting .inner .img {
  width: 45%;
}
.greeting-ttl {
  font-size: max(2vw , 24px);
  color: #c59125;
  margin-bottom: 2rem;
}
.greeting-txt {
  font-size: 18px;
  line-height: 2;
}
.docname {
  text-align: right;
  font-size: 30px;
  margin-top: 3rem;
}
.docname span {
  padding: 1rem 2rem;
  background: #db790a;
  margin-right: 10px;
  font-size: 24px;
}

@media screen and (max-width: 1280px) {
  #greeting .inner {
    width: 90%;
  }
}

/*--- スライドショー ---*/
#slideshow {
  margin: 5rem auto 0 auto;
  padding: 8rem 0;
}
/*==================================================
スライダーのためのcss
===================================*/
.slider img {
  width: 100%; /*スライダー内の画像を横幅100%に*/
  height: auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/
.slider .slick-slide {
  margin: 0 1rem; /*スライド左右の余白調整*/
}

/*--- 採用情報 ---*/
#recruit {
  margin-top: 20rem;
  margin-bottom: 20rem;
}
.recruit-container {
  width: 80%;
  margin: auto;
  padding: 5rem 0;
  background: #ececec;
  position: relative;
}
#recruit .recruit-container .sec-ttl {
  width: 700px;
  margin-bottom: 3rem;
}
#recruit .recruit-container .sec-ttl h4 {
  color: #c59125;
}
#recruit .recruit-container .secttl-tl {
  padding-left: 10rem;
}
.recruit-txt {
  padding-left: 10rem;
}
.recruit-txt p {
  font-size: 18px;
  line-height: 2;
}
.pagelink {
  width: 300px;
  background: #db790a;
  padding: 2rem 0;
}
.pagelink a {
  display: block;
  text-align: center;
  font-size: 24px;
}
.pagelink:hover {
  background: #e8a65c;
}
.recruit-txt .pagelink {
  margin-top: 3rem;
}
.rec-img01 {
  width: 22%;
  position: absolute;
  top: -10rem;
  right: 35rem;
}
.rec-img02 {
  width: 28%;
  position: absolute;
  bottom: 3rem;
  right: 10rem;
}

@media screen and (max-width: 1280px) {
  .recruit-container {
    width: 100%;
  }
  #recruit .recruit-container .secttl-tl {
    padding-left: 5rem;
  }
  .recruit-txt {
    padding-left: 5rem;
  }
  .rec-img01 {
    width: 22%;
    position: absolute;
    top: -5rem;
    right: 20rem;
  }
  .rec-img02 {
    width: 28%;
    position: absolute;
    bottom: 3rem;
    right: 5rem;
  }
}

/*--- フッター ---*/
#footer {
  margin-top: 0rem;
}
.footer-top {
  background: #cfccc8;
  padding: 5rem 0;
}
.footer-top .inner {
  width: 80%;
  margin: auto;
}
.footer-top .inner .left {
  width: 40%;
}
.footer-top .inner .right {
  width: 55%;
}
.foot-logo {
  width: 350px;
  margin: auto;
}
.footadress {
  text-align: center;
  font-size: 18px;
  margin: 2rem auto;
}
.footer-top .inner .re-bnr {
  margin: auto;
}
.foot-timetable {
  width: 90%;
  margin: auto;
}
.footer_bnr{
  padding-top: 3rem;
  justify-content: center;
  gap: 30px;
}
.foot-nav {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid #fff;
}
.foot-nav ul {
  width: 55%;
  margin: auto;
  justify-content: space-between;
}
.foot-nav ul li a {
  font-size: 16px;
  color: #333;
}
.foot-map iframe {
  width: 100%;
}
.copy {
  text-align: center;
  font-size: 12px;
  padding: 2px 0;
}

@media screen and (max-width: 1280px) {
  .footer-top .inner {
    width: 90%;
  }
  .foot-nav ul {
    width: 70%;
  }
}

.web_reserve_float_bnr{
	position: fixed;
	right: 20px;
	bottom: 110px;
	z-index: 9998;
	background-color: #ab9258;
	color: #fff;
	padding: 20px;
	border-radius: 10px;
	text-decoration: none;
	max-width: 200px;
	text-align: center;
}
.web_reserve_float_bnr_close {
    font-weight: bold;
    position: absolute;
    top: -10px;
    right: -10px;
    z-index: 9999;
    padding: 5px 8px;
    border: none;
    background-color: #fff;
    border-radius: 50px;
    cursor: pointer;
    color: #333;
	border: 1px solid #333;
}
.web_reserve_float_bnr a {
    cursor: pointer;
}
.web_reserve_float_bnr i{
	color: #f6edd8;
	font-size: 24px;
}
.web_reserve_float_bnr p{
	color: #333;
	font-size: 24px;
	text-align: center;
	font-family: "ten-mincho", serif;
}

/*--- TOPに戻る ---*/
.pagetop {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #64381a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: translateY(20%) rotate(-45deg);
}

/*------ 下層 ------*/
.s_sec-ttl {
  padding-bottom: 20px;
    position: relative;
}
.s_sec-ttl h3 {
  font-size: 36px;
  text-align: center;
  letter-spacing: 3px;
  color: #64381a;
}
.s_sec-ttl::before
{
    content: "";
    background: linear-gradient(to right, #977964, #e1ac89) ;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 3px;
}
/*--- メインビジュアル ---*/
.s-mainvisual {
  width: 100%;
  height: 60vh;
  background: url("../img/img08.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}
.page-ttl {
  width: 50%;
  background: rgba(255, 255, 255, 0.5);
  padding: 5rem 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%);
}
.page-ttl h2 {
  text-align: center;
  font-size: 60px;
  letter-spacing: 3px;
  color: #64381a;
}

/*--- 院長・スタッフ紹介 ---*/
#section01 .inner
{
    width: 70%;
  margin: 5rem auto;
  justify-content: space-between;
  align-items: center;
}
#section01 .inner .txt {
  width: 50%;
}
#section01 .inner .img {
  width: 45%;
}
#section01 .txt p {
    font-size: 18px;
    line-height: 2;
}
.r_reverse
{
    flex-direction: row-reverse;
}
#intro-doc .inner {
  width: 70%;
  margin: 5rem auto;
  justify-content: space-between;
  align-items: center;
}
#intro-doc .inner .txt {
  width: 50%;
}
#intro-doc .inner .img {
  width: 45%;
}
.docotr-txt {
  font-size: 18px;
  line-height: 2;
}
.doctor-name {
  text-align: right;
  font-size: 24px;
  margin-top: 2rem;
}
.doctor-name .brown {
  color: #c59125;
  margin-right: 20px;
}
.doctor-name .doc-memo {
  font-size: 16px;
  font-weight: normal;
}
.career {
  background: #f6edd8;
  padding: 2.5rem 2vw 5rem;
    margin-top: 2rem;
}
.career-ttl {
  font-size: 24px;
  text-align: center;
  color: #64381a;
  margin-bottom: 2rem;
}
.career ul {
  width: 90%;
  margin: auto;
}
.career ul li {
  font-size: 16px;
  list-style: disc;
  list-style-position: inside;
  padding: 1rem 0;
  border-bottom: 1px solid #ccc;
}
.career_list
{
    font-size: 18px;
    display: flex;
    flex-wrap: wrap;
    line-height: 2;
}
.career_list dt
{
    width: 25%;
}
.career_list dd
{
    width: 75%;
}
#intro-staff {
  margin-bottom: 10rem;
}
#intro-staff .txt {
  width: 900px;
  margin: 5rem auto;
}
#intro-staff .txt p {
  text-align: center;
  font-size: 18px;
  line-height: 2;
}
#intro-staff .img {
  width: 750px;
  margin: auto;
}
#intro-staff .img img {
  width: 100%;
}

@media screen and (max-width: 1280px) {
  #intro-doc .inner {
    width: 90%;
  }
    #section01 .inner {
  width: 90%;
}
}
/*--- 診療時間表 ---*/
.clinic-hours {
  background: #f8f6f2;
  padding: 1em;
    font-size: max(1vw , 16px);
}

.clinic-hours table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.clinic-hours th,
.clinic-hours td {
  padding: 10px 1vw;
  border-bottom: 1px solid #999;
  color: #3d3425;
}

.clinic-hours thead th {
  font-weight: normal;
  border-bottom: 2px solid #999;
}

.clinic-hours .circle {
  color: #3d3425;
}

.clinic-hours .triangle {
  color: #d39d2f;
    font-weight: 600;
}

.clinic-hours .cross {
  color: #999;
}


/*--- 医院案内 ---*/
#s-policy .container {
  margin: 5rem auto;
  background: url("../img/bg07.png");
  background-size: cover;
  background-position: center;
  padding: 5rem 0;
}
.s-policy-ttl {
    position: relative;
    padding-bottom: 20px;
}
.s-policy-ttl::before {
    content: "";
  width: 450px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  height: 3px;
    background: #64381a;
}
.s-policy-ttl p {
  font-size: 46px;
  text-align: center;
}
#s-policy .container .inner {
  width: 70%;
  margin: 5rem auto;
  justify-content: space-between;
  align-items: center;
}
#s-policy .container .inner .txt {
  width: 55%;
}
#s-policy .container .inner .txt p {
  font-size: 20px;
  line-height: 2;
}
#s-policy .container .inner .img {
  width: 40%;
}

#s-features .features-wrapper {
  margin: 10rem auto 0 auto;
}
.s-leftbg {
  background: linear-gradient(
    90deg,
    rgba(241, 235, 231, 0.8) 0%,
    rgba(241, 235, 231, 0.8) 85%,
    rgba(255, 255, 255, 0) 15%,
    rgba(255, 255, 255, 0) 100%
  );
}
.s-rightbg {
  background: linear-gradient(
    -90deg,
    rgba(241, 235, 231, 0.8) 0%,
    rgba(241, 235, 231, 0.8) 85%,
    rgba(255, 255, 255, 0) 15%,
    rgba(255, 255, 255, 0) 100%
  );
}
#s-medical-dx .s_sec-ttl{
	width: 400px;
}
#s-medical-dx .container .txt p {
	width: 70%;
	margin: 5rem auto;
	font-size: 20px;
	line-height: 2;
}


/*院内紹介　250722*/
.slider03 { /*横幅94%で左右に余白を持たせて中央寄せ*/
  width: 94%;
  margin: 0 auto;
  margin-top: 60px;
}
.slider03 img {
  width: 50vw; /*スライダー内の画像を60vwにしてレスポンシブ化*/
  height: auto;
}
.slider03 .slick-slide {
  transform: scale(0.7);
  transition: all .5s; /*拡大や透過のアニメーションを0.5秒で行う*/
  opacity: 0.5; /*透過50%*/
}
.slider03 .slick-slide.slick-center {
  transform: scale(1); /*中央の画像のサイズだけ等倍に*/
  opacity: 1; /*透過なし*/
}
/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slider03 .slick-prev, .slider03 .slick-next {
  position: absolute; /*絶対配置にする*/
  top: 45%;
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  border-top: 4px solid #64381a; /*矢印の色*/
  border-right: 4px solid #64381a; /*矢印の色*/
  height: 20px;
  width: 20px;
  z-index: 1;
}
.slick-prev { /*戻る矢印の位置と形状*/
  left: 20.5%;
  /*left: -5%;*/
  transform: rotate(-135deg);
}
.slick-next { /*次へ矢印の位置と形状*/
  right: 20.5%;
  /*right: -5%;*/
  transform: rotate(45deg);
}
/*ドットナビゲーションの設定*/
.slick-dots {
  text-align: center;
  margin: 20px 0 0 0;
}
.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}
.slick-dots button {
  color: transparent;
  outline: none;
  width: 10px; /*ドットボタンのサイズ*/
  height: 10px; /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #c7aa5b; /*ドットボタンの色*/
  border: none;
}
.slick-dots .slick-active button {
  background: #91422b; /*ドットボタンの現在地表示の色*/
  width: 11px; /*ドットボタンのサイズ*/
  height: 11px; /*ドットボタンのサイズ*/
}
.slide_txt{
	text-align: center;
	padding: 10px 0;
	background: #91422B;
	color: #fff;
	font-size: 18px;
	font-weight: 600;
}

@media screen and (max-width: 1280px) {
  #s-policy .container .inner {
    width: 90%;
  }
  .s-leftbg {
    background: linear-gradient(
      90deg,
      rgba(241, 235, 231, 0.8) 0%,
      rgba(241, 235, 231, 0.8) 95%,
      rgba(255, 255, 255, 0) 5%,
      rgba(255, 255, 255, 0) 100%
    );
  }
  .s-rightbg {
    background: linear-gradient(
      -90deg,
      rgba(241, 235, 231, 0.8) 0%,
      rgba(241, 235, 231, 0.8) 95%,
      rgba(255, 255, 255, 0) 5%,
      rgba(255, 255, 255, 0) 100%
    );
  }
}
.medical-content-wrap {
    padding: 60px 0;
    width: 90%;
    margin: 0 auto;
}
#first-time {
	padding-top: 180px;
}
.first-time-txt{
	width: 70%;
	margin: 0 auto;
	margin-top: 60px;
	font-size: 18px;
	line-height: 2;
}
.flow-content {
	display: flex;
	justify-content: space-between;
	margin: 4rem auto;
}
.flow-num {
	display: inline-block;
	font-size: 32px;
	font-family: "Castellar";
	color: #726342;
	border: 1px solid #726342;
	border-radius: 50%;
	background: #FFFFFF;
	width: 70px;
	height: 70px;
	line-height: 70px;
    text-align: center;
}
.flow-txtbox {
	width: 60%;
}
.flow-content-ttl {
	font-size: 30px;
	font-weight: 700;
	color: #726342;
	margin-bottom: 20px;
}
.flow-img {
	width: 30%;
}
.flow-content-txt
{
    font-size: 18px
}
.medical-content-inner {
    width: 80%;
    margin: 0 auto;
}

/*↓↓↓　ここからハンバーガーメニュー　↓↓↓*/
  
/* チェックボックスを非表示にする */
.drawer_hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer_open {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 20px;
  z-index: 100;/* 重なり順を一番上にする */
  cursor: pointer;
}

/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #726342;
  transition: 0.5s;
  position: absolute;
}

/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
  bottom: 8px;
}

/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked ~ .drawer_open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
}
  
/* メニューのデザイン*/
.nav_content {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0%;
  left: 100%; /* メニューを画面の外に飛ばす */
  z-index: 99;
  background: #EEE5D3;
  transition: .5s;
  text-align: center;
  padding-top: 70px;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .nav_content {
  left: 0;
}

/* メニュー黒ポチを消す */
.nav_list {
  list-style: none;
}

.nav_item a {
  color: #726342;
  text-decoration: none;
	display: block;
	padding: 10px 5px;
	border-top: 1px solid rgba(147,139,139,1.00);
  background: #EEE5D3;
}
.nav_item a:last-child {
	border-bottom: 1px solid rgba(147,139,139,1.00);
}
.nav_item a:active {
	background: #726342;
	color: #FFFFFF;
}
/*--- 診療案内 ---*/
.medical-wrapper {
  background: url("../img/bg05.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.medical-container {
  max-width: 1200px;
  margin: 5rem auto;
  background: #fff;
  padding: 3vw 2vw;
  box-shadow: 5px 5px 6px #ccc;
}
.h4 {
    font-size: max(1.4vw , 22px);
    color: #726342;
    text-align: center;
    padding: 25.5px 0;
    border-top: 3px solid #726342;
    border-bottom: 3px solid #726342;
    margin: 50px auto 50px;
    font-weight: 600;
}
.medical-container .inner {
 /* width: 90%;*/
  margin: 30px auto;
  justify-content: space-between;
  /*align-items: center;*/
}
.medical-container .inner .txt {
  width: 60%;
}
.medical-container .inner .img {
  width: 35%;
}
.medical-container .inner .txt p {
  font-size: 18px;
  line-height: 2;
}
.medical-container .in-content {
  width: 80%;
  margin: 3rem auto 0rem auto;
  padding: 3rem 0;
  background: #f6edd8;
}
.medical-container .in-content .ic-ttl {
  text-align: center;
  font-size: 24px;
  color: #64381a;
  margin-bottom: 2rem;
}
.medical-container .in-content .ic-txt {
  width: 90%;
  margin: auto;
  font-size: 16px;
  line-height: 2;
}
.medical-content-flex {
    display: flex
;
    justify-content: space-between;
    margin: 4rem auto;
}
.m-flex-txt {
    width: 48%;
}
.m-flex-txt2 {
    width: 30%;
}
.t18
{
    font-size: 18px;
    line-height: 1.8;
}

.trouble-box {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  box-sizing: border-box;
  border: 2px solid #726342;
  margin: 50px auto;
}

.trouble-title {
  text-align: center;
  font-size: 60px;
  color: #64381a;
	font-weight:normal!important;
  margin-bottom: 30px!important;
  letter-spacing: 2px;
}

.trouble-subtitle {
  background: linear-gradient(to right, #977964, #e1ac89);
  color: #fff;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  padding: 10px;
  display: inline-block;
  margin: 0 auto 40px;
	display:table;
}

.trouble-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding:25px 25px 0 25px;
}

.trouble-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 48%;
}

.trouble-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
  line-height: 1.6;
  font-size: 16px;
}

.trouble-list li::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 20px;
  height: 20px;
  background: url("../img/chec01.png") no-repeat center center;
  background-size: contain;
}

.implant-flow {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  color: #333;
}

.step-box {
  border: 1px solid #726342;
  padding: 30px 25px;
  margin-bottom: 40px;
  position: relative;
  background-color: #fff;
}

.step-box h3 {
  font-size: 18px;
  margin-bottom: 20px;
  border-bottom: 2px solid #726342;
  padding-bottom: 5px;
  font-weight: normal;
}

.step-number {
  color: #0074c8;
  font-weight: bold;
  margin-right: 5px;
}

.step-box p {
  font-size: 16px;
  line-height: 1.8;
}

.arrow {
  width: 72px;
  height: 17px;
  background: url("../img/arrow03.png") no-repeat center center;
  background-size: contain;
  margin: -20px auto 20px;
}

.arrow01 {
  width: 72px;
  height: 17px;
  justify-content: center!important;
}

.arrow01 img{
	margin-top:150px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.card {
  position: relative;
  border: 1px solid #726342;
  padding: 60px 20px 40px;
  text-align: center;
  min-height: 180px;
  box-sizing: border-box;
}

/* 番号を上に重ねて表示 */
.card-number {
  position: absolute;
  top: -30px; /* ← 線に重なるようにマイナス指定 */
  left: 10px;
  font-weight: bold;
  background: #fff; /* 背景がある場合は白で塗ると見やすい */
  padding: 0 5px;
  line-height: 1;
  font-size: 50px!important;
  color:#726342!important;
}

.card-text {
  font-size: 25px;
  color: #333;
}

.cosmetic-item_01 {
	max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 50px;
    background-color: white;
    position: relative;
    padding-bottom: 20px;
	margin: 40px auto;
}

.cosmetic-item {
    max-width: 85%;
    margin: 0 auto;
    background-color: white;
    position: relative;
}

/* タイトル */
.citem-ttl {
  max-width: 1200px;
  font-size: 22px;
  color: #333;
  margin-bottom: 40px;
  padding-bottom: 8px;
	border-bottom: 1px solid #726342;
	margin:0 auto;
}

.citem-ttl .blue {
  color: #4a90e2;
}

/* 画像部分 - 絶対配置で左に固定 */
.citem-img {
  position: absolute;
  left: 0;
  top: 100px;
  width: 280px;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.citem-img img {
  max-width: 100%;
  object-fit: contain;
}

/* 情報リスト部分 - 中央に配置 */
.cosmetic-info-list {
  margin-left: 300px;
  margin-right: 180px;
}

.cosmetic-info-row {
  width: 650px;
  display: flex;
  border-bottom: 1px solid #726342;
  min-height: 50px;
}

.cosmetic-label {
  width: 180px;
  color: #726342;
  font-weight: 500;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  font-size: 18px;
  padding-left: 10px;
}

.cosmetic-text {
  flex: 1;
  padding: 15px;
  display: flex;
  align-items: center;
  color: #333;
  font-size: 18px;
  line-height: 1.8em;
}

.ceramic-rating {
  position: absolute;
  right: 0;
  top: 115px;
  width: 230px;
  padding: 20px 20px;
}

.rating-row {
  text-align: center;
}

.rating-row:last-child {
  margin-bottom: 0;
}

.rating-label {
  font-size: 18px;
  font-weight:500;
  color: #036eb8;
  text-align: left;
  line-height: 0.5;
}

.rating-stars {
  color: #fff100;
  font-size: 25px;
  letter-spacing: 2px;
  text-align: left;
  margin-bottom: 10px;
}

.cosmetic-item .col2-g01{
  margin: 40px auto 80px!important;
}

/*--- 採用情報 ---*/
.top-message {
  margin: 10rem auto 0 auto;
}
.top-message .b-txt {
  font-size: 40px;
  text-align: center;
  color: #c59125;
  margin-bottom: 2rem;
}
.top-message .s-txt {
  font-size: 20px;
  text-align: center;
  line-height: 2;
}
.top-img {
  width: 500px;
  margin: auto;
}
#AR .inner {
  width: 1000px;
  margin: 5rem auto;
  background: #ccc;
  padding: 5rem 0;
}
#AR .inner p {
  text-align: center;
  font-size: 30px;
}

/*--- 診療時間・アクセス ---*/
#hours .inner {
  width: 70%;
  margin: 5rem auto;
  align-items: center;
}
#hours .inner .left {
  width: 45%;
}
.hours-logo {
  width: 80%;
  margin: auto;
}
.hours-adress {
  font-size: 20px;
  text-align: center;
  margin-top: 2rem;
}
#hours .inner .left .bnrflex {
  width: 90%;
  margin: 3rem auto;
}
#hours .inner .left .bnrflex .re-bnr {
  width: 50%;
}
#hours .inner .right {
  width: 50%;
}
.hours-timetable {
  width: 700px;
  margin: 3rem auto 0 auto;
}

.access-map {
  width: 1000px;
  margin: 5rem auto;
}
.access-map iframe {
  width: 100%;
}
#access .inner {
  width: 1000px;
  margin: 5rem auto 0 auto;
  justify-content: space-between;
}
#access .inner .item {
  width: 45%;
}
#access .inner .item .item-ttl {
  border-top: 1px solid #c59125;
  border-bottom: 1px solid #c59125;
  padding: 1rem 0;
}
#access .inner .item .item-ttl p {
  font-size: 28px;
  text-align: center;
}
#access .inner .item .item-txt {
  font-size: 16px;
  line-height: 2;
  margin-top: 2rem;
}
#access .inner .item .item-txt span {
  color: #c59125;
}

@media screen and (max-width: 1280px) {
  #hours .inner {
    width: 90%;
  }
}

/*--- 料金表 ---*/
.price_list{
	border-collapse: collapse;
	table-layout: fixed;
	width: 80%;
	margin: 50px auto;
}
.price_list th{
	background: #726342;
	color: #fff;
	font-weight: 600!important;
}
.price_list th, .price_list td{
	padding: 1em 2%;
	border: 1px solid #ccc;
	line-height: 1.3;
	font-size: 18px;
	font-weight: normal;
	width: 50%;
	white-space: normal;
}


/*---------------------------------------------*/

/*トップリンク*/
/*リンクの形状*/
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border: 1px solid #874316;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  color: #7d7d7d;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  transition: all 0.3s;
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}

/*==================================================
ふわっ
===================================*/

/* その場で */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* 下から */

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 上から */

.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 左から */

.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 右から */

.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/

.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
  opacity: 0;
}

/*==================================================
スタート時は要素自体を透過0にするためのopacity:0;を指定する
===================================*/

.box {
  opacity: 0;
}

/*==================================================
動かしたい動き（今回は” ふわっ” を採用）
===================================*/

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
