@charset "utf-8";

/*================================

　ここから全サイズ適用

================================*/
/*--------------------------------
共通
--------------------------------*/
html {
  font-size: 10px;
  font-size: 62.5%;
}
body {
  font-family: "M PLUS Rounded 1c", Meiryo, sans-serif;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  font-size: 16px;
  font-size: 1.6em;
  text-align: justify;
  line-height: 1.6;
  color: #565353;
}
#all {
  scroll-behavior: smooth;
}
.inner {
  margin: 0 auto;
  text-align: center;
}
.cont::after {
  content: "";
  clear: both;
  display: block;
}

/*画像*/
img {
  max-width: 100%;
  height: auto;
}
.pic {
  text-align: center;
}
.pic > img {
  margin: 0 auto;
}

/*リンク装飾*/
a {
  color: #565353;
}
a:link {
  color: #565353;
  text-decoration: none;
}
a:visited {
  color: #565353;
  text-decoration: none;
}
a:hover {
  color: #999;
}
a:active {
  color: #999;
  text-decoration: none;
}
a img:hover {
  opacity: 0.8;
}

/*リンクボタン装飾
a.linkbtn01 {
  display: inline-block;
  padding: 8px 40px 8px 3%;
  background: url(../img/linkbtn_bg01.png) #95b74a no-repeat right 10px
    center/16px;
  border-radius: 10px;
  color: #fff;
  text-align: center;
}
a.linkbtn01:hover {
  background-color: #b1cf6e;
}
*/

/*電話*/
.tel > a {
  color: #84c35a;
  font-size: 30px;
  font-weight: bold;
}

/*タイトル装飾*/
.ttl02 > span {
  position: relative;
  display: inline-block;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}
.ttl02 > span::after {
  content: "";
  display: block;
  border-bottom: 4px dotted #84c35a;
}
.ttl03 {
  padding: 3px 3% 3px 70px;
  background-repeat: no-repeat;
  background-position: left top;
  font-size: 24px;
  font-weight: bold;
  text-align: left;
}
.ttl03.no01 {
  background-image: url(./img/no01.png);
}
.ttl03.no02 {
  background-image: url(./img/no02.png);
}
.ttl03.no03 {
  background-image: url(./img/no03.png);
}
.ttl03.no04 {
  background-image: url(./img/no04.png);
}
.ttl03.no05 {
  background-image: url(./img/no05.png);
}
.ttl04 {
  position: relative;
  padding-left: 10px;
  font-size: 24px;
  font-weight: bold;
  text-align: left;
}
.ttl04::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 5px;
  height: 24px;
  background-color: #e84091;
  border-radius: 2px;
}
.ttl05 {
  position: relative;
  padding-left: 10px;
  font-size: 24px;
  font-weight: bold;
  text-align: left;
}
.ttl05::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 5px;
  height: 24px;
  background-color: #84c35a;
  border-radius: 2px;
}
.ttl06 {
  color: #84c35a;
  font-size: 24px;
  font-weight: bold;
  text-align: left;
}

/*テキスト*/
p.txt {
  text-align: left;
}
dl.txt::after {
  content: "";
  clear: both;
  display: block;
}
dl.txt dt {
  float: left;
}
/* 【注意】ddのpadding-leftなどの調整は各secで行ってください */

/*文字装飾*/
.txt_type01 {
  display: inline-block;
  margin-right: 10px;
  padding: 0 8px;
  background-color: #565353;
  border-radius: 3px;
  color: #fff;
}
.txt_type02 {
  color: #84c35a;
}
.txt_type03 {
  color: #e84091;
}
.txt_type04 {
  color: #4fbefd;
}
.txt_type05 {
  color: #fd5b4f;
}
.txt_type06 {
  background: linear-gradient(transparent 60%, #ffc0de 60%);
  font-weight: bold;
}

/*リスト装飾*/
.list01 li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 16px;
  text-align: left;
}
.list01 li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #84c35a;
  border-radius: 50%;
}
.list01 li:last-child {
  margin-bottom: 0;
}

