@charset "utf-8";

/*=================================================================================================================================*/
/**  共通クラス	*/
/*=================================================================================================================================*/

/* hover */
.hover {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.hover:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -ms-filter: "alpha( opacity=60 )";
}

/*---------------------------------------------
 ** ttl 見出し
---------------------------------------------*/
/* h2 */
h2 {
  min-height: 108px;
  font-size: 2.4rem;
  line-height: 1.45;
  margin-bottom: 1.8rem;
  font-weight: 600;
  color: #006cb9;
  text-align: center;
  padding: 50px 0 0 0;
  box-sizing: border-box; /*通常の記述*/
  -webkit-box-sizing: border-box; /*Google ChromeやSafariの機能を利用*/
  -moz-box-sizing: border-box; /*Firefoxの機能を利用*/
}

/* h4 */
h4 {
  font-size: 2.1rem;
  color: #007ac6;
  padding: 4rem 0 2.6rem;
}

/*---------------------------------------------
**  col カラム
---------------------------------------------*/
.col-wrapper {
  width: 90.5%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box; /*通常の記述*/
  -webkit-box-sizing: border-box; /*Google ChromeやSafariの機能を利用*/
  -moz-box-sizing: border-box; /*Firefoxの機能を利用*/
}
.col-wrapper-full {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  box-sizing: border-box; /*通常の記述*/
  -webkit-box-sizing: border-box; /*Google ChromeやSafariの機能を利用*/
  -moz-box-sizing: border-box; /*Firefoxの機能を利用*/
}
.item-inner {
  padding: 5%;
}
.col-wrapper.col-2,
.col-wrapper.col-3,
.col-wrapper.col-4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.col-wrapper:after {
  /* content: "."; */
  display: block;
  height: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}
.col-2 > .item,
.col-3 > .item,
.col-4 > .item {
  width: 100%;
  box-sizing: border-box; /*通常の記述*/
  -webkit-box-sizing: border-box; /*Google ChromeやSafariの機能を利用*/
  -moz-box-sizing: border-box; /*Firefoxの機能を利用*/
}
/* カラム下のマージン */
.col-2 > .item,
.col-3 > .item,
.col-4 > .item {
  margin-bottom: 1.2rem;
}

