@charset "UTF-8";
/* Scss Document */
/*----------- Default style ----------- */
/* font */
@import url(https://fonts.googleapis.com/css?family=Oswald:400,300,700);
/* =======================================================================
　reset
========================================================================== */
* {
  box-sizing: border-box; }

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline; }

html {
  line-height: 1;
  height: 100%; }

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

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  margin-bottom: 1em; }

ol, ul {
  list-style: none; }

b, strong {
  font-weight: bold; }

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle; }

q, blockquote {
  quotes: none; }

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

a {
  outline: none;
  color: #3c79d5; }

a img {
  border: none; }

img {
  height: auto;
  max-width: 100%; }

html, body {
  overflow-x: hidden; }

html {
  font-size: 62.5%; }

/*
* Skeleton V2.0.4
* Copyright 2014, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 12/29/2014
*/
/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––
- Base Styles
- Typography
- Links
- Buttons
- Forms
- Lists
- Code
- Tables
- Spacing
- Utilities
- Clearing
- Media Queries
*/
/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */
html {
  font-size: 62.5%; }

body {
  font-size: 1.4em;
  /* currently ems cause chrome bug misinterpreting rems on body element */
  line-height: 1.6;
  font-weight: 400;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic","メイリオ", Meiryo,Arial,sans-serif;
  color: #222; }

/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 300; }

h1 {
  font-size: 4.0rem;
  line-height: 1.2; }

.patient h1, body.patient h2, header h1 {
  font-family: "heisei-maru-gothic-std","ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO",sans-serif;
  font-weight: bold; }

h2 {
  font-size: 3.6rem;
  line-height: 1.25; }

h3 {
  font-size: 3.0rem;
  line-height: 1.3; }

h4 {
  font-size: 2.4rem;
  line-height: 1.35; }

h5 {
  font-size: 1.8rem;
  line-height: 1.5; }

h6 {
  font-size: 1.5rem;
  line-height: 1.6; }

/* Larger than phablet */
@media (min-width: 550px) {
  h1 {
    font-size: 5.0rem; }

  h2 {
    font-size: 4.2rem; }

  h3 {
    font-size: 3.6rem; }

  h4 {
    font-size: 3.0rem; }

  h5 {
    font-size: 2.4rem; }

  h6 {
    font-size: 1.5rem; } }
p {
  margin-top: 0;
  border: 0; }

section > :last-child {
  margin-bottom: 0; }

/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
  color: #1EAEDB;
  outline: none; }

a:hover {
  color: #0FA0CE; }

/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  display: inline-block;
  height: 38px;
  padding: 0 30px;
  color: #555;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: .1rem;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border-radius: 4px;
  border: 1px solid #bbb;
  cursor: pointer;
  box-sizing: border-box; }

.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
  color: #333;
  border-color: #888;
  outline: 0; }

.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
  color: #FFF;
  background-color: #33C3F0;
  border-color: #33C3F0; }

.button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
  color: #FFF;
  background-color: #1EAEDB;
  border-color: #1EAEDB; }

/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  height: 38px;
  padding: 6px 10px;
  /* The 6px vertically centers text on FF, ignored by Webkit */
  background-color: #fff;
  border: 1px solid #D1D1D1;
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box; }

/* Removes awkward default styles on some inputs for iOS */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

textarea {
  min-height: 65px;
  padding-top: 6px;
  padding-bottom: 6px; }

input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border: 1px solid #33C3F0;
  outline: 0; }

label,
legend {
  display: block;
  margin-bottom: .5rem;
  font-weight: 600; }

fieldset {
  padding: 0;
  border-width: 0; }

input[type="checkbox"],
input[type="radio"] {
  display: inline; }

label > .label-body {
  display: inline-block;
  margin-left: .5rem;
  font-weight: normal; }

/* Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul.list_normal {
  list-style: circle inside; }

ol.list_num {
  list-style: decimal outside;
  margin-left: 1.5em; }

ul.list_normal, ol.list_num {
  padding-left: 0;
  margin-top: 0; }

ul.list_normal ul,
ul.list_normal ol,
ol.list_num ol,
ol.list_num ul {
  margin: 1.5rem 0 1.5rem 3rem;
  font-size: 90%; }

ul.list_normal li,
ol.list_num li {
  margin-bottom: 1rem; }

.list_inline {
  text-align: center !important; }

.list_inline li {
  display: inline-block;
  margin-bottom: 1em;
  text-align: center !important;
  margin-right: 0.5em; }

.list_inline li:last-child {
  margin-bottom: 0; }

#links .sec_cont li a {
  color: #000;
  text-decoration: none; }

#links .sec_cont li a {
  padding-right: 1.5em;
  display: inline-block;
  background: url(../img/icon_blank.png) right center no-repeat;
  background-size: 13px auto; }

/* Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
table {
  width: 100%; }

th,
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #E1E1E1; }

/*th:first-child,
td:first-child {
  padding-left: 0; }
th:last-child,
td:last-child {
  padding-right: 0; }*/
/* Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
  margin-bottom: 1rem; }

input,
textarea,
select,
fieldset {
  margin-bottom: 1.5rem; }

pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
  margin-bottom: 2.5rem; }

/* Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.f-left {
  float: left; }

.f-right {
  float: right; }

.txt-center {
  text-align: center; }

.txt-left {
  text-align: left; }

.txt-right {
  text-align: right !important; }

.f-75 {
  font-size: 75%;
  font-weight: normal; }

.f-85 {
  font-size: 85%;
  font-weight: normal; }

.f-105 {
  font-size: 105%; }

.f-110 {
  font-size: 110%; }

.f-115 {
  font-size: 115%; }

.f-120 {
  font-size: 120%; }

.f-150-b {
  font-size: 150%;
  font-weight: bold; }

.f-red {
  color: #9C0002; }

.f-red2 {
  color: #DB0004; }

.indent-1 {
  padding-left: 1em;
  text-indent: -1em;
  display: inline-block; }

.indent-2 {
  padding-left: 2em;
  text-indent: -2em;
  display: inline-block; }

.indent-3 {
  padding-left: 3em;
  text-indent: -3em;
  display: inline-block; }

.indent-4 {
  padding-left: 4em;
  text-indent: -4em;
  display: inline-block; }

.indent-5 {
  padding-left: 5em;
  text-indent: -5em;
  display: inline-block; }

.clear {
  clear: both; }

.img-list {
  text-align: left;
  margin: 1em 0; }

.img-list li {
  display: inline-block;
  width: 25%;
  text-align: center;
  vertical-align: bottom; }

.img-list li span.cap {
  display: block;
  font-size: 87%;
  text-align: left;
  margin-bottom: 20px;
  line-height: 1.5em; }

.img-list.img-list-col3 li {
  width: 30%;
  margin-right: 10px;
  margin-bottom: 10px; }

#page-top a img {
  max-width: 100%;
  height: auto; }

#page-top {
  position: fixed;
  margin-bottom: 0;
  bottom: 20px;
  right: 20px;
  font-size: 77%; }

#page-top a {
  text-decoration: none;
  color: #fff;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  display: block;
  font-size: 37px;
  font-weight: bold; }

#page-top a:hover {
  text-decoration: none;
  opacity: 0.8; }

@media (max-width: 767px) {
  #page-top {
    position: fixed; }

  #page-top a {
    width: 40px;
    height: 53px;
    line-height: 53px; }

  .img-list li {
    display: block;
    width: 100%;
    margin-bottom: 1em; }

  .img-list li:last-child {
    margin-bottom: 0; }

  .img-list.img-list-col3 li {
    width: 100%;
    margin-right: 0; } }
#disease #page-top {
  bottom: 80px !important; }

/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid #E1E1E1; }

hr.hr_dot {
  border-top: 1px dotted #E1E1E1; }

/* Clearing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* Self Clearing Goodness */
.container:after, .row:after, .u-cf {
  content: "";
  display: table;
  clear: both; }

/* Media Queries
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* Larger than mobile */
/* Larger than phablet (also point when grid becomes active) */
/* Larger than tablet */
/* Larger than desktop */
/* Larger than Desktop HD */
/* ----------------gridstyle ----------------*/
/*!
Pure v0.6.2
Copyright 2013 Yahoo!
Licensed under the BSD License.
https://github.com/yahoo/pure/blob/master/LICENSE.md
*/
.pure-g {
  letter-spacing: -.31em;
  text-rendering: optimizespeed;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start; }

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  table .pure-g {
    display: block; } }
.opera-only :-o-prefocus, .pure-g {
  word-spacing: -.43em; }

.pure-u, .pure-u-1, .pure-u-1-1, .pure-u-1-12, .pure-u-1-2, .pure-u-1-24, .pure-u-1-3, .pure-u-1-4, .pure-u-1-5, .pure-u-1-6, .pure-u-1-8, .pure-u-10-24, .pure-u-11-12, .pure-u-11-24, .pure-u-12-24, .pure-u-13-24, .pure-u-14-24, .pure-u-15-24, .pure-u-16-24, .pure-u-17-24, .pure-u-18-24, .pure-u-19-24, .pure-u-2-24, .pure-u-2-3, .pure-u-2-5, .pure-u-20-24, .pure-u-21-24, .pure-u-22-24, .pure-u-23-24, .pure-u-24-24, .pure-u-3-24, .pure-u-3-4, .pure-u-3-5, .pure-u-3-8, .pure-u-4-24, .pure-u-4-5, .pure-u-5-12, .pure-u-5-24, .pure-u-5-5, .pure-u-5-6, .pure-u-5-8, .pure-u-6-24, .pure-u-7-12, .pure-u-7-24, .pure-u-7-8, .pure-u-8-24, .pure-u-9-24 {
  display: inline-block;
  zoom: 1;
  letter-spacing: normal;
  word-spacing: normal;
  vertical-align: top;
  text-rendering: auto; }