/*テーブル装飾*/
.table01 table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0px 10px;
}
.table01 tbody th,
.table01 tbody td {
  padding: 30px 3%;
  vertical-align: middle;
}
.table01 tbody th {
  position: relative;
  background-color: #e84091;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
.table01 tbody th::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border: 10px solid transparent;
}
.table01 tbody td {
  background-color: #ffeaf4;
  text-align: left;
}

/*フレックスボックス - 親要素*/
.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap; /*アイテムを上から下に折り返しする*/
}
.flexbox.between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between; /*水平方向：両端のアイテムを余白を空けずに配置し、その他は均等配置*/
}
.flexbox.center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center; /*アイテムを中央に寄せる*/
}

/*行揃え*/
.align_right {
  text-align: right !important;
}
.align_left {
  text-align: left !important;
}
.align_center {
  text-align: center !important;
}

/*余白調整*/
.mb0 {
  margin-bottom: 0 !important;
}
.mb05 {
  margin-bottom: 5px !important;
}
.mb10 {
  margin-bottom: 10px !important;
}
.mb15 {
  margin-bottom: 15px !important;
}
.mb20 {
  margin-bottom: 20px !important;
}
.mb25 {
  margin-bottom: 25px !important;
}
.mb30 {
  margin-bottom: 30px !important;
}
.mb40 {
  margin-bottom: 40px !important;
}
.mb50 {
  margin-bottom: 50px !important;
}
.mb60 {
  margin-bottom: 60px !important;
}
.mb70 {
  margin-bottom: 70px !important;
}
.mb80 {
  margin-bottom: 80px !important;
}
.mb90 {
  margin-bottom: 90px !important;
}
.mb100 {
  margin-bottom: 100px !important;
}

/*googleマップ*/
.gmap {
  line-height: 1;
  font-size: 0;
}
.gmap > iframe {
  width: 100%;
  height: 400px;
}

/*--------------------------------
header
--------------------------------*/
#gheader {
  padding-top: 10px;
  padding-bottom: 10px;
}
#gheader > .inner {
  width: 100%;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
}

/*テキスト*/
#gheader .txt {
  margin-bottom: 20px;
}

/*電話*/
#gheader .tel {
  line-height: 1.2;
  text-align: center;
}
#gheader .tel > span {
  display: inline-block;
  position: relative;
  padding-left: 20px;
}
#gheader .tel > span::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 16px;
  height: 16px;
  background: url(./img/tel_bg01.png) no-repeat left top;
}

/*--------------------------------
main_visual
--------------------------------*/
#main_visual {
  background-image: url(./img/mv_bg01.png);
  background-repeat: no-repeat;
  background-color: #f2f2f2;
}
#main_visual > .inner {
  padding-left: 10px;
  padding-right: 10px;
}

/*キャッチ - タイトル*/
#main_visual .catch .ttl {
  font-size: 36px;
  font-weight: bold;
  text-align: left;
}

/*キャッチ - オープン*/
#main_visual .catch .ttl .open {
  position: relative;
  display: inline-block;
  padding: 14px 23px;
  background-color: #e84091;
  color: #fff;
  font-size: 30px;
  font-weight: normal;
}
#main_visual .catch .ttl .open::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 38px;
  width: 120px;
  height: 1px;
  background-color: #fff;
}
#main_visual .catch .ttl .open > span {
  font-size: 25px;
}

/*キャッチ - テキスト*/
#main_visual .catch .txt {
  font-size: 24px;
  text-shadow: 1px 1px 0 #f2f2f2, -1px 1px 0 #f2f2f2, 1px -1px 0 #f2f2f2,
    -1px -1px 0 #f2f2f2;
}