@media (min-width: 668px) {
  .col-2 > .item,
  .col-3 > .item,
  .col-4 > .item {
    width: calc(100% / 2);
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (min-width: 768px) {
  /*960px ～*/
  .col-2 > .item {
    width: calc((100% / 2));
  }
  .col-3 > .item {
    width: calc((100% / 3));
  }
  .col-4 > .item {
    width: calc((100% / 4));
  }
}

/*---------------------------------------------
 **  ( スマホのみ)カラム落とさない
---------------------------------------------*/
/* 3カラムの場合 */
@media (max-width: 767px) {
  .col-3.is-sp-col .item {
    width: calc((100% / 3));
  }
  .is-sp-col-2 .item {
    width: calc((100% / 2));
  }
  .is-sp-col-3 .item {
    width: calc((100% / 3));
  }
}

/*---------------------------------------------
 **  画面幅MAX背景
---------------------------------------------*/
.col-full-width {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}
@media (max-width: 767px) {
  .col-full-width {
    margin-left: calc(-48vw + 48%);
    margin-right: calc(-48vw + 48%);
  }
}
.col-full-width > .inner {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

/*
.col-full-width-ptn-01 {
  padding: 2rem 0 5.5rem;
  background: #e1f4fd;
}
*/
.col-full-width-ptn-01 {
  padding: 2rem 0 5.5rem;
  background-color: #E1F3FD;
  /*
  background: url(/img/common/bg_dot.png) repeat;
  */
}

.col-full-width-ptn-01.ptn-01 {
  padding: 8rem 0 5.5rem;
}
.col-full-width-ptn-01.ptn-02 {
  padding: 8rem 0 9rem;
}
.col-typ-01-bg-01 {
  background: #fff !important;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
}

/*---------------------------------------------
 **  txt
---------------------------------------------*/
/* 文字寄せ */
.txt-left {
  text-align: left;
}
.txt-center {
  text-align: center;
}
.txt-right {
  text-align: right;
}

/* 文字サイズ */
.txt-size-14 {
  font-size: 1.4rem;
}
.txt-size-18 {
  font-size: 1.8rem;
}
.txt-size-24 {
  font-size: 2.4rem !important;
}
.txt-size-26 {
  font-size: 2.6rem;
}
.txt-size-30 {
  font-size: 3rem !important;
}
.txt-size-35 {
  font-size: 3.5rem !important;
}

.txt-fw-b {
  font-weight: bold;
}
/*---------------------------------------------
 **  p , m 余白
---------------------------------------------*/
.p-5per {
  padding: 5%;
}
/* パディング下 */
.p-b-0 {
  padding-bottom: 0;
}
/* パディング左右 */
.p-LR_0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.p-LR_1per {
  padding-left: 1%;
  padding-right: 1%;
}
.p-LR_2per {
  padding-left: 2%;
  padding-right: 2%;
}
.p-LR_4per {
  padding-left: 4%;
  padding-right: 4%;
}
.p-LR_3per {
  padding-left: 3%;
  padding-right: 3%;
}
.p-LR_5per {
  padding-left: 5%;
  padding-right: 5%;
}
.p-LR_8per {
  padding-left: 8%;
  padding-right: 8%;
}
.p-LR_10per {
  padding-left: 10%;
  padding-right: 10%;
}

/* パディング上下 */
.p-TB_1per {
  padding-top: 1.5%;
  padding-bottom: 0.8%;
}
.p-TB_5per {
  padding-top: 5%;
  padding-bottom: 5%;
}

/* マージン */
/* top */
.m-t-15 {
  margin-top: 1.5rem;
}
.m-t-20 {
  margin-top: 2rem;
}
.m-t-40 {
  margin-top: 4rem;
}
.m-t-100 {
  margin-top: 100px;
}

/* bottom */
.m-b-0 {
  margin-bottom: 0 !important;
}
.m-b-10 {
  margin-bottom: 1rem;
}
.m-b-20 {
  margin-bottom: 2rem !important;
}
.m-b-28 {
  margin-bottom: 2.8rem;
}
.m-b-30 {
  margin-bottom: 3rem !important;
}
.m-b-40 {
  margin-bottom: 4rem !important;
}
.m-b-50 {
  margin-bottom: 5rem;
}
.m-b-60 {
  margin-bottom: 6rem !important;
}
.m-b-70 {
  margin-bottom: 7rem !important;
}
.m-b-80 {
  margin-bottom: 8rem;
}
.m-b-90 {
  margin-bottom: 9rem;
}
/* 【 PC 】 768px ～ */
@media (min-width: 768px) {
  .m-b-0 {
    margin-bottom: 0;
  }
  .m-b-10 {
    margin-bottom: 1rem;
  }
  .m-b-20 {
    margin-bottom: 2rem;
  }
  .m-b-28 {
    margin-bottom: 2.8rem;
  }
  .m-b-30 {
    margin-bottom: 3rem;
  }
  .m-b-40 {
    margin-bottom: 4rem;
  }
  .m-b-50 {
    margin-bottom: 5rem;
  }
  .m-b-60 {
    margin-bottom: 6rem;
  }
  .m-b-70 {
    margin-bottom: 7rem;
  }
  .m-b-80 {
    margin-bottom: 8rem;
  }
  .m-b-90 {
    margin-bottom: 9rem;
  }
}

.m-l-a {
  margin-left: unset !important;
  margin-right: unset !important;
  margin-left: auto !important;
}
.m-r-a {
  margin-left: unset !important;
  margin-right: unset !important;
  margin-right: auto !important;
}
.m-t-a {
  margin-top: unset !important;
  margin-top: auto !important;
}

.m-0-a {
  margin-left: auto;
  margin-right: auto;
}

/*---------------------------------------------
 **  bdr 角丸
---------------------------------------------*/
.bdr-8 {
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
}

/*---------------------------------------------
**  flx フレックス
---------------------------------------------*/
/* 順番入れ替え */
.flx-d-r {
  flex-direction: row;
}

.flx-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* flx 並び順 */
.jst-left {
  justify-content: left;
}
.jst-center {
  justify-content: center !important;
}

@media (min-width: 768px) {
  /* flex-basis */
  .flx-base-1 {
    flex-basis: 10%;
  }
  .flx-base-12 {
    flex-basis: 12%;
  }
  .flx-base-2 {
    flex-basis: 20%;
  }
  .flx-base-25 {
    flex-basis: 25%;
  }
  .flx-base-29 {
    flex-basis: 29%;
  }
  .flx-base-3 {
    flex-basis: 30%;
  }
  .flx-base-4 {
    flex-basis: 40%;
  }
  .flx-base-45 {
    flex-basis: 45%;
  }
  .flx-base-47 {
    flex-basis: 47%;
  }
  .flx-base-48 {
    flex-basis: 48%;
  }
  .flx-base-485 {
    flex-basis: 48.5%;
  }
  .flx-base-49 {
    flex-basis: 49%;
  }
  .flx-base-5 {
    flex-basis: 50%;
  }
  .flx-base-55 {
    flex-basis: 55%;
  }
  .flx-base-6 {
    flex-basis: 60%;
  }
  .flx-base-65 {
    flex-basis: 65%;
  }
  .flx-base-68 {
    flex-basis: 68%;
  }
  .flx-base-7 {
    flex-basis: 70%;
  }
  .flx-base-75 {
    flex-basis: 75%;
  }
  .flx-base-8 {
    flex-basis: 80%;
  }
  .flx-base-84 {
    flex-basis: 84%;
  }
  .flx-base-85 {
    flex-basis: 85%;
  }
  .flx-base-88 {
    flex-basis: 88%;
  }
  .flx-base-9 {
    flex-basis: 90%;
  }
}

/*---------------------------------------------
 **  bg 背景色
---------------------------------------------*/
.bg-c-01 {
  border-color: #31130b;
}
.bg-c-02 {
  background: #0646A3;
}
.bg-c-03 {
  background: #008E6F;
}
.bg-c-04 {
  background: #d8a128;
}
.bg-c-05 {
  background: #104583;
}


/*---------------------------------------------
 **  btn ボタン
---------------------------------------------*/
.btn-base {
  width: 234px;
  padding: 1.5rem 3.5rem;
  margin: 0 auto 1rem auto;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  display: block;
  text-align: center;
  position: relative;
  text-decoration: none !important;
  -moz-border-radius: 50px; /* 角丸 */
  -webkit-border-radius: 50px; /* 角丸 */
  border-radius: 50px; /* 角丸 */
  -webkit-transition: all 0.6s; /* アニメーション */
  transition: all 0.6s; /* アニメーション */
  box-sizing: border-box; /*通常の記述*/
  -webkit-box-sizing: border-box; /*Google ChromeやSafariの機能を利用*/
  -moz-box-sizing: border-box; /*Firefoxの機能を利用*/
}
@media (max-width: 767px) {
  .btn-base {
    width: 90%;
    margin: 0 auto 1rem auto !important;
    padding: 1rem 2.5rem;
  }
}
.btn-base:after {
  position: absolute;
  top: 25%;
  right: 7%;
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 900;
}
.btn-icon-back:after {
  left: 10%;
  right: unset;
  content: "\f053";
}
.btn-icon-down:after {
  content: "\f078";
}

/* hover */
.btn-base {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.btn-base:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -ms-filter: "alpha( opacity=60 )";
}

/* ボタン パターン */
.btn-01 {
  background: #006cbb;
  color: #fff;
}
.btn-01 {
  width: 100%;
  max-width: 300px;
  padding: 1.2rem 4rem;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  text-decoration: none !important;
  font-size: 2rem;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  margin: 0 6px 0 0;
  background: #e3f1fe;
  box-shadow: 2px 2px #a6a6a6;
  color: #104583;
}


/* ボタン パターン */
.btn-02 {
  background: #006cbb;
  color: #fff;
}
.btn-02 {
  width: 100%;
  max-width: 300px;
  padding: 1.2rem 4rem;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  text-decoration: none !important;
  font-size: 2rem;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  margin: 0 6px 1rem 0;
  background: #FFF;
  box-shadow: 5px 5px #CEDAED;
  border: 2px solid #0646A3;
  color: #0646A3 ;
}
.btn-02:hover,
.btn-02.on {
  background: #0646A3;
  color: #FFF;
  opacity:1;
  position:relative;
  top:5px;
  box-shadow:unset;
}

.btn-02.green {
    border: 2px solid #008E6F !important;
      color: #008E6F;
  }
.btn-02.green:hover{
      color: 2px solid #fff;
      background: #008E6F !important;
      color: #fff;
  }

/*---------------------------------------------
 **  lst リスト
---------------------------------------------*/

.lst-sty-none {
  list-style: none;
}
.lst-base {
  list-style: none;
}
.lst-base li {
  list-style: none;
  font-size: 1.8rem;
}
.lst-base li:before {
  font-size: 1.1rem;
  top: -2px;
  left: 0px;
  color: #006cbb;
  content: "●";
  position: relative;
  margin-right: 0.5rem;
}

.lst-ptn-01 li {
  font-size: 2rem;
}
.lst-ptn-01 li:before {
  font-size: 1.4rem;
  color: #daeddc;
  margin-right: 1.2rem;
}

/*---------------------------------------------
 **  max-w 最大幅
---------------------------------------------*/
.max-w-840 {
  max-width: 840px;
}
.max-w-920 {
  max-width: 920px;
  margin: 0 auto;
}
.max-w-1100 {
  max-width: 1100px;
}

/*---------------------------------------------
 **  w 幅
---------------------------------------------*/
.w-max {
  width: 100%;
}

.w-80 {
  width: 80%;
}


/*---------------------------------------------
 **  h 高さ
---------------------------------------------*/
.h-max {
  height: 100%;
}

/*---------------------------------------------
 **  ttl タイトル
---------------------------------------------*/
.ttl-ptn-01 {
  color: #005ba6;
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.15);
  font-weight: bold;
}
.ttl-ptn-02 {
  color: #104583;
  font-size: 2.4rem;
  font-weight: bold;
}
.ttl-ptn-03 {
  color: #2B2B2B;
  font-size: 3rem;
  letter-spacing: 8px;
}
.ttl-inner-boder {
  border-bottom: 3px solid #0059aa;
  display:inline-block;
  padding: 0 1rem 1.6rem;
  margin-bottom: 2rem;
  text-align: center;
}

.ttl-ptn-04 {
  color: #0059aa;
  font-size: 2rem;
  letter-spacing: 3px;
  margin-bottom: 3rem;
}
.is-ptn-03 {
  margin-bottom: 1rem;
}


.ttl-05 {
  color: #fff;
  background: #0059aa;
  font-size: 2rem;
  font-weight: bold;
  padding: 0.8rem 0.5rem .9rem;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.ttl-05.is-ptn-01{
  background: #47A0BE;
}
.ttl-05.is-ptn-02{
  background: #D7ECFC;
  color: #0059AA;
  -moz-border-radius:0; -webkit-border-radius:0; border-radius:0;
}

.ttl-06 {
  color: #fff;
  background: #0059AA;
  font-size: 1.7rem;
  font-weight: bold;
  padding: 0.6rem 0.5rem .7rem;
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
  border-radius: 25px;
  margin-bottom: 1rem;
}
.ttl-07 {
  color: #000000;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 2;
}

.ttl-08 {
    color: #0059aa;
  font-size: 3rem;
  letter-spacing: 3px;
  margin-bottom: 3rem;
  font-family: "Kosugi Maru", sans-serif;
  margin-bottom: 1.2rem !important;
}
.ttl-txt-s{
  font-size: 180%;
  position: relative;
  top: 5px;
  margin-right: 0.5rem;
}

.icon-loupe {
  position: relative;
}
.icon-loupe:before {
  width: 53.5px;
  height: 53.5px;
  margin: 0 auto 1.2rem;
  background: url(../img/icon-loupe.png) no-repeat;
  background-size: contain;
  display: block;
  content: "";
}

/*---------------------------------------------
 **  img 画像
---------------------------------------------*/
.img-box img {
  width: 100%;
  display: block;
}

/* 【 PC 】 768px ～ */
@media (min-width: 768px) {
  .img-box-auto {
    text-align: center;
    display: block;
  }
  .img-box-auto img {
    width: auto;
  }
}

/*---------------------------------------------
 ** パンくずリスト
---------------------------------------------*/
#breadcrumb {
  width: 100%;
  margin: 0 auto 4rem;
}

#breadcrumb ul {
  display: table;
  font-size: 1.4rem;
}

#breadcrumb ul li {
  margin: 0 10px 0 0;
  font-size: 1.4rem;
  float: left;
  list-style-type: none;
}

