@charset "utf-8";


/*項目分けは下記*/

/*=======================================
　特大項目
====================================== */

/*------------------------------
　大項目
----------------------------- */

/*----- 中項目 -----*/

/* 小項目 */




/*=======================================
　全体設定
====================================== */

/*------------------------------
　フォントサイズ
------------------------------ */

/*ルートのフォントのサイズ*/
html {
  font-size: 10px;
}

/*全体のフォントのサイズ*/
body {
  color: #464646;
  font-size: 1.7rem;
  line-height: 1.2;
}

.main p {
  line-height: 1.7;
}

@media screen and (max-width: 680px) {
  html {
    font-size: 9px;
  }
}


/*------------------------------
　表示の切り替えでまとめて隠すもの・表示するもの
------------------------------ */

/*----- PCサイズのとき悲表示 -----*/
.pc_hide {
  display: none!important;
}


/*----- スマートフォンサイズのとき悲表示 -----*/
@media screen and (max-width: 680px) {
  .pc_hide {
    display: block!important;
  }

  .sm_hide {
    display: none!important;
  }
}


/*------------------------------
　float解除（micro clearfix）
全体に使いまわすものはまとめて解除
他は基本的にはoverflow:hidden;を使用。
------------------------------ */
.innerwidth_box:before,
.innerwidth_box:after,
.main:before,
.main:after,
.contents:before,
.contents:after,
.paragraph:before,
.paragraph:after,
.clearfix:before,
.clearfix:after {
  display: table;
  content: "";
}

.innerwidth_box:after,
.main:after,
.contents:after,
.paragraph:after,
.clearfix:after {
  clear: both;
}

/* For IE 6/7 (trigger hasLayout) */
.innerwidth_box,
.main,
.contents,
.paragraph,
.clearfix {
  zoom: 1;
}

/*------------------------------
　サイト幅
------------------------------ */