/*--------------------------------
sec01
--------------------------------*/
#sec01 {
  padding-top: 60px;
  padding-bottom: 60px;
  background: url(./img/bg01.png) repeat center top #ffe4f1;
}
#sec01 > .inner {
  padding-left: 3%;
  padding-right: 3%;
}

/*テキスト*/
#sec01 h2 + .txt {
  font-size: 24px;
  font-weight: bold;
}
#sec01 h2 + .txt > .txt_type03 {
  font-size: 30px;
}
#sec01 .txt {
  text-align: center;
}

/*--------------------------------
sec02
--------------------------------*/
#sec02 {
  padding-top: 60px;
  padding-bottom: 60px;
}
#sec02 > .inner {
  padding-left: 3%;
  padding-right: 3%;
}

/*テキスト*/
#sec02 .ttl02 span > .txt_type02 {
  font-size: 36px;
}

/*--------------------------------
sec03
--------------------------------*/
#sec03 .left {
  padding: 60px 3%;
  background: url(./img/bg01.png) repeat center top #ffe4f1;
}
#sec03 .right {
  background-image: url(./img/sec03_bg01.png);
  background-repeat: no-repeat;
  background-position: right top;
  background-color: #f4f4f4;
}

/*--------------------------------
sec04
--------------------------------*/
#sec04 .left {
  background-image: url(./img/sec04_bg01.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-color: #f4f4f4;
}
#sec04 .right {
  padding: 60px 3%;
  background: url(./img/bg01.png) repeat center top #ffe4f1;
}

/*--------------------------------
sec05
--------------------------------*/
#sec05 {
  padding-top: 60px;
  padding-bottom: 60px;
}
#sec05 > .inner {
  padding-left: 3%;
  padding-right: 3%;
}

/*テキスト*/
#sec05 .txtbox > .ttl06,
#sec05 .txtbox > .txt {
  display: inline-block;
}
#sec05 .txtbox > .txt {
  margin-left: 20px;
  font-size: 24px;
  line-height: 1.1;
}
#sec05 .txtbox > .txt > span {
  font-size: 16px;
}

/*--------------------------------
sec06
--------------------------------*/
#sec06 .left {
  padding: 60px 3%;
  background: url(./img/bg01.png) repeat center top #ffe4f1;
}
#sec06 .right {
  background-image: url(./img/sec06_bg01.png);
  background-repeat: no-repeat;
  background-position: top left;
  background-color: #c8c5c0;
}

/*--------------------------------
sec07
--------------------------------*/
#sec07 {
  padding-top: 60px;
  padding-bottom: 60px;
}
#sec07 > .inner {
  padding-left: 3%;
  padding-right: 3%;
}

/*テキスト*/
#sec07 dl.txt dd {
  padding-left: 2.5em;
}

/*--------------------------------
sec08
--------------------------------*/
#sec08 {
  padding-top: 60px;
  padding-bottom: 60px;
  background: url(./img/bg01.png) repeat center top #ffe4f1;
}
#sec08 > .inner {
  padding-left: 3%;
  padding-right: 3%;
}

/*--------------------------------
sec09
--------------------------------*/
#sec09 > .inner {
  padding-left: 3%;
  padding-right: 3%;
}

/*--------------------------------
footer
--------------------------------*/
#gfooter > .inner {
  padding: 60px 3%;
}

/*画像*/
#gfooter img {
  margin: 0 auto;
}

/*ページトップへ*/
#gfooter #pagetop {
  position: fixed;
  opacity: 0;
  z-index: 9000;
}
#gfooter #pagetop a {
  display: block;
  width: 50px;
  height: 50px;
  padding-top: 24px;
  background: url(./img/gft_pagetop01.png) #565353 no-repeat center top
    10px/16px;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  font-size: 10px;
}
#gfooter #pagetop.fade-in {
  opacity: 1;
  transition: opacity 1s;
}

/*電話*/
#gfooter .tel > a {
  font-size: 30px;
  font-weight: bold;
}