#breadcrumb ul li a {
  color: #007ac6;
  text-decoration: none;
  font-weight: bold;
}

#breadcrumb ul li:first-child::before {
  content: "";
  padding: 0;
}

#breadcrumb ul li::before {
  padding: 0 10px 0 0;
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: bold;
  font-size: 14px;
}

@media (max-width: 767px) {
  /* パンクズリスト */
  #breadcrumb {
    width: 90%;
    margin: 0rem 5% 4rem;
    padding: 2% 0 0 0;
  }
}

/*---------------------------------------------
 **  ページトップ
---------------------------------------------*/
#pageTop {
  position: fixed;
  bottom: 40px;
  right: 20px;
  z-index: 999;
}
#pageTop a {
  display: block;
  padding: 2rem;

  border: 1px solid #006cbb;
  color: #006cbb;
  font-weight: bold;
  text-decoration: none;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
#pageTop a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#pageTop a:after {
  position: absolute;
  top: 61px;
  left: 0px;
  right: 0;
  margin: 0 auto;
  content: "pagetop";
  display: inline-block;
  font-size: 1.2rem;
  color: #006cbb;
  text-align: center;
}

.mal {
  display: flex;
  justify-content: center;
  align-items: center;
}

/*---------------------------------------------
 **  ボックスシャドウ
---------------------------------------------*/
.bg-box-shadow-01 {
  /* box-shadow */
  box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.16);
  background: #ffffff;
}

