<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

.home #contents&gt;.inner {
  /* トップページ幅 100% */
  width: 100%;
  max-width: 100%;
}

.topinner {
  /* コンテンツは1000pxに */
  width: 1000px;
  margin: 0 auto;
  max-width: 96%;
}

/* tinyMCE用に見出しをリセット */
.home h3,
.home h4,
.home h5 {
  background: none;
  border: none;
  color: inherit;
  font-size: inherit;
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-weight: bold;
  letter-spacing: 0.08em;
  }

.home h3::before,
.home h3::after,
.home h4::before,
.home h4::after,
.home h5::before,
.home h5::after {
  display: none;
}

/*==========================
flex設定
==========================*/
@media screen and (min-width: 768px) {
  .columns {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
  }

  .columns.jcsb {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .columns.jcs {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .columns.jcc {
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }

  .columns.jce {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .columns.ais {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .columns.aic {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .columns.aie {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .columns.reverse {
    -webkit-box-direction: reverse;
    -moz-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .columns.col2 {
    gap: 0 60px;
  }

  .columns.col2&gt;* {
    width: calc((100% - 60px)/2);
  }

  .columns.col3 {
    gap: 0 40px;
  }

  .columns.col3&gt;* {
    width: calc((100% - 80px)/3);
  }
  .columns.col4 {
    gap: 0 20px;
  }
  .columns.col4&gt;* {
    width: calc((100% - 60px)/4);
  }
}

@media screen and (min-width: 768px) and (max-width: 1039px) {
  .columns.col2 {
    gap: 0 30px;
  }

  .columns.col2&gt;* {
    width: calc((100% - 30px)/2);
  }

  .columns.col3 {
    gap: 0 15px;
  }

  .columns.col3&gt;* {
    width: calc((100% - 30px)/3);
  }
  .columns.col4 {
    gap: 0 10px;
  }

  .columns.col4&gt;* {
    width: calc((100% - 30px)/4);
  }
}

@media (max-width : 767px) {
  .sp_columns {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    gap:0 10px;
  }
.sp_columns.sp_jcc {
justify-content: center;
}
  .sp_columns.col2&gt;*,
  .sp_columns.col3&gt;*,
  .sp_columns.col4&gt;*,
  .sp_columns.col5&gt;*,
  .sp_columns.col6&gt;* {
    width: calc((100% - 10px) / 2);
  }
}


/*==========================
	　mainimage
==========================*/
.mainimage {
  position: relative;
}

.main_copy {
  position: absolute;
  bottom: 8%;
  left: 3%;
  width: 961px;
  max-width: 50%;
}

/*-- スライダーの時 ------------*/
.slider {}

.slick-slide img {
  margin: 0 auto;
}

button.slick-arrow {
  /* 矢印ボタン */
  background: none;
  border: none;
  position: absolute;
  top: 50%;
  margin-top: -20px;
  height: 40px;
  width: 16px;
  text-indent: -9px;
  z-index: 1;
}

button.slick-arrow:hover {
  cursor: pointer;
  opacity: 0.7;
}

button.slick-prev {
  /* 矢印（前へ）ボタン */
  background: url(img/btn_prev.png) no-repeat;
  left: 18%;
  margin-left: -16px;
}

button.slick-next {
  /* 矢印（次へ）ボタン */
  background: url(img/btn_next.png) no-repeat;
  right: 18%;
  margin-right: -16px;
}

@media screen and (max-width: 1650px) {
  button.slick-prev {
    left: 13.7%;
  }

  button.slick-next {
    right: 13.7%;
  }
}

@media screen and (max-width: 1400px) {
  button.slick-prev {
    left: 8%;
  }

  button.slick-next {
    right: 8%;
  }
}

@media screen and (min-width: 1000px) {
  .slick-track {}

  .mainimage .slick-slide:not(.slick-center) {
    /* 前と次の画像を半透明に */
    opacity: 0.4;
    -moz-opacity: 0.4;
    filter: alpha(opacity=40);
  }
}

/*==========================
	新着情報
==========================*/
.sec_news .news {
  margin-bottom: 0;
  position: relative;
}
.sec_news .news + .news{
  margin-top:60px;
}
/* 新着情報見出し */
.sec_news h3 {
  color: #2d2d2d;
  font-weight: 700;
  font-size: 26px;
  margin-bottom:1.4em;
  vertical-align: bottom;
  text-align: left;
  border-bottom:1px solid #2d2d2d;
  }
.sec_news dl + h3 {
  margin-top:50px;
}
.sec_news h3 .subtext{
  color:#c9a540;
  font-size:16px;
  padding-left:1em;
}
.sec_news h3 img{
margin-bottom:10px;
}
/* 一覧へボタン */
.sec_news .btn {
  position: absolute;
  top: 0px;
  right: 0
}

.sec_news .news .btn a {
  display: inline-block;
  line-height: 1.2;
  padding: 5px 20px 5px 15px;
  text-decoration: none;
  color: #fff;
  background: #c9a540;
  border-radius:100px;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.sec_news .news .btn a:hover {
  opacity: 0.7;
  -moz-opacity: 0.7;
  -webkit-opacity: 0.7;
}

/* -------------------------------追加 */
.sec_news .news .btn a::after {
  content: '';
  position: absolute;
  top: 40%;
  right: 10px;
  width: 5px;
  height: 5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.sec_news .news dl {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}

.sec_news .news dt {
  padding: 5px 10px 5px 0;
  width: 120px;
  display: inline-block;
  box-sizing: border-box;
}

.sec_news .news dd {
  display: inline-block;
  width: calc(100% - 120px);
  padding: 5px 10px 5px 0px;
  box-sizing: border-box;
}

/* -------------------------------ここまで */
/* 新着情報 */
.sec_news .news dl {
  line-height: 1.3;
  border-bottom: 1px solid #2d2d2d;
}

.sec_news .news dt {
  margin-bottom: 20px;
  padding: 0 20px;
}

.sec_news .news dd {
  margin-bottom: 30px;
  padding: 0 20px;
}

.sec_news .news dd a {
  text-decoration: none;
  color: #2d2d2d;
}

.sec_news .news dd a:hover {
  color:#c9a540;
}

/*==========================
	汎用に使えるボタン
==========================*/
.home .btn-style {
  text-align: center;
  margin-top: 30px!important;
}

.btn-style a {
  color:#fff;
  background:#c9a540;
  width: 280px;
  max-width: 100%;
  padding: 1em 1.4em 1em 1em;
  text-align: center;
  border-radius:100px;
  display: inline-block;
  text-decoration: none;
  line-height: 1.2;
  box-sizing: border-box;
  font-size: 16px;
  position: relative;
}

.btn-style a::after {
content: "";
display: block;
position: absolute;
top:50%;
transform: translateY(-50%);
right:0;
left:auto;
margin:0 auto;
width: 20px;
height:1px;
border-bottom:1px solid #fff;
}

.btn-style a:hover {
  opacity: 0.7;
  -moz-opacity: 0.7;
  filter: alpha(opacity=70);
  cursor: pointer;
}
.under .btn-style{
  text-align:center;
}
.under .btn-style a {
  color:#fff;
  width:300px;
}

.btn-style.web a{
  font-size:18px;
  font-weight:bold;
  width:100%;
  background:#c9a540 url("img/blank.png")no-repeat center right 20px;
}
.btn-style.web a:after{
  display:none;
}
.btn-style.web a .icon{
  padding-left:40px;
  background:url("img/icon_web.png")no-repeat center left;
}
/*==========================
	loopSlider　無限ループスライダー
==========================*/
.loopSliderWrap {
  top: 0;
  left: 0;
  height: 400px;
  overflow: hidden;
  position: absolute;
}

.loopSlider {
  margin: 0 auto;
  width: 100%;
  height: 400px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.loopSlider ul {
  height: 400px;
  float: left;
  overflow: hidden;
}

.loopSlider ul li {
  width: 400px;
  height: 400px;
  float: left;
  display: inline;
  overflow: hidden;
}

/*==========================
	　TOP コンテンツ
==========================*/
a {
  text-decoration: none;
}

.home h2 {
  position: relative;
  font-size: 20px;
  color: #c9a540;
  margin-bottom: 40px;
  text-align: center;
  font-weight:bold;
}
.home h2 .en{
  line-height: 2;
  font-size: 60px;
  color: #2d2d2d;
}

section{
  padding:120px 0;
}
section p:last-child{
  margin-bottom:0;
}
.sec00{
  background:url("img/sec00_bg.jpg")no-repeat center / cover;
}
.sec00 .logo{
  margin-bottom: 40px;
}
.sec00 .logo img{
  width:274px;
}
.sec00 h2 img{
  width:275px;
}
.sec00 .clinic_open{
  font-size:50px;
  text-align:center;
  font-weight:bold;
  line-height: 1.24;
  margin-bottom: 30px;
}
.sec00 .clinic_open .text-small{
  font-size:38px;
}
.sec00 .nairankai{
  background:#fff;
  border-radius:30px;
  text-align: center;
  padding-bottom: 20px;
  box-shadow: 0 0 10px #ccc;
}
.sec00 .nairankai h3{
  font-size: 30px;
  color:#fff;
  background: #c9a540;
  border-radius:30px 30px 0 0;
  padding: 14px;
  margin-bottom:20px;
}
.sec00 .nairankai p{
    padding:0 20px;
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
}
.sec00 .nairankai p.nairankai_day{
  background:#faf5e8;
  display:table;
  padding: 16px 40px;
  margin: 20px auto;
  font-weight: bold;
  font-size: 26px;
  line-height: 1.4;
}

.sec01 .logo{
  text-align:center;
  margin-bottom: 20px;
}
.sec01 .logo img{
  width: 219px;
}
.sec01 .tel_box p{
  margin-bottom:0;
}
.sec01 .tel_box{
  margin:30px 0;
}
.sec02{
  background:url("img/sec02_bg.jpg")no-repeat center / cover;
  color:#fff;
}
.sec02 h2,
.sec02 h2 .en{
  color:#fff;
}

.sec02 .catch{
  font-size:30px;
  font-weight:bold;
  line-height:1.4;
  text-align:center;
  letter-spacing: 0.08em;
  margin-bottom: 30px;
}
.sec02 .catch .text-small{
  font-size:24px;
}
.sec02 {
  text-align:center;
}
.sec03{
  background:url("img/sec03_bg.jpg")no-repeat center / cover;
}
.sec03 h2{
  color: #2d2d2d;
  display:table;
  padding:0 40px;
  margin:0 auto 40px;
  font-size:30px;
  background:url("img/sec03_title_img01.png")no-repeat left top,
    url("img/sec03_title_img02.png")no-repeat right top;
}
.sec04 {
  padding-bottom: 0;
}
.sec04 .topinner{
  margin-bottom:160px;
  position:relative;
}


.sec04 .cont05 .topinner{
 margin-bottom: 120px;
}

.sec04 .topinner:after{
      content: "";
      display: block;
      position: absolute;
      top: 70px;
      left:0;
      margin:0 auto;
      width: 92.5%;
      height: 100%;
      background:#f5f5f5;
      border-radius: 0 60px 60px 0;
}

.sec04 .cont05 .topinner:after{
  height: calc(100% + 50px);
}
.sec04 .reverse .topinner:after{
  left:auto;
  right:0;
  border-radius: 60px 0 0 60px;
}

.sec04 .columns{
  position:relative;
  z-index:1;
}
.sec04 h3{
  padding-top:145px;
  font-size:30px;
  line-height: 1.4;
  margin-bottom:20px;
}
.sec04 h3 .text-small{
  font-size:22px;
}
.sec04 .cont01 h3{
  background:url("img/sec04_no01.png")no-repeat top left;
}
.sec04 .cont02 h3{
  background:url("img/sec04_no02.png")no-repeat top left;
}
.sec04 .cont03 h3{
  background:url("img/sec04_no03.png")no-repeat top left;
}
.sec04 .cont04 h3{
  background:url("img/sec04_no04.png")no-repeat top left;
}
.sec04 .cont05 h3{
  background:url("img/sec04_no05.png")no-repeat top left;
}
.sec04 li{
  position:relative;
  padding-left:20px;
}
.sec04 li:before{
      content: "";
    display: block;
    position: absolute;
    top:8px;
    left:0;
    margin:0 auto;
    width:12px;
    height:12px;
  background:#c9a540;
}
.sec04 ul{
  margin-bottom:30px;
}
.sec04 .columns.col5{
  width:1000px;
  max-width: 100%;
  margin:50px auto 0;
  gap: 20px;
}
.sec04 .columns.col5 p{
  font-weight:bold;
  text-align:center;
  margin-top: 15px;
  line-height: 1.4;
}
.sec05 {
  padding-bottom:0;
}
.sec05 .bg{
  padding: 100px 0 120px;
  background:url("img/sec05_bg.jpg")no-repeat center / cover;
}
.sec05 .link_box{
  background:#fff;
  border-radius:20px;
  padding: 35px 15px;
  box-shadow:0 0 14px #ddd;
}
.sec05 .link_box figure + p{
margin-bottom:0;
}
.sec05 .link_box:after{
      content: "";
    display: block;
    position: absolute;
    bottom:15px;
    right:15px;
    margin:0 auto;
    width:10px;
    height:10px;
  border-right:1px solid #c9a540;
  border-bottom:1px solid #c9a540;
}
@media screen and  ( min-width : 768px ) {
  .sec05 .link_box.last_link_box {
    width: calc((100% - 20px) / 2)!important;
  }
}

.sec05 .link_box.last_link_box:after {
  border-right:1px solid #f89e8f;
  border-bottom:1px solid #f89e8f;
}
.sec05 .columns{
  margin-bottom:50px;
}
.sec05 .columns.col3 h3{
  display:table;
  margin:0 auto 30px;
  font-size:30px;
  border-bottom:2px solid #c9a540;
}
.sec05 figure{
  margin-bottom:10px;
  text-align:center;
}
.sec05 .columns.col4 h3{
  margin:10px 0;
  text-align:center;
  font-size:20px;
    letter-spacing:0;
}
.sec05 h3 + p{
  margin-bottom:0;
}
.sec05 .white_box{
  border-radius:30px;
  background:#fff;
  padding:40px 4%;
  box-shadow:0 0 14px #ddd;
}
.sec05 .white_box h3{
  font-size:20px;
  margin-bottom:20px;
  text-align:center;
}
.sec05 .white_box ul{
  margin:auto;
  width: 680px;
  max-width: 100%;
}

.sec06 .catch01,
.sec06 .catch02{
  text-align:center;
  font-weight:bold;
}
.sec06 .catch01{
  font-size:28px;
  color:#c9a540;
  margin-bottom:20px;
    line-height:1.4;
}
.sec06 .catch02{
  margin-bottom: 50px;
  font-size:18px;
}

/********************************
	Responsive
*********************************/
@media screen and (min-width: 768px) {
  .sec01 .btn-style a{
    width:220px;
  }
.sec04 .topinner{
  max-width:100%;
  width:100%;
}
  .sec04 .cont02 .topinner,
.sec04 .cont03 .topinner{
  margin-bottom:80px;
}
.sec04 .cont02 .topinner:after,
.sec04 .cont03 .topinner:after{
  height:calc(100% - 170px);
}
  .sec04 .columns.reverse .text_wrap{
margin-left:auto;
  }
  .sec04 .img_box{
    width:calc(50% - 50px);
  }
  .sec04 .text_box{
    width:50%;
  }
  .sec04 .text_wrap{
    width:500px;
    max-width: calc(100% - 40px);
  }
  
  .sec05 .columns.col3{
    gap:0 20px;
  }
  .sec05 .columns.col3 &gt;*{
    width:calc((100% - 40px) / 3) ;
  }
    .sec05 .columns.col4{
    gap:20px;
  }
  .sec05 .columns.col4 &gt;*{
    width:calc((100% - 60px) / 4) ;
  }

.sec05 .white_box li:nth-child(odd){width: 66%;}
.sec05 .white_box li:nth-child(even){
  width:33%;
}
  
  .sec06 .text_box p:first-child{
  letter-spacing: 0.02em;
}
.sec06 .text_box{
  line-height:1.95;
}
}
@media screen and (min-width: 768px) and (max-width: 1039px) {
  .sec_news .news dt {
    margin-bottom: 5px;
  }

  .sec_news .news dd {
    width: 100%;
  }

section {
    padding: 70px 0;
}

.sec03 h2{
  letter-spacing:0;
}
.sec04 .cont02 h3{
  font-size: 28px;
}
.sec04 .topinner:after {
    width: calc(100% - 20px);
}
.sec05 .columns.col4 h3{
    font-size:18px;
    letter-spacing:0;
}
.sec05 .columns.col4 &gt;*{
    padding:20px 10px;
}

}

@media screen and (max-width: 1039px) {

  /*コンテンツが横幅いっぱいになったら*/
  /* -------------------------------追加 */
  .sec_news .news dt {
    width: 100%;
    border-bottom: none;
    padding: 10px 0 5px;
    margin-bottom: 0;
  }

  .sec_news .news dd {
    width: 100%;
    display: block;
    padding: 0 0 10px;
  }

  /* -------------------------------ここまで */

.sec00 .clinic_open {
    font-size: 40px;
}

.sec00 .clinic_open .text-small {
    font-size: 30px;
}
}

@media screen and (max-width: 767px) {

  /* スマホ */
  .topinner {
    width: 420px;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .main_copy {
    width: 650px;
    max-width: 86%;
  }

  /*==========================
	新着情報
==========================*/
  #main .news {
    position: relative;
  }

  #main .news .btn {
    right: 5px;
    top: 0;
  }
.sec_news h3{
  margin-bottom:15px;
}
  .sec_news .news dd{
    margin-bottom:15px;
  }
.sec_news .news + .news{
  margin-top:30px;
}
  /*==========================
	loop
==========================*/
  .loopSlider {
    height: 200px;
  }

  .loopSlider ul {
    height: 200px;
  }

  .loopSlider ul li {
    width: 200px;
    height: 200px;
  }

  /*==========================
	　TOP コンテンツ
==========================*/
section{
  padding:30px 0;
}
.home h2{
  margin-bottom:20px;
}
  .home h2 .en{
  line-height: 1.6;
font-size:36px;
  }
  .sec00 .logo{
  margin-bottom: 20px;
}
  .sec00 figure{
    margin-bottom:20px;
  }
  .sec00 .nairankai h3{
    font-size:24px;
  }
  .sec01 .column + .column{
    margin-top:30px;
  }
  .sec02{
    text-align:left;
  }
  .sec02 .catch{
    font-size:20px;
  }
    .sec02 .catch .text-small{
    font-size:16px;
  }
  .sec03 h2{
    font-size:22px;
    background-size: auto 100%,auto 100%;
    margin: 0 auto 20px;
    padding: 0px 25px;
  }
  .sec03 figure{
    margin-bottom:20px;
  }
  .sec04 .topinner{
    margin-bottom: 30px;
    padding-bottom:30px;
  }
  .sec04 .cont05 .topinner{
    margin-bottom: 30px;
    padding-bottom:0;
  }
  .sec04 .cont05 .topinner:after{
    height: calc(100% - 30px);
  }
  .sec04 .topinner:after,
  .sec04 .reverse .topinner:after{
    width: calc(100% + 40px);
    left: -20px;
    height: calc(100% - 70px);
    border-radius: 0;
  }
  .sec04 figure{
    margin-bottom:20px;
  }
  .sec04 h3{
    text-align: center;
    padding-top:100px;
    font-size:22px;
    background-size:80px!important;
    background-position:center top!important;
  }
    .sec04 h3 .text-small{
    font-size:18px;
  }
  .sec04 .columns.col5{
justify-content: center;
    gap:20px 10px;
  }
  .sec05 .bg{
    padding:30px 0;
  }
  .sec05 .col3 .link_box + .link_box{
    margin-top:20px;
  }
  .sec05 .columns{
    margin-bottom:20px;
  }
  .sec05 .columns.col3 h3{
    font-size:22px;
  }
  .sec05 .columns.col4{
    gap:10px;
  }
  .sec05 .columns.col4 h3{
    font-size: 18px;
    letter-spacing:0;
  }
  .sec05 .link_box{
    padding:20px 10px;
  }
    .sec06 .catch01{
    font-size:20px;
  }
  .sec06 .catch02{
    font-size:16px;
    margin-bottom: 20px;
  }
  .sec06 figure{
    margin-bottom:20px;
  }
}

@media screen and (max-width: 480px) {
  /* スマホ480px */
}

@media screen and (max-width: 320px) {
  /* スマホ320px */
}

/* ---------------------------------------------追加 */
/*==========================
	リンクボックス
==========================*/
.link_box {
  position: relative;
  transition: .3s;
}

.link_box:hover {
  background: rgb(245 245 245);
}

.link_box&gt;*:last-child {
  margin: 0;
}

.link_box a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.link_box a span.link {
  display: none;
}

@media (max-width : 767px) {
  .link_btn a {
    margin: 0 auto 10px;
    font-size: 14px !important;
  }

  .link_btn.btns a {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 10px;
  }
}

/*==========================
画像位置
==========================*/
.mainimage img,
figure img {
  vertical-align: middle;
}

/*==========================
	　ボタン
==========================*/
@media screen and (min-width: 768px) {
  .btn-style.left {
    text-align: left;
  }

  .btn-style.right {
    text-align: right;
  }
}

/*==========================
	　アニメーション
==========================*/
.animated.at01 {
  animation-delay: 0.4s;
}

.animated.at02 {
  animation-delay: 0.8s;
}

@media (min-width : 768px) {
  .reverse .at01 {
    animation-delay: 0.8s;
  }

  .reverse .at02 {
    animation-delay: 0.4s;
  }
}

/* 下層 */
</pre></body></html>