/*診療時間*/
#gfooter .timetable > table {
  width: 100%;
}
#gfooter .timetable > table thead {
  background-color: #e84091;
}
#gfooter .timetable > table thead th {
  padding: 4px 1%;
  vertical-align: middle;
  color: #fff;
}
#gfooter .timetable > table tbody tr {
  border-bottom: 1px solid #e84091;
}
#gfooter .timetable > table tbody th,
#gfooter .timetable > table tbody td {
  padding: 8px 1%;
  vertical-align: middle;
}
#gfooter .timetable > table tbody th {
  text-align: center;
}
#gfooter .timetable > table tbody td {
  text-align: center;
}
#gfooter .timetable::after {
  content: "";
  clear: both;
  display: block;
}
#gfooter .timetable p.txt:first-of-type {
  float: right;
}
#gfooter .timetable p.txt:last-of-type {
  float: left;
}

/*コピーライト*/
#gfooter .copyright {
  background-color: #565353;
  color: #fff;
  text-align: center;
}

/*================================

　ここからPC・TABLET適用

================================*/
@media (min-width: 897px) {
  /*--------------------------------
  共通
  --------------------------------*/
  .pc-none {
    display: none !important;
  }
  .pcTab-none {
    display: none !important;
  }

  /*テーブル*/
  .table01 tbody th {
    width: 30%;
  }
  .table01 tbody th::after {
    top: 0;
    bottom: 0;
    left: 100%;
    margin: auto 0;
    border-left: 10px solid #e84091;
  }

  /*フレックスボックス - 子要素*/
  .flexbox .col {
    flex-basis: 49%;
  }

  /*左右カラム*/
  .left {
    float: left;
    width: 50%;
  }
  .right {
    float: right;
    width: 50%;
  }

  /*--------------------------------
  header
  --------------------------------*/
  #gheader {
    position: absolute;
    width: 100%;
  }

  /*テキスト*/
  #gheader .txt {
    text-align: right;
  }
  #gheader .tel {
    width: 245px;
    margin-left: auto;
  }

  /*フレックスボックス - 子要素*/
  #gheader .flexbox .col:first-child {
    flex-basis: 30%;
  }
  #gheader .flexbox .col:last-child {
    flex-basis: 70%;
  }

  /*--------------------------------
  main_visual
  --------------------------------*/
  #main_visual {
    padding-top: 288px;
    padding-bottom: 80px;
    background-position: right bottom;
  }

  /*バナー(追加があればこちらを使用してください)
  #main_visual .bnr01 {
  }
  */

  /*--------------------------------
  sec02
  --------------------------------*/
  /*フレックスボックス - 子要素*/
  #sec02 .flexbox .col {
    margin-bottom: 40px;
  }
  #sec02 .flexbox .col:nth-last-child(-n + 2) {
    margin-bottom: 0;
  }
  #sec02 .flexbox .col:nth-of-type(1) {
    order: 1;
  }
  #sec02 .flexbox .col:nth-of-type(2) {
    order: 2;
  }
  #sec02 .flexbox .col:nth-of-type(3) {
    order: 4;
  }
  #sec02 .flexbox .col:nth-of-type(4) {
    order: 3;
  }
  #sec02 .flexbox .col:nth-of-type(5) {
    order: 5;
  }
  #sec02 .flexbox .col:nth-of-type(6) {
    order: 6;
  }
  #sec02 .flexbox .col:nth-of-type(7) {
    order: 8;
  }
  #sec02 .flexbox .col:nth-of-type(8) {
    order: 7;
  }
  #sec02 .flexbox .col:nth-of-type(9) {
    order: 9;
  }
  #sec02 .flexbox .col:nth-of-type(10) {
    order: 10;
  }

  /*--------------------------------
  sec03
  --------------------------------*/
  #sec03 .left,
  #sec03 .right {
    height: 390px;
  }

  /*--------------------------------
  sec04
  --------------------------------*/
  #sec04 .left,
  #sec04 .right {
    height: 400px;
  }

  /*--------------------------------
  sec05
  --------------------------------*/
  /*テキスト*/
  #sec05 .txtbox {
    text-align: center;
  }

  /*--------------------------------
  sec06
  --------------------------------*/
  #sec06 .left,
  #sec06 .right {
    height: 550px;
  }
  #sec06 .right {
    height: 550px;
    background-size: cover;
  }

  /*--------------------------------
  sec07
  --------------------------------*/
  /*リスト装飾*/
  #sec07 .table01 tbody tr:nth-of-type(7) .list01 li {
    display: inline-block;
  }

  /*--------------------------------
  footer
  --------------------------------*/
  /*ページトップへ*/
  #gfooter #pagetop {
    right: 10px;
    bottom: 20px;
  }

  /*コピーライト*/
  #gfooter .copyright {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/*================================

