/* CSS Document */

@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);

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


/*	Basic Style 
/* =================================== */

body {
    font-family: "Noto Sans Japanese", 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic" !important;
    font-size: 1em;
    line-height: 1.6;
    color: #352b25;
    text-align: justify;
    /*文字を均等配置する*/
}

a:link {
    color: #3399cc;
    text-decoration: none;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
}

a:visited {
    color: #3399cc;
}

a:hover {
    color: #c8a549;
    text-decoration: none;
}

figure,
p,
address {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0;
}

dl,
dt,
dd {
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
}

iframe {
    border: 0;
}

ul {
    list-style: none;
}

ul li {
    vertical-align: top;
}

.fixed {
    position: fixed;
    top: 0;
    margin-top: 0;
}

.font_family_eng {
    font-family: "Times New Roman", Times, serif;
}

.bg-pattern {
    background: url("../images/common/pattern_01.gif") repeat 0 0;
}


/* --------------------------------------------------------------- 
■ HEADER
-----------------------------------------------------------------*/


/* PC */

header {
    display: block;
    width: 100%;
    height: 120px;
    /* navのtopと同じ値にする */
    margin-bottom: 70px;
    /* navのheightと同じ値にする */
    background: #fff;
    z-index: 999999;
    position: relative;
}

header .inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    height: inherit;
    box-sizing: border-box;
    margin: auto;
}


/* ロゴ */

header #logoarea {
    position: relative;
}

header #logoarea img {
    width: auto;
    height: 120px;
    position: absolute;
    left: 0;
    top: 0;
}


/* TEL */

.header_right {
    width: 500px;
    position: absolute;
    right: 0;
    top: 0;
}

.header_right ul {
    padding: 0;
    margin: 10px 0 8px 0;
    text-align: right;
}

.header_right ul li {
    display: inline-block;
    text-align: center;
    border: 1px solid #352b25;
    padding: 1px 4px;
    font-size: 12px;
    line-height: 16px;
}

.header_right .header_contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    height: 70px;
}

.header_right .header_contact a {
    color: #352b25;
}

.header_right .header_tel {
    font-size: 1rem;
    line-height: 1.4rem;
    font-weight: bold;
    font-family: Arial, Helvetica, "sans-serif";
    text-align: left;
    position: absolute;
    bottom: 10px;
    right: 200px;
}

.header_right .header_tel span.number {
    font-size: 1.8rem;
    letter-spacing: 1px;
    padding-left: 5px;
}

.header_right .header_tel p {
    font-size: 12px;
    line-height: 14px;
    font-weight: bold;
}

.header_right .button_contact {
    position: absolute;
    bottom: 20px;
    right: 0;
}

.header_right .button_contact a {
    font-size: 16px;
    line-height: 18px;
    font-weight: bold;
    padding: 15px 1em 15px 2em;
    border-radius: 4px;
    background-color: #d6c391;
}

.header_right .button_contact a:after {
    content: "";
    background: url("../images/common/btn_contact_icon.png");
    background-repeat: no-repeat;
    background-position: right center;
    display: inline-block;
    width: 16px;
    height: 29px;
    vertical-align: middle;
    margin: 0 0 3px 10px;
}

.header_right .button_contact a:hover {
    background-color: #c8a549;
    color: #fff;
}


/*メニュー*/

nav {
    position: absolute;
    top: 120px;
    /* headerのheightと同じ値にする */
    width: 100%;
    height: 70px;
    /* headerのmargin-bottomと同じ値にする */
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    border-top: 1px solid #352b25;
    border-bottom: 1px solid #352b25;
}

nav ul {
    max-width: 1000px;
    height: inherit;
    margin: 0 auto;
    padding: 0;
    text-align: center;
}

nav li {
    display: inline-block;
    /* インライン要素にすることで横に回り込む */
    vertical-align: middle;
    /* 上下中央に寄せる */
    letter-spacing: 0.2px;
    width: 19%;
    height: 70px;
}

nav li a {
    padding: 1.1em 0 0 0;
    display: table;
    text-align: center;
    vertical-align: middle;
    font-size: 16px;
    line-height: 20px;
    color: #352b25;
    font-weight: bold;
    width: 100%;
    height: 70px;
    box-sizing: border-box;
}

nav li a:link,
nav li a:visited {
    color: #352b25;
}

nav li a:hover {
    color: #c8a549;
}

nav li a span {
    font-size: 0.8rem;
    font-family: "Times New Roman", Times, serif;
    font-weight: normal;
    position: relative;
}