/*----- 幅1000px -----*/
body {
  overflow: auto;
  position: relative;
  min-width: 1000px; /*ページ幅に合わせて変更*/
  background: url(../images/body_bg_pc.jpg) repeat-x;
  font-family: Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",sans-serif;
  zoom: 1;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.innerwidth_box {
  width: 1000px; /*ページ幅に合わせて変更*/
  margin: 0 auto;
}

@media screen and (max-width: 680px) {
  body {
    min-width: 0;
    background: #fff;
  }

  .innerwidth_box {
    overflow: hidden;
    width: 92.5%;
    margin: 0 auto;
  }
}


/*------------------------------
　リンク
------------------------------ */

/*----- テキストリンク -----*/
a,
a:visited {
  color: #666;
  text-decoration: underline;
}

a:hover,
a:active {
  color: #ccc;
  text-decoration: none;
}

/*----- 画像リンク（ホバー時透けさせる） -----*/

.rollover_opa:hover {
  opacity: .8;
}

.opaon:hover {
  opacity: 0.7;
}


/*------------------------------
　見出し
※タグに直接スタイルを記載しない形にしてるので、コーディングの際注意が必要
------------------------------ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 100;
}

/*メタタグh1*/
.h1_wrap {
  background: transparent;
}

.meta_h1 {
  clear: both;
  color: #666;
  font-size: 1.2rem;
  font-weight: 100;
  text-align: left;
  line-height: 15px;
}

.title_basic_h3 {
  clear: both;
  height: 45px;
  margin-bottom: 20px;
  padding-left: 10px;
  background: url(../images/title_basic_h3.png) no-repeat;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: left;
  line-height: 45px;
}

.title_center_h3 {
  clear: both;
  height: 45px;
  margin-bottom: 20px;
  background: url(../images/title_basic_h3.png) no-repeat;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  line-height: 45px;
}

.title_basic_h4 {
  clear: both;
  margin: 0 0 5px 0;
  padding: 0 0 12px;
  background: url(../images/title_basic_h4.png) repeat-x bottom;
  color: #052c99;
  font-size: 1.8rem;
  font-weight: 700;
}

.title_basic_h5 {
  clear: both;
  margin-bottom: 10px;
  border-bottom: 2px dotted #e45466;
  color: #e45466;
  font-size: 1.7rem;
  font-weight: 700;
}

.title_basic_h6 {
  clear: both;
  margin-bottom: 10px;
  color: #4268ec;
  font-size: 1.7rem;
}

@media screen and (max-width: 680px) {
  .title_basic_h3,
  .title_center_h3 {
    height: auto;
    padding: 5px 10px;
    border-bottom: 5px solid #f69;
    background: #ffeded;
    font-size: 2rem;
    text-align: left;
    line-height: 1.2;
  }
}

/*------------------------------
　画像位置・装飾
------------------------------ */

/*----- 右寄せ・左寄せ・中央寄せ・装飾用のフレーム -----*/
.img_left {
  float: left;
  margin: 0  20px 0 0;
}

.img_right {
  float: right;
  margin: 0 0 0 20px;
}

.img_center {
  margin: 0 auto 20px;
  text-align: center;
}

.img_center img {
  display: inline-block;
}

img.img_frame {
  padding: 2px;
  border: 1px solid #eee;
  border-radius: 4px;
  background: #fff;
}


@media screen and (max-width: 680px) {
  img.fluid-image {
    max-width: 100%;
    width: auto;
  }

  img {
    max-width: 100%;
  }

  /* 右寄せ・左寄せの画像を中央寄せに */
  .img_left,
  .img_right {
    float: none;
    margin: 0;
  }

  .img_left img,
  .img_right img,
  .img_center img {
    display: block;
    max-width: 100%;
    width: auto;
    margin: 0 auto;
  }

  .img_left,
  .img_right,
  .img_center {
    margin-bottom: 1em;
  }

  img.img_scale {
    width: 70%;
  }
}

/*----- 2列に同じ大きさの画像を並べる -----*/
.img_two_rows {
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
}

.img_two_rows li {
  margin: 0 0 10px;
}

.img_two_rows > li,
.img_two_rows a {
  display: inline-block;
  height: 100%;
  font-size: 0;
}

.img_two_rows > li:nth-child(odd) {
  float: left;
}

.img_two_rows > li:nth-child(even) {
  float: right;
}

@media screen and (max-width: 680px) {
  .img_two_rows + .img_two_rows {
    margin-top: 10px;
  }

  ul.img_two_rows > li:nth-child(even),
  ul.img_two_rows > li:nth-child(odd) {
    display: block;
    float: none;
    max-width: 100%;
    width: 100%;
    margin: 0 auto 20px;
    text-align: center;
  }

  ul.img_two_rows > li img {
    width: 100%;
    margin: 0 auto;
  }
}

/*------------------------------
　テキスト設定・装飾
------------------------------ */

/*----- pタグごとに1行空ける -----*/
.paragraph p {
  margin-bottom: 1em;
}

.paragraph p:last-child {
  margin-bottom: 0;
}


/*----- テキスト装飾 -----*/

/*色*/
.txt_atn {
  color: #f00;
}

.txt_pointA {
  color: #a59ffc;
}

/*太さ*/
.txt_bold {
  font-weight: 700;
}

/*位置*/
.txt_center {
  text-align: center;
}

.txt_right {
  text-align: right;
}

/*大きさ*/
.txt_small {
  font-size: 1.2rem;
}

.txt_large {
  font-size: 2.5rem;
}


/*電話番号用*/
.txt_tel {
  color: #ea485c!important;
  font-size: 3rem!important;
  font-weight: 700!important;
}



/*------------------------------
　基本テーブル
------------------------------ */

/*----- 通常テーブル -----*/
/*基本はこれを使用*/

.tbl {
  width: 100%;
}

.tbl th,
.tbl td {
  padding: 5px;
  border: 1px solid #ddd7ca;
}

.tbl thead th {
  background: #f8f3df;
  font-weight: 700;
}


/*----- 枠線なしのシンプルなテーブル（主にレイアウト用） -----*/
.tbl_simple {
  border: none;
}

.tbl_simple th {
  font-weight: 100;
  text-align: left;
}

/*------------------------------
　リスト
------------------------------ */

/*----- 順不同リスト -----*/
.ulst > li {
  margin-bottom: 20px;
  padding-left: 20px;
  background: url(../images/ulst_icon.png) no-repeat left top 2px;
  line-height: 1.2;
}

.ulst > li:last-child {
  margin-bottom: 0;
}

.ulst_blue > li {
  background: url(../images/ulst_blue_icon.png) no-repeat left top 2px;
}

.ulst_gray > li {
  background: url(../images/ulst_gray_icon.png) no-repeat left top 2px;
}

/*----- 序列リスト -----*/
.olst {
  margin: 0 0 0 25px;
}
.olst > li {
  list-style-type: decimal;
  margin-bottom: 10px;
  line-height: 1.2;
}

.olst > li:last-child {
  margin-bottom: 0;
}


/*----- 定義リスト -----*/
.dlst > dt {
  color: #999;
  font-weight: 700;
  letter-spacing: .1em;
}

.dlst > dt:before {
  color: #b2b0d6;
  content: "● ";
}

.dlst > dd {
  margin-bottom: 10px;
  padding-left: 1.5em;
}

.dlst > dd:last-child {
  margin-bottom: 0;
}

/*----- 間に▼などを挟んだフローなどに使用するリスト -----*/
.dlst_arrow > dt {
  padding: 5px 15px;
  border: 1px solid #ffbb72;
  border-top: none;
  background: #ffbb72;
  font-weight: 700;
}

.dlst_arrow > dd {
  padding: 10px;
  border: 1px solid #ffbb72;
}

.dlst_arrow > dd.arrow {
  border: none;
  text-align: center;
}

/*----- 上下のテキストとの間隔 -----*/
.ulst + p,
p + .ulst,
.olst + p,
p + .olst,
.dlst + p,
p + .dlst,
.dlst_arrow + p,
p + .dlst_arrow {
  margin-top: 30px;
}

/*------------------------------
　ヘッダ
------------------------------ */
.header {
  background: transparent;
}

.header_top {
  background: transparent;
}

.header_logo {
  float: left;
  margin: 24px 0 0 2px;
}

.header_info_box {
  overflow: hidden;
  float: right;
  width: 500px;
  margin: 15px 0 0 0;
}

.header_btn_web {
  float: left;
}

.header_tel {
  float: right;
  margin: 1px 1px 0 0;
  pointer-events: none;
}

.header_tel a,
.header_btn_web a {
  display: inline-block;
}

@media screen and (max-width: 680px) {
  .header_tel {
    pointer-events: auto;
  }

  .header_logo {
    float: none;
    margin: 3% auto 0;
  }

  .header_logo img {
    width: 100%;
  }

  .header_info_box {
    float: none;
    width: 100%;
    height: auto;
    margin-top: 0;
    padding-right: 0;
    background: none;
    text-align: center;
  }

  .header_tel,
  .header_btn_web {
    float: none;
    width: 100%;
    margin: 20px auto 0;
  }

  .header_tel img,
  .header_btn_web img {
    width: 100%;
  }
}


/*------------------------------
　グローバルナビ
------------------------------ */

.gnavi_wrap {
  margin: 40px auto 0;
  background: transparent;
}

.gnavi {
  width: 100%;
  margin: 0 auto;
  font-size: 0;
  text-align: center;
}

.gnavi > li {
  display: inline-block;
  margin-right: 8px;
}

.gnavi > li:last-child {
  margin-right: 0;
}

.gnavi > li > a {
  display: inline-block;
  height: 100%;
}

@media screen and (max-width: 680px) {
  .gnavi_wrap {
    margin: 5% 0 -2%;
  }

  .gnavi {
    width: 92.5%;
    margin: 0 auto;
  }
  .gnavi > li {
    width: 49%;
    margin-right: 2%;
    margin-bottom: 2%;
  }

  .gnavi > li:nth-child(2n) {
    margin-right: 0;
  }

  .gnavi img {
    width: 100%;
  }
}

/*------------------------------
　メインコンテンツ設定・配置
------------------------------ */
.wrap {
  padding: 70px 0 0;
  background: transparent;
}

.main {
  width: 100%;
}

.contents {
  margin: 0 0 70px;
  background: #fff;
}

.contents:last-child {
  margin: 0 0 50px;
}

.paragraph {
  margin: 0 0 30px 0;
}

.paragraph:last-child {
  margin-bottom: 0;
}


@media screen and (max-width: 680px) {
  .wrap {
    padding-top: 20px;
    background: none;
  }

  .main {
    float: none;
    width: 100%;
  }

  .contents {
    margin-bottom: 15%;
  }
}

/*------------------------------
　診療メニュー
------------------------------ */

.smenu_read {
  text-align: center;
}

.smenu_title {
  display: none;
}

.smenu {
  overflow: hidden;
  margin-bottom: -20px;
  display:block!important;
}

.smenu li {
  float: left;
  width: 235px;
  height: 80px;
  margin: 0 20px 20px 0;
}

.smenu li:nth-child(4n) {
  margin: 0;
}

.smenu li a {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  text-decoration: none;
  text-indent: 100%;
  white-space: nowrap;
}

.smenu li:hover {
  opacity: .8;
}

.smenu_dentistry {
  background: url(../images/smenu_dentistry.png) no-repeat 0 0;
}

.smenu_visit {
  background: url(../images/smenu_visit.png) no-repeat 0 0;
}

.smenu_denture {
  background: url(../images/smenu_denture.png) no-repeat 0 0;
}

.smenu_orthodontic {
  background: url(../images/smenu_orthodontic.png) no-repeat 0 0;
}

.smenu_pediatric {
  background: url(../images/smenu_pediatric.png) no-repeat 0 0;
}

.smenu_whitening {
  background: url(../images/smenu_whitening.png) no-repeat 0 0;
}

.smenu_surgery {
  background: url(../images/smenu_surgery.png) no-repeat 0 0;
}

.smenu_implant {
  background: url(../images/smenu_implant.png) no-repeat 0 0;
}

@media screen and (max-width: 680px) {
  .smenu_read {
    text-align: left;
  }

  .smenu {
    margin-bottom: 0;
  }

  .smenu li {
    float: none;
    width: auto;
    height: auto;
    background: transparent;
  }

  .smenu li a {
    text-indent: 0;
    white-space: normal;
  }

  .smenu_title,
  .smenu li {
    display: block;
    margin: 0;
    border: 1px solid #8ad3f4;
    background: #e1ecfb;
    text-align: left;
  }

  .smenu li {
    border-top: none;
  }

  .smenu_title span,
  .smenu li a {
    display: block;
    padding: 7px;
  }
}


/*------------------------------
　pagetopボタン
------------------------------ */
.pagetop_wrap {
  overflow: hidden;
  margin: 0 auto 5px;
  background: transparent;
}

.pagetop {
  display: inline-block;
  float: right;
}


/*------------------------------
　フッタ
------------------------------ */
.footer {
  min-height: 172px;
  border-top: 3px solid #f57491;
  background: url(../images/footer_bg.png) repeat-x top;
}

.footer_top {
  padding: 41px 0 0;
}

@media screen and (max-width: 680px) {
  .footer {
    min-height: 0;
    border-top: none;
    background: transparent;
  }

  .footer_top {
    display: none;
  }
}

/*----- フッターロゴ -----*/
.footer_logo {
  float: left;
  margin: 0 0 0 9px;
}

/*----- フッターメニュー -----*/
.footer_menu {
  float: right;
  width: 650px;
}

.footernavi {
  clear: both;
  width: 650px;
  margin: 5px 0 15px;
  font-size: 0;
  text-align: right;
}

.footernavi > li {
  display: inline-block;
  padding: 0 7px;
  border-left: 1px solid #999;
  font-size: 1.3rem;
  line-height: 1.2;
}

.footernavi > li:last-child {
  border-right: 1px solid #999;
}

.footernavi > li > a {
  text-decoration: none;
}

/*----- コピーライト -----*/
.copyright {
  margin-top: 35px;
  padding: 5px 0;
}

.copyright p {
  font-size: 1.2rem;
  text-align: center;
}

.copyright a {
  text-decoration: none;
}

@media screen and (max-width: 680px) {
  .copyright {
    margin-top: 0;
    background: #fef2f2;
  }
}


/*------------------------------
　googleMap
------------------------------ */

/*----- iframe埋め込み版（普通の埋め込み） -----*/
#mapcanvas {
  overflow: hidden;
  position: relative;
  height: 0;
  padding-bottom: 300px; /*※マップの高さ*/
  border: 1px solid #666;
  background: #ececec; /*※読み込みまでの間の背景色*/
}

