@charset "utf-8";
/* CSS Document */
/*
英字見出し:font-family: 'Poiret One', cursive;
本文:font-family: 'M PLUS 2', sans-serif;
*/

@font-face {
  font-family: 'anaheim';
  src: url('./webfonts/anaheim.woff') format('woff');
}
html {}

body {
  font-family: 'M PLUS 2', sans-serif;
  color: #1e1b1b;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
  position: relative;
  word-wrap: break-word;
  background-color: #fffdfa;
  margin: 0;
}
body, #mainvisual .inner, header, footer{
  min-width: 1280px;
}
/*フォント指定*/
p{
  margin:0;
}
/*リンク設定*/
a {
  color: #00becc;
  text-decoration: none;
  transition: .5s;
}
a:hover {
  color: #00becc;
}

/*共通設定*/
img {
  max-width: 100%;
  height: auto;
}
ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.clearfix::after {
   content: "";
   display: block;
   clear: both;
}
footer iframe{
  border-radius: 30px;
}
.right{
  text-align: right;
  margin: 0 0 0 auto;
  display: table;
}
/*共通設定*/
.center{
  text-align: center;
}
.sp{
  display: none;
}
.inner{
  padding: 0 5%
}
.inline{
  display: inline-block!important;
}
.aligncenter{
  display: block;
  text-align: center;
  margin: 0 auto;
}

/*求人情報*/
section.recruit{
  max-width:1024px;
  box-sizing: border-box;
  padding: 3%;
  margin: 0 auto;
}