@media (max-width: 768px) {
    /* SP */
    header {
        display: none;
    }
    nav.pc_navi {
        display: none;
    }
    .sp_navi {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 65px;
        font-size: 18px;
        font-weight: bold;
        z-index: 9998;
    }
    .sp_navi h1 {
        position: absolute;
        display: table !important;
        text-align: left;
        padding-left: 5%;
        padding-top: 8px;
    }
    .sp_navi h1 span,
    .sp_navi h1 img {
        display: block;
        width: auto;
        height: 45px;
    }
    .sp_navi h1 a {
        display: table-cell;
        vertical-align: middle;
    }
    .sp_navi h1 img {
        z-index: 9999;
        position: relative;
    }
    .sp_navi dl {
        background-color: rgba(255, 255, 255, 1.0);
    }
    .sp_navi dl dt {
        height: 62px;
        font-weight: bold;
        cursor: pointer;
        padding: 0 4%;
        font-size: 18px;
        display: block;
        color: #fff;
        line-height: 2;
    }
    .sp_navi dl dd {
        display: none;
    }
    .sp_navi ul.gnavi {
        padding: 0;
        border-top: 1px solid #bbb;
    }
    .sp_navi ul.gnavi li {
        display: table;
        font-size: 16px;
        line-height: 18px;
        font-weight: normal;
        width: 50%;
        float: left;
        border-bottom: 1px solid #bbb;
        box-sizing: border-box;
    }
    .sp_navi ul.gnavi li:nth-child(2n) {
        border-left: 1px solid #bbb;
    }
    .sp_navi ul.gnavi li span {
        font-size: 14px;
        line-height: 18px;
        font-weight: normal;
    }
    .sp_navi ul.gnavi li a {
        display: table-cell;
        vertical-align: middle;
        width: 100%;
        color: #333;
        text-decoration: none;
        padding: 15px 0 15px 15px;
    }
    /*ボタンの動き*/
    .sp_navi dt a {
        display: block;
        width: 42px;
        height: 42px;
        position: absolute;
        top: 9px;
        right: 10px;
        z-index: 9999999;
    }
    .sp_navi dt a span:first-child {
        top: 12px;
    }
    .sp_navi dt a span:nth-child(2) {
        margin-top: -1px;
        top: 50%;
    }
    .sp_navi dt a span:nth-child(3) {
        bottom: 12px;
    }
    .sp_navi dt a span:not(:last-child) {
        display: block;
        background: #666;
        width: 24px;
        height: 2px;
        position: absolute;
        left: 9px;
        transition: all 0.4s;
        -webkit-transition: all 0.4s;
        -moz-transition: all 0.4s;
    }
    .sp_navi dt span:last-child {
        position: absolute;
        bottom: -8px;
        left: 7px;
        color: #A4A4A4;
        font-size: 10px;
        letter-spacing: 0.05em;
    }
    .sp_navi dt a.active span:first-child {
        -webkit-transform: translateY(8px) rotate(45deg);
        -moz-transform: translateY(8px) rotate(45deg);
        -ms-transform: translateY(8px) rotate(45deg);
        transform: translateY(8px) rotate(45deg);
    }
    .sp_navi dt a.active span:nth-child(2) {
        opacity: 0;
    }
    .sp_navi dt a.active span:nth-child(3) {
        -webkit-transform: translateY(-8px) rotate(-45deg);
        -moz-transform: translateY(-8px) rotate(-45deg);
        -ms-transform: translateY(-8px) rotate(-45deg);
        transform: translateY(-8px) rotate(-45deg);
    }
    .sp_navi ul.contact {
        margin: 0;
        padding: 20px 0;
    }
    .sp_navi ul.contact li {
        text-align: center;
    }
    .sp_navi ul.contact .snavi_tel a {
        color: #352b25;
    }
    .sp_navi ul.contact .snavi_tel {
        font-size: 1rem;
        line-height: 1.4rem;
        font-weight: bold;
        font-family: Arial, Helvetica, "sans-serif";
        text-align: center;
    }
    .sp_navi ul.contact .snavi_tel span.number {
        font-size: 1.8rem;
        letter-spacing: 1px;
        padding-left: 5px;
    }
    .sp_navi ul.contact .snavi_contact a {
        font-size: 18px;
        line-height: 22px;
        font-weight: bold;
        padding: 15px 1em 15px 2em;
        margin: 20px auto;
        border-radius: 4px;
        background-color: #d6c391;
        width: 90%;
        display: block;
        box-sizing: border-box;
        color: #352b25;
    }
    .sp_navi ul.contact .snavi_contact a:after {
        content: "";
        background: url("../images/common/btn_contact_icon.png");
        background-repeat: no-repeat;
        background-position: right center;
        display: inline-block;
        width: 16px;
        height: 29px;
        vertical-align: middle;
        margin: 0 0 3px 10px;
    }
}