#mapcanvas iframe {
  position: absolute;
  top: 0;
  left: -100%;
  width: 230% !important;
  height: 155% !important;
}

#mapcanvas:hover {
  cursor: pointer;
}

/*------------------------------
　医院概要
------------------------------ */
.about_detail {
  float: left;
  width: 418px;
}

.dlst_about > dt {
  margin: 0 0 5px;
  border-bottom: 1px solid #666;
  color: #f69;
  font-size: 1.5rem;
  font-weight: 700;
}

.dlst_about > dt.border_none {
  margin: 0;
  border-bottom: none;
}

.dlst_about > dd {
  margin-bottom: 45px;
  font-size: 1.5rem;
  line-height: 1.4;
}

.dlst_about > dd:last-child {
  margin-bottom: 0;
}

.about_map {
  float: right;
  width: 550px;
}

.about #mapcanvas {
  padding-bottom: 540px; /*※マップの高さ*/
}

@media screen and (max-width: 680px) {
  .about_detail,
  .about_map {
    float: none;
    width: 100%;
  }

  .about_detail {
    margin-bottom: 30px;
  }

  .about #mapcanvas {
    padding-bottom: 70%; /*※マップの高さ*/
  }
}


/*----- 基本の診療時間テーブル -----*/
.tbl_time {
  width: 100%;
}