.pure-u-1-24 {
  width: 4.1667%; }

.pure-u-1-12, .pure-u-2-24 {
  width: 8.3333%; }

.pure-u-1-8, .pure-u-3-24 {
  width: 12.5%; }

.pure-u-1-6, .pure-u-4-24 {
  width: 16.6667%; }

.pure-u-1-5 {
  width: 20%; }

.pure-u-5-24 {
  width: 20.8333%; }

.pure-u-1-4, .pure-u-6-24 {
  width: 25%; }

.pure-u-7-24 {
  width: 29.1667%; }

.pure-u-1-3, .pure-u-8-24 {
  width: 33.3333%; }

.pure-u-3-8, .pure-u-9-24 {
  width: 37.5%; }

.pure-u-2-5 {
  width: 40%; }

.pure-u-10-24, .pure-u-5-12 {
  width: 41.6667%; }

.pure-u-11-24 {
  width: 45.8333%; }

.pure-u-1-2, .pure-u-12-24 {
  width: 50%; }

.pure-u-13-24 {
  width: 54.1667%; }

.pure-u-14-24, .pure-u-7-12 {
  width: 58.3333%; }

.pure-u-3-5 {
  width: 60%; }

.pure-u-15-24, .pure-u-5-8 {
  width: 62.5%; }

.pure-u-16-24, .pure-u-2-3 {
  width: 66.6667%; }

.pure-u-17-24 {
  width: 70.8333%; }

.pure-u-18-24, .pure-u-3-4 {
  width: 75%; }

.pure-u-19-24 {
  width: 79.1667%; }

.pure-u-4-5 {
  width: 80%; }

.pure-u-20-24, .pure-u-5-6 {
  width: 83.3333%; }

.pure-u-21-24, .pure-u-7-8 {
  width: 87.5%; }

.pure-u-11-12, .pure-u-22-24 {
  width: 91.6667%; }

.pure-u-23-24 {
  width: 95.8333%; }

.pure-u-1, .pure-u-1-1, .pure-u-24-24, .pure-u-5-5 {
  width: 100%; }

@media screen and (min-width: 35.5em) {
  .pure-u-sm-1, .pure-u-sm-1-1, .pure-u-sm-1-12, .pure-u-sm-1-2, .pure-u-sm-1-24, .pure-u-sm-1-3, .pure-u-sm-1-4, .pure-u-sm-1-5, .pure-u-sm-1-6, .pure-u-sm-1-8, .pure-u-sm-10-24, .pure-u-sm-11-12, .pure-u-sm-11-24, .pure-u-sm-12-24, .pure-u-sm-13-24, .pure-u-sm-14-24, .pure-u-sm-15-24, .pure-u-sm-16-24, .pure-u-sm-17-24, .pure-u-sm-18-24, .pure-u-sm-19-24, .pure-u-sm-2-24, .pure-u-sm-2-3, .pure-u-sm-2-5, .pure-u-sm-20-24, .pure-u-sm-21-24, .pure-u-sm-22-24, .pure-u-sm-23-24, .pure-u-sm-24-24, .pure-u-sm-3-24, .pure-u-sm-3-4, .pure-u-sm-3-5, .pure-u-sm-3-8, .pure-u-sm-4-24, .pure-u-sm-4-5, .pure-u-sm-5-12, .pure-u-sm-5-24, .pure-u-sm-5-5, .pure-u-sm-5-6, .pure-u-sm-5-8, .pure-u-sm-6-24, .pure-u-sm-7-12, .pure-u-sm-7-24, .pure-u-sm-7-8, .pure-u-sm-8-24, .pure-u-sm-9-24 {
    display: inline-block;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto; }

  .pure-u-sm-1-24 {
    width: 4.1667%; }

  .pure-u-sm-1-12, .pure-u-sm-2-24 {
    width: 8.3333%; }

  .pure-u-sm-1-8, .pure-u-sm-3-24 {
    width: 12.5%; }

  .pure-u-sm-1-6, .pure-u-sm-4-24 {
    width: 16.6667%; }

  .pure-u-sm-1-5 {
    width: 20%; }

  .pure-u-sm-5-24 {
    width: 20.8333%; }

  .pure-u-sm-1-4, .pure-u-sm-6-24 {
    width: 25%; }

  .pure-u-sm-7-24 {
    width: 29.1667%; }

  .pure-u-sm-1-3, .pure-u-sm-8-24 {
    width: 33.3333%; }

  .pure-u-sm-3-8, .pure-u-sm-9-24 {
    width: 37.5%; }

  .pure-u-sm-2-5 {
    width: 40%; }

  .pure-u-sm-10-24, .pure-u-sm-5-12 {
    width: 41.6667%; }

  .pure-u-sm-11-24 {
    width: 45.8333%; }

  .pure-u-sm-1-2, .pure-u-sm-12-24 {
    width: 50%; }

  .pure-u-sm-13-24 {
    width: 54.1667%; }

  .pure-u-sm-14-24, .pure-u-sm-7-12 {
    width: 58.3333%; }

  .pure-u-sm-3-5 {
    width: 60%; }

  .pure-u-sm-15-24, .pure-u-sm-5-8 {
    width: 62.5%; }

  .pure-u-sm-16-24, .pure-u-sm-2-3 {
    width: 66.6667%; }

  .pure-u-sm-17-24 {
    width: 70.8333%; }

  .pure-u-sm-18-24, .pure-u-sm-3-4 {
    width: 75%; }

  .pure-u-sm-19-24 {
    width: 79.1667%; }

  .pure-u-sm-4-5 {
    width: 80%; }

  .pure-u-sm-20-24, .pure-u-sm-5-6 {
    width: 83.3333%; }

  .pure-u-sm-21-24, .pure-u-sm-7-8 {
    width: 87.5%; }

  .pure-u-sm-11-12, .pure-u-sm-22-24 {
    width: 91.6667%; }

  .pure-u-sm-23-24 {
    width: 95.8333%; }

  .pure-u-sm-1, .pure-u-sm-1-1, .pure-u-sm-24-24, .pure-u-sm-5-5 {
    width: 100%; } }
@media screen and (min-width: 48em) {
  .pure-u-md-1, .pure-u-md-1-1, .pure-u-md-1-12, .pure-u-md-1-2, .pure-u-md-1-24, .pure-u-md-1-3, .pure-u-md-1-4, .pure-u-md-1-5, .pure-u-md-1-6, .pure-u-md-1-8, .pure-u-md-10-24, .pure-u-md-11-12, .pure-u-md-11-24, .pure-u-md-12-24, .pure-u-md-13-24, .pure-u-md-14-24, .pure-u-md-15-24, .pure-u-md-16-24, .pure-u-md-17-24, .pure-u-md-18-24, .pure-u-md-19-24, .pure-u-md-2-24, .pure-u-md-2-3, .pure-u-md-2-5, .pure-u-md-20-24, .pure-u-md-21-24, .pure-u-md-22-24, .pure-u-md-23-24, .pure-u-md-24-24, .pure-u-md-3-24, .pure-u-md-3-4, .pure-u-md-3-5, .pure-u-md-3-8, .pure-u-md-4-24, .pure-u-md-4-5, .pure-u-md-5-12, .pure-u-md-5-24, .pure-u-md-5-5, .pure-u-md-5-6, .pure-u-md-5-8, .pure-u-md-6-24, .pure-u-md-7-12, .pure-u-md-7-24, .pure-u-md-7-8, .pure-u-md-8-24, .pure-u-md-9-24 {
    display: inline-block;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto; }

  .pure-u-md-1-24 {
    width: 4.1667%; }

  .pure-u-md-1-12, .pure-u-md-2-24 {
    width: 8.3333%; }

  .pure-u-md-1-8, .pure-u-md-3-24 {
    width: 12.5%; }

  .pure-u-md-1-6, .pure-u-md-4-24 {
    width: 16.6667%; }

  .pure-u-md-1-5 {
    width: 20%; }

  .pure-u-md-5-24 {
    width: 20.8333%; }

  .pure-u-md-1-4, .pure-u-md-6-24 {
    width: 25%; }

  .pure-u-md-7-24 {
    width: 29.1667%; }

  .pure-u-md-1-3, .pure-u-md-8-24 {
    width: 33.3333%; }

  .pure-u-md-3-8, .pure-u-md-9-24 {
    width: 37.5%; }

  .pure-u-md-2-5 {
    width: 40%; }

  .pure-u-md-10-24, .pure-u-md-5-12 {
    width: 41.6667%; }

  .pure-u-md-11-24 {
    width: 45.8333%; }

  .pure-u-md-1-2, .pure-u-md-12-24 {
    width: 50%; }

  .pure-u-md-13-24 {
    width: 54.1667%; }

  .pure-u-md-14-24, .pure-u-md-7-12 {
    width: 58.3333%; }

  .pure-u-md-3-5 {
    width: 60%; }

  .pure-u-md-15-24, .pure-u-md-5-8 {
    width: 62.5%; }

  .pure-u-md-16-24, .pure-u-md-2-3 {
    width: 66.6667%; }

  .pure-u-md-17-24 {
    width: 70.8333%; }

  .pure-u-md-18-24, .pure-u-md-3-4 {
    width: 75%; }

  .pure-u-md-19-24 {
    width: 79.1667%; }

  .pure-u-md-4-5 {
    width: 80%; }

  .pure-u-md-20-24, .pure-u-md-5-6 {
    width: 83.3333%; }

  .pure-u-md-21-24, .pure-u-md-7-8 {
    width: 87.5%; }

  .pure-u-md-11-12, .pure-u-md-22-24 {
    width: 91.6667%; }

  .pure-u-md-23-24 {
    width: 95.8333%; }

  .pure-u-md-1, .pure-u-md-1-1, .pure-u-md-24-24, .pure-u-md-5-5 {
    width: 100%; } }