/* --------------------------------------------------------------- 
■ footer
-----------------------------------------------------------------*/


/* PC */

footer {
    padding: 20px 0 20px 0;
    margin: 0 auto;
    background-color: #000;
    text-align: center;
}

footer copy {
    color: #fff;
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    /* SP */
}


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


/*	layout
/* =================================== */

.inner_wid {
    width: 1000px;
    margin: 0 auto;
}

#colum-container {
    width: 1000px;
    margin: 0 auto;
}

.leftbox {
    width: 730px;
    float: left;
    min-height: 400px;
}

.rightbox {
    width: 225px;
    float: right;
}

@media screen and (max-width: 999px) {
    .inner_wid {
        width: 100%;
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    .inner_wid {
        width: 100%;
        margin: 0 auto;
    }
    #colum-container {
        width: 100%;
        margin: 0 auto;
    }
    .leftbox {
        width: 100%;
        float: none;
    }
    .rightbox {
        width: 100%;
        float: none;
        text-align: center;
    }
}


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


/*	common
/* =================================== */

.clearfix:after {
    content: "";
    clear: both;
    display: block;
}

.center {
    margin-left: auto;
    margin-right: auto;
}

.relative {
    position: relative;
}

.mt10 {
    margin-top: 10px;
}

.mt20 {
    margin-top: 20px;
}

.mt30 {
    margin-top: 30px;
}

.mt40 {
    margin-top: 40px;
}

.mt50 {
    margin-top: 50px;
}

.mb10 {
    margin-bottom: 10px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb30 {
    margin-bottom: 30px;
}

.mb40 {
    margin-bottom: 40px;
}

.mb50 {
    margin-bottom: 50px;
}


/*  文字  */

.mincho {
    font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
}

.bold {
    font-weight: bold;
}

.center {
    text-align: center;
}

.txt120 {
    font-size: 1.2em;
}

.txt80 {
    font-size: 80%;
}

.red {
    color: #e95b5b;
}


/*  背景色  */

.bg_gray {
    background-color: #efefef;
}

.bg_white {
    background-color: #fff;
}

.section:after {
    content: "";
    clear: both;
    display: block;
}


/*pagetop*/

#pagetop {
    position: fixed;
    bottom: 20px;
    right: 20px;
}

table.tbl1 {
    margin: 0;
    padding: 0;
    border: 1px solid #bbb;
    border-right: 0 solid #bbb;
    border-bottom: 0 solid #bbb;
}

table.tbl1 th,
table.tbl1 td {
    margin: 0;
    padding: 10px 1em;
    border-right: 1px solid #bbb;
    border-bottom: 1px solid #bbb;
    vertical-align: top;
}

table.tbl1 th {
    text-align: center;
}

table.tbl1 td ul {
    padding: 0;
    margin: 0;
    list-style: disc;
    margin-left: 1em;
}

table.tbl1 td ul li {
    padding: 0;
    margin: 0 0 10px 0;
}

@media screen and (max-width: 768px) {
    /* SP */
    table.tbl1 th,
    table.tbl1 td {
        padding: 6px 6px;
        line-height: 1.4rem;
    }
}


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


/*	title
/* =================================== */

h2.title {
    padding: 10px;
    font-size: 24px;
    line-height: 34px;
    font-weight: bold;
    color: #3c93cf;
    background-color: #f2f2f2;
    vertical-align: middle;
    text-align: left;
}

h2.title img {
    margin-right: 10px;
    vertical-align: middle;
}

h2.title_border {
    font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
    font-weight: normal;
    letter-spacing: 2px;
    text-align: center;
    font-size: 1.6rem;
    line-height: 1.9rem;
    padding: 30px 0 30px 0;
    margin-bottom: 30px;
}

h2.title_border span {
    padding: 14px 0;
    border-bottom: 2px solid #3c87bc;
}

h3.title_border {
    text-align: left;
    font-size: 1.3rem;
    line-height: 1.5rem;
    font-weight: bold;
    padding: 10px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #bbb;
    color: #352b25;
}

h3.title {
    font-size: 22px;
    line-height: 34px;
}

@media screen and (max-width: 768px) {
    /* SP */
    h2.title_border {
        padding: 0 0 20px 0;
        margin-bottom: 0;
        line-height: 2.8rem;
    }
    h2.title_border span {
        padding: 10px 0;
    }
    h3.title {
        font-size: 1.2rem;
        line-height: 1.6rem;
    }
}