section.recruit ul{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
section.recruit ul li{
  width: 31%;
  background: #2ec7be;
  color: #fff;
  transition: .3s;
  text-align: center;
  box-sizing: border-box;
  border: #2ec7be solid 1px;
  margin: 0 0 8px;
}
section.recruit ul li:hover{
  color: #2ec7be;
  background: #fff;
  border: #2ec7be solid 1px;
}
section.recruit ul li a{
  color: #fff;
  display: block;
    padding: 15px;
}
section.recruit ul li a:hover{
  color: #2ec7be;
}


section.recruit table{
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #caf2f2;
  margin-bottom: 60px;
}
section.recruit table tr{
  width: 100%;
  border: 1px solid #caf2f2;
}
section.recruit table th{
  width: 30%;
  background: #e5f8f7;
  padding: 10px;
  border: 1px dotted #caf2f2;
}
section.recruit table td{
  width: 70%;
  padding: 0 10px;
  border: 1px dotted #caf2f2;
  padding: 10px;
}


section.info h2,
section.recruit h2 {
  padding: 1rem 2rem;
  border-top: 4px double #72d3ce;
  border-bottom: 4px double #72d3ce;
  text-align: center;
}
section.info h3,
section.recruit h3{
  padding: 0.25rem 1rem;
  border-left: 2px solid #2ec7be;
  color: #2ec7be;
}


/*--------------------------- スクロールアニメーションの設定 ----------------------------------*/
.fadein {
  opacity : 0;
  transform : scale(0.8);
  filter: blur(50px);
  transition: 1s; cubic-bezier(0, 0, 0.8, 0.8);
  z-index: -1;
  position: relative;
}
.fadein.scrollin {
  opacity : 1;
  transform : scale(1);
  filter: blur(0);
}
/*1秒遅れ*/
.delay_1s{
  transition: 1.5s; cubic-bezier(0, 0, 0.8, 0.8);
}
.delay_2s{
  transition: 2s; cubic-bezier(0, 0, 0.8, 0.8);
}

/*--------------------------- ヘッダーの設定 ----------------------------------*/
header{
  position: relative;
}
.header_first{
  display: flex;
  padding: 40px 0 0 2%;
}
.header_logo{
  width: 30%;
  max-width: 500px;
  margin: 0 15px 10px 0;
}
.header_logo_info{
  height: inherit;
  width: 220px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
}
.header_logo_info span{
  text-align: center;
  width: 100%;
  display: block;
  border: 1px solid #ee898e;
  border-radius: 100px;
  font-size: 13px;
  margin: 0 0 5px;
}

header h1{
  position: absolute;
  left: 30px;
  top: 5px;
  font-size: 80%;
}


.hamburger,
.sp_under{
  display: none;
}


header nav{
  width: 70%;
  max-width: 1000px;
  margin: 0 auto;
}
header nav ul{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
header nav ul li{
  position: relative;
  text-align: center;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.7;
  border-right: 1px solid #777;
  width: calc( 100% / 3 );
  box-sizing: border-box;
  transition: .5s;
}
header nav ul li a{
  color: #222;
}
header nav ul li.push a:hover{
  transform: translateY(3px);
}
header nav ul li:last-of-type{
  border-right: none;
}
header nav ul li span{
  font-family: 'Poiret One', cursive;
  font-size: 11px;
  font-weight: 600;
  display: block;
  letter-spacing: 0.1em;
}
header nav ul li a{
  display: block;
}


/*ドロップダウンメニュー*/
li.mega ul.second_level {
  position: absolute;
  top: 40px;
  left: 0;
  box-sizing: border-box;
  width: 450px;
  padding: 2%;
  background: rgba(255,255,255,0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: all .2s ease;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  height: auto;
  display: flex;
  justify-content: center;
}
li.mega:hover ul.second_level {
  top: 50px;
  visibility: visible;
  opacity: 1;
}
li.mega ul.second_level > li {
  width: 45%;
  border: none;
  padding: 10px 15px;
  box-sizing: border-box;
  margin: 2%;
  padding: 7px;
  text-align: left;
  position: relative;
  transition: .5s;
}
li.mega ul.second_level > li a{
  width: auto;
  padding: 0 20px 0 0;
  box-sizing: border-box;
}
li.mega ul.second_level > li a:before{
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  width: 30px;
  height: 30px;
  color: #00becc;
  display: flex;
  justify-content: center;
  align-items: center;
  right: 10px;
  bottom: 0;
  top: 0;
  margin: auto;
}
li.mega ul.second_level > li:hover{
  transform: translateY(3px);
}


/*固定時の追従ナビゲーション*/
header nav.fixed{
  display: block;
  z-index: 9999999;
  position: fixed;
  max-width: inherit;
  width: 100%;
  height: 80px;
  background: rgba(255,253,250,0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
header nav.fixed ul{
  height: 80px;
  right:0;
  left: 0;
  width: 1000px;
  margin: 0 auto;
}
header nav.fixed ul li.mega ul.second_level{
  background: rgba(255,253,250,0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  height: unset;
}
/*ヘッダー基本情報*/
.header_information{
  position: absolute;
  top: 52px;
  right: 10px;
  box-sizing: border-box;
  display: flex;
}
.header_information .left{
  margin: 0 10px 0 0;
}
.header_information_tel{
  font-weight: 600;
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0.05em;
  color:#00becc;
}
.header_information_tel span{
  font-size: 16px;!important
}
.header_information_tel em,
.footer_information_tel em{
  display: block;
  font-size: 12px;
}
.yoyaku_notice{
  font-size: 85%;
  color:#e7535a;
  line-height: 1.6;
  display: block;
  margin: 20px 0;
}
.header_information .right{
}

/*診療時間*/
table.schedule{
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 15px;
}
table.schedule tr{
  width: 100%;
  border-bottom: 1px dashed #d9d5d0;
}
table.schedule tr:last-of-type{
  border-bottom: none;
}
table.schedule tr th:first-of-type{
  width: 30%;
  padding: 1%;
  box-sizing: border-box;
  text-align: center;
}
table.schedule th{
  width: 10%;
  text-align: center;
}
table.schedule td{
  text-align: center;
}
.schedule_note2{
  margin: 5px 0 0;
}
.schedule_note2 p{
  margin: 0 0 5px;
  font-size: 90%;
}
.schedule_note2 span{
  background: #ffe1e3;
  padding: 3px 10px;
  margin-right: 5px;
  border-radius: 100px;
}
/*--------------------------- フッターの設定 ----------------------------------*/
footer{
  padding: 0 5%;
  box-sizing: border-box;
}
.footer_wrap{
  display: flex;
  justify-content: space-between;;
  flex-wrap: wrap;
  align-items: center;
}
.footer_information{
  width: 40%;
  padding-right: 3%;
  box-sizing: border-box;
}
.footer_logo{
  margin: 0 auto 20px;
  text-align: center;
}

.footer_info_link{
  margin: 20px auto;
  text-align: center;
  border-bottom: double #ffe1e3;
  display: table;
}

.footer_information_note span{
  text-align: center;
  width: 280px;
  display: block;
  border: 1px solid #ee898e;
  border-radius: 100px;
  font-size: 14px;
  margin: 0 auto 5px;
}
.footer_information_tel{
  text-align: center;
  color: #00becc;
  font-weight: 600;
  font-size: 36px;
  line-height: 1;
  letter-spacing: 0.05em;
  margin: 20px 0 0;
}
.footer_information_tel span{
  font-size: 16px;!important
}
.footer_address{
  text-align: center;
  margin: 20px 0;
}
.footer_schedule{
}
.footer_map{
  width: 60%;
}
.footer_map iframe{
  width: 100%;
  height: 400px;
}
footer .copy{
  text-align: center;
  padding: 15px 0;
}

/*--------------------------- 共通の装飾 ----------------------------------*/
/*ボタン*/
.btn01 a{
  border: 1px solid #00becc;
  position: relative;
  border-radius: 100px;
  box-sizing: border-box;
  min-width: 250px;
  display: block;
  text-align: center;
  padding: 10px 50px 12px 25px;
  font-weight: 600;
  color: #00becc
}
.btn01 a:before{
  content: "";
  position: absolute;
  background: url(images/yajirushi.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
  right: 10px;
  width: 100px;
  height: 10px;
  transition: .5s;
  top: 0;
  bottom: 0;
  margin: auto;
}
.btn01 a:hover{
  background: #e9fdfd;
}
.btn01 a:hover:before{
  transform: translateX(8px);
}


/*見出し：英語モンセラ＋本文太字*/
.title01{
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.1em;
}
.title01 h2{
  font-weight: 600;
  font-size: 40px;
  letter-spacing: 0.15em;
}
.title01 p{
  font-family: 'Poiret One', cursive;
  font-size: 15px;
  font-weight: 500;
}

/*--------------------------- ホームの設定 ----------------------------------*/
/*メインビジュアル*/
.mainvisual{
  position: relative;
  height: 650px;
}
.mainvisual .swiper-container{
  height: 100%;
  z-index: -1;
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}
.mainvisual .swiper-wrapper{
}
.mainvisual .swiper-slide{
  position: relative;
}
.mainvisual .swiper-slide img{
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  width: calc( 100% - 300px );
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
}
.mainvisual_inner{
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  display: flex;
/*  align-content: center; */
  align-content: end;
  padding: 0 0 2% 4%;
  flex-wrap: wrap;
  box-sizing: border-box;
}
.mainvisual_catch{
  width: 100%;
  text-shadow: 0 0 5px #fff,0 0 10px #fff,0 0 12px #fff,0 0 18px #fff;
}
.mainvisual_catch em{
  letter-spacing: 0.15em;
  font-size: 45px;
  display: table;
  padding: 0 0 0 10px;
  margin: 0 0 10px;
  line-height: 1.6;
}
.mainvisual_catch span{
  font-size: 30px;
  letter-spacing: 0.25em;
  display: table;
  padding: 0 0 0 10px;
  margin: 0 0 10px;
  line-height: 1.6;
}
.mainvisual_event{
  width: 100%;
  max-width: 500px;
  box-sizing: border-box;
  border-radius: 15px;
  margin: 10px 0 10px 12px;
/*  background: rgba(0,190,204,0.2);
  padding: 20px;
  text-align: center;
  text-shadow: 0 0 5px #cceff1,0 0 10px #cceff1,0 0 12px #cceff1;
*/
text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 12px #fff, 0 0 18px #fff;
  font-weight: 500;
  font-size: 20px;
  color:#ee898e;
}
.mainvisual_preevent{
}
.mainvisual_preevent em{
  padding: 2px 15px;
  background: #fff;
  border-radius: 100px;
  color: #ee898e;
  font-size: 80%;
  text-shadow: none;
}
.mainvisual_event span{
  font-size: 32px;
}
.mainvisual_times{
  max-width: 500px;
  background: #fff;
  box-shadow: 0 0 10px #e1d9d9;
  border-radius: 15px;
  padding: 10px 20px;
}
.mainvisual_recruit{
  max-width: 500px;
  margin: 10px 0;
}

/*テキストスライド*/



/*お知らせ*/
.information{
  background: #fff;
  box-shadow: 0 0 6px #e1d9d9;
  box-sizing: border-box;
  padding: 20px 50px;
  margin: 1%;
  height: 100%;
/*  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
*/
  border-radius: 30px;
  width: 48%;
  box-sizing: border-box;
}
.calendar h2,
.information h2{
  font-size: 24px;
  letter-spacing: 0.1em;
  text-align: center;
  margin: 10px 0 0;
}
.information_wrap{
  width: 100%;
}
.information_wrap ul{
}
.information_wrap li{
  position: relative;
  background: #fff;
  margin-bottom: 20px;
  transition: .5s;
  border-bottom: 1px solid;
}
.information_wrap li:hover{
  transform: translateX(10px);
}
.information_wrap li a{
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 5px;
  box-sizing: border-box;
}
.information_wrap li span{
  width: 150px;
  border-right: 1px solid #777;
  padding: 0 1%;
  box-sizing: border-box;
}
.information_wrap li p{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: calc( 100% - 150px );
  padding: 0 2%;
  box-sizing: border-box;
}



/*お知らせとカレンダー*/
.flex_top{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 1% 3%;
  height: 520px;
}
.calendar{
  width: 48%;
  margin: 1%;
  box-sizing: border-box;
}
.calendar iframe{
  width: 100%;
  border-radius: none!important;
}



/*くわな桜通り歯科の特徴*/
.feature{
  margin: 0 0 100px;
}
.feature h2{
  font-size: 44px;
  letter-spacing: 0.3em;
  position: relative;
  padding: 80px 0 100px 150px;
  font-weight: 300;
}
.feature h2::before{
  content: "—FEATURE";
  letter-spacing: 0.3em;
  font-family: 'Poiret One', cursive;
  color: #f2eded;
  font-size: 150px;
  position: absolute;
  top: -20px;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: -1;
}
.feature h3{
  line-height: 1.5;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.15em;
}
.feature h4{
  line-height: 1.5;
  font-size: 26px;
  color:#ee898e;
  letter-spacing: 0.1em;
  padding: 10px 0;
}
.feature_flex{
  display: flex;
  margin: 0 0 100px;
}
.feature_flex:nth-child(odd){
    flex-direction: row-reverse;
}
.feature_contents{
  width: 50%;
  box-sizing: border-box;
  padding: 0 2% 0 5%;
}
.feature_img{
  width: 50%;
  box-sizing: border-box;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
  overflow: hidden;
  height: 480px;
}
.feature_flex:nth-child(odd) .feature_img{
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
}
.feature_img img{
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.feature_contents_inner{
  display: flex;
  justify-content: space-between;

}
.feature_contents_inner_item{
  width: 48%;
}
.feature_contents_inner_item img{
  object-fit: cover;
  width: 100%;
  height: 300px;
  border-radius: 10px;
}
.feature_contents_inner_point{
  background: #fff;
  border-radius: 10px;
  padding: 10px 20px;
  margin: 10px 0 0;
  box-sizing: border-box;
  box-shadow: 0 0 3px #e1d9d9;
}
.feature_contents_inner_point h5{
  line-height: 1.5;
  font-size: 20px;
  font-weight: 500;
  color:#00becc;
  letter-spacing: 0.1em;
  padding: 0 0 10px 0;
}
.feature_contents_inner_point .btn01.inline{
  margin: 0 0 0 auto;
  display: table!important;
}


/*特徴のアイコンつきリスト*/
.top_icon_list{
  margin: 15px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.top_icon_list li{
  width: 48%;
  padding: 10px 20px;
  margin: 0 0 10px;
  box-sizing: border-box;
  box-shadow: 0 0 3px #e1d9d9;
  background: #fff;
  border-radius: 100px;
  font-weight: 500;
  font-size: 110%;
  display: flex;
  align-items: center;
}
.top_icon_list li img{
  max-height: 35px;
  width: 50px;
  margin-right: 10px;
  object-fit: initial;
}
.top_icon_list li span{
  font-size: 80%;
  display:block;
  line-height: 1.2;
}








/*診療案内*/
.treatment{
  margin: 0 4%;
}

ul.treatment_item{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: -40px 0 40px;
}
ul.treatment_item.kasou{
  max-width: 1000px;
  margin: 0 auto 60px;
}
ul.treatment_item li{
  width: calc( 100% / 7 - 1% );
  margin-bottom: 2%;
  background: #fff;
  box-sizing: border-box;
  position: relative;
  transition: .5s;
  box-shadow: 0 0 3px #e1d9d9;
  border-radius: 10px;
}
ul.treatment_item.kasou li{
  width: calc( 100% / 4 - 2% );
}
ul.treatment_item li:before{
  content: "";
  display: block;
  padding-top: 100%;
}
ul.treatment_item li:after{
  content: "";
  position: absolute;
  bottom: 10px;
  background: url(images/yajirushi.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
  right: 10px;
  width: 100px;
  height: 10px;
  transition: .5s;
}
ul.treatment_item li:hover:after{
  transform: translateX(8px);
}
ul.treatment_item li a{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  text-align: center;
}
ul.treatment_item li img{
  max-width: 100px;
  height: 70px;
  box-sizing: border-box;
  display: block;
  margin: 10px;
  transition: .5s;
}
ul.treatment_item li a:hover img{
  transform: translateY(-10px);
}
ul.treatment_item li:hover{
  box-shadow: 0 0 20px #e1d9d9;
}
ul.treatment_item li h5{
  display: block;
  width: 100%;
  font-weight: 600;
  font-size: 1vw;
}
ul.treatment_item li a{
  color: #1e1b1b;
}
ul.treatment_item span{
  display: block;
  width: 100%;
  font-weight: 500;
  font-size: 80%;
  letter-spacing: 0.1em;
}




/*院長あいさつ*/
.works{
}
.works h2{
  font-size: 44px;
  letter-spacing: 0.3em;
  position: relative;
  padding: 80px 0 60px 150px;
  font-weight: 300;
}
.works h2::before{
  content: "—works";
  letter-spacing: 0.3em;
  font-family: 'Poiret One', cursive;
  color: #f2eded;
  font-size: 150px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: -1;
}
.works h3{
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin: 0 0 20px;
}
.works_item{
  display: flex;
  width: 1200px;
  margin: 0 auto 80px;
  flex-direction: row-reverse;
}
.works .title01{
  text-align: left;
  margin-bottom: 30px;
}
.works_item .text{
  width: 785px;
  margin-left: 35px;
}
.works_item .text p{
  margin-bottom: 1em;
}
.works_item .img{
  width: 380px;
}
.works_item .img img{
  margin: 0 0 15px;
  border-radius: 10px;
}

/*--------------------------- 下層ページの設定 ----------------------------------*/
/*下層ページタイトル*/
.page_head_title{
  line-height: 1.2;
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  justify-content: center;
  padding: 80px;
}
.page_head_title h1{
  letter-spacing: 0.2em;
  font-size: 40px;
}
/*下層のパンくず*/
.breadcrumb{
  display: flex;
  justify-content: flex-end;
  font-size: 14px;
  padding: 15px 30px 50px 30px;
  flex-wrap: wrap;
}
.breadcrumb li{
  position: relative;
  padding-right: 20px;
}
.breadcrumb li:after{
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  color: #1e1b1b;
  top: 1px;
  bottom: 0;
  right: 6px;
  margin: auto;
}
.breadcrumb li:last-of-type{
  padding-right:0;
}
.breadcrumb li:last-of-type::after{
  display:none;
}
/*下層のラップ*/
.contents_wrap{
  width: 1200px;
  margin: 0 auto 80px;
}
/*下層の装飾設定*/
.contents_wrap h2{
  font-weight: 600;
  font-size: 170%;
  letter-spacing: 0.1em;
  border-bottom: double;
  padding: 30px 0 10px;
  position: relative;
  margin-bottom: 20px;
  line-height: 1.4;
}
.contents_wrap h3{
  font-weight: 500;
  font-size: 135%;
  background: #ffe8e1;
  padding: 5px 30px;
  border-radius: 100px;
  display: table;
  margin: 0 0 10px;
}
.contents_wrap h4{
  color: #ee898e;
  font-weight: 500;
  font-size: 115%;
}
.contents_contents .item h3{
  margin-top: 30px;
}
.contents_contents .item p.float_right{
  float: left;
  margin: 0 15px 15px 0;
}
.contents_contents .item p.float_right img{
  width: 100%;
  max-width: 350px;
  border-radius: 5px;
}
.contents_contents ul.list li{
  list-style: disc;
  margin-left: 1.5em;
  font-weight: 500;
  font-size: 105%;
}
.contents_contents ul{
  margin: 0 0 15px;
}
/*アンカーリンク*/
.ank_link{
  margin-bottom: 80px;
}
.ank_link ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.ank_link li{
  width: calc( 100% / 3 - 10px );
  text-align: center;
  font-weight: 500;
  position: relative;
  border: 1px solid #00becc;
  padding: 10px 30px;
  box-sizing: border-box;
  margin: 0 0 10px;
  background: #fff;
  margin-right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .5s;
  border-radius: 100px;
}
.ank_link li:hover{
  background: #00becc;
  color: #fff;
}
.ank_link li:nth-child(3n){
  margin-right: 0;
}
.ank_link li a{
  display: block;
}
.ank_link li a:hover{
  color: #fff;
}
.ank_link li a:before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.ank_link li a:after{
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  width: 30px;
  height: 30px;
  color: #00becc;
  display: flex;
  justify-content: center;
  align-items: center;
  right: 10px;
  bottom: 0;
  top: 0;
  margin: auto;
  transition: .5s;
}
.ank_link li a:hover::after{
  transform: translateY(5px);
  color: #fff;
}

/*チェックリスト*/
ul.check{
  background: #fff;
  padding: 30px;
  margin-bottom: 30px;
}
ul.check li{
  position: relative;
  margin: 0 0 10px 30px;
  font-weight: 600;
  text-indent: -25px;
  border-bottom: dashed 2px #ccc;
  display: table;
}
ul.check li:before{
  width: 30px;
  height: 30px;
  margin-right: 10px;
  content: "\f14a";
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

/*フロー*/
.flow{
  counter-reset: listcounter;
}
.flow dl{
  margin-bottom: 20px;
  position: relative;
}
.flow dl:before{
  position: absolute;
  width: 5px;
  height: calc( 100% + 30px );
  border-left: dashed 2px #ccc;
  content: "";
  left: 50px;
  z-index: -1;
}
.flow dl:last-child::before{
  border:none;
}
.flow dl:after {
   content: "";
   display: block;
   clear: both;
}
.flow dt{
  font-size: 120%;
  font-weight: 600;
  text-indent: -120px;
  margin: 0 0 5px 120px;
  line-height: 1.5;
}
.flow dt:before{
  counter-increment: listcounter;
  content: "STEP 0"counter(listcounter);
  margin-right: 20px;
  font-family: 'Poiret One', cursive;
  background: #ee898e;
  padding: 5px;
  text-align: center;
  box-sizing: border-box;
  color: #fff;
  width: 100px;
  display: inline-block;
  text-indent: 0;
  margin-left: 0;
  border-radius: 100px;
}
.flow dd{
  padding-left: 120px;
}
.flow dd p.float_right{
  float: left;
  margin: 0 15px 15px 0;
}
.flow dd p.float_right img{
  max-width: 200px!important;
}
/*補綴物の説明表*/
.prosthetic{
}
.prosthetic dl{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 0 30px;
  padding: 0 0 30px;
  border-bottom: dashed 2px #ddd;
}
.prosthetic dl dt{
  width: 20%;
}
.prosthetic dl dt img{
  width: 100%;
}
.prosthetic dl dd{
  width: 78%;
}
.prosthetic dl dd h5{
  font-size: 120%;
  font-weight: 600;
}
.prosthetic dl dd h5 span{
  display: inline-block;
  background: #00becc;
  color: #fff;
  font-size: unset;
  margin-left: 5px;
  padding: 3px 10px;
}
/*--------------------------- ブログの設定 ----------------------------------*/
/*ブログページのラップ*/
.contents_wrap.blog{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.blog_contents{
  width: 900px;
  margin: 0 0 80px;
}
.blog_contents img{
  margin: 30px auto;
  border-radius: 4px;
}
.contents_wrap.blog .contents_price{
  margin: 0;
}
.contents_wrap.blog table{
  margin-bottom: 15px;
}
.sidebar{
  width: 240px;
}
.blog_class{
  margin: 0 0 10px;
  text-align: right;
}
.blog_contents_item{
  box-sizing: border-box;
  margin: 0 0 1.5em;
}
.blog_contents_item_inner{
}
.blog_contents_item_inner .thumbnail{
  float: left;
  width: 150px;
  margin: 0 15px 15px 0;
}
.blog_contents_item_inner .btn01 a{
  display: table;
  margin: 0 0 0 auto;
}
.pager{
  text-align: right;
  margin: 0 0 30px;
}
.page-numbers.current{
  padding:8px;
}
a.page-numbers{
  background: #fff;
  padding:8px;
}
.side_title{
  font-weight: 600;
  font-size: 115%;
  border-bottom: solid 1px;
  margin: 5px 0;
  padding: 5px 0;
}
.side_blog_category a{
  display: block;
}
.sidebar_box{
  margin: 0 0 30px;
}
/*--------------------------- 予約フォームの設定 ----------------------------------*/
.form_notice{
  margin: 0 0 60px;
}
.form_notice h3{
  margin: 20px 0 0;
}
.form{
}
.form dl{
  display: flex;
  justify-content: space-between;
  margin-bottom: 3px;
}
.form dt{
  width: 30%;
  box-sizing: border-box;
  padding: 10px 15px;
  background: #ffe8e1;
  display: flex;
  align-items: center;
}
.form dd{
  width: 70%;
  box-sizing: border-box;
  padding: 10px 15px;
  background: #fff;
}
form p{
  margin: 0 0 1em;
}
button[type="submit"],
input[type="submit"]{
  display: table;
  margin: 30px auto;
  width: 200px;
  height: 50px;
  border: none;
  font-size: 15px;
  font-family: 'M PLUS 2', sans-serif;
  border-radius: 100px;
  background: #00becc;
  color: #fff;
  transition: .3s;
}
button[type="submit"]:hover,
input[type="submit"]:hover{
  opacity: .7;
}
.mw_wp_form.mw_wp_form_complete .btn01 a{
    max-width: 400px;
    margin: 50px auto;
}

/*--------------------------- 医院紹介の設定 ----------------------------------*/
.about_img{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.about_img img{
  width: calc( 100% / 2 - 10px );
}
.about_info,
.about_clinic,
.about_facility{
  margin-bottom: 80px;
}
.about_info{
  margin-top: 30px;
}
.about_info dl{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 1px dotted;
  padding: 10px;
}
.about_info dt{
  width: 30%;
  font-weight: 500;
  text-align: center;
}
.about_info dd{
  width: 70%;
}
.about_info .schedule_note{
  margin-top: 10px;
  text-align: right;
}

/*医院紹介・設備紹介のスライダー設定*/
.clinic-swiper h4{
  margin: 15px 0 10px;
}
.swiper-container2.clinic-swiper,
.swiper-container.clinic-swiper{
    width: 800px
}
.swiper-container2 .swiper-slide2,
.swiper-container .swiper-slide {
  position: relative;
}
.swiper-button-prev2,
.swiper-button-prev {
    background: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    top: 40%!important;
}
.swiper-button-prev2::after,
.swiper-button-prev::after {
    content: unset;
}
.swiper-button-next2,
.swiper-button-next {
    background: none;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    top: 40%!important;
}
.swiper-button-next2::after,
.swiper-button-next::after {
    content: unset;
}
.swiper-slide-content2,
.swiper-container.clinic-swiper .swiper-slide .swiper-slide-content{
  margin: 20px 0 0;
}
/*--------------------------- 医師紹介の設定 ----------------------------------*/
.doctor_contents{
  margin: 0 0 100px;
}
.doctor_contents .works_item{
  margin: 0 0 60px;
  align-items: flex-end;
}
.doctor_carrer{
  padding: 20px;
  margin: 0 0 20px;
  background: #fff;
  box-shadow: 0 0 10px #e1d9d9;
  border-radius: 15px;
}
.doctor_carrer table{
  width: 100%;
  border-collapse: collapse;
}
.doctor_carrer table th{
  width: 15%;
}
.doctor_carrer table td{
  width: 85%;
}
.doctor_carrer_flex{
  display: flex;
  justify-content: space-between;
}
.doctor_certification{
  padding: 20px;
  margin: 0 0 20px;
  /* width: 49%; */
  width: 100%;
  box-sizing: border-box;
  border: 1px solid;
}
.doctor_society{
  padding: 20px;
  margin: 0 0 20px;
  /* width: 49%; */
  width: 100%;
  box-sizing: border-box;
  border: 1px solid;
}
/*--------------------------- 診療案内の設定 ----------------------------------*/
/*お悩み*/
.contents_trouble{
  margin: 0 0 100px;
  position: relative;
  padding: 50px 0;
  text-shadow: 0 0 2px #fffdfa, 0 0 2px #fffdfa, 0 0 2px #fffdfa, 0 0 2px #fffdfa, 0 0 4px #fffdfa, 0 0 5px #fffdfa, 0 0 5px #fffdfa, 0 0 10px #fffdfa, 0 0 10px #fffdfa;
  min-height: 280px;
  align-items: center;
  align-content: center;
  display: flex;
  flex-wrap: wrap;
}
.contents_trouble > img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  /*object-position: top;*/
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
  filter: blur(5px);
  opacity: 0.8;
}
.contents_trouble h2{
  text-align: center;
  border-bottom: none;
  font-size: 30px;
  margin: 0 0 20px;
  width: 100%;
}
.contents_trouble ul{
  width: 515px;
  margin: 0 auto;
  font-size: 110%;
  box-sizing: border-box;
}
.contents_trouble ul li{
  position: relative;
  padding-left: 40px;
}
.contents_trouble ul li:before{
  position: absolute;
  content: "\f14a";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  color: #00becc;
}
/*概要*/
.contents_overview{
  box-sizing: border-box;
  padding: 30px;
  margin: 0 0 100px;
}
.contents_overview h2{
  border-bottom: none;
}
.contents_overview h3{
/*  background: none;
  padding: 0;
 */
}
.contents_overview p.float_left{
  float: right;
  margin: 0 0 15px 15px;
}
.contents_overview p.float_left img{
  width: 100%;
  max-width: 450px;
  border-radius: 5px;
}
/*特徴*/
.contents_feature{
  background: #fff;
  box-sizing: border-box;
  padding: 30px;
  margin: 0 0 100px;
}
.contents_feature h2{
  border-bottom: none;
  background: none;
}
.contents_feature h3{
  padding: 0;
  margin: 0 0 15px;
  border-bottom: none;
  background: linear-gradient(transparent 60%, #ffe8e1 60%);
  border-radius: 1px;
}
/*ページ内リンク*/
.contents_link{

}
/*コンテンツ部分*/
.contents_contents{

}
.contents_contents .item{
  margin: 0 0 100px;
}
.contents_contents .item p{
  margin-bottom: 1em;
}
.contents_contents .item p:last-of-type{
  margin-bottom: 0;
}


/*コンテンツ部分の表（3行）*/
.contents_contents table.table3{
  border-collapse: collapse;
  background: #fff;
  width: 100%;
}
.contents_contents table.table3 th{
  border: solid 1px #ddd;
  width: calc( 100% / 4 );
  box-sizing: border-box;
  padding: 5px 15px;
  background: #fbfbfb;
  font-weight: 600;
  text-align: center;
}
.contents_contents table.table3 th.midashi{
  background: #ffe8e1;
  font-weight: 600;
  text-align: center;
}
.contents_contents table.table3 td{
  width: calc( 100% / 4 );
  border: solid 1px #ddd;
  box-sizing: border-box;
  padding: 5px 15px;
}



/*料金表*/
.contents_price{
  margin: 0 0 100px;
}
.contents_price table{
  border-collapse: collapse;
  background: #fff;
  width: 100%;
  margin-bottom: 50px;
}
.contents_price table th{
  border: solid 1px #ddd;
  width: 50%;
  box-sizing: border-box;
  padding: 5px 15px;
  background: #fff;
}
.contents_price table th.midashi{
  background: #ffe8e1;
  font-weight: 600;
  text-align: center;
}
.contents_price table td{
  border: solid 1px #ddd;
  box-sizing: border-box;
  padding: 5px 15px;
}
/*--------------------------- アクセスの設定 ----------------------------------*/
.access_info{
  margin: 40px 0 80px;
}
.access_info_flex{
  display: flex;
  justify-content: space-between;
}
.access_info_flex dl{
  width: 49%;
  background: #fff;
  box-sizing: border-box;
  padding: 2%;
}
.access_info_flex dt{
  border: 1px solid #ee898e;
  color: #ee898e;
  font-weight: 500;
  padding: 10px;
  margin-bottom: 15px;
  font-size: 120%;
  border-radius: 100px;
}
.access_info_flex dt i{
  margin-right: 5px;
}
.access_info_flex dd{
}
.access_info_flex dd ul{
  margin: 15px 0;
}
.access_info_flex dd ul li{
  font-weight: 500;
}
.access_wrap{
  margin: 0 0 80px;
  display: flex;
  justify-content: space-between;
}
.access_img{
  width: 48%;
}
.access_about{
  width: 50%;
}
.access_about dl{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 1px dotted;
  padding: 8px;
}
.access_about dt{
  width: 15%;
  font-weight: 500;
}
.access_about dd{
  width: 85%;
}

/*--------------------------- 求人情報の設定 ----------------------------------*/
table.recruit{
  width: 100%;
  border-collapse:collapse;
  background: #fff;
  margin-bottom: 80px;
}
table.recruit tr{
}
table.recruit th{
  box-sizing: border-box;
  background: #ffe8e1;
  font-weight: 500;
  padding: 10px;
  width: 30%;
  border: 10px #fff solid;
  text-align: center;
}
table.recruit td{
  box-sizing: border-box;
  padding: 10px;
  width: 70%;
}
/*--------------------------- お知らせの設定 ----------------------------------*/
.information_list{
  margin: 0 0 100px;
}
.information_list ul{

}
.information_list li{
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: dashed 2px #ddd;
}
.information_list li span{
  background: #00becc;
  color: #fff;
  padding: 5px 15px;
  margin: 0 0 10px;
  display: inline-block;
}
.information_list li p strong{
  font-size: 120%;
  margin: 0 0 10px;
}


.contents_wrap strong{
  background:linear-gradient(transparent 60%, #ffe6c1 60%);

}


/*---------------以下スマホ------------------*/

/* CSS Document */
@media (max-width: 640px) {
body {
  font-size: 14px;
}
body, #mainvisual .inner, header, footer{
  min-width: auto;
}
.sp{
  display: block;
}
.pc{
  display: none;
}
table.schedule{
  font-size: 3vw;
}
.schedule_note2 span{
  display: table;
}
.contents_contents .item p.float_right{
  float: none;
  display: block;
}
.contents_contents .item p.float_right img{
  max-width: 100%;
}
/*---------------------------　ハンバーガー　---------------------------*/
/*　ハンバーガーボタン　*/
.hamburger {
  display : block;
  position: fixed;
  z-index : 9999;
  right : 13px;
  top   : 12px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left    : 6px;
  background : #555;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition   : 0.5s ease-in-out;
  transition        : 0.5s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}
/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  -webkit-transform: rotate(315deg);
  -moz-transform   : rotate(315deg);
  transform        : rotate(315deg);
}
.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  -webkit-transform: rotate(-315deg);
  -moz-transform   : rotate(-315deg);
  transform        : rotate(-315deg);
}
nav.globalMenuSp {
  position: fixed;
  z-index : 999;
  top  : 0;
  left : 0;
  background: rgba(255,255,255,0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  text-align: center;
  transform: translateX(100%);
  transition: all 0.6s;
  width: 100%;
  height: 100vh!important;
  display: flex;
  align-items: center;
}
nav.globalMenuSp ul {
  margin: 0 auto 120px;
  padding: 0;
  width: 100%;
  display: block;
  height: auto;
  position: absolute;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
}
nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
nav.globalMenuSp ul li a {
  display: block;
  padding: 1em 0;
  text-decoration :none;
}
/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateX(0%);
}
/*--------------------------- スマホ固定ボタンの設定 ----------------------------------*/
.sp_under{
  position: fixed;
  height: 50px;
  width: 100%;
  bottom: 0;
  left: 0;
  background: #00becc;
  display: block;
  z-index: 99;
}
.sp_under ul{
  display: flex;
  justify-content: space-between;
}
.sp_under ul li{
  width: 50%;
  height: 50px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-right: solid 1px #fff;
  font-size: 15px;
}
.sp_under ul li:last-of-type{
  border-right: none;
}
.sp_under ul li a:before{
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  top: 0;
  left: 0;
}
.sp_under ul li a{
  text-align: center;
  color: #fff;
}
.sp_under ul li a i{
  margin-right: 5px;
}
/*--------------------------- スクロールアニメーションの設定 ----------------------------------*/

/*--------------------------- ヘッダーの設定 ----------------------------------*/
header{
  top: 0;
  height: 65px;
  position: fixed;
  width: 100%;
  z-index: 999;
  background:rgb(255 253 250);
/* rgba(245,245,245,0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
*/
}
header h1 {
    display: none;
}
.header_logo{
  font-size: 24px;
  height: 55px;
  display: flex;
  align-items: center;
  width: calc( 100% - 140px );
  text-align: center;
  justify-content: center;
  margin: 0 auto;
}
.header_logo img{
  max-height: 52px;
  width: auto;
  padding: 2px 0 0;
}
header nav ul{
  position: unset;
  display: unset;
}
header nav ul li{
  text-align: center;
  font-size: 4vw;
  border-right: none;
  width: 100%;
}
header nav ul li.push a:hover{
  transform: unset;
}
header nav ul li span{
  display: none;
}
header nav ul li a{
}
/*ドロップダウンメニュー*/
li.mega ul.second_level {
  display: none;
}
/*ヘッダー基本情報*/
.header_information{
  display: none;
}


/*--------------------------- フッターの設定 ----------------------------------*/
footer{
  padding: 0 5% 60px;
}
.footer_wrap{
  display: block;
}
.footer_information{
  width: 100%;
  padding-right: 0;
}
.footer_logo{
  font-weight: 500;
  font-size: 7vw;
  margin: 0 auto 20px;
}
.footer_information_tel{
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0.05em;
}
.footer_information_tel span{
  font-size: 16px;!important
}
.footer_schedule{
  margin-bottom: 20px;
}
.footer_map{
  width: 100%;
}
.footer_map iframe{
  height: 300px;
}
footer .copy{
  text-align: center;
  padding: 15px 0;
}
/*--------------------------- ブログの設定 ----------------------------------*/
.news_box, .blog_box{
  width: auto;
}
.blog_box{
  margin: 30px 4% ;
}
.contents_wrap.blog{
  display: block;
}
.blog_contents,.sidebar{
  width: auto;
}
/*--------------------------- 共通の装飾 ----------------------------------*/
/*ボタン*/
.btn01 a{
  position: relative;
  box-sizing: border-box;
  min-width: 280px;
  display: block;
  text-align: center;
  padding: 10px 50px 12px 25px;
  font-weight: 600;
}
.btn01 a:hover::before{
  transform: translateX(0);
}


/*見出し：英語モンセラ＋本文太字*/
.title01{
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.1em;
}
.title01 h2{
  font-size: 30px;
}
.title01 p{
  font-size: 12px;
}


.header_first{
  padding: 0;
  display: block;
}

/*--------------------------- ホームの設定 ----------------------------------*/
/*メインビジュアル*/
.mainvisual{
  height: 270px;
/*  margin: 65px 0 420px;*/
  margin: 65px 0 540px;
}
.mainvisual_recruit{
  margin: 0 auto;
  max-width: 400px;
}  
.mainvisual .swiper-slide img{
  width: 100%;
}
.mainvisual_inner{
  position: absolute;
  top: 240px;
  left: 0;
  right: 0;
  width: auto;
  height: auto;
  margin: auto;
  padding: 3%;
}
.mainvisual_catch{
  top: 200px;
  left: 10px;
}
.mainvisual_catch em{
  font-size: 7vw;
  letter-spacing: 0.1em;
  line-height: 1.2;
  margin: 0 0 20px 0;
}
.mainvisual_catch span{
  font-size: 20px;
  letter-spacing: 0.25em;
}
.mainvisual_event{
  bottom: auto;
  left: auto;
  width: auto;
  margin: auto;
  font-size: 90%;
}
.mainvisual_event span{
  font-size: 24px;
}
.mainvisual_times{
  max-width: 100%;
  width: 100%;
  margin: 0;
}
.mainvisual_preevent em{
  display: block;
  margin: 5px 0 0;
}

/*お知らせ*/
.information{
  padding: 20px;
  margin: 0 0 30px;
  display: block;
  border-radius: 15px;
  width: auto;
}
.calendar h2,
.information h2{
  width: auto;
  margin: 10px 0 0;
}
.information_wrap{
  width: auto;
}
.information_wrap ul{
}
.information_wrap li{
  position: relative;
  background: #fff;
  margin-bottom: 20px;
  transition: .5s;
  border-bottom: 1px solid;
}
.information_wrap li:hover{
  transform: translateX(0);
}
.information_wrap li a{
  width: 100%;
  display: block;
}
.information_wrap li span{
  width: auto;
  border-right: none;
  padding: 0;
  display: block;
}
.information_wrap li p{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: auto;
  padding: 0;
}



/*お知らせとカレンダー*/
.flex_top{
  display: block;
  padding: 1% 3% 80px;
  height: auto;
}
.calendar{
  width: 100%;
  margin: 1%;
  box-sizing: border-box;
}
.calendar iframe{
  width: 100%;
}




.header_logo_info{
  display: none;
}

/*くわな桜通り歯科の特徴*/
.feature{
  margin: 0 0 100px;
}
.feature h2{
  font-size: 5.5vw;
  letter-spacing: 0.3em;
  position: relative;
  padding: 40px 0;
  font-weight: 300;
  text-align: center;
}
.feature h2::before{
  content:"FEATURE";
  font-size: 13vw;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}
.feature h3{
  line-height: 1.5;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.15em;
}
.feature h4{
  line-height: 1.5;
  font-size: 18px;
  color:#ee898e;
  letter-spacing: 0.1em;
  padding: 10px 0;
}
.feature_flex:nth-child(odd),
.feature_flex{
  flex-wrap: wrap;
  margin: 0 0 50px;
  flex-direction: column-reverse;
}
.feature_contents{
  width: 100%;
  box-sizing: border-box;
  padding: 0 2% 0 5%;
}
.feature_img{
  width: 100%;
  overflow: hidden;
  height: 240px;
  margin: 0 0 20px;
}
.feature_flex:nth-child(odd) .feature_img{
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  height: 240px;
  margin: 0 0 20px;
}
.feature_contents_inner{
  display: block;
}
.feature_contents_inner_item{
  width: 100%;
  margin: 0 0 40px;
}
.feature_contents_inner_item img{
  object-fit: cover;
  width: 100%;
  height: 180px;
  border-radius: 10px;
}
.feature_contents_inner_point{
  background: #fff;
  border-radius: 10px;
  padding: 10px 20px;
  margin: 10px 0 0;
  box-sizing: border-box;
  box-shadow: 0 0 3px #e1d9d9;
}
.feature_contents_inner_point h5{
  font-size: 18px;
}
.feature_contents_inner_point .btn01.inline{
  margin: 0 0 0 auto;
  display: table!important;
}


/*特徴のアイコンつきリスト*/
.top_icon_list{
  flex-wrap: wrap;
}
.top_icon_list li{
  width: 48%;
  padding: 10px 20px;
  margin: 0 0 10px;
  box-sizing: border-box;
  box-shadow: 0 0 3px #e1d9d9;
  background: #fff;
  border-radius: 100px;
  font-weight: 500;
  font-size: 110%;
  display: flex;
  align-items: center;
}
.feature_contents_inner_item .top_icon_list li{
  width: 100%;
}
.top_icon_list li img{
  max-height: 35px;
  width: 50px;
  margin-right: 10px;
  object-fit: initial;
}
.top_icon_list li span{
  font-size: 80%;
  display:block;
  line-height: 1.2;
}









/*診療案内*/
.treatment{
  margin: 0 3% 80px;
}
ul.treatment_item{
}
ul.treatment_item.kasou{
  width: auto;
}
ul.treatment_item li,
ul.treatment_item.kasou li{
  width: calc( 100% / 2 - 2% );
  margin-bottom: 20px;
}
ul.treatment_item li img{
  max-width: 100px;
  max-height: 50px;
  box-sizing: border-box;
  display: block;
  margin: 10px;
  transition: .5s;
}
ul.treatment_item li a:hover img{
  transform: unset;
}
ul.treatment_item li:hover{
  box-shadow: none;
}
ul.treatment_item li h3{
  font-size: 4vw;
}
ul.treatment_item span{
  font-size: 2.5vw;
}
ul.treatment_item li h5{
  font-size: 3.5vw;
}
/*院長紹介*/
.greeting{
  width: auto;
  margin: 0 3% 80px;
}
.greeting_item{
  width: auto;
  flex-wrap: wrap;
}
.greeting_item .text{
  width: auto;
  margin: 0;
}
.greeting h2{
  font-size: 5.5vw;
  letter-spacing: 0.3em;
  position: relative;
  padding: 40px 0;
  font-weight: 300;
  text-align: center;
}
.greeting h2::before{
  content:"GREETING";
  font-size: 13vw;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}
.greeting h3{
  font-size: 24px;
}
.greeting_item{
  flex-direction: column-reverse;
}
.greeting_item .text p{
  margin-bottom: 1em;
}
.greeting_item .img{
  width: auto;
  margin: 0 auto 20px;
}
.greeting_item .img img{
  margin: 0 auto;
  width: 250px;
  display: block;
}

/*--------------------------- 下層ページの設定 ----------------------------------*/
/*下層ページタイトル*/
.page_head_title{
  margin: 65px 0 0;
  padding: 3%;
  height: 130px;
  text-align: center;
}
.page_head_title h1{
  font-size: 22px;
}
.page_head_title h2{
  left: 0;
  right: 0;
  margin: auto;
}
.page_head_title span{
  font-size: 8.5vw;
}
/*下層のパンくず*/
.breadcrumb{
  font-size: 12px;
  padding: 15px 3% 50px;
}
/*下層のラップ*/
.contents_wrap{
  width: auto;
  margin: 0 3% 80px;
}
/*下層の装飾設定*/
.contents_wrap h3{
  font-size: 150%;
}
.contents_wrap h4{
}
/*むし歯・歯周病の進行部分*/
.flow dd p.float_right{
  float: none!important;
  margin: 0 0 15px 0;
}
.flow dd p.float_right img{
  width: 90%;
  display: block;
  margin: 0 auto;
}


/*アンカーリンク*/
.ank_link{
  margin-bottom: 80px;
}
.ank_link ul{
  display: block;
}
.ank_link li{
  width: auto;
  margin: 0 0 10px;
}
.ank_link li a{
  display: block;
}
.ank_link li a:hover::after{
  transform: translateY(0);
}
/*--------------------------- 予約フォームの設定 ----------------------------------*/
.form dl{
  display: block;
  margin: 0 0 10px;
}
.form dt{
  width: auto;
  box-sizing: border-box;
  padding: 10px 15px;
  background: #ffe8e1;
  display: flex;
  align-items: center;
}
.form dd{
  width: auto;
  box-sizing: border-box;
  padding: 10px 15px;
  background: #fff;
}
textarea,
input[type="text"]{
  width: -webkit-fill-available;
}
input.hasDatepicker{
  width: 40%;
}
/*--------------------------- 医院紹介の設定 ----------------------------------*/
.about_img{
  display: block;
}
.about_img img{
  width: 100%;
  margin-bottom: 10px;
}
.about_info{
  margin-top: 15px;
}
.about_info dt{
  width: 100%;
  text-align: left;
}
.about_info dd{
  width: 100%;
}

/*医院紹介・設備紹介のスライダー設定*/
.swiper-container2.clinic-swiper,
.swiper-container.clinic-swiper{
    width: 100%;
}
.swiper-container2.clinic-swiper .swiper-slide,
.swiper-container.clinic-swiper .swiper-slide {
  position: relative;
}
.swiper-container.clinic-swiper .swiper-slide .swiper-slide-content {
}
.swiper-button-prev2,
.swiper-button-prev {
    background: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    top: 30%!important;
}
.swiper-button-prev2::after,
.swiper-button-prev::after {
    content: unset;
}
.swiper-button-next2,
.swiper-button-next {
    background: none;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    top: 30%!important;
}
.swiper-button-next2::after,
.swiper-button-next::after {
    content: unset;
}

/*--------------------------- 医師紹介の設定 ----------------------------------*/
.doctor_contents .greeting_item{
  align-items: unset;
}
/*--------------------------- 診療案内の設定 ----------------------------------*/
/*お悩み*/
.contents_trouble{
}
.contents_trouble h3{
  font-size: 22px;
}
.contents_trouble ul{
  width: auto;
  margin: 0 3%;
}
.contents_trouble ul li:before{
  margin: unset;
}
/*概要*/
.contents_overview{
  padding: 20px;
}
.contents_overview p.float_left{
  float: none;
  margin: 0 auto 15px;
}
.contents_overview p.float_left img{
  width: 100%;
  max-width: 400px;
}
/*特徴*/
.contents_feature{
  padding: 20px;
}
/*ページ内リンク*/

/*コンテンツ部分*/

/*コンテンツ部分の表（3行）*/
.contents_contents table.table3{
}
.contents_contents table.table3 th{
  padding: 5px;
}
.contents_contents table.table3 td{
  padding: 5px;
}

/*--------------------------- アクセスの設定 ----------------------------------*/
.access_info_flex{
  display: block;
}
.access_info_flex dl{
  width: auto;
  margin-bottom: 15px;
}
.access_wrap{
  display: block;
}
.access_img{
  width: auto;
}
.access_about{
  width: auto;
}
.access_about dl{
  display: block;
}
.access_about dt{
  width: 100%;
  font-weight: 500;
}
.access_about dd{
  width: 100%;
}
/*--------------------------- 求人情報の設定 ----------------------------------*/