@media screen and (min-width: 64em) {
  .pure-u-lg-1, .pure-u-lg-1-1, .pure-u-lg-1-12, .pure-u-lg-1-2, .pure-u-lg-1-24, .pure-u-lg-1-3, .pure-u-lg-1-4, .pure-u-lg-1-5, .pure-u-lg-1-6, .pure-u-lg-1-8, .pure-u-lg-10-24, .pure-u-lg-11-12, .pure-u-lg-11-24, .pure-u-lg-12-24, .pure-u-lg-13-24, .pure-u-lg-14-24, .pure-u-lg-15-24, .pure-u-lg-16-24, .pure-u-lg-17-24, .pure-u-lg-18-24, .pure-u-lg-19-24, .pure-u-lg-2-24, .pure-u-lg-2-3, .pure-u-lg-2-5, .pure-u-lg-20-24, .pure-u-lg-21-24, .pure-u-lg-22-24, .pure-u-lg-23-24, .pure-u-lg-24-24, .pure-u-lg-3-24, .pure-u-lg-3-4, .pure-u-lg-3-5, .pure-u-lg-3-8, .pure-u-lg-4-24, .pure-u-lg-4-5, .pure-u-lg-5-12, .pure-u-lg-5-24, .pure-u-lg-5-5, .pure-u-lg-5-6, .pure-u-lg-5-8, .pure-u-lg-6-24, .pure-u-lg-7-12, .pure-u-lg-7-24, .pure-u-lg-7-8, .pure-u-lg-8-24, .pure-u-lg-9-24 {
    display: inline-block;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto; }

  .pure-u-lg-1-24 {
    width: 4.1667%; }

  .pure-u-lg-1-12, .pure-u-lg-2-24 {
    width: 8.3333%; }

  .pure-u-lg-1-8, .pure-u-lg-3-24 {
    width: 12.5%; }

  .pure-u-lg-1-6, .pure-u-lg-4-24 {
    width: 16.6667%; }

  .pure-u-lg-1-5 {
    width: 20%; }

  .pure-u-lg-5-24 {
    width: 20.8333%; }

  .pure-u-lg-1-4, .pure-u-lg-6-24 {
    width: 25%; }

  .pure-u-lg-7-24 {
    width: 29.1667%; }

  .pure-u-lg-1-3, .pure-u-lg-8-24 {
    width: 33.3333%; }

  .pure-u-lg-3-8, .pure-u-lg-9-24 {
    width: 37.5%; }

  .pure-u-lg-2-5 {
    width: 40%; }

  .pure-u-lg-10-24, .pure-u-lg-5-12 {
    width: 41.6667%; }

  .pure-u-lg-11-24 {
    width: 45.8333%; }

  .pure-u-lg-1-2, .pure-u-lg-12-24 {
    width: 50%; }

  .pure-u-lg-13-24 {
    width: 54.1667%; }

  .pure-u-lg-14-24, .pure-u-lg-7-12 {
    width: 58.3333%; }

  .pure-u-lg-3-5 {
    width: 60%; }

  .pure-u-lg-15-24, .pure-u-lg-5-8 {
    width: 62.5%; }

  .pure-u-lg-16-24, .pure-u-lg-2-3 {
    width: 66.6667%; }

  .pure-u-lg-17-24 {
    width: 70.8333%; }

  .pure-u-lg-18-24, .pure-u-lg-3-4 {
    width: 75%; }

  .pure-u-lg-19-24 {
    width: 79.1667%; }

  .pure-u-lg-4-5 {
    width: 80%; }

  .pure-u-lg-20-24, .pure-u-lg-5-6 {
    width: 83.3333%; }

  .pure-u-lg-21-24, .pure-u-lg-7-8 {
    width: 87.5%; }

  .pure-u-lg-11-12, .pure-u-lg-22-24 {
    width: 91.6667%; }

  .pure-u-lg-23-24 {
    width: 95.8333%; }

  .pure-u-lg-1, .pure-u-lg-1-1, .pure-u-lg-24-24, .pure-u-lg-5-5 {
    width: 100%; } }
@media screen and (min-width: 80em) {
  .pure-u-xl-1, .pure-u-xl-1-1, .pure-u-xl-1-12, .pure-u-xl-1-2, .pure-u-xl-1-24, .pure-u-xl-1-3, .pure-u-xl-1-4, .pure-u-xl-1-5, .pure-u-xl-1-6, .pure-u-xl-1-8, .pure-u-xl-10-24, .pure-u-xl-11-12, .pure-u-xl-11-24, .pure-u-xl-12-24, .pure-u-xl-13-24, .pure-u-xl-14-24, .pure-u-xl-15-24, .pure-u-xl-16-24, .pure-u-xl-17-24, .pure-u-xl-18-24, .pure-u-xl-19-24, .pure-u-xl-2-24, .pure-u-xl-2-3, .pure-u-xl-2-5, .pure-u-xl-20-24, .pure-u-xl-21-24, .pure-u-xl-22-24, .pure-u-xl-23-24, .pure-u-xl-24-24, .pure-u-xl-3-24, .pure-u-xl-3-4, .pure-u-xl-3-5, .pure-u-xl-3-8, .pure-u-xl-4-24, .pure-u-xl-4-5, .pure-u-xl-5-12, .pure-u-xl-5-24, .pure-u-xl-5-5, .pure-u-xl-5-6, .pure-u-xl-5-8, .pure-u-xl-6-24, .pure-u-xl-7-12, .pure-u-xl-7-24, .pure-u-xl-7-8, .pure-u-xl-8-24, .pure-u-xl-9-24 {
    display: inline-block;
    zoom: 1;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto; }

  .pure-u-xl-1-24 {
    width: 4.1667%; }

  .pure-u-xl-1-12, .pure-u-xl-2-24 {
    width: 8.3333%; }

  .pure-u-xl-1-8, .pure-u-xl-3-24 {
    width: 12.5%; }

  .pure-u-xl-1-6, .pure-u-xl-4-24 {
    width: 16.6667%; }

  .pure-u-xl-1-5 {
    width: 20%; }

  .pure-u-xl-5-24 {
    width: 20.8333%; }

  .pure-u-xl-1-4, .pure-u-xl-6-24 {
    width: 25%; }

  .pure-u-xl-7-24 {
    width: 29.1667%; }

  .pure-u-xl-1-3, .pure-u-xl-8-24 {
    width: 33.3333%; }

  .pure-u-xl-3-8, .pure-u-xl-9-24 {
    width: 37.5%; }

  .pure-u-xl-2-5 {
    width: 40%; }

  .pure-u-xl-10-24, .pure-u-xl-5-12 {
    width: 41.6667%; }

  .pure-u-xl-11-24 {
    width: 45.8333%; }

  .pure-u-xl-1-2, .pure-u-xl-12-24 {
    width: 50%; }

  .pure-u-xl-13-24 {
    width: 54.1667%; }

  .pure-u-xl-14-24, .pure-u-xl-7-12 {
    width: 58.3333%; }

  .pure-u-xl-3-5 {
    width: 60%; }

  .pure-u-xl-15-24, .pure-u-xl-5-8 {
    width: 62.5%; }

  .pure-u-xl-16-24, .pure-u-xl-2-3 {
    width: 66.6667%; }

  .pure-u-xl-17-24 {
    width: 70.8333%; }

  .pure-u-xl-18-24, .pure-u-xl-3-4 {
    width: 75%; }

  .pure-u-xl-19-24 {
    width: 79.1667%; }

  .pure-u-xl-4-5 {
    width: 80%; }

  .pure-u-xl-20-24, .pure-u-xl-5-6 {
    width: 83.3333%; }

  .pure-u-xl-21-24, .pure-u-xl-7-8 {
    width: 87.5%; }

  .pure-u-xl-11-12, .pure-u-xl-22-24 {
    width: 91.6667%; }

  .pure-u-xl-23-24 {
    width: 95.8333%; }

  .pure-u-xl-1, .pure-u-xl-1-1, .pure-u-xl-24-24, .pure-u-xl-5-5 {
    width: 100%; } }