@media screen and (min-width:769px) {
    /* PC */
    /* PCのみ表示 */
    .sp_only {
        display: none;
    }
    .pc_only {
        display: block;
    }
    a:hover img {
        opacity: 0.75;
        filter: alpha(opacity=75);
        -ms-filter: "alpha(opacity=75)";
    }
    .imgR {
        float: right;
        width: 35%;
        margin-left: 40px;
        margin-bottom: 20px;
    }
    .imgL {
        float: left;
        width: 35%;
        margin-right: 40px;
        margin-bottom: 20px;
    }
    .imgR_text {
        width: 98%;
        /* IE8以下とAndroid4.3以下用フォールバック */
        width: -webkit-calc(100% - 35% - 40px);
        width: calc(100% - 35% - 40px);
        float: left;
        text-align: left;
    }
    .imgR_wide {
        float: right;
        width: 35%;
        margin-left: 40px;
        margin-bottom: 20px;
    }
    .imgL_wide {
        float: left;
        width: 35%;
        margin-right: 40px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 768px) {
    /* SP */
    /*pagetop*/
    #pagetop {
        width: 80px;
        height: 80px;
        margin-bottom: 60px;
    }
    /* SPのみ表示 */
    .sp_only {
        display: block;
    }
    .pc_only {
        display: none;
    }
    .imgR {
        float: right;
        width: 40%;
        margin-left: 20px;
        margin-bottom: 15px;
    }
    .imgL {
        float: left;
        width: 40%;
        margin-right: 20px;
        margin-bottom: 15px;
    }
    .imgR_text {
        width: 100%;
    }
    .imgR_wide {
        float: none;
        width: 100%;
        margin: 0 0 30px 0;
    }
    .imgL_wide {
        float: none;
        width: 100%;
        margin: 0 0 30px 0;
    }
}


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


/*	ボタン
/* =================================== */


/* btn-type01　*/

a.btn-type01 {
    display: inline-block;
    max-width: 180px;
    text-align: left;
    background-color: #fff;
    font-size: 14px;
    text-decoration: none;
    padding: 6px 4em 6px 4em;
    transition: .4s;
    position: relative;
    vertical-align: middle;
}

a.btn-type01:link,
a.btn-type01:visited {
    color: #352b25;
}

a.btn-type01:hover {
    background-color: #c8a549;
    border-color: #fff;
    color: #fff;
}


/* 矢印 */

a.btn-type01::before,
a.btn-type01::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
}

a.btn-type01::before {
    right: 10px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #c8a549;
    border-right: 2px solid #c8a549;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}


/* 矢印 hover */

a.btn-type01:hover::before {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}


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


/*	TOPページ
/* =================================== */


/*=====================
	#mainvisual
*/

#mainvisual {
    display: block;
    position: relative;
    background: none;
    height: 75vh;
}

#mainvisual .inner {
    display: block;
    margin: -75vh auto 0;
    height: inherit;
    /* 一番近い上位要素の高さを継承 */
}

.slider {
    position: relative;
    height: 75vh;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}


/* キャッチフレーズ */

.mainvisual_catch {
    position: absolute;
    margin: auto;
    top: 30vh;
    right: 0;
    width: 43%;
    max-width: 860px;
    animation-delay: 0.3s;
    /* アニメーション開始時間 */
    color: #352b25;
    padding: 30px 0;
}

.mainvisual_catch h1 {
    padding: 10px 0;
    font-size: 30px;
    line-height: 40px;
    text-align: left;
    text-shadow: white 1px 1px 5px, white -1px 1px 5px, white 1px -1px 10px, white -1px -1px 10px;
}

.mainvisual_catch h2 {
    font-size: 22px;
    line-height: 32px;
    text-align: left;
    text-shadow: white 1px 1px 5px, white -1px 1px 5px, white 1px -1px 10px, white -1px -1px 10px;
}

.concept_text ul {
    text-align: left;
    padding: 0;
    margin: 20px auto 0 auto;
}

.concept_text ul li {
    text-align: left;
    display: inline-block;
    padding: 3px 1em;
    margin: 0 3px;
    font-size: 1rem;
    line-height: 1.5;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 3px;
    color: #202020;
}

@media screen and (max-width: 999px) {
    /* tablet */
    #mainvisual {
        height: 500px;
    }
    #mainvisual .inner {
        margin: -500px auto 0;
    }
    .slider {
        height: 500px;
    }
    .mainvisual_catch {
        display: table-cell;
        vertical-align: middle;
        top: 22vh;
        right: 0;
        width: 43%;
        max-width: 860px;
    }
    .mainvisual_catch h1 {
        font-size: 26px;
        line-height: 30px;
    }
    .mainvisual_catch h2 {
        font-size: 20px;
        line-height: 30px;
    }
}