.tbl_time th,
.tbl_time td {
  padding: 5px;
  border: 1px solid #a6a6a6;
	vertical-align: middle;
}
.tbl_time thead th {
  background: #fff0f9;
  font-weight: 100;
}
.tbl_time tbody .head {
  font-weight: 100;
}
.tbl_time tbody th small {
	font-size: 12px;
}
.tbl_time tbody th .accs {
	display: inline-block;
	padding-right: 0.5em;
}
.about_detail .tbl_time tbody th .accs {
	display: block;
	text-align: center;
	padding: 0;
}
@media screen and (max-width: 680px) {
	.tbl_time tbody th .accs {
		display: block;
		text-align: center;
		padding: 0;
	}
}

/*=======================================
　トップページ（bodyに「.index」）
====================================== */

/*------------------------------
　キービジュアル
------------------------------ */
.keyvisual {
  padding: 40px 0 0;
  background: transparent;
}

@media screen and (max-width: 680px) {
  .keyvisual {
    padding: 5% 0 0;
  }
}


/*------------------------------
　 お知らせ
------------------------------ */
.dlst_info {
  overflow-y: scroll;
  height: 180px;
  padding: 10px;
  border: 1px solid #afafaf;
}

.dlst_info dt {
  margin-bottom: 5px;
  color: #e44e5c;
  font-size: 1.7rem;
  font-weight: 100;
}