/* Base style */
body {
  margin: 0 auto;
  background: #fafafa; }

body.patient {
  min-width: 100%; }

.f-maru {
  font-family: "heisei-maru-gothic-std","ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO",sans-serif;
  letter-spacing: 0.02em; }

header {
  width: 100%;
  letter-spacing: 0.05em;
  background: #29abe2;
  height: 48px;
  margin: 0;
  padding: 0;
  position: fixed;
  top: 0;
  z-index: 3 !important; }

header h1 {
  padding: 8px 0 0 8px;
  font-size: 1.5rem; }

header h1 a {
  vertical-align: middle;
  color: #fff;
  font-weight: normal;
  font-size: 1.5rem;
  text-decoration: none; }

header h1 a:hover {
  color: #FFF; }

header h1 img {
  width: 32px;
  height: 32px;
  display: inline-block; }

header h1 span {
  padding-left: 0.5em;
  line-height: 35px;
  display: inline-block;
  vertical-align: top; }

/*content*/
.title-area {
  text-align: center;
  padding: 15px 20px 0;
  position: relative; }

.title-area h1 {
  font-weight: bold;
  color: #29abe2;
  margin: 0 auto;
  font-size: 1.8rem;
  padding: 23px 15px;
  background: #fff;
  border: 1px solid #29abe2;
  z-index: 2;
  -webkit-box-shadow: 4px 4px 0px 0px #e1e1e1;
  -moz-box-shadow: 4px 4px 0px 0px #e1e1e1;
  box-shadow: 4px 4px 0px 0px #e1e1e1; }

#contents {
  position: relative;
  animation: fade 2.5s ease 0s 1 normal;
  -webkit-animation: fade 2.5s ease 0s 1 normal; }

.common #contents {
  margin-top: 48px;
  position: relative;
  z-index: 0; }

@keyframes fade {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@-webkit-keyframes fade {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes fadeIn {
  0% {
    opacity: 0;
    padding-top: 4%; }
  to {
    opacity: 1;
    padding-top: 0; } }
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    padding-top: 4%; }
  to {
    opacity: 1;
    padding-top: 0; } }
@keyframes fadeIn3 {
  0% {
    padding-bottom: 72%; }
  100% {
    padding-bottom: 76%; } }
@-webkit-keyframes fadeIn3 {
  0% {
    padding-bottom: 72%; }
  100% {
    padding-bottom: 76%; } }
.txt-box a {
  display: block; }

@keyframes fadeIn2 {
  0% {
    opacity: 0; }
  to {
    opacity: 1;
    margin-right: 0px; } }
@-webkit-keyframes fadeIn2 {
  0% {
    opacity: 0; }
  to {
    opacity: 1;
    margin-right: 0px; } }
/* ----------------nav style 患者・医師向け共通 ----------------*/
header li {
  font-weight: bold;
  letter-spacing: .01rem;
  color: #29abe2;
  line-height: 4em;
  border-bottom: dotted 2px #ccc;
  text-align: center; }

header li a {
  text-decoration: none;
  margin: 0.5em 0; }

header li a:hover {
  background: #f5f5f5; }

header li a.current {
  background: #f5f5f5; }

.patient header li a {
  border-radius: 5px; }

.society header li {
  color: #000;
  border-bottom: dotted 1px #ccc; }

.society header li a {
  color: #000; }

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box; }

.menu-trigger {
  position: absolute;
  top: 15px;
  right: 12px;
  width: 20px;
  height: 19px;
  text-decoration: none; }

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #FFF;
  border-radius: 3px; }

.menu-trigger span:nth-of-type(1) {
  top: 0; }

.menu-trigger span:nth-of-type(2) {
  top: 8px; }

.menu-trigger span:nth-of-type(3) {
  bottom: 0; }

.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(8px) rotate(-45deg);
  transform: translateY(8px) rotate(-45deg); }

.menu-trigger.active span:nth-of-type(2) {
  opacity: 0; }

.menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-8px) rotate(45deg);
  transform: translateY(-8px) rotate(45deg); }

.menu-trigger:before {
  content: 'MENU';
  color: #fff;
  text-decoration: none;
  display: inline-block;
  position: absolute;
  font-size: 85%;
  top: 0;
  right: 30px; }

/*.menu_btn {
	position: fixed;
top: 50px;
right: 30px; }*/
#menu {
  width: 100%;
  padding: 30px;
  background: #fff; }

#menu ul li .pc {
  display: none; }

#menu ul li:first-child {
  border-top: none; }

#menu ul li:last-child {
  border-bottom: none; }

#menu a {
  display: block; }

#menu p.close {
  text-align: center;
  background: #eff8fc;
  padding: 20px;
  cursor: pointer; }

.society #menu p.close {
  background: #eff3f8; }

.backtotop {
  background: #aaa;
  border-radius: 50%;
  display: block;
  height: 44px;
  line-height: 44px;
  position: fixed;
  right: -60px;
  bottom: 10px;
  text-align: center;
  width: 44px; }

.patient .nav_disease a {
  background: url(../img/patient/icon_whats.png) 10px center no-repeat;
  background-size: 60px auto; }

.patient .nav_treatment a {
  background: url(../img/patient/icon_cure.png) 10px center no-repeat;
  background-size: 47px auto; }

.patient .nav_interview a {
  background: url(../img/patient/icon_interview.png) 10px center no-repeat;
  background-size: 35px auto; }

.patient .nav_faq a {
  background: url(../img/patient/icon_faq.png) 10px center no-repeat;
  background-size: 54px auto; }

.patient .nav_youtube {
  margin-top: 2em; }

.patient .nav_youtube a {
  padding-left: 1em;
  color: #fff;
  background: url(../img/patient/icon_play.png) 15px center no-repeat #f4a6b9;
  background-size: 41px auto; }

.patient .nav_youtube a:hover {
  background-color: #ef92ac; }

.patient li a.current,
.patient .nav_disease a:hover, .patient .nav_treatment a:hover,
.patient .nav_interview a:hover, .patient .nav_faq a:hover {
  background-color: #f5f5f5; }

.society .nav_member a {
  font-weight: bold; }

.society .nav_member a:before {
  font-family: 'icomoon' !important;
  content: "\e900";
  color: #0083d7;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  margin-right: 10px;
  font-size: 145%; }

.society .nav_youtube a {
  font-weight: bold; }

.society .nav_youtube a:before {
  font-family: 'icomoon' !important;
  content: "\e901";
  color: #f10;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  margin-right: 10px;
  font-size: 145%; }

.society .nav_medical {
  line-height: 5em;
  letter-spacing: 0.02em;
  margin: 1em 0 3em;
  border: none;
  background: #4d59b2;
  color: #fff; }

.society .nav_medical a {
  color: #fff; }

.society .nav_medical a:hover {
  background: #5b6aaf; }

.society .nav_bnr {
  line-height: 1em;
  border-radius: 5px;
  border: 3px solid #29abe2 !important; }

.society .nav_bnr img {
  display: inline-block;
  margin: 10px 0 !important; }

.society .nav_bnr a {
  margin: 0; }

.society .nav_bnr a:hover {
  display: inline-block;
  background: #eff8fb; }

i {
  color: #fff; }

@media all and (max-width: 949px) {
  #menu {
    display: none;
    position: fixed;
    z-index: 3 !important;
    top: 47px;
    left: 0px; }

  #menu {
    height: 100%;
    overflow-y: scroll; }

  #menu p.close {
    margin-bottom: 80px; } }
@media all and (min-width: 950px) {
  .patient header li {
    border-bottom: dotted 3.2px #ccc; }

  .menu-trigger {
    display: none; }

  #menu {
    padding: 0 20px; }

  #menu ul li .pc {
    display: block; }

  .close {
    display: none; }

  #menu ul li {
    display: table;
    width: 100%;
    height: 55px;
    padding: 5px 0; }

  #menu ul li a {
    display: table-cell;
    width: 100%;
    line-height: 1.25em;
    padding: 8px 5px;
    vertical-align: middle;
    text-decoration: none; }

  .patient .nav_disease a {
    background-position: 18px 10px;
    background-size: 70px auto; }

  .patient .nav_treatment a {
    background-position: center 8px;
    background-size: 55px auto; }

  .patient .nav_interview a {
    background-position: center 8px;
    background-size: 40px auto; }

  .patient .nav_faq a {
    background-position: center 10px;
    background-size: 63px auto; }

  .patient .nav_youtube a {
    background-position: center 10px;
    background-size: 44px auto;
    padding-top: 50px !important; }

  .patient .nav_disease a, .patient .nav_treatment a, .patient .nav_interview a, .patient .nav_faq a {
    padding-top: 68px !important; }

  .society .nav_member a, .society .nav_youtube a {
    position: relative;
    text-align: left;
    padding-left: 35px !important; }

  .society .nav_member a:before, .society .nav_youtube a:before {
    position: absolute;
    left: 5px;
    top: 50%;
    margin-top: -0.5em; }

  .society .nav_youtube a {
    text-align: left;
    padding-left: 20px !important; }

  .society .nav_youtube a:before {
    left: -2px; }

  .society .nav_medical {
    padding: 0 !important;
    margin-bottom: 20px; }

  .society #menu ul li.nav_bnr {
    padding: 0 !important;
    line-height: 1;
    display: block;
    height: auto;
    padding: 0; }

  .society #menu ul li.nav_bnr a {
    display: block;
    padding: 0 !important; }

  .society .nav_bnr img {
    margin: -7px -5px 0 0 !important; } }
section {
  text-align: center; }

#main {
  padding: 27% 0 0;
  overflow: hidden;
  background: url(../img/patient/index_main_bg.png) top no-repeat;
  background-size: 100% auto; }

#main h1 {
  font-size: 4.0rem;
  color: #00a0e9;
  font-weight: bold;
  margin-bottom: 8%; }

#main h1 span {
  font-size: 54%;
  display: block;
  font-weight: normal; }

#main b {
  font-size: 1.7rem;
  padding-bottom: 1.5em;
  display: block;
  width: 100%; }

#main .sec_inner {
  width: 100%;
  background: url(../img/main_bg.png) bottom no-repeat;
  padding-bottom: 76%;
  background-size: 100% auto; }

@keyframes vertical {
  0% {
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px); }
  100% {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px); } }
#main a {
  display: inline-block;
  animation: vertical 2s ease-in-out infinite alternate;
  -webkit-animation: vertical 2s ease-in-out infinite alternate;
  -moz-animation: vertical 2s ease-in-out infinite alternate;
  -o-animation: vertical 2s ease-in-out infinite alternate;
  -ms-animation: vertical 2s ease-in-out infinite alternate; }