@media screen and (max-width:640px) {
    /* スマホ */
    #mainvisual {
        height: 350px;
    }
    #mainvisual .inner {
        display: block;
        margin: -350px auto 0;
    }
    .slider {
        height: 350px;
        display: table;
    }
    .mainvisual_catch {
        top: auto;
        bottom: 10px;
        right: 0;
        left: 0;
        width: 90%;
        padding: 10px 0;
    }
    .mainvisual_catch h1 {
        padding: 0;
        font-size: 1.3rem;
        line-height: 1.5;
    }
    .mainvisual_catch h2 {
        padding: 0;
        font-size: 1.1rem;
        line-height: 1.5;
    }
}


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


/* お知らせ */


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

#top_topics {
    max-width: 800px;
    margin: 0 auto;
}

#top_topics #topicsIn {
    box-sizing: border-box;
    margin: 0 auto;
    padding: 0;
    max-width: 700px;
}

#top_topics #topicsIn dl {
    padding: 0 0 10px 0;
    margin: 0;
}

#top_topics #topicsIn dl:after {
    content: "";
    clear: both;
    display: block;
}

#top_topics #topicsIn dt {
    width: 6em;
    float: left;
    text-align: right;
}

#top_topics #topicsIn dd {
    width: 98%;
    /* IE8以下とAndroid4.3以下用フォールバック */
    width: -webkit-calc(100% - 7em);
    width: calc(100% - 7em);
    float: right;
    text-align: left;
}

#top_topics #topicsIn dt,
#top_topics #topicsIn dd {
    padding: 0;
    margin: 0;
}

#top_topics #topicsIn a {
    text-decoration: none;
}

#top_topics #topicsIn a:hover {}

@media screen and (max-width: 768px) {
    /* SP */
    #top_topics {
        float: none;
        width: 94%;
        margin: 0 auto;
    }
    #top_topics {
        width: 94%;
        margin: 0 auto;
    }
    #top_topics h2 {
        float: none;
        width: 100%;
        font-size: 1.6rem;
    }
    #top_topics #topicsIn {
        float: none;
        width: 100%;
        /* IE8以下とAndroid4.3以下用フォールバック */
        width: -webkit-calc(100% - 0);
        width: calc(100% - 0);
    }
    #top_topics #topicsIn {
        width: 100%;
        position: relative;
        margin-top: 0;
    }
    #top_topics #topicsIn dl {
        margin: 0 2% 10px 2%;
    }
    #top_topics #topicsIn dt {
        width: 100%;
        float: none;
        text-align: left;
        font-size: 0.8rem;
    }
    #top_topics #topicsIn dd {
        width: 100%;
        float: none;
    }
}


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


/* concept */


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

#concept {
    background-color: #000;
    color: #fff;
    padding: 60px 0 20px 0;
}

#concept .title_container {
    color: #d6c391;
}

#concept .title_container .inner {
    width: 90%;
    margin: 0 auto;
}

#concept .concept_container .inner {
    margin: 0 auto;
    width: 100%;
    max-width: 1000px;
    text-align: center;
}

#concept .concept_container dl {
    width: 29%;
    margin-left: 2%;
    margin-right: 2%;
    padding: 0;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 40px;
    text-align: center;
}

#concept .concept_container dl dt {
    padding: 0 0 10px 0;
    margin: 0;
}

#concept .concept_container dl dt img {
    padding: 0;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

#concept .concept_container dl h3 {
    text-align: left;
    padding: 0 0 5px 0;
    margin: 0;
    font-size: 1.2em;
}

#concept .concept_container dl p {
    text-align: left;
    padding: 0;
    margin: 0;
}

@media screen and (max-width: 999px) {
    /* tablet */
    #concept {
        padding: 40px 0 20px 0;
    }
    #concept .concept_container .inner {
        width: 90%;
    }
}

@media screen and (max-width: 768px) {
    /* SP */
    #concept {
        padding: 30px 0 20px 0;
    }
    #concept .concept_container .inner {}
    #concept .concept_container dl {
        width: 90%;
        padding: 0;
        margin: 0 auto 30px auto;
        display: block;
    }
    #concept .concept_container dl img {
        width: 100%;
        margin: 0 auto;
    }
}


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


/* medical */


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

#medical {
    vertical-align: bottom;
    /* 下揃え */
    background-color: #eeeade;
    background-image: url("../images/common/bg_rightdown.png");
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 100% auto;
    padding: 110px 0 80px 0;
}

#medical .medical_container .inner {
    width: 90%;
    margin: 0 auto;
    max-width: 1000px;
}

#medical .medical_container dl {
    width: 29%;
    margin-left: 2%;
    margin-right: 2%;
    padding: 0;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 30px;
    text-align: center;
}

#medical .medical_container dl a {
    color: #352b25;
}

#medical .medical_container dl a:hover {
    color: #c8a549;
}