　ここからPC適用

================================*/
@media (min-width: 1367px) {
  /*--------------------------------
  header
  --------------------------------*/
  #gheader > .inner {
    max-width: 1280px;
  }

  /*--------------------------------
  main_visual
  --------------------------------*/
  #main_visual {
    background-position: right 25% bottom;
  }
  #main_visual > .inner {
    max-width: 1280px;
  }
  /*--------------------------------
  sec01
  --------------------------------*/
  #sec01 > .inner {
    max-width: 1280px;
    padding-left: 10px;
    padding-right: 10px;
  }

  /*--------------------------------
  sec02
  --------------------------------*/
  #sec02 > .inner {
    max-width: 1280px;
    padding-left: 10px;
    padding-right: 10px;
  }

  /*--------------------------------
  sec05
  --------------------------------*/
  #sec05 > .inner {
    max-width: 1280px;
    padding-left: 10px;
    padding-right: 10px;
  }

  /*--------------------------------
  sec06
  --------------------------------*/
  #sec06 .left,
  #sec06 .right {
    height: 450px;
  }
  #sec06 .right {
    background-size: contain;
  }

  /*--------------------------------
  sec07
  --------------------------------*/
  #sec07 > .inner {
    max-width: 1280px;
    padding-left: 10px;
    padding-right: 10px;
  }

  /*--------------------------------
  sec08
  --------------------------------*/
  #sec08 > .inner {
    max-width: 1280px;
    padding-left: 10px;
    padding-right: 10px;
  }

  /*--------------------------------
  footer
  --------------------------------*/
  #gfooter > .inner {
    max-width: 1280px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