.txt-fade {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.cont-box > p {
  display: block; }

.cont-box > last-child {
  margin-bottom: 0; }

.int-intro {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px dotted #ccc; }

.txt-box {
  margin-bottom: 2%;
  border: 1px solid #3fa9f5;
  padding: 25px;
  background: #fff;
  background-color: rgba(255, 255, 255, 0.8);
  overflow: hidden;
  border-radius: 5px;
  text-align: left; }

.txt-box a.spred_link {
  width: 100%;
  height: 100%;
  display: block;
  text-decoration: none;
  color: none; }

.txt-box a.spred_link:hover {
  opacity: 0.8; }

.txt-box a.spred_link p, .txt-box a:visited.spred_link p {
  color: #000; }

.txt-box.short {
  position: relative; }

.txt-box h2 {
  font-size: 2.25rem;
  font-weight: bold;
  color: #00a0e9;
  font-family: "heisei-maru-gothic-std","ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO",sans-serif;
  letter-spacing: 0.02em; }

.txt-box .btn_more {
  background: #edf8fb;
  text-align: center;
  text-decoration: none;
  line-height: 2.5;
  letter-spacing: 0.025;
  font-family: "heisei-maru-gothic-std","ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO",sans-serif; }

.txt-box .btn_more:after {
  content: "→";
  display: inline-block;
  margin-left: 0.5em;
  width: 1.5em;
  line-height: 1.2em;
  padding-top: 0.3em;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  background: #00a0e9; }

.txt-box.short h2 {
  margin-bottom: 0; }

.txt-box.short .btn_more {
  position: absolute;
  top: 50%;
  margin-top: -1em;
  right: 25px;
  background: none; }

.txt-fade {
  animation: fadeIn2 2s ease 0.2s 1 normal;
  -webkit-animation: fadeIn2 2s ease 0.2s 1 normal;
  -moz-animation: fadeIn2 2s ease 0.2s 1 normal;
  -o-animation: fadeIn2 2s ease 0.2s 1 normal;
  -ms-animation: fadeIn2 2s ease 0.2s 1 normal; }

.new-book {
  background-image: url("../img/patient/label_new-book.png");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 60px auto; }

.new-book h2 {
  letter-spacing: 0em;
  font-size: 1.95rem;
  padding-left: 0.25em; }

.bnr-box {
  padding: 10px; }

.bnr-box a, .bnr-box a img {
  margin: 0;
  line-height: 1; }

.bnr-box:hover {
  opacity: 0.8; }

.pickup-link {
  overflow: hidden;
  margin: 0 0 2%;
  background: url(../img/section_bg_04.png) bottom no-repeat;
  background-size: 100% auto;
  padding: 7% 10% 26%; }

.pickup-link.pick02 {
  background: url(../img/section_bg_pick2.png) top no-repeat;
  background-size: 100% auto;
  padding: 15% 10% 20%; }

.pickup-link.pick02 {
  text-align: center !important; }

.pickup-link.pick01 img {
  float: left; }

.pickup-link.pick02 img {
  display: block;
  margin: 0 auto 20px;
  width: 50%; }

.pickup-link .btn_link {
  text-decoration: none;
  background: #f4a6b9;
  color: #fff;
  font-weight: bold;
  padding: .5em 1em;
  border-radius: 30px; }

.pickup-link.pick01 .btn_link {
  margin-top: 15px;
  float: right;
  width: 68%; }

.pickup-link.pick02 .btn_link {
  padding: .75em 2.3em;
  background: #00a0e9; }

/*pages contents*/
.title-area h1 {
  text-align: center; }

.title-img {
  text-align: center;
  padding: 1em 0 0;
  margin: 0 !important;
  line-height: 1; }

.title-img img {
  width: 80%;
  max-width: 350px;
  height: auto;
  line-height: 0; }

.breadcrumb {
  overflow: hidden;
  padding: 1em 10px;
  margin: 0; }

.breadcrumb li {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1; }

.breadcrumb a {
  color: #808080;
  text-decoration: none; }

.common .cont-inner {
  margin: 0 10px; }

.common_h2 {
  border-radius: 15px;
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 1.25em;
  background: #f2f2f2;
  padding: .75em 1.5em .75em;
  text-align: left;
  position: relative;
  letter-spacing: .02em;
  margin-bottom: 1.5em; }

.int_h2 {
  background: #dff2f7;
  word-break: break-all; }

.line_h2 {
  display:block;
margin-bottom:.5em;}

.line_h2 b {
  display: inline-block;
  margin-right: .5em;
  background: #29abe2;
  color: #fff;
  font-size: 75%;
  padding: 0.1em 1.5em 0;
  border-radius: 30px; }


span.col_h2{
  color: #29abe2;
  display: inline;
  word-break: break-word; 
	
}

@media all and (max-width: 767px) {
.int_h2 span.line_h2 {

}
}


.common .sec_cont h3 {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: left; }

.common .sec_cont {
  padding: 15px;
  background: #fff;
  margin-bottom: 20px;
  text-align: left; }

.common .sec_cont p {
  text-align: left;
  margin-bottom: 1.5em; }

.img-w40 {
  width: 100%;
  display: block; }

.img-w50-30 {
  width: 50%;
  display: block; }

.f-left.img-w50-30 {
  margin-right: 1em;
  margin-bottom: 1.5em; }

.lead-b {
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 2.5em !important; }

.btn_link_a {
  border-radius: 30px;
  text-decoration: none;
  text-align: center;
  padding: 0.75em;
  border: 1px solid #0083d7;
  display: block;
  font-weight: bold;
  width: 240px;
  margin: 0 auto 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all  0.3s ease; }

.btn_link_a:hover {
  background: #eff3f8;
  padding-left: 1.5em; }

/*アコーディオン共通 ページごとのスタイルは別記*/
.ac_tab {
  display: block;
  font-weight: bold;
  padding: .5em 1.5em;
  border-radius: 30px;
  background: #f2f2f2;
  margin-bottom: 0.5em;
  position: relative;
  cursor: pointer; }

.ac_tab:after, .drlist_Title:after {
  content: '';
  width: 5px;
  height: 5px;
  border: 0px;
  border-top: solid 2px #29abe2;
  border-right: solid 2px #29abe2;
  -ms-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  right: 1.5em;
  top: 50%;
  margin-top: -2.5px; }

.ac_tab.active:after, .drlist_Title.disnon:after {
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.ac_tab.active {
  background: #dff2f7; }

.ac_tab + .ac_cont {
  display: none; }

.ac_cont {
  padding: .5em 1.5em 1em; }

.ac_tab, .ac_cont span {
  font-family: "heisei-maru-gothic-std","ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO",sans-serif; }

.ac_tab span, .ac_cont span {
  color: #29abe2;
  font-weight: bold; }

/*ローカルナビ（側彎症とは）*/
.rocal_nav {
  margin-bottom: 0; }

.rocal_nav li {
  font-family: "heisei-maru-gothic-std","ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO",sans-serif;
  margin-bottom: 0.5em;
  border-radius: 30px;
  background: #dff2f7; }

.rocal_nav li a {
  font-size: 1.5rem;
  text-decoration: none;
  color: #000;
  display: block;
  font-weight: bold;
  padding: .5em 1.5em;
  position: relative; }

.rocal_nav li a:after {
  content: ">";
  color: #29abe2;
  margin-top: -0.5em;
  line-height: 1;
  position: absolute;
  top: 50%;
  right: 1em; }

.rocal_nav li:hover, .rocal_nav li a.current {
  background: #29abe2;
  border-radius: 30px; }

.rocal_nav li:hover a, .rocal_nav li a.current {
  color: #fff; }

.rocal_nav li:hover a:after, .rocal_nav li a.current:after {
  color: #fff; }

.note-section dd, .comment {
  font-weight: bold;
  font-family: "heisei-maru-gothic-std","ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO",sans-serif; }

.note-section dl {
  background: #fcf2f4;
  text-align: center;
  margin-bottom: .5em; }

.note-section dt, .note-section dd {
  display: inline-block;
  padding: 5px;
  vertical-align: middle; }

.note-section a {
  text-align: right;
  display: block;
  color: #fb8ba3;
  font-size: 1.2rem;
  margin-bottom: 2em; }

.common .sec_cont .disease-cont h3 {
  font-size: 1.6rem;
  letter-spacing: 0.01em; }

.common .sec_cont .disease-cont h4 {
  font-size: 1.5rem;
  letter-spacing: 0.01em;
  font-weight: bold; }

.comment {
  overflow: hidden;
  vertical-align: bottom; }

.comment img {
  float: left;
  vertical-align: bottom; }

.comment span {
  display: block;
  border-radius: 8px;
  margin-left: 100px;
  padding: 20px;
  border: 3px solid #73cfef;
  position: relative; }

.comment span:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -8px;
  margin-top: -9px;
  display: block;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 10px 10px 10px 0;
  border-color: transparent #FFF transparent transparent;
  z-index: 2; }

.comment span:after {
  content: "";
  position: absolute;
  top: 50%;
  left: -12px;
  margin-top: -10px;
  display: block;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 11px 11px 11px 0;
  border-color: transparent #73cfef transparent transparent;
  z-index: 1; }

.dr_chicken {
  margin-bottom: 2em !important; }

.dr_chicken img {
  width: 90px; }

.dr_chicken span {
  margin-left: 100px; }

.pisuke img {
  width: 37px; }

.pisuke span {
  margin-left: 47px; }

.disease-cont figure {
  text-align: center; }

.disease-cont figcaption {
  font-size: 1.2rem;
  font-weight: bold;
  color: #666; }

.disease-cont dt {
  font-weight: bold; }

.disease-cont dd {
  margin-bottom: 1em; }

/*ページ送り*/
.page-nav {
  overflow: hidden;
  width: 100%;
  padding: 10px; }

.page-nav li {
  float: right;
  width: 49%;
  text-align: right; }

.page-nav li:first-child {
  float: left;
  text-align: left;
  margin-right: 1; }

.page-nav li.previous {
  padding-right: .5em; }

.page-nav li.next {
  padding-left: .5em; }

/*お知らせ*/
#news .sec_cont h2 span {
  color: #29abe2;
  display: inline-block;
  margin-right: .75em; }

/*docters*/
.docters_links ul {
  overflow: hidden;
  margin: 0px;
  width: 100%; }

.docters_links li {
  font-family: "heisei-maru-gothic-std","ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO",sans-serif;
  display: block;
  float: left;
  background: #dff2f7;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 2px;
  border-right: 2px solid #fff;
  width: 33%; }

.docters_links li a {
  display: block;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  color: #000; }

.docters_links li a.current {
  background: #29abe2;
  color: #fff; }

.docters_tab {
  letter-spacing: -.4em;
  overflow: hidden; }

.docters_tab li {
  letter-spacing: normal;
  padding: 0 4px;
  margin-bottom: .5em;
  display: block;
  display: inline-block;
  border-left: 1px solid #000; }

.docters_tab li a {
  text-align: center;
  padding: 0 1em;
  display: block;
  font-weight: bold;
  text-decoration: none; }

.docters_tab li.select a {
  background: #ebf7fb;
  color: #000; }

.docters_tab li:last-child {
  border-right: 1px solid #000; }

.docters_tab li .link_blank {
  color: #ccc; }

#interview .docters_tab {
  text-align: center; }

#docters .sec_cont dl {
  width: 100%;
  margin-bottom: 1.5em;
  padding-bottom: 1.5em;
  text-align: left;
  border-bottom: 2px dotted #ccc; }

#docters .sec_cont dt {
  display: block;
  float: left;
  width: 5em;
  font-weight: bold; }

#docters .sec_cont dt:after {
  content: ":"; }

#docters .sec_cont dd {
  display: block;
  width: 100%;
  padding-left: 5em; }

.docters_list {
  padding: .5em .5em 0; }

#docters .sec_cont .docters_list .date {
  width: 100%;
  font-weight: normal;
  text-align: right;
  font-size: 80%; }

#docters .sec_cont .docters_list .date:after {
  display: none; }

.drlist_Title {
  margin-bottom: .5em;
  padding: .8em 1em;
  background: #f1f3f5;
  position: relative;
  cursor: pointer; }

/*アローのスタイルはacordionのところに記述*/
.drlist_Title.disnon {
  background: #dff2f7; }

/*interview*/
.int-intro {
  overflow: hidden; }

.common .sec_cont .interview-cont h3 {
  font-size: 1.5rem;
  margin-bottom: 2em;
  letter-spacing: .01em; }

.interview-cont figcaption {
  font-size: 1.2rem;
  font-weight: bold;
  color: #808080; }

.interview-cont p {
  margin-bottom: 3em !important; }

.interview-cont > p:last-child {
  margin-bottom: 0; }

.interview-cont p strong {
  color: #29abe2; }

.int_mt9 {
  margin-top: 9em; }

.int-link_btn {
  border-radius: 30px;
  text-decoration: none;
  text-align: center;
  padding: 0.5em;
  background-color: #29abe2;
  color: #fff;
  display: block;
  font-weight: bold;
  width: 240px;
  margin: 25px auto 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all  0.3s ease; }

.int-link_btn:hover {
  color: #fff;
  opacity: .8;
  padding-left: 1.5em; }

/*movie*/
#movie-wrap {
  width: 100%;
  padding-top: 56.25%;
  position: relative; }

#movie-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.movie_dummy {
  display: block;
  text-align: center; }

.chara-cont {
  overflow: hidden;
  padding: 0 1em;
  margin-bottom: 3em;
  border-bottom: 2px dotted #ccc; }

.chara-cont figure {
  text-align: center; }

.chara-cont img {
  max-width: 80%;
  display: inline-block;
  margin: 0 auto; }

.common .sec_cont .chara-cont h3 {
  font-size: 1.8rem;
  color: #29abe2; }

.chara-cont img {
  max-width: 100%;
  display: inline-block;
  margin: 0 auto; }

.chara-cont li {
  line-height: 1.25em;
  padding: 0.5em 0 0.5em 1em;
  border-bottom: 1px dashed #ccc;
  padding-left: 1.5em;
  text-indent: -1.25em; }

.chara-cont li:last-child {
  border-bottom: none; }

.chara-cont li:before {
  content: "♥";
  display: inline-block;
  margin-right: .5em;
  padding-left: 0.5em;
  color: #f4a6b9; }

footer {
  background: #58c3e0;
  text-align: center;
  color: #fff;
  overflow: hidden; }

footer section {
  overflow: hidden;
  position: relative;
  padding: 20px;
  text-align: left; }

footer section h2 {
  font-size: 1.8rem;
  font-weight: bold; }

footer a {
  text-decoration: none; }

footer section a.link_archive {
  position: absolute;
  right: 20px;
  top: 20px;
  background: #29abe2;
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
  padding: 0 15px; }

footer section a.link_archive:hover {
  background: #0398e2; }

footer section a.link_archive:after {
  content: " >"; }

footer section ul {
  margin: 10px 0 20px;
  background: #fff;
  color: #666;
  padding: 20px;
  border-radius: 5px; }

footer section ul li {
  font-size: 1.2rem;
  margin-bottom: 1em;
  padding-bottom: 1em;
  border-bottom: 1px dashed #ccc;
  display: table; }

footer section ul li a {
  text-decoration: none;
  color: #666;
  overflow: hidden; }

footer section ul li span {
  display: table-cell;
  vertical-align: top; }

footer section ul li .date {
  padding-right: 10px;
  color: #29abe2; }

footer section ul li span:last-child:after {
  content: " >";
  color: #29abe2; }

footer section ul li:last-child {
  margin-bottom: 0em;
  padding-bottom: 0;
  border-bottom: none; }

footer section .footer_btn {
  text-align: center;
  background: #29abe2;
  width: 100%;
  display: inline-block;
  line-height: 3em;
  margin: 0 auto;
  color: #fff;
  border-radius: 5px; }

footer section .footer_btn:after {
  content: " >"; }

footer section .footer_btn:hover {
  background: #0398e2; }

footer small.copy {
  margin-bottom: 2em;
  font-size: 1.1rem;
  display: block;
  width: 100%; }

footer small.note {
  padding: 10px;
  font-size: 1.0rem;
  background: #29abe2;
  display: block;
  width: 100%;
  text-align: left; }

footer small.note a {
  color: #fff;
  text-decoration: underline; }

#f_bird {
  display: none; }

/* Larger than tablet */
@media all and (max-width: 767px) {
  #main {
    font-size: 3.6vw;
    margin-top: 48px; }

  #main h1 {
    font-size: 9.375vw; }

  #main b {
    font-size: 3.9vw; }

  #main .sec_inner {
    animation: fadeIn3 1s ease 0.5s 1 normal forwards;
    -webkit-animation: fadeIn3 1s ease 0.5s 1 normal forwards; }

  #main .sec_inner h1 {
    opacity: 0;
    animation: fadeIn 1s ease 0.5s 1 normal forwards;
    -webkit-animation: fadeIn 1s ease 0.5s 1 normal forwards; }

  .cont-box .img_box {
    width: 85.6%;
    margin: 0 auto 4%; }

  #sec_whats {
    background-image: url(../img/patient/index_sec_bg_whats.png), url(../img/section_bg_02.png);
    background-repeat: no-repeat,no-repeat;
    background-position: center top,center bottom;
    background-size: 100% auto,100% auto; }

  #sec_whats {
    padding-bottom: 11.6%; }

  #sec_cure {
    background: url(../img/section_bg_03.png) top no-repeat;
    background-size: 100% auto; }

  #sec_cure > p {
    position: relative;
    margin: 0 auto 7.5%; }

  #sec_shiori {
    padding-bottom: 30%;
    background: url(../img/patient/index_sec_bg_faq.png) bottom center no-repeat;
    background-size: 100% auto; }

  #sec_faq {
    padding-bottom: 3%;
    background: url(../img/patient/index_sec_bg_faq2.png) bottom center no-repeat;
    background-size: 100% auto; }

  #sec_faq .img_box {
    width: 73%;
    margin-bottom: 7%; }

  #sec_docters > p {
    position: relative;
    margin-bottom: 8%; }

  #sec_docters > p:after {
    top: -10%;
    left: 0;
    height: 17%; }

  #sec_docters {
    padding-top: 6%;
    background: url(../img/patient/index_sec_bg_docters.png) bottom center no-repeat;
    background-size: 100% auto; }

  .txt-box {
    margin: 0 20px 2%; }

  .txt-box h2 {
    font-size: 6vw; }

  .txt-box .btn_more, .txt-box .btn_more:after,
  .txt-box p {
    font-size: 3.7vw; }

  .txt-box p {
    line-height: 1.75em; }

  .pickup-link .btn_link {
    font-size: 3.4vw; }

  .pickup-link.pick02 {
    position: relative;
    overflow: visible; }

  .pickup-link.pick02:after {
    position: absolute;
    content: "";
    bottom: -3%;
    left: 0;
    display: block;
    width: 29%;
    padding-bottom: 6%;
    background: url(../img/patient/index_sec_bg_docters2.png) top no-repeat;
    background-size: 100% auto; }

  /*ローカルナビ*/
  /*.rocal_nav {display: none;}*/
  .btn_rocal_nav,
  .btn_rocal_nav span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box; }

  .btn_rocal_nav {
    position: absolute;
    right: 0;
    top: -38px;
    width: 32px;
    height: 31px;
    padding: 8px;
    background: #dff2f7; }

  .btn_rocal_nav span {
    position: absolute;
    left: 8px;
    width: 16px;
    height: 3px;
    background-color: #29abe2;
    border-radius: 3px; }

  .btn_rocal_nav span:nth-of-type(1) {
    top: 8px; }

  .btn_rocal_nav span:nth-of-type(2) {
    top: 14px; }

  .btn_rocal_nav span:nth-of-type(3) {
    bottom: 8px; }

  .btn_rocal_nav.active {
    background: #29abe2; }

  .btn_rocal_nav.active span {
    background: #fff; }

  .btn_rocal_nav.active span:nth-of-type(1) {
    -webkit-transform: translateY(6px) rotate(-45deg);
    transform: translateY(6px) rotate(-45deg); }

  .btn_rocal_nav.active span:nth-of-type(2) {
    opacity: 0; }

  .btn_rocal_nav.active span:nth-of-type(3) {
    -webkit-transform: translateY(-6px) rotate(45deg);
    transform: translateY(-6px) rotate(45deg); }

  .disease-cont figure img {
    width: 100%; }

  .common .rocal_nav_wrap {
    position: relative;
    margin: 0;
    padding: 0; }

  .rocal_nav {
    padding: 20px 10px 10px;
    margin-bottom: 10px;
    background: #fff; }

  .note-section p {
    margin-bottom: 0.5em !important; }

  .note-section dt img {
    width: 23px; }

  .note-section dd {
    padding-right: 1.75em; }

  .note-section dd:last-child {
    padding-right: 0; }

  .f-right.img-w100-30, .f-left.img-w100-30 {
    display: block;
    float: none; }

  	/*ローカルバックアップ
  	.rocal_nav {display: none;}
  	.btn_rocal_nav,
  	.btn_rocal_nav span { display: inline-block; transition: all .4s; box-sizing: border-box;}
  	.btn_rocal_nav { position: relative;  width: 32px; height: 31px; padding: 8px; background: #dff2f7;}
  	.btn_rocal_nav span { position: absolute; left: 8px; width: 16px; height: 3px; background-color: #29abe2; border-radius: 3px;}
  	.btn_rocal_nav span:nth-of-type(1) {top: 8px;}
  	.btn_rocal_nav span:nth-of-type(2) {top: 14px;}
  	.btn_rocal_nav span:nth-of-type(3) {bottom: 8px;}
  	
  	.btn_rocal_nav.active { background: #29abe2; }
  	.btn_rocal_nav.active span{ background: #fff;}
  .btn_rocal_nav.active span:nth-of-type(1) {-webkit-transform: translateY(6px) rotate(-45deg);transform: translateY(6px) rotate(-45deg);}
  .btn_rocal_nav.active span:nth-of-type(2) {opacity: 0;}
  .btn_rocal_nav.active span:nth-of-type(3) { -webkit-transform: translateY(-6px) rotate(45deg);transform: translateY(-6px) rotate(45deg);}
  
  	.rocal_nav_wrap { position: relative; margin: 0 !important; padding: 0 !important; background: none!important; }
  	.is-fixed { position: fixed; width: 100%; padding: 0 0 0 20px !important; top: 93px; right:10px; z-index: 2;}
  	.btn_rocal_nav { position: absolute; right: 0; top: -38px;}
  	.rocal_nav  { padding: 10px; background: #fff; position: absolute; top: 0; width: 100%; z-index: 2}
  	.is-fixed .rocal_nav  { position: relative;}
  	.is-fixed .btn_rocal_nav  {  }*/
  /*docters*/
  .docters_links li:last-child a {
    padding: 10px 0; }

  .docters_tab li {
    width: 25%; }

  .docters_tab li:nth-child(4n) {
    border-right: 1px solid #000; }

  .docters_tab li a {
    padding: 0; }

  .common .sec_cont nav li:nth-child(3n) {
    border-right: none; }

  .common .sec_cont aside.adobe img {
    display: block;
    margin-bottom: 1em; }

  /*interview*/
  .interview-cont figure {
    width: 100%;
    text-align: center; }

  .int_mt9 {
    margin-top: 0; } }
@media all and (max-width: 640px) {
  .new-book h2 {
    letter-spacing: -0.025em; }

  .note-section dd {
    padding-right: 1em; }

  .note-section dd:last-child {
    padding-right: 0; } }
@media all and (min-width: 768px) {
  body.common {
    background: #fafafa; }

  .sp {
    display: none; }

  * {
    box-sizing: border-box !important; }

  #top #contents {
    background: url(../img/patient/index_bg.jpg) no-repeat center 48px #fafafa;
    max-width: 1845px; }

  #top #contents:after {
    content: "";
    display: block;
    width: 130%;
    height: 256px;
    margin: 0 auto;
    background: url(../img/patient/cloud_bg.gif) center top no-repeat;
    background-size: 100% auto;
    position: absolute;
    left: -15%;
    top: 0;
    z-index: 0; }

  #main {
    padding: 14.4% 0 0;
    position: relative;
    letter-spacing: 0.02em;
    background: none;
    z-index: 1; }

  #main {
    padding-top: 76.9%;
    height: 0;
    overflow: hidden; }

  #main h1 {
    font-size: 5.681rem;
    margin-bottom: .25em; }

  #main h1 span {
    margin-bottom: .5em; }

  #main p {
    font-size: 1.5rem;
    line-height: 1.7em; }

  #main b {
    font-size: 1.945rem; }

  #main a {
    display: none; }

  #main .sec_inner {
    padding: 0;
    background: none;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    margin-top: -19%; }

  .cont-box {
    box-sizing: border-box;
    overflow: visible;
    width: 100%;
    max-width: 1029px !important;
    display: table;
    margin: 0 auto; }

  .col_left {
    position: absolute;
    right: 50%;
    display: table-cell;
    float: left;
    text-align: center;
    width: 50%;
    vertical-align: middle; }

  .col_right {
    position: absolute;
    left: 50%;
    display: table-cell;
    float: right;
    text-align: center;
    width: 50%;
    vertical-align: middle; }

  .img-w50-30 {
    width: 30%;
    max-width: 230px; }

  .img-w100-30 {
    width: 245px; }

  .img-w40 {
    width: 40%; }

  .img_box {
    margin-bottom: 0; }

  .txt-box {
    margin-bottom: 10px;
    max-width: 453px; }

  .txt-box {
    position: relative; }

  .txt-box .btn_more {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none; }

  #sec_shiori .txt-box .btn_more {
    top: 21px; }

  .bnr-box a img {
    display: block; }

  /*検証用ボーダー
  #sec_whats,#sec_cure,#sec_shiori,#sec_faq,#sec_docters { padding: 0; background: none; border: 1px solid #f10;}*/
  /*側湾症とは*/
  #sec_whats {
    padding-top: 44.5%;
    height: 0;
    overflow: hidden;
    position: relative; }

  #sec_whats .col_left {
    top: 5%; }

  #sec_whats .col_right {
    top: 0;
    margin-left: 2.5%; }

  #sec_whats .txt-box {
    margin-left: 5%;
    margin-right: 5.5%; }

  #sec_cure {
    padding-top: 48%;
    overflow: hidden;
    position: relative; }

  #sec_cure .col_left {
    top: 0;
    margin-right: 3.5%; }

  #sec_cure .col_right {
    top: 12.2%;
    bottom: auto; }

  #sec_cure .img_box {
    padding-right: 6%; }

  #sec_cure .txt-box {
    margin-left: 5%;
    margin-right: 5.5%; }

  .new-book {
    background-size: 18% auto; }

  .new-book h2 {
    font-size: 2.1rem;
    padding-left: 7%; }

  #sec_shiori {
    position: relative;
    display: block; }

  #sec_shiori .txt-box {
    position: absolute;
    top: 0;
    right: 50%;
    margin-top: 1%;
    margin-left: 2%;
    margin-right: 3.25%;
    z-index: 1; }

  #sec_shiori .txt-box p {
    margin-bottom: 0; }

  #sec_faq {
    padding-top: 46.5%;
    position: relative;
    width: 50%;
    max-width: 514px;
    float: left; }

  #sec_docters {
    padding-top: 35%;
    position: relative;
    width: 50%;
    max-width: 514px;
    float: right; }

  #sec_faq .img_box {
    position: absolute;
    top: 34%;
    right: 11%;
    width: 100%; }

  #sec_faq .img_box img {
    width: 85.3%;
    display: inline-block; }

  #sec_docters .img_box {
    position: absolute;
    top: -6%;
    left: 12%;
    width: 100%; }

  #sec_docters .img_box img {
    width: 98%; }

  .pickup-link {
    argin: 0;
    padding: 0;
    background: none; }

  .pickup-link.pick01 {
    margin-right: 22%;
    margin-top: 12.5%; }

  .pickup-link.pick01 img {
    width: 34.5%; }

  .pickup-link.pick01 .btn_link {
    width: 59%; }

  .pickup-link.pick02 {
    background: none;
    margin: 0;
    float: none;
    clear: both;
    width: 100%;
    padding: 6.3% 0 0.8% 0;
    text-align: right !important; }

  .pickup-link.pick02 img {
    margin: 0;
    width: 22.2%;
    float: right; }

  .pickup-link.pick02 .btn_link {
    display: inline-block;
    margin-top: 1em; }

  .title-area h1 {
    text-align: left;
    font-size: 2.4rem;
    padding: 50px 50px 45px; }

  .title-area h1 br {
    display: none; }

  .title-img {
    position: absolute;
    right: 4%;
    top: -1%; }

  #docters .title-img {
    position: absolute;
    right: 4%;
    top: -10px; }

  #faq .title-img {
    position: absolute;
    right: 4%;
    top: 0px; }

  .title-img img {
    width: 90%;
    height: auto; }

  .common .sec_cont {
    padding: 3rem; }

  .common .cont-inner {
    margin: 0 20px !important; }

  .common_h2 {
    border-radius: 30px; }

  /*ローカルナビ*/
  .rocal_nav {
    overflow: hidden;
    margin-right: -1%; }

  .rocal_nav li {
    display: block;
    width: 49%;
    float: left;
    margin-right: 1%; }

  .rocal_nav li a {
    padding: 0.7em　1 0.75em 0.5em;
    width: 100%;
    height: 100%; }

  .common .rocal_nav_wrap {
    padding: 2em; }

  .note-section {
    position: relative; }

  .note-section dl {
    margin-bottom: 1em;
    padding: 5px 30px !important; }

  .note-section dd {
    font-size: 1.65rem;
    padding-right: 7%; }

  .note-section a {
    position: absolute;
    text-decoration: none;
    right: 20px;
    top: 60px;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    background: #f4a6b9;
    color: #fff;
    margin-bottom: 0; }

  .disease-cont {
    letter-spacing: 0.01em; }

  .common .sec_cont .disease-cont p {
    margin-bottom: 2em; }

  .disease-cont figure.f-left {
    margin-right: 2em; }

  .disease-cont figure.f-right {
    margin-left: 2em; }

  .comment {
    width: 90%;
    margin: 0 auto; }

  .comment span {
    text-align: center;
    font-size: 1.6rem; }

  .dr_chicken img {
    width: 127px; }

  .dr_chicken span {
    margin-left: 142px;
    margin-top: 2em; }

  .pisuke img {
    width: 54px; }

  .pisuke span {
    margin-left: 69px;
    margin-top: 1em; }

  .col_2_img {
    overflow: hidden;
    margin-bottom: 1em; }

  .col_2_img figure {
    width: 49%;
    display: block;
    float: left; }

  .col_2_img figure:first-child {
    margin-right: 1% !important; }

  /*docters*/
  .docters_links li {
    width: 25%; }

  .common .sec_cont nav li:nth-child(4n) {
    border-right: none; }

  .common .sec_cont aside.adobe img {
    float: left;
    display: inline-block;
    padding: 0 1em 1em 0; }

  .common .sec_cont aside.adobe p {
    padding-left: 180px; }

  .common .sec_cont dl {
    margin-bottom: 2em;
    padding: 0 1em 2em; }

  .docters_tab {
    text-align: center !important; }

  .docters_list {
    padding: 2em 1em 0;
    margin-bottom: .5em; }

  .docters_list dl:last-child {
    border: none;
    margin-bottom: 0; }

  .drlist_Title.disnon {
    margin-bottom: 0; }

  /*interview*/
  .interview-cont figure.f-right {
    margin-left: 2em; }

  .interview-cont figure.f-left {
    margin-right: 2em; }

  /*faq*/
  .ac_tab {
    font-size: 1.6rem; }

  .ac_cont {
    padding: 1.5em 1.5em 2em; }

  /*movie*/
  #movie-wrap {
    width: 750px;
    padding-top: 422px;
    margin: 0 auto; }

  .chara-cont figure {
    width: 20%;
    float: left; }

  .chara-cont img {
    max-width: 100%; }

  .chara-prf {
    width: 78%;
    margin-left: 22%; }

  footer {
    clear: both; }

  footer h2 {
    margin-bottom: 1em; }

  footer section {
    position: relative;
    padding-right: 163px;
    overflow: hidden;
    width: 100%; }

  footer section ul {
    width: 75%;
    max-width: 514px;
    margin-left: 115px;
    margin-top: -2.5em;
    margin-bottom: 5em; }

  footer section ul li {
    width: 100%; }

  footer section ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0; }

  footer section a.link_archive {
    float: left;
    position: relative;
    position: static;
    left: 0;
    display: inline-block; }

  footer section .footer_btn {
    width: 143px;
    display: inline-block;
    position: absolute;
    top: 20px;
    right: 20px; }

  footer small.note {
    font-size: 1.2rem;
    text-align: center; }

  #f_bird {
    display: block;
    position: absolute;
    top: 13%;
    right: 50%;
    margin-right: -500px; } }