#medical .medical_container dl dt {
    padding: 0;
    margin: 0 0 5px 0;
    position: relative;
}

#medical .medical_container dl dt p {
    position: absolute;
    left: 0;
    bottom: 5px;
    color: #fff;
    margin: 0;
    padding: 5px 1em;
    box-sizing: border-box;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

#medical .medical_container dl a:hover dt p {
    background-color: rgba(0, 0, 0, 0.5);
}

#medical .medical_container dl dt img {
    padding: 0;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

#medical .medical_container dl h3 {
    text-align: left;
    padding: 0 0 5px 0;
    font-size: 1.2em;
}

#medical .medical_container dl p {
    text-align: left;
    padding: 0;
    margin: 0;
}

@media screen and (max-width: 999px) {
    /* tablet */
    #medical {
        padding: 80px 0 80px 0;
    }
    #medical .medical_container .inner {
        width: 100%;
        margin: 0 auto;
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    /* SP */
    #medical {
        padding: 60px 0 60px 0;
    }
    #medical .medical_container .inner {
        width: 96%;
        margin: 0 auto;
        padding: 0;
    }
    #medical .medical_container dl {
        width: 49%;
        padding: 0;
        margin: 0 auto 20px auto;
    }
    #medical .medical_container dl dt,
    #medical .medical_container dl dd {
        width: 90%;
        margin: 0 auto;
    }
    #medical .medical_container dl dt img {
        width: 100%;
        margin: 0 auto;
    }
}


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


/* clinicpage_concept */


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

#concept .concept_container .inner {
    margin: 0 auto;
    width: 100%;
    max-width: 1000px;
    text-align: center;
}

#clinicpage_concept .concept_container dl {
    width: 29%;
    margin-left: 2%;
    margin-right: 2%;
    padding: 0;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 40px;
    text-align: center;
}

#clinicpage_concept .concept_container dl dt {
    padding: 0 0 10px 0;
    margin: 0;
}

#clinicpage_concept .concept_container dl dt img {
    padding: 0;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

#clinicpage_concept .concept_container dl h3 {
    text-align: left;
    padding: 0 0 5px 0;
    margin: 0;
    font-size: 1.2em;
}

#clinicpage_concept .concept_container dl p {
    text-align: left;
    padding: 0;
    margin: 0;
}

@media screen and (max-width: 999px) {
    /* tablet */
    #clinicpage_concept {
        padding: 40px 0 20px 0;
    }
}

@media screen and (max-width: 768px) {
    /* SP */
    #clinicpage_concept {
        padding: 30px 0 20px 0;
    }
    #clinicpage_concept .concept_container .inner {}
    #clinicpage_concept .concept_container dl {
        width: 90%;
        padding: 0;
        margin: 0 auto 20px auto;
        display: block;
    }
    #clinicpage_concept .concept_container dl:after {
        content: "";
        clear: both;
        display: block;
    }
    #clinicpage_concept .concept_container dl dt {
        width: 25%;
        float: left;
        padding: 0;
        margin: 0;
    }
    #clinicpage_concept .concept_container dl dd {
        width: 72%;
        float: right;
        padding: 0;
        margin: 0;
    }
    #clinicpage_concept .concept_container dl h3 {
        padding: 0 0 5px 0;
        font-size: 1em;
        line-height: 1.5;
    }
    #clinicpage_concept .concept_container dl p {}
}


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


/* message */


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

#message {
    background-color: #000;
    padding: 0 0 80px 0;
}

.bg_rightup {
    vertical-align: top;
    padding: 0 0 20px 0;
    margin: 0;
    font-size: 1px;
    line-height: 2px;
}

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

#message .title_container {
    color: #d6c391;
}

#message .title_container .inner {
    width: 90%;
    margin: 0 auto;
}

#message .concept_container .inner {
    margin: 0 auto;
    width: 100%;
    max-width: 1000px;
    text-align: center;
}

#message .message_inner {
    width: 90%;
    max-width: 900px;
    margin: 0 auto 15px auto;
    padding: 30px 4%;
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, 0.9);
}

#message .message_inner .photos {
    float: left;
    width: 230px;
}

#message .message_inner .photos img {
    width: 100%;
}

#message .message_inner .photos ul {
    padding: 0;
    margin: 0;
    text-align: left;
    font-size: 14px;
    font-weight: normal;
}

#message .message_inner .photos ul li {
    display: inline-block;
    padding: 2px 5px;
    margin: 5px 2px;
    text-align: center;
    background-color: #352b25;
    color: #fff;
}

#message .message_inner .text {
    float: right;
    width: 98%;
    /* IE8以下とAndroid4.3以下用フォールバック */
    width: -webkit-calc(100% - 250px);
    width: calc(100% - 250px);
}