/*---------------------------------------------
 **  position position
---------------------------------------------*/
.por {
  position: relative;
}

.txt-sz-s{
  font-size: 80%;
}

.bdr{-moz-border-radius:8px; -webkit-border-radius:8px; border-radius:8px;}


/*---------------------------------------------
 **  赤文字注意書き
---------------------------------------------*/
span.attention{
  display: block;
  margin: 1rem auto;
}
span.attention.red{
  color: #FF4D4D;
  font-weight: bold;
}

/*---------------------------------------------
 **  診療予約
---------------------------------------------*/
dl.reserve{ margin: 0 auto;}
dl.reserve dt img.qrcode{ width: 120px;}

h4{
  background: #e9727e;
  font-weight: bold;
  padding: 0.5rem 0;
  text-align: center;
  margin: 2rem auto 0 auto;
  width: 80%;
  display: block;
  color: #fff;
  font-size:1.8rem;
  letter-spacing: 0.1em;
}

.bdrbox-b{ 
  padding: 1.5rem;
  border-radius: 10px;
  border: 4px solid #104583;
  box-sizing: border-box;
  background-color: #fff;
}


table.tbl-r02 {
  margin: 0 auto;
  width: 80%;
  border:4px solid #e9727e;
  border-radius: 10px;
  border-collapse: collapse;
  box-sizing: border-box;
  background-color: #fff;
}
.tbl-r02 th {
  background: #FF8282;
  border: solid 1px #ccc;
  color: #fff;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  box-sizing: border-box;
  
}
.tbl-r02 td {
　border: solid 1px #ccc;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
  box-sizing: border-box;
}
 