@media screen and (min-width: 768px) and (max-width: 1089px) {
  #top #contents {
    background-size: 194% auto; }

  #contents:after {
    top: -0.3%; }

  #sec_whats .img_box {
    margin-right: -1%; }

  #sec_faq .txt-box {
    margin-left: 2.5%;
    margin-right: 7%; }

  #sec_docters .txt-box {
    margin-left: 7%;
    margin-right: 2.5%; } }
@media screen and (min-width: 768px) and (max-width: 805px) {
  #sec_shiori .txt-box {
    margin-top: -1.35%; }

  #sec_shiori .txt-box .btn_more {
    right: 22px; }

  .new-book h2 {
    padding-left: 5%; } }
@media all and (min-width: 950px) {
  #top #contents {
    margin-top: -48px; }

  .common #contents {
    margin-top: 0; }

  body.patient {
    padding-left: 140px;
    position: relative; }

  body#top {
    background: #edf8fb; }

  .patient header {
    height: 100%;
    width: 140px;
    background: #FFF;
    box-shadow: 7px 0px 7px -6px #ccc;
    left: 0; }

  .patient header.head-fix {
    position: absolute; }

  .patient header.head-fix .nav-fix {
    width: 140px !important;
    position: fixed;
    top: auto;
    bottom: 0;
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease; }

  .patient header h1 {
    width: 140px;
    height: 132px;
    padding: 0;
    background: #29abe2;
    text-align: center !important; }

  .patient header h1 a {
    vertical-align: bottom;
    display: block;
    width: 100%;
    height: 100%;
    margin: 0; }

  .patient header h1 img {
    width: 63px;
    height: 63px;
    margin: 20px auto 5px;
    line-height: 1; }

  .patient header h1 span {
    display: block; }

  /*#main:before{ position: fixed; top: 50px;left: 0; content: "950px"; display: inline-block; font-weight: bold; color: #fff; background: #f10; z-index: 9999; }*/
  .title-area {
    padding: 25px 30px 0; }

  #disease .title-area h1 {
    padding-left: 145px;
    background: url(../img/patient/icon_whats.png) 43px center no-repeat;
    background-size: 71px auto; }

  #disease .treat h1 {
    padding-left: 129px;
    background: url(../img/patient/icon_cure.png) 45px center no-repeat;
    background-size: 56px auto; }

  #interview .title-area h1 {
    padding-left: 129px;
    background: url(../img/patient/icon_interview.png) 55px center no-repeat;
    background-size: 40px auto; }

  #faq .title-area h1 {
    padding-left: 145px;
    background: url(../img/patient/icon_faq.png) 44px center no-repeat;
    background-size: 63px auto; }

  .title-img {
    position: absolute;
    right: 4%;
    top: -10px; }

  .common .cont-inner {
    margin: 0 30px !important; }

  .common_h2 {
    margin-bottom: 2em; }

  .common .sec_cont {
    margin-bottom: 30px;
    padding: 50px; }

  /*ローカルナビ*/
  .common .rocal_nav_wrap {
    padding: 3em; }

  .rocal_nav li a {
    font-size: 1.6rem; }

  #links .sec_cont {
    line-height: 2.4em; }

  .comment {
    width: 80%;
    margin: 0 auto; } }