.dlst_info dd {
  margin-bottom: 20px;
  font-size: 1.6rem;
  line-height: 1.7;
}

.dlst_info dd:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 680px) {
  .dlst_info {
    overflow: visible;
    height: auto;
  }
}
/*------------------------------
　 当院の特長
------------------------------ */
.lst_topics {
  overflow: hidden;
}

.lst_topics li {
  box-sizing: border-box;
  float: left;
  width: 25%;
  height: 330px;
  padding: 10px;
  border-left: 1px solid #afafaf;
}

.lst_topics li:last-child {
  border-right: 1px solid #afafaf;
}

.lst_topics img {
  width: 100%;
}

.topic_img_txt {
  margin-bottom: 20px;
}

.topic_img_box {
  margin-bottom: 15px;
}

@media screen and (max-width: 680px) {
  .lst_topics li {
    width: 100%;
  }
}

/*------------------------------
　 スタッフ募集
------------------------------ */
.btn_more a {
  display: inline-block;
}

@media screen and (max-width: 680px) {
  .btn_more {
    text-align: center;
  }

  .lst_topics li {
    height: auto;
    margin-bottom: 5%;
    border: none;
  }

  .lst_topics li:last-child {
    margin-bottom: 0;
    border: none;
  }

  .topic_img_box {
    text-align: center;
  }

  img.topic_img_txt {
    width: 80%;
    margin-bottom: 5%;
  }
}

/*=======================================
　下層ページ（bodyに「.subpage」）
====================================== */

/*------------------------------
　下層ページ共通
------------------------------ */

/*----- キービジュアル・タイトル -----*/
.subpage_title {
  padding: 40px 0 0;
}

.subpage_title .innerwidth_box {
  position: relative;
  height: 200px;
  background: url(../images/title_subPage.png) no-repeat;
}

.subpage_title h2.pagetitle_h2 {
  position: absolute;
  bottom: 20px;
  left: 30px;
  height: 1em;
  margin: auto;
  color: #464646;
  font-size: 3.5rem;
  line-height: 1;
}

@media screen and (max-width: 680px) {
  .subpage_title {
    padding: 5% 0 0;
  }

  .subpage_title .innerwidth_box {
    height: 0;
    padding-top: 26%;
    background: url(../images/title_subPage_s.png) no-repeat;
    background-size: 100% 100%;
  }

  .subpage_title h2.pagetitle_h2 {
    font-size: 2rem;
  }
}

.subpage .smenu_wrap {
  margin: 0 0 50px;
}

@media screen and (max-width: 680px) {
  .subpage .smenu_wrap {
    margin: 0 0 20px;
  }
}