#message .message_inner .text h2 {
    font-size: 22px;
    line-height: 34px;
    padding: 0;
    margin: 10px 0;
    font-weight: normal;
}

#message .message_inner .profile {
    border-top: 1px solid #352b25;
    padding-top: 20px;
}

#message .message_inner .profile h3,
#message .message_inner .profile p {
    font-size: 16px;
    line-height: 20px;
    padding: 0;
    margin: 0 0 5px 0;
}

@media screen and (max-width: 999px) {
    /* tablet */
    #message {
        padding: 0 0 80px 0;
    }
}

@media screen and (max-width: 768px) {
    /* SP */
    #message {
        padding: 0 0 60px 0;
    }
    #message .message_inner {
        padding: 20px 4%;
    }
    #message .message_inner .photos {
        float: none;
        width: 100%;
        text-align: center;
    }
    #message .message_inner .photos img {
        width: 60%;
    }
    #message .message_inner .photos ul {
        text-align: center;
    }
    #message .message_inner .text {
        float: none;
        width: 100%;
    }
    #message .message_inner .text h2 {
        font-size: 20px;
        line-height: 26px;
    }
}


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


/* clinicinfo */


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

#clinicinfo {
    padding: 70px 0 0 0;
    background-color: #f2f2f2;
}

#clinicinfo .clinic_rightbox {
    float: right;
    width: 54%;
}

#clinicinfo .clinic_leftbox {
    float: left;
    width: 40%;
    display: block;
    position: relative;
}

#clinicinfo .clinic_leftbox dl {
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
}

#clinicinfo .clinic_leftbox dl:first-child {
    border-top: 1px solid #ccc;
}

#clinicinfo .clinic_leftbox dl dt {
    margin-bottom: 5px;
    text-align: center;
    float: left;
    width: 4em;
    margin-right: 10px;
}

#clinicinfo .clinic_leftbox dl dt span {
    background-color: #352b25;
    color: #fff;
    padding: 2px 0.4em 2px 0.4em;
    font-weight: normal;
    display: block;
}

#clinicinfo table {
    border: 1px solid #ccc;
    border-bottom: 0;
    width: 100%;
    background-color: #fff;
}

#clinicinfo table th,
#clinicinfo table td {
    box-sizing: border-box;
    padding: 10px 2px;
    text-align: center;
    border-left: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

#clinicinfo table th {
    background-color: #eaeaea;
    width: 11%;
}

#clinicinfo table th:first-child,
#clinicinfo table td:first-child {
    width: 20%;
    border-left: 0;
}

#googlemap {
    margin-top: 40px;
}

#googlemap iframe {
    width: 100%;
    height: 300px;
}

@media screen and (max-width: 768px) {
    /* SP */
    #clinicinfo {
        padding: 40px 0 0 0;
    }
    #clinicinfo .clinic_rightbox {
        float: none;
        width: 90%;
        min-height: 200px;
        margin: 20px auto;
    }
    #clinicinfo .clinic_leftbox {
        float: none;
        width: 90%;
        margin: 20px auto;
    }
    #clinicinfo table {
        width: 100%;
        margin: 20px auto;
        font-size: 0.9em;
    }
    #clinicinfo table th,
    #clinicinfo table td {
        padding: 4px 2px;
    }
    #clinicinfo table th {
        width: 9%;
    }
    #clinicinfo table th:first-child,
    #clinicinfo table th:first-child {
        width: 30%;
        border-left: 0;
    }
    #googlemap iframe {
        height: 200px;
    }
}


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


/* mainvisual_secondpage */


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

#mainvisual_secondpage {
    padding: 0;
    margin: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 220px;
    /* 上下左右真ん中 */
    display: flex;
    /* 子要素をflexboxで揃える */
    flex-direction: column;
    /* 子要素をflexboxにより縦方向に揃える */
    justify-content: center;
    /* 子要素をflexboxにより中央に配置する */
    align-items: center;
    /* 子要素をflexboxにより中央に配置する */
}

#mainvisual_secondpage h1 {
    font-weight: bold;
    text-align: center;
    font-size: 1.7rem;
    line-height: 2rem;
    letter-spacing: 2px;
    /*padding: 100px 0;*/
    color: #fff;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
}

#mainvisual_secondpage h1 span {
    font-weight: normal;
    padding: 10px;
    font-size: 18px;
    line-height: 20px;
}

@media screen and (max-width: 768px) {
    /* SP */
    #mainvisual_secondpage {
        height: 140px;
        margin-top: 60px;
    }
    #mainvisual_secondpage h1 {
        font-size: 1.3rem;
        line-height: 1.8rem;
    }
}