@media all and (min-width: 1090px) {
  #top #contents:after {
    width: 1268px;
    left: 50%;
    top: -15px;
    margin-left: -634px; }

  #main {
    padding-top: 730px; }

  #main .sec_inner {
    top: 184px;
    margin-top: 0px; }

  /*側湾症とは*/
  #sec_whats {
    padding-top: 422px; }

  #sec_whats .img_box {
    max-width: 483px; }

  #sec_whats .txt_box, #sec_cure .txt_box {
    max-width: 453px; }

  #sec_whats .col_left {
    top: 25px; }

  #sec_cure {
    padding-top: 457px; }

  #sec_cure .col_left {
    margin-right: 33px;
    max-width: 475px; }

  #sec_cure .img_box {
    padding-right: 30px; }

  #sec_cure .col_right {
    top: 54px; }

  #sec_cure .txt-box {
    margin-left: 4%;
    margin-right: 6.5%; }

  .pickup-link.pick01 {
    margin-top: 60px;
    max-width: 361px; }

  .new-book h2 {
    background-size: 19%  auto; }

  .new-book h2 {
    font-size: 2.2rem;
    padding-left: 1.75em; }

  #sec_shiori .txt-box {
    margin-left: 1%;
    margin-right: 4.25%; }

  #sec_faq {
    padding-top: 443px;
    overflow: hidden; }

  #sec_docters {
    padding-top: 333px; }

  #sec_faq .img_box {
    top: 180px;
    width: 402px !important;
    right: 89px; }

  #sec_faq .img_box img {
    width: 402px; }

  #sec_docters .img_box {
    position: absolute;
    top: -26px;
    left: 58px;
    width: 478px; }

  #sec_docters .img_box img {
    width: 95.8%; }

  #sec_faq .txt-box {
    margin-left: auto;
    margin-right: 33px;
    max-width: 453px !important; }

  #sec_docters .txt-box {
    margin-left: 35px;
    margin-right: 2.5%; }

  .pickup-link.pick02 {
    padding: 58px 0 14px 0;
    max-width: 1029px;
    margin: 0 auto; }

  .pickup-link.pick02 img {
    margin: 0;
    width: 211px; } }
@media all and (min-width: 1268px) {
  .common .cont-inner {
    margin: 0 auto !important;
    max-width: 1068px; }

  #sec_shiori .txt-box {
    margin-left: -1.75%;
    margin-right: 7%; } }
@media all and (min-width: 1920px) {
  html {
    max-width: 1920px;
    background: #dff2f7;
    position: relative; }

  #page-top {
    position: fixed;
    right: auto;
    margin-left: 1700px; } }