/*------------------------------
　アクセス・診療時間
------------------------------ */
.access .mapcanvas_wrap {
  padding: 10px;
  border: 1px solid #ccc;
  background: #fff;
}
.access #mapcanvas {
  height: 0;
  padding-bottom: 680px;
  border: none;
}

@media screen and (max-width: 680px) {
  .access .mapcanvas_wrap {
    padding: 2%;
  }

  .access #mapcanvas {
    padding-bottom: 70%;
  }
}


/*------------------------------
　スタッフ募集
------------------------------ */

/*----- ココをチェック -----*/
.ulst_check {
  overflow: hidden;
}

.ulst_check li {
  box-sizing: border-box;
  float: left;
  width: 320px;
  margin-right: 20px;
  padding: 10px 0;
  border: 1px solid #80b6ec;
  font-size: 1.5rem;
  text-align: center;
}

.ulst_check li:last-child {
  margin-right: 0;
}

.check_title {
  display: block;
  margin-bottom: 10px;
  color: #09f;
  font-size: 1.8rem;
}

@media screen and (max-width: 680px) {
  .ulst_check li {
    width: 100%;
    margin: 0 0 5%;
    padding: 10px 2%;
    text-align: left;
  }
}


/*----- テーブル -----*/
.tblA {
  width: 100%;
}

.tblA th,
.tblA td {
  vertical-align: middle;
}

.tblA tbody th {
  width: 250px;
  padding: 10px 0;
  background: #f4aacc;
  color: #fff;
}

.tblA tbody th,
.tblA tbody td {
  border-bottom: 20px solid #fff;
}

.tblA tbody td {
  padding: 5px 5px 5px 15px;
}

@media screen and (max-width: 680px) {
  .tblA tbody th {
    width: auto;
    padding: 10px 5px;
    white-space: nowrap;
  }

  .tblA tbody td {
    padding: 10px;
  }
}

/*----- 電話番号 -----*/
.recruit_tel {
  pointer-events: none;
}

@media screen and (max-width: 680px) {
  .recruit_tel {
    pointer-events: auto;
  }
}

/*------------------------------
　診療科目下層
------------------------------ */

.cause p {
  float: left;
  width: 800px;
}

.cause ul {
  overflow: hidden;
  list-style-type: disc;
  float: right;
  width: 100px;
  height: auto;
  padding: 10px 20px;
  background: #fff0f5;
}

.cause ul li {
  margin: 3px 0 3px 20px;
}

.example {
  overflow: hiddden;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  padding: 1em;
  background: #ebf5fd;
}

.general .example ul li {
  float: left;
  width: 46%;
}

.visit {
  box-sizing: border-box;
  width: 100%;
  padding: 1em;
  border: solid 2px #ff85ad;
  background: #fffafc;
}

.visit h3 {
  width: 100%;
  margin: 0 auto 20px;
  color: #464646;
  font-size: 22px;
  text-align: center;
}

.merit {
  float: left;
  width: 480px;
  height: auto;
}

.demerit {
  float: right;
  width: 480px;
  height: auto;
}

.merit h4,
.demerit h4 {
  box-sizing: border-box;
  width: 100%;
  height: auto;
  margin: 0 auto 20px;
  padding: 0 0 0 .5em;
  background: #fcd;
  color: #333;
  font-size: 18px;
  line-height: 30px;
}

.demerit h4 {
  background: #ccc;
}

.step .paragraph {
  min-height: 60px;
  padding-left: 80px;
  background: url(../images/step_bg.gif) no-repeat top 5px left 5px;
  background-size: 20px;
}

.step .paragraph:last-child {
  min-height: auto;
  background: none;
}


@media screen and (max-width: 680px) {
  .cause p {
    float: left;
    width: 100%;
  }

  .cause ul {
    box-sizing: border-box;
    list-style-type: disc;
    float: none;
    width: 100%;
    height: auto;
    padding: .5em;
    background: #fff0f5;
  }

  .cause ul li {
    float: left;
    width: 19%;
    margin: 0 0 0 6%;
  }

  .general .example ul li {
    float: none;
    width: auto;
  }

  .visit h3 {
    font-size: 2rem;
  }

  .merit,
  .demerit {
    float: none;
    width: 100%;
    height: auto;
    margin: 0 auto 20px;
    font-size: 1.8rem;
  }

  .step .paragraph {
    min-height: auto;
    padding-bottom: 90px;
    padding-left: 0;
    background: url(../images/step_bg.gif) no-repeat bottom center;
  }

  .step .paragraph:last-child {
    padding: 0;
    background: none;
  }
}