/*================================

　ここからTABLET・SP適用

================================*/
@media (max-width: 896px) {
  /*--------------------------------
  共通
  --------------------------------*/
  .tabSp-none {
    display: none !important;
  }

  /*テーブル装飾*/
  .table01 tbody th,
  .table01 tbody td {
    display: block;
  }
  .table01 tbody th::after {
    top: 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-top: 10px solid #e84091;
  }

  /*フレックスボックス - 子要素*/
  .flexbox .col {
    flex-basis: 100%;
    margin-bottom: 20px;
  }
  .flexbox .col:last-child {
    margin-bottom: 0;
  }

  /*--------------------------------
  header
  --------------------------------*/
  #gheader {
    background-color: #f2f2f2;
  }

  /*画像*/
  #gheader .logo img {
    margin: 0 auto;
  }

  /*電話*/
  #gheader .tel {
    margin-bottom: 20px;
  }

  /*--------------------------------
  main_visual
  --------------------------------*/
  #main_visual {
    padding-bottom: 20px;
    background-position: right -100px bottom;
    background-size: contain;
  }

  /*キャッチ*/
  #main_visual .catch {
    width: 50%;
  }

  /*--------------------------------
  sec02
  --------------------------------*/
  /*フレックスボックス - 子要素*/
  #sec02 .flexbox .col:nth-of-type(even) {
    margin-bottom: 40px;
  }
  #sec02 .flexbox .col:last-child {
    margin-bottom: 0;
  }

  /*--------------------------------
  sec03
  --------------------------------*/
  #sec03 .right {
    height: 300px;
  }

  /*--------------------------------
  sec04
  --------------------------------*/
  #sec04 .left {
    height: 300px;
  }

  /*--------------------------------
  sec05
  --------------------------------*/
  /*テキスト*/
  #sec05 .txtbox {
    text-align: left;
  }

  /*フレックスボックス - 子要素*/
  #sec05 .flexbox .col:first-of-type {
    margin-bottom: 30px;
  }

  /*--------------------------------
  sec06
  --------------------------------*/
  #sec06 .right {
    height: 400px;
    background-size: cover;
  }

  /*--------------------------------
  footer
  --------------------------------*/
  /*ページトップへ*/
  #gfooter #pagetop {
    right: 10px;
    bottom: 10px;
  }

  /*画面下部の固定表示(現在は未使用)
  #gfooter .ft_fixed {
    position: fixed;
    right: 0;
    bottom: 0;
    display: table;
    width: 100%;
    z-index: 9999;
  }
  #gfooter .ft_fixed li {
    display: table-cell;
    vertical-align: middle;
  }
  #gfooter .ft_fixed li a {
    display: block;
    text-align: center;
    line-height: 1.3;
    color: #fff;
    font-size: 12px;
    height: 50px;
  }
  #gfooter .ft_fixed li a > span {
    font-size: 16px;
  }
  #gfooter .ft_fixed li.first_btn {
    width: 52%;
  }
  #gfooter .ft_fixed li.first_btn a {
    padding-top: 8px;
    background-color: #95b74a;
    border-right: 1px dashed #eee;
  }
  #gfooter .ft_fixed li.second_btn {
    width: 24%;
  }
  #gfooter .ft_fixed li.second_btn a {
    padding-top: 28px;
    background: url(../img/ft_fixed_bg02.png) #95b74a no-repeat center top 8px/16px;
    border-right: 1px dashed #eee;
  }
  #gfooter .ft_fixed li.third_btn {
    width: 24%;
  }
  #gfooter .ft_fixed li.third_btn a {
    padding-top: 28px;
    background: url(../img/ft_fixed_bg03.png) #95b74a no-repeat center top 8px/16px;
  }
  */

  /*コピーライト*/
  #gfooter .copyright {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/*================================

　ここからTABLETのみ適用
　※この中には基本的に書き込まないでください

================================*/
@media (max-width: 896px) and (min-width: 481px) {
  /*--------------------------------
  共通
  --------------------------------*/
  .pcTab-none {
    display: none !important;
  }
  .tab-none {
    display: none !important;
  }
}

/*================================

　ここからSP適用

================================*/
@media (max-width: 480px) {
  /*--------------------------------
  共通
  --------------------------------*/
  .tabSp-none {
    display: none !important;
  }
  .sp-none {
    display: none !important;
  }

  /*リンクボタン
  a.linkbtn01 {
    display: block;
  }*/

  /*--------------------------------
  main_visual
  --------------------------------*/
  #main_visual {
    height: 600px;
    background-position: right bottom;
  }

  /*キャッチ*/
  #main_visual .catch {
    width: 100%;
  }

  /*--------------------------------
  sec03
  --------------------------------*/
  #sec03 .right {
    background-size: cover;
  }

  /*--------------------------------
  sec04
  --------------------------------*/
  #sec04 .left {
    background-size: cover;
  }

  /*--------------------------------
  sec06
  --------------------------------*/
  #sec06 .right {
    height: 300px;
  }

  /*--------------------------------
  footer
  --------------------------------*/
  /*診療時間*/
  #gfooter .timetable > table thead th:first-child {
    width: 30%;
  }

  /*コピーライト*/
  #gfooter .copyright {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
