@charset "UTF-8";
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

body {
  color: #333;
  line-height: 1.8;
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", sans-serif;
  box-sizing: border-box;
}
body * {
  box-sizing: border-box;
}

a {
  color: #333;
  text-decoration: none;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

p {
  margin-bottom: 1.5em;
}
p:last-of-type {
  margin-bottom: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

/*-----------------------
*　基本幅
*-----------------------*/
.blContainer {
  width: 92%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

/*-----------------------
*　*ハンバーガーメニュー
*-----------------------*/
/* メニューのスタイル */
.menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  /* 初期状態では画面の外に隠れている */
  width: 100%;
  height: 100%;
  background-color: rgb(235, 250, 205);
  color: #333;
  transition: 1s ease;
  /* スライドインのアニメーション */
  padding: 20px;
  box-sizing: border-box;
  z-index: 10;
}
@media screen and (max-width: 1172px) {
  .menu {
    display: block;
  }
}

/* メニューが開いているとき */
.menu.open {
  right: 0;
}

/* ボタンのスタイル */
.hamburger {
  position: fixed;
  top: 25px;
  right: 20px;
  width: 30px;
  cursor: pointer;
  z-index: 500;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #333;
  margin: 5px 0;
  transition: 0.4s;
}

/* バツ印に変化するスタイル */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* メニューリストのスタイル */
.menu__list {
  list-style-type: none;
  padding: 0;
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.menu__item {
  padding: 20px 0;
}
.menu__link {
  color: #333;
  border-bottom: none;
  font-weight: bold;
  font-size: 1.2em;
}
.menu__link:hover {
  color: rgb(123, 184, 0);
}

/*==================================================
スライダーのためのcss
===================================*/
.slider { /*横幅94%で左右に余白を持たせて中央寄せ*/
  margin: 0 auto;
  position: relative;
}

.slider img {
  width: 100%; /*スライダー内の画像を60vwにしてレスポンシブ化*/
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}

.slider .slick-slide {
  transform: scale(0.8); /*左右の画像のサイズを80%に*/
  transition: all 0.5s; /*拡大や透過のアニメーションを0.5秒で行う*/
  opacity: 0.5; /*透過50%*/
}

.slider .slick-slide.slick-center {
  transform: scale(1); /*中央の画像のサイズだけ等倍に*/
  opacity: 1; /*透過なし*/
}

/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
  position: absolute; /*絶対配置にする*/
  top: 42%;
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #666; /*矢印の色*/
  border-right: 2px solid #666; /*矢印の色*/
  height: 15px;
  width: 15px;
}

.slick-prev { /*戻る矢印の位置と形状*/
  left: -1.5%;
  transform: rotate(-135deg);
}

.slick-next { /*次へ矢印の位置と形状*/
  right: -1.5%;
  transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/
.slick-dots {
  text-align: center;
  margin: 0px 0 0 0;
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 12px; /*ドットボタンのサイズ*/
  height: 12px; /*ドットボタンのサイズ*/
  display: block;
  border-radius: 2px;
  background: pink; /*ドットボタンの色*/
  border: none;
}

.slick-dots .slick-active button {
  background: green; /*ドットボタンの現在地表示の色*/
}

/*---------------------
*　まる
*-----------------------*/
.sircle {
  display: flex;
  justify-content: center;
}
.sircle__div {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background: yellowgreen;
  margin: 10px;
}

/*---------------------
*　heading
*-----------------------*/
.heading {
  font-size: 1.25em;
  text-align: center;
  font-weight: bold;
  padding: 10px;
}

/*-----------------------
*　ヘッダー
*-----------------------*/
/*---------------------
*　ヘッダー
*-----------------------*/
.header {
  width: 100%;
}
.header__img {
  width: 170px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-left: 10px;
}
.header__inner {
  display: flex;
  align-items: center;
}

/*---------------------
*　PC メニューバー
*-----------------------*/
.menuPC {
  margin: 0 auto;
}
@media screen and (max-width: 1172px) {
  .menuPC {
    display: none;
  }
}
.menuPC__list {
  display: flex;
  justify-content: center;
  width: 100%;
  text-align: center;
}
.menuPC__item {
  border-bottom: 3px solid #92D050;
}
.menuPC__link {
  display: block;
  text-decoration: none;
  color: #555;
  padding-bottom: 5px;
  margin: 5px 30px 0 30px;
  font-size: 1.1em;
  font-weight: bold;
}
.menuPC__link:hover {
  color: green;
  border-bottom: 3px solid rgb(197, 235, 139);
}

/*---------------------
*　キービジュアル
*-----------------------*/
.keyvisual {
  position: relative;
  margin-bottom: 30px;
}
.keyvisual__img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1172px) {
  .keyvisual__img {
    width: 100%;
    height: 200px;
  }
}
.keyvisual__textArea {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 3.7em;
  background: #fff;
  opacity: 0.8;
}
.keyvisual__cacth {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.8em;
  font-weight: 510;
}
@media screen and (max-width: 1172px) {
  .keyvisual__cacth {
    font-size: 1.35em;
    font-weight: 600;
    width: 100%;
    text-align: center;
  }
}

/*---------------------
 *　お知らせ
 *-----------------------*/
.news {
  margin-bottom: 30px;
}
.news__heading {
  font-size: 1.25em;
  text-align: center;
  margin: 20px 0 10px 0px;
}
.news__headingLink:hover {
  color: rgb(123, 184, 0);
}
.news__list {
  list-style: none;
  font-size: 1.125em;
}
@media screen and (max-width: 1172px) {
  .news__list {
    font-size: 0.925m;
  }
}
.news__first {
  display: flex;
  align-items: center;
  width: 350px;
}
@media screen and (max-width: 1172px) {
  .news__first {
    margin-bottom: 10px;
  }
}
.news__link {
  display: flex;
  padding: 20px;
  align-items: center;
  border-bottom: 1px solid #8e8e8e;
}
@media screen and (max-width: 1172px) {
  .news__link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
.news__place {
  margin-left: 20px;
  width: 70px;
  height: 100%;
  background-color: pink;
  border-radius: 20px;
  padding: 5px;
  text-align: center;
  font-size: 0.78em;
}
.news__title {
  margin-left: 5px;
  width: 100%;
}
.news__title:hover {
  color: rgb(123, 184, 0);
}
@media screen and (max-width: 1172px) {
  .news__title {
    margin-left: 0px;
  }
}
.news__date:hover {
  color: rgb(123, 184, 0);
}
.news__flex {
  display: flex;
  margin-right: 20px;
}

.title__container {
  display: flex;
}

/*---------------------
 *　fotter
 *-----------------------*/
.footer {
  background: #eaeaf2;
  padding-top: 20px;
}
.footer__img {
  width: 170px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-left: 5px;
}
.footer__logoLink {
  padding-left: 10px;
}

.footerPoint {
  padding-left: 1.5em;
margin-top:-20px;
}
.footerPoint__tr {
  display: flex;
  margin: 10px;
}
@media screen and (max-width: 1172px) {
  .footerPoint__tr {
    display: flex;
    flex-direction: column;
  }
}
.footerPoint__lt {
  width: 70px;
  height: 35px;
  background: #99c66a;
  border-radius: 5px;
  text-align: center;
  margin-right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.825em;
}
@media screen and (max-width: 1172px) {
  .footerPoint__rt {
    margin: 0 0 0 10px;
  }
}
.footerPoint__tel:hover {
  color: green;
  text-decoration: underline;
}
.footerPoint__acsess {
  display: flex;
  justify-content: center;
  width: 100%;
}
.footerPoint__allRight {
  text-align: center;
  padding: 20px;
}

/*---------------------
 *　施設のご案内　explain
 *-----------------------*/
.explain__heading {
  font-size: 1.25em;
  text-align: center;
}
.explain__container {
  display: flex;
}
@media screen and (max-width: 1172px) {
  .explain__container {
    display: block;
  }
}
.explain__p {
  text-align: center;
  font-size: 1em;
  font-weight: bold;
  padding: 0.5em;
}
.explain__p:hover {
  color: rgb(123, 184, 0);
}

.container__img {
  width: 500px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1172px) {
  .container__img {
    width: 100%;
    height: 100%;
  }
}

.container__contet {
  margin: 10px;
}
@media screen and (max-width: 1172px) {
  .container__contet {
    position: relative;
    margin: 30px 0 30px 0;
    background: #000;
  }
}

@media screen and (max-width: 1172px) {
  .explain__p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2em;
    width: 100%;
    background: #fff;
    opacity: 0.8;
  }
  .explain__p:hover {
    color: rgb(123, 184, 0);
  }
}

/*---------------------
 *　院内の様子　view
 *-----------------------*/

.view__link:hover {
  color: rgb(123, 184, 0);
	}
	
.view__img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

/*---------------------
 *　ご挨拶
 *-----------------------*/
.clinic__img {
  width: 40%;
  height: 100%;
}
.clinic__headig {
  font-weight: bold;
  line-height: 2;
  font-size: 1.1em;
}
.clinic__imgArea {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 20px;
}
.clinic__title {
  line-height: 2.5;
}
.clinic__titleFirst {
  margin-bottom: 15px;
}
.clinic__titleSecond {
  margin-bottom: 15px;
}
.clinic__titleThird {
  margin-bottom: 15px;
}
.clinic__titleForth {
  text-align: right;
  padding: 20px;
}

/*-----------------------
*　利用方法について　page-use.php 
*-----------------------*/
.use__textArea {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.use__stepText {
  font-size: 1.1em;
}
.use__text {
  padding: 10px 30px 0 10px;
  margin-bottom: 30px;
}
.use__step1 {
  width: 65px;
  height: 65px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
}

/*-----------------------
*　診療内容について　page-rule.php 
*-----------------------*/
.rule__heading {
  width: 100%;
  padding-bottom: 1px;
  font-size: 1.2em;
  font-weight: bold;
  border-bottom: 1.7px solid green;
}
@media screen and (max-width: 1172px) {
  .rule__heading {
    width: 100%;
  }
}
.rule__stepText {
  margin: 20px 20px 20px 0;
  padding-bottom: 20px;
}
.rule__text {
  padding-top: 10px;
  padding-left: 10px;
}
.rule__point {
  padding-bottom: 20px;
}

/*-----------------------
*　診療時間・アクセス　page-access.php 
*-----------------------*/
.access__textArea {
  width: 90%;
  height: 100%;
  border: 2px solid #333;
  margin-top: 20px;
  margin-bottom: 20px;
}
.access__table {
  margin-top: 10px;
}
.access__th {
  padding: 0 5px 10px 5px;
  text-align: left;
  margin-right: auto;
}
.access__imgCoffee {
  padding-top: 10px;
}
.access__imgKoki {
  padding-top: 20px;
  padding-bottom: 30px;
}

/*-----------------------
*　MENU page-coffee.php
*-----------------------*/
.coffee__heading {
  margin-bottom: 30px;
}
.coffee__textFirst {
  background: pink;
  width: 100%;
  padding: 0 10px 30px 10px;
}
.coffee__textSecond {
  display: flex;
  flex-direction: column;
  background: yellowgreen;
  padding: 0 10px 30px 10px;
  width: 100%;
}
@media screen and (max-width: 1172px) {
  .coffee__textSecond {
    margin-top: 20px;
  }
}
.coffee__textThird {
  background: skyblue;
  width: 100%;
  height: 100%;
  margin-top: 20px;
  padding: 0 10px 30px 10px;
  margin-bottom: 20px;
}
.coffee__div {
  width: 27px;
  height: 100%;
}
.coffee__heading {
  text-align: center;
  font-size: 1.2em;
  font-weight: bold;
}
.coffee__dtDrink {
  color: #333;
  padding: 30px 0 20px 0;
  font-size: 1.2em;
}
.coffee__stepText {
  display: flex;
}
@media screen and (max-width: 1172px) {
  .coffee__stepText {
    display: block;
  }
}
.coffee__dlCoffee {
  display: flex;
  align-items: center;
  justify-content: center;
}
.coffee__dlBread {
  display: flex;
  align-items: center;
  justify-content: center;
}
.coffee__dlRice {
  display: flex;
  align-items: center;
  justify-content: center;
}
.coffee__dt {
  margin-right: auto;
  width: 85%;
  border-bottom: 1px dotted #333;
}
.coffee__dd {
  padding: 10px;
  text-align: center;
}
.coffee__dlRice {
  display: flex;
}
.coffee__textAccess {
  width: 90%;
  height: 100%;
  border: 2px solid #333;
  margin-top: 20px;
  margin-bottom: 20px;
}
.coffee__table {
  margin-top: 20px;
}
.coffee__imgCoffee {
  padding-top: 10px;
}
.coffee__imgKoki {
  padding-top: 20px;
  padding-bottom: 30px;
}

/*-----------------------
*　写真
*-----------------------*/
.picture__text {
  padding-top: 20px;
}
.picture__imgArea {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}
.picture__img {
  margin: 20px;
  height: 400px;
  width: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1172px) {
  .picture__img {
    margin: 20px;
    height: 400px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    margin: 0 auto;
    padding: 20px 0 20px 0;
  }
}
/*# sourceMappingURL=style.css.map */