#mainvisual_secondpage.clinic {
    background-image: url("../images/mv_second_clinic.jpg");
}

#mainvisual_secondpage.medical {
    background-image: url("../images/mv_second_medical.jpg");
}

#mainvisual_secondpage.common {
    background-image: url("../images/mv_second_common.jpg");
}


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


/* common */


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

p {
    margin: 0 0 1em 0;
}

h3 {
    margin: 0 0 1em 0;
    line-height: 1.7;
}

.text_s {
    font-size: 0.85rem;
}

.align_c {
    text-align: center;
}


/* マーカー線・黄色 */

.marker {
    background: linear-gradient(transparent 85%, #edde7b 85%);
}


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


/* toppage title */


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

.title_container {
    text-align: center;
    color: #352b25;
    padding: 0;
    margin: 0 auto 30px auto;
}

.title_container h2 {
    font-weight: normal;
    font-size: 34px;
    line-height: 44px;
    letter-spacing: 1px;
    padding: 10px 0 0 0;
}

.title_container h3 {
    font-size: 18px;
    line-height: 22px;
    padding-top: 10px;
    font-family: "Times New Roman", Times, "serif";
    font-weight: normal;
}

@media screen and (max-width: 768px) {
    /* SP */
    .title_container {
        width: 90%;
        margin: 0 auto 15px auto;
    }
    .title_container h2 {
        font-size: 1.4rem;
        line-height: 1.8rem;
        font-weight: bold;
    }
    .title_container h3 {
        font-size: 1.1rem;
        line-height: 1.6rem;
        padding-top: 5px;
    }
}

.clinic_section {
    padding: 50px 0;
}

@media screen and (max-width: 768px) {
    /* SP */
    .clinic_section {
        padding: 30px 0 0 0;
        width: 90%;
        margin: 0 auto;
    }
}

#clinic_concept .photos {
    text-align: center;
    margin: 20px auto;
    padding: 20px 0;
    background-color: #f2f2f2;
}

#clinic_concept .photos img {
    width: 30%;
    padding: 15px;
}

#clinic_gallery ul li {
    display: inline-block;
    width: 33%;
    margin: 0 auto 20px auto;
    padding: 10px;
    box-sizing: border-box;
}

#clinic_gallery ul li p {
    padding: 0;
    margin: 0;
}

@media screen and (max-width: 768px) {
    /* SP */
    #clinic_concept .photos h3 {
        font-size: 16px;
        line-height: 22px;
    }
    #clinic_concept .photos img {
        width: 40%;
        padding: 0 15px;
    }
    #clinic_gallery ul {
        padding: 0;
        margin: 0 auto;
    }
    #clinic_gallery ul li {
        width: 49%;
        padding: 5px;
        margin: 0 auto 10px auto;
    }
}

a.link {
    display: block;
    padding-top: 80px;
    margin-top: -80px;
}

.medical_section {
    padding: 0;
    margin: 50px auto 0 auto;
}

.mb_last {
    margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
    /* SP */
    a.link {
        display: block;
        padding-top: 35px;
        margin-top: -35px;
    }
    .medical_section {
        padding: 0;
        margin: 20px auto 0 auto;
        width: 90%;
    }
    .mb_last {
        margin-bottom: 50px;
    }
}

.menu_container {
    box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.3);
}

.menu_container h2 {
    background-color: #352b25;
    border-bottom: 6px solid #d6c391;
    color: #fff;
    padding: 10px 1em;
    font-weight: normal;
    letter-spacing: 2px;
    text-align: center;
}

.menu_container h3 {
    margin: 10px 0 15px 0;
    font-size: 22px;
    line-height: 34px;
}

.menu_container .inbox {
    padding: 30px 4%;
}

@media screen and (max-width: 768px) {
    /* SP */
    .menu_container h2 {
        font-size: 1.4rem;
        line-height: 1.7rem;
    }
    .menu_container h3 {
        margin: 0 0 10px 0;
        font-size: 1.1rem;
        line-height: 1.5;
    }
    .menu_container .inbox {
        padding: 20px 4%;
    }
}

#medical_menu {}

#medical_menu ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 0;
    margin: 0 auto;
}

#medical_menu ul li {
    margin: 0 auto 10px auto;
    width: 32%;
}

#medical_menu ul li a {
    text-align: center;
    padding: 10px 0.2em;
    border: 1px solid #352b25;
    border-radius: 5px;
    display: block;
    color: #352b25;
}

#medical_menu ul li a:hover {
    border: 1px solid #c8a549;
    background-color: #c8a549;
    color: #fff;
}

@media screen and (max-width: 768px) {
    /* SP */
    #medical_menu ul li {
        width: 48%;
    }
}