﻿@charset "utf-8";
/* ----------------  Reset Styles  ----------------- */
/*
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video { background: transparent; border: 0; font-size: 100%; margin: 0; outline: 0; padding: 0; vertical-align: baseline; } sup { font-size: 70%; } body { line-height: 1; } html,body { width: 100%; } img { height: auto; } article,aside,canvas,details,figcaption,figure, footer,header,hgroup,menu,nav,section,summary { display: block; } ul, ol { list-style: none; } blockquote, q { quotes: none; } blockquote:before, blockquote:after, q:before, q:after { content: ""; content: none; } a { background: transparent; border: 0; font-size: 100%; margin: 0; padding: 0; text-decoration: none; vertical-align: baseline; } :focus { outline: 0; } ins { background-color: #ff9; color: #000; text-decoration: none; } mark { background-color: #ff9; color: #000; font-weight: bold; } del { text-decoration: line-through; } abbr[title], dfn[title] { border-bottom: 1px dotted #000; cursor: help; } table { border-collapse: collapse; border-spacing: 0; } hr { border: 0; border-top: 1px solid #cccccc; display: block; height: 1px; margin: 1em 0; padding: 0; } input, select { vertical-align: middle; } * { -webkit-text-size-adjust: none; } body { font-family: 'Kosugi Maru', sans-serif; -webkit-text-size-adjust: 100%; } a,p { color: #666666; }
*/
/* --------------  //Reset Styles  ----------------- */


/*----------------------------------------
  common
----------------------------------------*/
body {
    min-width: 100%;
    font-size: 16px;
    line-height: 1.5;
    color: #333333;
    font-family:'Kosugi Maru', sans-serif;
}
/* iPhone 5/SE 320, Galaxy Fold 280 */
@media only screen and (max-width:320px){
body {
    min-width: 100%;
    font-size: 14px;
    line-height: 1.5;
    color: #333333;
    font-family:'Kosugi Maru', sans-serif;
  }
}

/* Galaxy Fold 280 */
@media only screen and (max-width:280px){
body {
    min-width: 100%;
    font-size: 14px;
    line-height: 1.5;
    color: #333333;
    font-family:'Kosugi Maru', sans-serif;
  }
}




.inner {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


.img100 {
    width: 100%;
    height: auto;
}
.img80 {
    width: 80%;
    height: auto;
}


p {
    font-size: 14px;
    line-height: 1.5;
}
/* iPhone 5/SE 320, Galaxy Fold 280 */
@media only screen and (max-width:320px){
p {
    font-size: 14px;
    line-height: 1.5;
    font-family:'Kosugi Maru', sans-serif;
  }
}



p.center { text-align: left; }
p.center_m { text-align: center; }
p.right { text-align: right; }

p.black { color: #333333; }


.msg_pc { display: none; }
.msg_sp { display: block; }



/*----------------------------------------
----------------------------------------*/
.is-fixed {
    display: none;
}


/*----------------------------------------
  header
----------------------------------------*/
.global_navi {
  display: none;
}

header {
    position: relative;
    margin: 0px auto 0px;
    text-align: center;
    z-index: 20;
}


.bx-wrapper img {
    height: auto;
    width: 100%;
}



div#header {
    width: 100%;
    margin: 0px auto;
    padding: 0px 0px 0px 10px;
    position: fixed;
    top: 0;
/*
    background-color: #ffffff ;
    background-color: rgba(255, 255, 255, 0.8);
*/
    z-index: 88888;
    height: 65px;
}
div#header .header_L {
    float: left;
    width: 80%;
    text-align: center;
}
div#header .header_R {
    float: right;
    width: 20%;
    text-align: right;
}


div#header .header_L  .header-logo {
    padding-top: 1%;
    float: left;
    margin: 3px auto 0;
    width: 100%;
    text-align: left;
}
div#header .header_L .header-logo img.head_logo {
    width: 50%;
}
/*
div#header .header_L  .header-logo {
    float: left;
    margin: 3px auto 0;
    width: 100%;
    text-align: center;
}
div#header .header_L .header-logo img.head_logo {
    width: 95%;
}
*/



/*----------------------------------------
    ドロワーメニュー
----------------------------------------*/
.wrapper {
  height: 100%;
  overflow-x: hidden;
  position: relative;
}
.overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
/* ***
  background-color: rgba(0, 0, 0, 0.5);
*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  transition: opacity .5s;
}
.overlay.open {
  width: 100%;
  height: 100%;
  opacity: 1;
}
main {
  height: 100%;
  min-height: 100vh;
  padding: 0 0px;
  background-color: #eee;
  transition: all .5s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
main.open {
/* **
  transform: translateX(-250px);
*/
  transform: translateX(0px);
}



.menu-trigger {
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    position: absolute;
    z-index: 100;
    top: 5px;
    right: 5%;
    width: 15px;
    height: 15px;
}
/* Galaxy Fold */
/*
@media only screen and (max-width:280px){
.menu-trigger {
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    position: absolute;
    z-index: 100;
    top: 3px;
    right: 5%;
    width: 5px;
    height: 5px;
    }
.menu-trigger span {
    background-color: #ffffff;
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    height: 3px;
    transition: all .5s;
    top: 0px;
    width: 60%;
    margin: -5px 20% 0 20%;
    border-radius: 3px;
  }
}
*/

.menu-trigger span {
    background-color: #ffffff;
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    height: 4px;
    transition: all .5s;
    top: 8px;
    width: 60%;
    margin: 10px 20% 0 20%;
    border-radius: 3px;
}
.menu-trigger.active span {
    background-color: #ffffff;
}
.menu-trigger span:nth-of-type(1) {
    top: 0;
}
.menu-trigger.active span:nth-of-type(1) {
    transform: translateY(4px) rotate(-45deg);
}
.menu-trigger span:nth-of-type(2) {
    top: 8px;
}
.menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
}
.menu-trigger span:nth-of-type(3) {
    top: 16px;

}
.menu-trigger.active span:nth-of-type(3) {
    transform: translateY(-12px) rotate(45deg);
}
.menu-trigger p.txt {
    margin-top: 10px;
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 1px;
    text-align: center;
margin-left: -6px;
}







/* ********************* nav *************************** */
nav {
  width: 50%;
  height: 700%;
/*
  width: 50%;
  height: auto;
*/
  padding-top: 100px;
  background-color: rgb(153, 153, 153, 0.6);
  position: fixed;
  top: 0;
  left: 50%;
  right: 50%;

  z-index: 10;
  transform: translate(100%);
  transition: all .5s;
  overflow-y: scroll;
  padding-bottom: 50px;
  margin-bottom: 50px;
}
nav.open {
  transform: translateZ(0);
}


.nav_menu {
    font-size: 14px;
    letter-spacing: 0.5px;
    text-align: center;
}
.nav_menu a {
    display: block;
    padding: 10px 10px;
    color: #111111;
    line-height: 1.2;
    font-weight: normal;
}

/* *** */
.nav_menu a:hover {
    background-color: rgb(217, 217, 217, 0.6);
}
/* *** */


/* Galaxy Fold */
@media only screen and (max-width:280px){
.nav_menu {
    font-size: 12px;
    letter-spacing: 0.2px;
    text-align: center;
  }
}






.nav_menu .child {
    display: none;
    margin: 0 0 -1px;
    padding: 0;
}
.nav_menu .child .menu {
    background: #999999;
    color: #777777;
}
.nam_menu .child .menu:hover {
    background: #303030;
}
.nav_menu .child > li {
    padding: 0 0px;
}
.nav_menu .child > li:last-child {
    border-bottom: 0;
}

.switch .menu:after {
  position: absolute;
  top: 50%;
  left: 10%;
  right: 90%;
/*
  left: 30%;
  right: 70%;
*/
  margin-top: -1.4rem;
  content: '>';
/* ********
  font-size: 14px;
  font-weight: normal;
******** */
  font-size: 14px;
  font-weight: bold;

  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -moz-transition: all, 0.25s, linear;
  -o-transition: all, 0.25s, linear;
  -webkit-transition: all, 0.25s, linear;
  transition: all, 0.25s, linear;
}
.switch .menu.active:after {
  -moz-transform: translate(0, 50%);
  -ms-transform: translate(0, 50%);
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.child01 {
}
.child01 a {
    color: #111111;
}

.menu {
    display: block;
    position: relative;
    padding: 10px 10px;
}

.nav_menu .menu {
    color: #111111;
    font-weight: normal;
}
.nav_menu .menu:hover {
    background-color: rgb(191, 191, 191, 0.7);
    color: #ff0000;
    text-decoration: none;
    font-weight: normal;
}



/*--------------------------------------------------
 footer navigation 
--------------------------------------------------*/
/* foot-navi
---------------------------------------------------------------------------- */
.sp-navi-contact {
    display: inline;
    width: 100%;
    margin: 0;
    padding: 0;
    position: fixed;
    bottom: 0;
    letter-spacing: 0px;
    z-index: 3000;
    background: #999999;
    border-top: solid 1px #ffffff;
}

ul.sp-panel {
    width: 100%;
}

ul.sp-panel li {
    width: 19.7%;
/*
    width: 24.5%;
    width: 19.7%;
    height: 50px;
*/
    float: left;
    text-align: center;
    font-size: 10px;
    letter-spacing: 0.5px;
    display: block;
    padding-top: 10px;
    padding-bottom: 5px;
    line-height: 1.8;
    color: #ffffff;
}
ul.sp-panel li.sp_ln {
    border-right: solid 1px #ffffff;
}
ul.sp-panel li.sp_ln a {
    color: #ffffff;
    text-decoration: none;
}
ul.sp-panel li.sp_ln_e {
}
ul.sp-panel li.sp_ln_e a {
    color: #ffffff;
    text-decoration: none;
}


/*----------------------------------------
    promise
----------------------------------------*/
p.box_msg {
    position: absolute;
    top: 75%;
    left: 3%;
    color: #ffffff;
    text-shadow: 0 0 10px #000000;
    font-size: 20px;
    letter-spacing: 0.5px;
    z-index: 200;
    width: 100%;
}
/*
p.box_msg {
    position: absolute;
    top: 85%;
    left: 0%;
    font-size: 24px;
    letter-spacing: 0.5px;
    z-index: 200;
    text-align: center;
    width: 100%;
}
*/

/* iPhone 5/SE 320 */
@media only screen and (max-width:320px){
p.box_msg {
    position: absolute;
    top: 75%;
    left: 1.5%;
    color: #ffffff;
    text-shadow: 0 0 10px #000000;
    font-size: 16px;
    letter-spacing: 0.5px;
    z-index: 200;
  }
}

/* Galaxy Fold 280 */
@media only screen and (max-width:280px){
p.box_msg {
    position: absolute;
    top: 75%;
    left: 1.5%;
    color: #ffffff;
    text-shadow: 0 0 10px #000000;
    font-size: 16px;
    letter-spacing: 0.5px;
    z-index: 200;
    width: 100%;
  }
}





/*----------------------------------------
    section
----------------------------------------*/
.section .inner {
    padding-left: 10px;
    padding-right: 10px;
    margin: 0px auto;
}


/*----------------------------------------
    title common
----------------------------------------*/
.top_title {
    text-align: center;
    font-size: 20px;
}
.top_title_L {
    text-align: center;
    font-size: 20px;
}



.top_title_line {
    margin: 0;             /* デフォルトCSS打ち消し */
    font-size: 20px;       /* 文字サイズ指定 */
    position: relative;    /* 位置調整 */
    font-weight: normal;   /* 文字の太さ調整 */
    display: inline-block; /* インラインブロックにする */
    background-color: #fff; /* 背景色指定 */
    margin-left: 20%;       /* 周りの余白指定 */
    padding: 0 10px;        /* 余白指定 */
    color: #f29838;
    text-align: center;
    font-weight: bold;
}
.top_title_line-wrap {
    position: relative;     /* 位置調整 */
    margin-bottom:15px;     /* 周りの余白指定 */
}
.top_title_line-wrap:before {
    content: '';           /* 空白の要素を作る */
    background-color: #f29838; /* 背景色指定 */
    display: block;        /* ブロック要素にする */
    position  absolute;    /* 位置調整 */
    left: 0;               /* 位置調整 */
    width: 100%;           /* 幅指定 */
    height: 2px;           /* 高さ指定 */
    top: 14px;                 /* 位置調整 */
    bottom: 0;             /* 位置調整 */
    margin: auto;          /* 位置調整 */
}


/* iPhone 5/SE 320 */
@media only screen and (max-width:320px){
.top_title {
    text-align: center;
    font-size: 18px;
  }
.top_title_L {
    text-align: center;
    font-size: 18px;
  }


.top_title_line {
    margin: 0;             /* デフォルトCSS打ち消し */
    font-size: 18px;       /* 文字サイズ指定 */
    position: relative;    /* 位置調整 */
    font-weight: normal;   /* 文字の太さ調整 */
    display: inline-block; /* インラインブロックにする */
    background-color: #fff; /* 背景色指定 */
    margin-left: 18%;       /* 周りの余白指定 */
    padding: 0 10px;        /* 余白指定 */
    color: #f29838;
    text-align: center;
    font-weight: bold;
  }
.top_title_line-wrap {
    position: relative;     /* 位置調整 */
    margin-bottom:15px;     /* 周りの余白指定 */
  }
.top_title_line-wrap:before {
    content: '';           /* 空白の要素を作る */
    background-color: #f29838; /* 背景色指定 */
    display: block;        /* ブロック要素にする */
    position: absolute;    /* 位置調整 */
    left: 0;               /* 位置調整 */
    width: 100%;           /* 幅指定 */
    height: 2px;           /* 高さ指定 */
    top: 14px;                 /* 位置調整 */
    bottom: 0;             /* 位置調整 */
    margin: auto;          /* 位置調整 */
  }
}

/* Galaxy Fold 280 */
@media only screen and (max-width:280px){
.top_title {
    text-align: center;
    font-size: 16px;
  }
.top_title_L {
    text-align: center;
    font-size: 16px;
  }


.top_title_line {
    margin: 0;             /* デフォルトCSS打ち消し */
    font-size: 16px;       /* 文字サイズ指定 */
    position: relative;    /* 位置調整 */
    font-weight: normal;   /* 文字の太さ調整 */
    display: inline-block; /* インラインブロックにする */
    background-color: #fff; /* 背景色指定 */
    margin-left: 19%;       /* 周りの余白指定 */
    padding: 0 10px;        /* 余白指定 */
    color: #f29838;
    text-align: center;
    font-weight: bold;
  }
.top_title_line-wrap {
    position: relative;     /* 位置調整 */
    margin-bottom: 15px;     /* 周りの余白指定 */
  }
.top_title_line-wrap:before {
    content: '';           /* 空白の要素を作る */
    background-color: #f29838; /* 背景色指定 */
    display: block;        /* ブロック要素にする */
    position: absolute;    /* 位置調整 */
    left: 0;               /* 位置調整 */
    width: 100%;           /* 幅指定 */
    height: 2px;           /* 高さ指定 */
    top: 14px;                 /* 位置調整 */
    bottom: 0;             /* 位置調整 */
    margin: auto;          /* 位置調整 */
  }
}




.top_ttl {
    position: relative;
    font-size: 26px;
    color: #999999;
    letter-spacing: 2px;
    font-family: 'Novecento sans', 'Heebo', sans-serif;
}
.top_ttl:first-letter {
    font-size: 36px;
}



/*----------------------------------------
    sec01
----------------------------------------*/
.top_cont {
    max-width: 100%;
    width: 100%;
    margin: 0 0;
}


#sec01 {
    width: 100%;
    margin: 0px auto;
}

ul.ul01 {
    width: 100%;
}
ul.ul01 li.sec01_C {
    float: left;
    width: 96%;
    height: auto;
    padding: 15% 2%;
}
ul.ul01 li.sec01_R {
    float: left;
    width: 96%;
    height: auto;
    padding: 0px 2% 0px 2%;
}



.t_info02 {
    color: #666666;
    padding-top: 10px;
}
.t_info02 img {
    width: 30px;
    margin-bottom: 8px;
    margin-right: 3px;
}

.t_info04 {
    color: #666666;
    padding-top: 40px;
    font-size: 18px;
}
.t_info04 img {
    width: 30px;
    margin-bottom: 8px;
    margin-right: 3px;
    margin-top: 5px;
}
.s_info04 {
    color: #666666;
    font-size: 30px;
    letter-spacing: 1.5px;
    font-weight: bold;
}

.s_info02 {
    color: #323480;
    font-size: 30px;
    letter-spacing: 1.5px;
    font-weight: bold;
}
.a_info02 {
    background-color: #999999;
    color: #ffffff;
    font-size: 13px;
    padding: 10px;
    border-radius: 20px;
    letter-spacing: 0px;
}

.t_info03 {
    float: left;
    width: 100%;
    color: #666666;
    padding: 10px 0 0px 0;
    line-height: 1.5;
}


/* Galaxy Fold 280 */
@media only screen and (max-width:280px){
.t_info02 img {
    width: 25px;
    margin-bottom: 8px;
    margin-right: 3px;
  }
.s_info02 {
    font-size: 24px;
    letter-spacing: 1.5px;
    font-weight: bold;
  }
.a_info02 {
    background-color: #999999;
    color: #ffffff;
    font-size: 13px;
    padding: 10px;
    border-radius: 20px;
    letter-spacing: 0px;
  }
}



.info01_02 {
    float: left;
    width: 100%;
}
table.timetbl {
    width: 100%;
    border-collapse: separate;
}
table.timetbl th {
    text-align: center;
    vertical-align: middle;
    width: 8%;
    padding: 6px 0px;
    font-size: 14px;
}
table.timetbl th.tm {
    width: 22%;
}
table.timetbl td {
    text-align: center;
    vertical-align: middle;
    padding: 4px 0px;
    width: 3%;
    font-size: 18px;
}
table.timetbl td.end {
    text-align: center;
    vertical-align: middle;
    width: 11%;
}
table.timetbl td.tm {
    text-align: center;
    vertical-align: middle;
    letter-spacing: 0px;
}



.foot_time {
    padding-bottom: 20px;;
}
.foot_time table.timetbl td {
    font-size: 16px;
}
.foot_time table.timetbl td.tm {
    font-size: 14px;
}
/*
.foot_time table.timetbl th {
    color: #ffffff;
}
.foot_time table.timetbl td {
    color: #ffffff;
}

.foot_time .top_off {
    color: #ffffff;
}
.foot_time .time_msg {
    color: #ffffff;
}
*/




/*----------------------------------------
  お知らせ
----------------------------------------*/
#sec_news {
    width: 100%;
    margin: 40px auto 60px;
}
.blog_box {
    text-align: center;
    margin: 0 0%;
    padding-bottom: 10px;
}

.blog01_01 {
    margin: 20px 0px 0px 0px;
}
.blog01_02 {
    margin: 10px 10px;
}
.newsarea {
    margin: 0px 0px 0px 0px;
}

.blog_area {
    margin-top: 0px;
    width: 100%;
    text-align: left;
    padding-bottom: 5px;
/*
    border-bottom: dashed 1px #999999;

    font-size: 14px;
*/
    font-size: 18px;
    overflow-y: scroll;
    height: 350px;
}
/* iPhone 5/SE 320, Galaxy Fold 280 */
@media only screen and (max-width:320px){
.blog_area {
    margin-top: 0px;
    width: 100%;
    text-align: left;
    padding-bottom: 5px;
/*
    border-bottom: dashed 1px #999999;
*/
    font-size: 14px;
    overflow-y: scroll;
    height: 350px;
  }
}



.blog_date {
    margin-bottom: 5px;
    padding-left: 0px;
    padding-top: 5px;
/*
    border-bottom: dashed 1px #999999;
*/
}
.blog_item {
    margin-left: 10px;
}
.css-br::after {
    content: "\A" ;
    white-space: pre;
}
.css-br-pc::after {
}

/* ---------------------------------------- */



/*----------------------------------------
    sec02
----------------------------------------*/
#sec24 { display: none; }
#sec02 {
    width: 100%;
    margin: 0px auto 60px;
    text-align: center;
    display: block;
}

.ul02 {
    width: 100%;
}
.ul02 li {
    float: left;
    text-align: center;
    width: 100%;
    display: inline-block;
    vertical-align: middle;
}

.ul02 li.trim_boxL {
    width: 100%;
    padding: 60px 0;
    margin: 0px auto;
    background-image: url(../images/top/bg01_01.png);
    background-size: 100% 100%;
    background-repeat:  no-repeat;
    background-color: #eaeaea;
    display: block;
}
.rec_title02 {
    text-align: center;
    font-size: 26px;
    color: #ffffff;
    font-weight: bold;
    letter-spacing: 2px;
    padding-bottom: 30px;
}
.ul02 li.trim_boxL img.img02_01 {
    height: 35px;
    margin-top: 80px;
}
.ul02 li.trim_boxL img.img02_02 {
    width: 90%;
    margin: 0 5%;
}
.ul02 li.trim_boxL img.img02_03 {
    width: 60px;
    margin-left: 5px;
    margin-bottom: 7px;
}
.trim_boxL .msg02 {
    padding: 15px 0px;
    color: #f00267;
}


.ul02 li.trim_boxR {
    width: 100%;
    padding: 60px 0 60px 0;
    margin: 0px auto;
    background-image: url(../images/top/bg01_02.png);
    background-size: 100% 100%;
    background-repeat:  no-repeat;
    background-color: #eaeaea;
    display: block;
}
.ul02 li.trim_boxR img.img02_01 {
    height: 35px;
    margin-top: 20px;
}
.ul02 li.trim_boxR img.img02_02 {
    width: 90%;
    margin: 0 5%;
}
.ul02 li.trim_boxR img.img02_03 {
    width: 60px;
    margin-left: 5px;
    margin-bottom: 7px;
}
.trim_boxR .msg02 {
    padding: 15px 0px;
    color: #f00267;
}



/*----------------------------------------
    sec001
----------------------------------------*/
#sec001 {
    padding: 0px 0px 60px;
    height: auto;
    margin: 0 auto;
    width: 100%;
    background-color: #ffffff;
}

.msg001 {
    text-align: center;
    margin: 20px auto 0px;
    width: 100%;
}
.msg001 p {
    text-align: left;
}


.cont02 {
    margin: 20px 0% 10px;
    width: 100%;
}
dl.genelist {
    float: left;
    margin-left: 10px;
    margin-right: 10px;
}
dl.genelist dd {
    float: left;
    margin: 10px 7px 10px 7px;
}
dl.genelist dd a {
    border: solid 1px #999999;
    border-radius: 15px;
    padding: 5px 15px;
    font-size: 14px;
}


.title001 {
    text-align: center;
    font-size: 26px;
}
.title001_eng {
    text-align: center;
    font-size: 16px;
    letter-spacing: 0.5px;
    font-family: 'Heebo', sans-serif;
    color: #999999;
}
.title_rec {
    text-align: center;
    font-size: 26px;
    letter-spacing: 0px;
    font-family: 'Heebo', sans-serif;
}


/* Galaxy Fold 280 */
@media only screen and (max-width:280px){
.title001 {
    text-align: center;
    font-size: 20px;
  }
.title001_eng {
    text-align: center;
    font-size: 14px;
    letter-spacing: 0.5px;
    font-family: 'Heebo', sans-serif;
    color: #999999;
  }
}
.title_rec {
    text-align: center;
    font-size: 20px;
    letter-spacing: 0px;
    font-family: 'Heebo', sans-serif;
  }


#line000 {
    background:repeating-linear-gradient(135deg, #999999 0, #999999 3px, white 3px, white 6px);
    height: 6px;
    margin: 0px 2% 30px;
    width: 96%;
}
#line001 {
    background:repeating-linear-gradient(135deg, #999999 0, #999999 3px, white 3px, white 6px);
    height: 6px;
    margin: 20px auto 30px;
    width: 100%;
}



/*----------------------------------------
    sec002
----------------------------------------*/
#sec002 {
    padding: 20px 0 60px 0;
    height: auto;
    margin: 0 auto;
    width: 100%;
}


.side002_L {
    float: left;
    width: 100%;
}
.side002_R {
    float: left;
    text-align: left;
    padding-left: 0%;
    padding-top: 30px;
    width: 100%;
}

.side002_L img.img001 {
    width: 96%;
    margin: 0 2%; 30px;
}
.ttl002img {
    width: 35px;
    margin-bottom: 3px;
    padding-right: 10px;
}

/* Galaxy Fold 280 */
@media only screen and (max-width:280px){
.ttl002img {
    width: 30px;
    margin-bottom: 0px;
    padding-right: 7px;
  }
}


.listarea002 {
    margin: 20px 0px 0px 0px;
}
ul.list002 li a {
    font-size: 16px;
}
ul.list002 li span.more002 {
    float: right;
    font-size: 14px;
}
ul.list002 li span.more002 img {
    width: 12px;
    margin-bottom: 5px;
    padding-left: 7px;
}

/* Galaxy Fold 280 */
@media only screen and (max-width:280px){
ul.list002 li {
    margin: 28px 0px;
    padding: 18px 20px 34px;
    letter-spacing: 1px;
  }
}




/*----------------------------------------
    sec_case
----------------------------------------*/
#sec_case {
    width: 100%;
    margin: 80px auto;
    background-color: #ffffff;
}
.in_case .caseL {
    float: left;
    width: 100%;
    padding-right: 9%;
}
.in_case .caseR {
    float: right;
    width: 100%;
    text-align: left;
}

.in_case .caseL img {
    width: 100%;
    margin-bottom: 20px;
}
.title_case {
    text-align: left;
    color: #323480;
    font-size: 36px;
}
.case_box {
    padding: 30px 0;
}

.case_ref a {
    color: #323480;
    font-size: 18px;
}
.dtl_case {
    float: right;
    font-size: 16px;
}
.dtl_case img {
    width: 14px;
    margin-bottom: 6.5px;
    padding-left: 7px;
}

dtl_case:hover {
    opacity: 0.7;
}




/*----------------------------------------
    sec60
----------------------------------------*/
#sec60 {
    width: 100%;
    margin: 60px auto;
    background-color: #ffffff;
}
.inner60 {
    margin: 0 auto;
    max-width: 100%;
}

ul.ul60 {
    width: 100%;
}
ul.ul60 li {
    width: 50%;
    float: left;
}
ul.ul60 li .bnr60 {
    width: 94%;
    background-color: #d2d0d0;
    text-align: center;
    margin: 10px 3%;
    padding: 40px 0;
    display: inline-block;
    vertical-align: middle;
    outline: 1px solid rgb(255, 255, 255);
    outline-offset: -10px;
}
ul.ul60 li .bnr61 {
    width: 94%;
    background-color: #e5e1e1;
    text-align: center;
    margin: 10px 3%;
    padding: 40px 0;
    display: inline-block;
    vertical-align: middle;
    outline: 1px solid rgb(255, 255, 255);
    outline-offset: -10px;
}

.img_ya60 {
    width: 10px;
    margin-bottom: 6px;
}

/* Galaxy Fold 280 */
@media only screen and (max-width:280px){
.img60 {
    width: 85px;
  }
}



/*----------------------------------------
    sec006
----------------------------------------*/
#sec006 {
    padding: 0px 0 0px;
    height: auto;
    margin: 0px auto;
    width: 100%;
}

.line006 {
    text-align: center;
    margin: 0 5%;
    width: 90%;
}
.line006 img {
    width: 100%;
}

.msg006 {
    text-align: center;
    margin: 20px 0px 0px;
}
.msg006 p {
    text-align: left;
    font-size: 14px;
    letter-spacing: 1px;
}

.bnr006area {
    margin: 40px auto 0px;
}
ul.list006 {
    width: 100%;
}
ul.list006 li {
    margin: 0 0% 30px 0%;
    font-size: 14px;
    line-height: 1.5;
    float: left;
    letter-spacing: 1px;
    width: 100%;
}
ul.list006 li .bnr006 {
    width: 100%;
}
ul.list006 li .bnr006:hover {
    opacity: 0.7;
}

ul.list006 li .bnr006 .bnr006_L {
    float: left;
    padding-right: 0px;
    width: 18%;
    margin-left: 8%;
    margin-right: 4%;
}
ul.list006 li .bnr006 .bnr006_R {
    float: right;
    width: 64%;
    margin-right: 6%;
}

ul.list006 li .text006_1 {
    padding-top: 5px;
}
ul.list006 li .text006_2 {
    padding-top: 8px;
}

ul.list006 li img.img_icon {
    width: 60px;
}

ul.list006 li .more006 {
    float: right;
}
ul.list006 li .more006 .hyp006 {
    font-size: 18px;
}

@media only screen and (max-width:280px){
ul.list006 li .bnr006 .bnr006_L {
    float: left;
    padding-right: 0px;
    width: 18%;
    margin-left: 2%;
    margin-right: 2%;
  }
ul.list006 li .bnr006 .bnr006_R {
    float: right;
    width: 70%;
    margin-right: 2%;
  }
}



/*----------------------------------------
    sec80
----------------------------------------*/
#sec80 {
    width: 100%;
    margin: 80px auto 0px;
}
.inner80 {
    margin: 0 auto;
    width: 100%;
}



ul.ul80 {
    width: 100%;
}
ul.ul80 li {
    width: 50%;
    float: left;
}
ul.ul80 li .bnr81 {
    width: 100%;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
}


.bnr81 {
    position: relative;
}
.bnr81_cap {
    position: absolute;
    left: 0;
    top: 25%;
    width: 100%;
     text-align: center;
    font-size: 18px;
}
.bnr81 img { 
    width: 100%;
    height: auto;
}
.md80_e {
    color: #ffffff;
    font-size: 18px;
    letter-spacing: 0.5px;
    line-height: 1.2;
    font-family: 'Heebo', sans-serif;
}
.md80_j {
    color: #ffffff;
    font-size: 15px;
    padding: 5px 0;
}

.md80_e2 {
    color: #666666;
    font-size: 18px;
    letter-spacing: 0.5px;
    line-height: 1.2;
    font-family: 'Heebo', sans-serif;
}
.md80_j2 {
    color: #666666;
    font-size: 15px;
    padding: 5px 0;
}


.md83_e {
    color: #ffffff;
    font-size: 18px;
    letter-spacing: 0.5px;
    line-height: 1.2;
    font-family: 'Heebo', sans-serif;
}
.md83_j {
    color: #ffffff;
    font-size: 15px;
    padding: 5px 0;
}




@media only screen and (max-width:280px){
.bnr81_cap {
    position: absolute;
    left: 0;
    top: 10%;
    width: 100%;
    text-align: center;
  }
.md80_e {
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 0.5px;
    line-height: 1.2;
    font-family: 'Heebo', sans-serif;
  }
.md80_j {
    color: #ffffff;
    font-size: 14px;
    padding: 5px 0;
  }

.md80_e2 {
    color: #666666;
    font-size: 16px;
    letter-spacing: 0.5px;
    line-height: 1.2;
    font-family: 'Heebo', sans-serif;
  }
.md80_j2 {
    color: #666666;
    font-size: 14px;
    padding: 5px 0;
  }
}







/*----------------------------------------
    #address
----------------------------------------*/
#address .clinic_map {
    margin: 0px auto;
    background-color: #ffffff;}
.map_container {
    overflow: hidden;
    height: 450px;
    width:100%;
}
.map_container_next {
    overflow: hidden;
    height: 500px;
    width:100%;
}


/*----------------------------------------
  footer
----------------------------------------*/
footer {
    margin: 0px auto;
    text-align: center;
    padding: 30px 0 65px 0;
    background: #ffffff;
}

.foot_banner {
    text-align: center;
    margin-top: 20px;
}
.foot_banner a {
    color: #303030;
    margin: 0 10px;
}
.foot_banner a img {
    height: auto;
    width: 235px;
    margin-top: 20px;
}

.foot_info {
    width: 100%;
    margin: -30px 0 0px;
    text-align: center;
    float: left;
}


.foot_time {
    float: left;
    margin: 5px 4% 0 4%;
    width: 92%;
}

.f_med_info {
    padding: 20px 0 0px 0;
}
.f_med_info p {
    font-size: 14px;
    color: #f29838;
}


.next_time .top_off {
    color: #f29838;
    font-weight: bold;
}


/* ----- footR ----- */
.copyright {
    font-size: 11px;
    padding-top: 30px;
}



/*
@media screen and (max-width: 480px) {
    #slogan {
        width: 100%;
        margin: 0px auto;
        background-color: #ff99cc;
        padding: 70px 0;
    }
    #slogan p {
        display: inline-block;
        color: #ffffff;
        line-height: 2;
        font-size: 20px;
    }
    .t_info01 {
        font-size: 24px;
        font-weight: bold;
        letter-spacing: 2px;
    }
    .t_info01 img {
        width: 20px;
        margin-bottom: 8px;
        padding-right: 5px;
    }
    .t_info02 {
        color: #eb0265;
        font-size: 10px;
        letter-spacing: 0px;
        border-bottom: solid 1px #eb0265;
    }
    .t_info03 {
        font-size: 14px;
        padding: 14px 0 10px 0;
        line-height: 1.3;
    }
    .t_info04 {
        font-size: 14px;
        padding-bottom: 15px;
    }
        table.timetbl td.tm {
        text-align: center;
        vertical-align: middle;
        letter-spacing: 0px;
        font-size: 14px;
    }
        #sec03 {
        width: 100%;
        margin: 0px auto;
        padding: 60px 0;
        background-color: #ef487b;
    }
        .wc_area img {
        width: 45px;
        padding: 0 10px;
        margin-bottom: 10px;
    }
    .wc_title {
        font-size: 30px;
        color: #ffffff;
    }
    .img03_cmnt {
        margin: 40px auto;
        text-align: center;
        color: #ffffff;
    }
        #sec04 {
        width: 100%;
        padding: 80px 0 80px;
        margin: 0px auto;
        text-align: center;
    } 
        .ul04 li .md04 {
        border-left: solid 7px #fecd03;
        text-align: left;
        padding-left: 7px;
        line-height: 1.2;
        font-size: 18px;
    }
        .msg004 .link004 {
        color: #fbef00;
        font-size: 16px;
    }
        .map_container {
        overflow: hidden;
        height: 450px;
        width:100%;
    }
        footer {
        margin: 0px auto;
        padding: 20px 0px 30px 0px;
        background-color: #f1f1ef;
    }
        .f_info01 {
        font-size: 20px;
        border-bottom: solid 1px #303030;
        margin: 0 15px;
    }
    .f_info03 {
        font-size: 24px;
    }
    .f_info04 {
        font-size: 12px;
    }
    .copyright {
        font-size: 12px;
        padding-top: 60px;
    }
        .foot_menu a {
        color: #303030;
        margin: 0 0px;
        font-size: 14px;
        line-height: 2.5;
    }
    .foot_sbmenu p {
        font-size: 14px;
    }
    .foot_sbmenu a {
        color: #303030;
        margin: 0 0px;
        font-size: 14px;
    }
        .foot_banner a img {
        height: 45px;
    }
        .map_container {
        overflow: hidden;
        height: 480px;
        width:100%;
    } 
}
*/





/*----------------------------------------
  scroll
----------------------------------------*/
.scroll {
    display: none;
}



/*----------------------------------------
    nextpage --- NEXT PAGE
----------------------------------------*/
#nextpage {
    margin-top: 65px;
    padding-top: 0px;
    padding-bottom: 40px;
}


/*----------------------------------------
    title common
----------------------------------------*/
.nexthead {
    position: relative;
    background-color: #eee6d5;
    padding: 30px 0 0;
    height: 70px;
    width: 100%;
}
.nexthead .nxtitle_sp {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}
.nexthead .nxtitle_sp .nexttitle {
    font-size: 22px;
    letter-spacing: 1px;
    color: #666666;
    text-align: center;
    line-height: 1;
    padding-left: 10px;
    padding-right: 10px;
}
.nexthead .nxtitle_sp .nexttitle_j {
    font-size: 22px;
    letter-spacing: 1px;
    color: #666666;
    text-align: center;
    line-height: 2;
    padding-left: 10px;
    padding-right: 10px;
}
.nexthead .nxtitle_sp .nexttitle_j2 {
    font-size: 20px;
    letter-spacing: 0.5px;
    color: #666666;
    text-align: center;
    line-height: 2;
    padding-left: 5px;
    padding-right: 5px;
}
.nexthead .nxtitle_sp .nx_eng_title {
    font-family: 'Novecento sans', 'Heebo', sans-serif;
    padding-left: 0px;
    color: #999999;
    font-size: 12px;
}
.nexthead .nxtitle_sp .nx_eng_title:first-letter {
    font-size: 16px;
}


.nexthead .nxtitle_sp div.diagonal_line {
  width: 40px;
  height: 40px;
  background-image:linear-gradient(
    135deg,
    transparent 51%,
    #ffffff 51%,
    #ffffff 53%,
    transparent 53%
  );
}
/*
  width: 100px;
  height: 100px;
  background-image:linear-gradient(
    45deg,
    transparent 51%,
    black 51%,
    black 52%,
    transparent 52%
*/



.next_cont {
    padding-top: 55px;
}
.next_cont p {
/*
    color: #666666;
    line-height: 2;
*/
}


.nextsubtitle {
    border-left: 6px solid #323480;
    margin-bottom: 40px;
    padding: 1px 0;
}
.nextsubtitle p {
    padding-left: 6px;
    font-size: 24px;
    line-height: 1.3em;
/*
    padding-left: 6px;
    font-size: 22px;
    line-height: 1.2;
*/
}

.nextbox {
    padding-left: 0px;
}

.nextbox .nextitem {
    font-size: 18px;
    color: #caae72;
    padding-bottom: 10px;
}



.pc_bot {
    padding-bottom: 250px;
}



/*----------------------------------------
    共通リスト
----------------------------------------*/
ol.numlist {
    list-style-type: decimal;
    list-style-position: outside;
    margin-left: 30px;
}

ul.kmlist {
    padding-left: 20px;
    list-style: url(../images/common/kome.png) outside;
}



/* ==============================================
    table横スクロール
============================================== */
.scroll01 table{
    width:100%;
}
.scroll01{
    overflow: auto;          /*tableをスクロールさせる*/
    white-space: nowrap;     /*tableのセル内にある文字の折り返しを禁止*/
}
.scroll01::-webkit-scrollbar{    /*tableにスクロールバーを追加*/
    height: 5px;
}
.scroll01::-webkit-scrollbar-track{    /*tableにスクロールバーを追加*/
    background: #F1F1F1;
}
.scroll01::-webkit-scrollbar-thumb {    /*tableにスクロールバーを追加*/
    background: #BCBCBC;
}
/* ============================================== */



/*----------------------------------------
    当院について
----------------------------------------*/
img.conceptimg {
    padding: 0px 10px 0px 0px;
    width: 150px;
}


/*----------------------------------------
  施設
----------------------------------------*/
table.innai, table.innai tbody, table.innai tr, table.innai th, table.innai td {
    display: block;
    max-width: 100%;
}
table.innai td {
    padding: 10px 25px 5px 0px;
}
table.innai td.right {
    padding: 10px 25px 5px 0px;
}
table.innai td.left {
    padding: 10px 25px 5px 0px;
}
table.innai img.imgW {
    width: 100%;
}
table.innai img.imgH {
    width: 66%;
}


/*----------------------------------------
  医療機器
----------------------------------------*/
table.kiki, table.kiki tbody, table.kiki tr, table.kiki th, table.kiki td {
    display: block;
    max-width: 100%;
}
table.kiki td.kiL {
    padding: 10px 5px 0px 5px;
    text-align: center;
    width: 97%;
}
table.kiki td.kiL img {
    padding-bottom: 0px;
}
table.kiki td.kiL_R {
    padding: 10px 5px 0px 5px;
    text-align: center;
    width: 97%;
}
table.kiki td.kiR {
    padding: 6px 5px 30px 5px;
    vertical-align: top;
    width: 97%;
}
table.kiki td.kiR p.kinm {
    font-size: 16px;
}
table.kiki td.kiR p.ki {
    font-size: 14px;
}
table.kiki img.imgW {
    width: 100%;
}
table.kiki img.imgH {
    width: 72%;
    padding: 10px 0px;
}



/*----------------------------------------
    診療案内
----------------------------------------*/
.next_time {
    width: 100%;
}
.next_time table.timetbl {
    width: 100%;
    border: none;
}
.next_time table.timetbl th {
    text-align: center;
    vertical-align: middle;
    width: 8%;
    padding: 7px 0px;
    border: none;
    font-size: 15px;
}
.next_time table.timetbl th.tm {
    width: 22%;
}
.next_time table.timetbl td {
    text-align: center;
    vertical-align: middle;
    padding: 4px 0px;
    width: 3%;
    border: none;
    font-size: 14px;
}
.next_time table.timetbl td.end {
    text-align: center;
    vertical-align: middle;
    width: 11%;
}
.next_time table.timetbl td.tm {
    text-align: center;
    vertical-align: middle;
    font-size: 15px;
}

.dl_msg_med {
    padding-bottom: 10px;
}
.dl_msg_med .dl_msg_L {
   float: left;
   width: 100%;
}
.dl_msg_med .dl_msg_R {
   float: left;
   width: 100%;
   text-align: left;
}
.dl_msg_med .dl_msg_R .dl_msg_text {
   font-size: 11px;
   color: #FF0033;
}

.med_park_img {
   width: 100%;
}

.next_card img {
    margin: 10px 3px 0px 3px;
}

.next_hoken img {
    margin: 10px 5px 5px 5px;
}

.support_img {
   width: 100%;
   padding-bottom: 40px;
}


/*----------------------------------------
    スタッフ紹介
----------------------------------------*/
.staff_area {
    width: 100%;
}

.staff_area .stf_img_top {
    float: right;
    width: 100%;
    padding: 10px 0px 10px 0px;;
    text-align: center;
    margin-top: 0px;
}
.staff_area .stf_img {
    float: right;
    width: 100%;
    padding: 10px 0px 10px 0px;;
    text-align: center;
    margin-top: 0px;
}
.staff_area img {
    width: 70%;
    margin-bottom: 0px;
}
.stf_name {
    text-align: center;
    line-height: 1.5;
}
.stf_name p {
    padding-bottom: 7px;
}
.yomi {
    font-size: 14px;
    margin-left: 0px;
}


.nm_line {
    font-size: 18px;
    border-bottom: 1px solid #999999;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
}
.nm_line::before,
.nm_line::after{
    display: none;
}
.nm_line:before{
    display: none;
}
.nm_line:after{
    display: none;
}

.staff_area .stf_text {
    float: left;
    width: 100%;
}
.stf_record {
    padding-top: 15px;
}
.stf_cmnt {
    padding-top: 15px;
}
.stf_title {
    background-color: #999999;
    color: #ffffff;
    width: 160px;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 5px;
    padding: 3px 0;
    font-size: 16px;
}


/*----------------------------------------
    診療料金
----------------------------------------*/
table.rate {
    border-collapse: collapse;
    margin-top: 5px;
    margin-bottom: 40px;
    border-top: 2px solid #999999;
    border-bottom: 1px solid #999999;
    width: 100%;
}
table.rate td {
    padding: 4px 5px 4px 10px;
    border-bottom: 1px dotted #999999;
}
table.rate td.rattl {
    border-bottom: 1px solid #999999;
    color: #fff;
}
table.rate td.item {
    width: 40%;
}
table.rate td.price {
    text-align: right;
    width: 25%;
}
table.rate td.price2 {
    text-align: right;
    width: 35%;
}

table.rate td.itemA {
    width: 70%;
}
table.rate td.priceA {
    text-align: right;
    width: 30%;
}
table.rate td.price2A {
    text-align: right;
    width: 0%;
}

table.rate td.itemB {
    width: 60%;
}
table.rate td.priceB {
    text-align: right;
    width: 40%;
}
table.rate td.price2B {
    text-align: right;
    width: 0%;
}



/*----------------------------------------
    アクセス
----------------------------------------*/
.img_accs {
    margin: 0 1%;
    width: 98%;
}


/*----------------------------------------
    トリミング
----------------------------------------*/
.trim_txt {
    padding: 20px 20px;
    color: #fff;
    border-radius: 15px;
    background: radial-gradient(rgb(156, 196, 246), rgb(222, 234, 251));
}
.trim_img {
    text-align: center;
    padding-top: 30px;
}
.trim_img img {
    margin: 0 2%;
    width: 46%;
}
.trim_img img.trimimg01 {
    margin: 0 2%;
    width: 96%;
}

.trim_frm {
    padding: 20px 20px;
    color: #fff;
    border-radius: 15px;
    border: 6px solid #deebf7;
}

.trim_frm_bub {
    margin-top: 50px;
    padding: 30px 20px 20px 20px;
    color: #fff;
    border-radius: 15px;
    border: 6px solid #deebf7;
}

ul.cutstyle {
    width: 100%;
}
ul.cutstyle li {
    float: left;
    width: 50%;
}
ul.cutstyle li img {
    float: left;
    width: 90%;
    padding: 10px 5%;
}


table.trim p {
    font-size: 13px;
}
table.trim td p {
    padding: 2px 3px 1px;
}

table.trim02 p {
    font-size: 13px;
}
table.trim02 td p {
    padding: 2px 3px 1px;
}


/*----------------------------------------
    ホテル
----------------------------------------*/
table.hotel {
    width: 100%;
}


table.hotel_discount {
    width: 100%;
}
table.hotel_discount td {
    width: 100%;
    float: left;
}
table.hotel_discount td.dis01 {
    padding-left: 15px;
}


table.hotel_sign {
    width: 100%;
}
table.hotel_sign td {
    width: 100%;
    padding: 0;
}
table.hotel_sign td.hotel_sign_l {
    width: 50%;
    padding: 0 25%;
    float: left;
}
table.hotel_sign td.hotel_sign_l img {
    width: 100%;
    margin-bottom: 30px;
}
table.hotel_sign td.hotel_sign_r {
    width: 100%;
    padding: 0;
    float: left;
    text-align: center;
}
table.hotel_sign td.hotel_sign_r img.sign {
    width: 90%;
    margin: 0 5%;
}


.hotel01 {
    width: 100%;
    padding-left: 0%;
}
.hotel01 .hotel01_L {
    float: left;
    width: 100%;
    text-align: center;
}
.hotel01 .hotel01_R {
    float: left;
    width: 100%;
    text-align: center;
    padding-top: 30px;
}

.hotel01 .hotel01_L img {
    width: 90%;
    margin: 0 5%;
}


.hotel01 .hotel01_L .hotel01_cmnt {
    padding: 0px 0 5px 0;
}

.hotel01 .hotel01_R .hotel01_R_img01 {
    width: 90%;
    margin: 0 5%;
}
.hotel01 .hotel01_R .hotel01_R_img02 {
    width: 42%;
    margin: 0 1%;
}


/*----------------------------------------
    安心の総合全科診療
----------------------------------------*/
.med_box_center {
    background-color: #eeece1;
    margin: 0 auto;
    text-align: center;
    display: block;
    padding: 0 20px;
}
.med_box_left {
    background-color: #eeece1;
    margin: 0 auto;
    text-align: left;
    display: block;
    padding: 0 20px;
}
.med_box_nml {
    background-color: #e7e6e6;
    margin: 0 auto;
    padding: 30px 15px;
}


.med_01 {
    width: 100%;
    padding: 0 0% 60px;
}
.med_01 .med_01_L {
    float: left;
    width: 98%;
    padding: 0 1%;
    text-align: center;
}
.med_01 .med_01_R {
    float: right;
    width: 98%;
    padding: 0 1%;
    text-align: center;
}

.med_01_img {
    width: 66%;
    margin: 30px 17% 10px;
}
.med_02_img {
    width: 49%;
    margin: 30px 25.5% 10px;
}
.med_03_img {
    width: 80%;
    margin: 0 10% 10px;
}
.med_04_img {
    width: 80%;
    margin: 0 10% 10px;
}
.med_05_img {
    width: 90%;
    margin: 0 5% 10px;
}
.med_00_img {
    width: 100%;
}
.med_nml_img {
    width: 100%;
}
.med_nml_img2 {
    width: 48%;
    margin: 0 1%;
}
.med_nml_img3 {
    width: 96%;
    margin: 0 2%;
}
.med_80_img {
    width: 100%;
    margin: 0 0%;
}


.med_01_txt {
    text-align: left;
    padding-top: 10px;
    padding-bottom: 20px;
}

.med_big_ttl {
    text-align: left;
    font-size: 20px;
}


ul.ha {
    width: 100%;
    margin: 0 0%;
}
ul.ha li {
    width: 50%;
    float: left;
    text-align: center;
}
ul.ha li .ha_img {
    width: 96%;
    margin: 20px 2%;
}
ul.ha li .ha_img img {
    width: 100%;
}

table.shiseki {
    margin: 60px 0% 0;
    width: 100%;
}
table.shiseki tr.shiseki_ln {
    background-color: #f1f1f1;
}
table.shiseki td {
    padding: 5px 0px;
    text-align: center;
    border: solid 1px #303030;
}


ul.syuyou0 {
    width: 100%;
    margin: 0 0%;
}
ul.syuyou0 li {
    width: 100%;
    float: left;
    text-align: center;
}
ul.syuyou0 li .syuyou_img {
    width: 96%;
    margin: 20px 2%;
}
ul.syuyou0 li .syuyou_img img {
    width: 80%;
    margin: 0 10%;
}
ul.syuyou0 li .syuyou_img .img0 {
    width: 80%;
    margin: 0 10%;
}


ul.syuyou {
    width: 100%;
    margin: 0 0%;
}
ul.syuyou li {
    width: 50%;
    float: left;
    text-align: center;
}
ul.syuyou li .syuyou_img {
    width: 96%;
    margin: 20px 2%;
}
ul.syuyou li .syuyou_img img {
    width: 100%;
}
ul.syuyou li .syuyou_img .img0 {
    width: 100%;
}


ul.syuyou1 {
    width: 100%;
    margin: 0 0%;
}
ul.syuyou1 li {
    width: 100%;
    float: left;
    text-align: center;
}
ul.syuyou1 li .syuyou_img {
    width: 80%;
    margin: 20px 10%;
}
ul.syuyou1 li .syuyou_img img {
    width: 100%;
}


ul.syuyou2 {
    width: 100%;
    margin: 0 0%;
}
ul.syuyou2 li.syuyou2_L {
    width: 50%;
    float: left;
    text-align: center;
}
ul.syuyou2 li.syuyou2_R {
    width: 50%;
    float: left;
    text-align: center;
}
ul.syuyou2 li .syuyou_img {
    width: 96%;
    margin: 20px 2%;
}
ul.syuyou2 li .syuyou_img img {
    width: 100%;
}


ul.syuyou3 {
    width: 98%;
    margin: 0 1%;
}
ul.syuyou3 li {
    width: 33.3%;
    float: left;
    text-align: center;
}
ul.syuyou3 li .syuyou_img {
    width: 96%;
    margin: 20px 2%;
}
ul.syuyou3 li .syuyou_img img {
    width: 100%;
}


.med_height {
    text-align: center;
    width: 100%;
}
.med_height img {
    height: 210px;
}
.med_height2 {
    text-align: center;
}
.med_height2 img {
    height: 190px;
}
.med_height3 {
    text-align: center;
}
.med_height3 img {
    height: 230px;
}
.med_height4 {
    text-align: center;
    width: 100%;
}
.med_height4 img {
    height: auto;
    width: 96%;
    margin: 0 2% 10px;
}
.med_height5 {
    text-align: center;
    width: 100%;
}
.med_height5 img {
    height: auto;
    width: 96%;
    margin: 0 2% 10px;
}

.med_width {
    text-align: center;
}
.med_width img {
    width: 100%;
}


/* 循環器科 */
ul.jyun {
    width: 100%;
    margin: 0 0%;
}
ul.jyun li.jyun_L {
    width: 100%;
    float: left;
    text-align: center;
}
ul.jyun li.jyun_R {
    width: 50%;
    margin: 0 25%;
    float: left;
    text-align: center;
}
ul.jyun li .jyun_img {
    width: 96%;
    margin: 20px 2%;
}
ul.jyun li .jyun_img img {
    width: 100%;
}
ul.jyun li .jyun_img img.height_sub1 {
    height: auto;
}
ul.jyun li .jyun_img img.height_sub2 {
    height: auto;
}


ul.jyun2 {
    width: 100%;
    margin: 0 0%;
}
ul.jyun2 li {
    width: 100%;
    float: left;
    text-align: center;
    padding-bottom: 10px;
}
ul.jyun2 li img {
    width: 96%;
    margin: 0px 2%;
}

.jyun_height4 {
    text-align: center;
}
.jyun_height4 img {
    width: 100%;
    height: auto;
}

.jyun_height5 {
    text-align: center;
    width: 80%;
    margin: 0 10%;
}
.jyun_height5 img {
    width: 100%;
    height: auto;
}


ul.jyun3 {
    width: 100%;
    margin: 0 0%;
}
ul.jyun3 li {
    width: 50%;
    float: left;
    text-align: center;
}
ul.jyun3 li .syuyou_img {
    width: 96%;
    margin: 20px 2%;
}
ul.jyun3 li .syuyou_img img {
    width: 100%;
}
ul.jyun3 li .syuyou_img .img0 {
    width: 100%;
}
ul.jyun3 li.jin_txt {
    width: 95%;
    margin-left: 5%;
}
ul.jyun3 li.jin_img {
    width: 100%;
}
ul.jyun3 li.jin_img img {
    width: 80%;
    margin: 30px 10% 0;
}


ul.jyun4 {
    width: 100%;
    margin: 0 0%;
}
ul.jyun4 li {
    width: 100%;
    float: left;
    text-align: center;
}
ul.jyun4 li .jyun_img {
    width: 90%;
    margin: 20px 5%;
}
ul.jyun4 li .jyun_img img {
    width: 100%;
}
ul.jyun4 li .jyun_img img.height_sub2 {
    width: 65%;
}


/* ペット小児科 */
ul.syounika {
    width: 100%;
    margin: 0 0%;
}
ul.syounika li {
    width: 50%;
    float: left;
    text-align: center;
}
ul.syounika li img {
    width: 98%;
    margin: 5px 0% 0px 2%;
}
ul.syounika li img.imgW {
    width: 80%;
    margin: 5px 5% 0px 15%;
}

ul.syounika2W {
    width: 96%;
    margin: 0 2%;
}
ul.syounika2W li {
    width: 100%;
    float: left;
    text-align: center;
}
ul.syounika2W li .syuyou_img {
    width: 98%;
    margin: 0 1% 10px;
}
ul.syounika2W li .syuyou_img img.imgH {
    height: auto;
    width: 100%;
}

ul.syounika3 {
    width: 98%;
    margin: 0 1%;
}
ul.syounika3 li {
    width: 33.3%;
    float: left;
    text-align: center;
}
ul.syounika3 li .syuyou_img {
    width: 96%;
    margin: 20px 2%;
}
ul.syounika3 li .syuyou_img img {
    width: 100%;
}

ul.syounika3W {
    width: 96%;
    margin: 0 2%;
}
ul.syounika3W li {
    width: 100%;
    float: left;
    text-align: center;
}
ul.syounika3W li.syounika3W_1 {
    width: 100%;
    margin: 0 0%;
    float: left;
    text-align: center;
}
ul.syounika3W li.syounika3W_1W {
    width: 100%;
    margin: 0 0%;
    float: left;
    text-align: center;
}
ul.syounika3W li .syuyou_img {
    width: 98%;
    margin: 0 1% 10px;
}
ul.syounika3W li .syuyou_img img.imgH {
    height: auto;
    width: 100%;
}
ul.syounika3W li .syuyou_img img.imgZ {
    height: auto;
    width: 100%;
}

ul.syounika4 {
    width: 98%;
    margin: 0 1%;
}
ul.syounika4 li {
    width: 25%;
    float: left;
    text-align: center;
}
ul.syounika4 li.syounika4W {
    width: 47%;
    margin: 0 1.5%;
    float: left;
    text-align: center;
}
ul.syounika4 li .syounika_img {
    width: 98%;
    margin: 0px 1%;
}
ul.syounika4 li .syounika_img img {
    width: 100%;
}


/* 神経科 */
ul.shinkei2 {
    width: 96%;
    margin: 0 2%;
}
ul.shinkei2 li {
    width: 100%;
    float: left;
    text-align: center;
}
ul.shinkei2 li .syuyou_img {
    width: 100%;
    margin: 0px 0% 20px;
}
ul.shinkei2 li .syuyou_img img {
    width: 100%;
    margin: 0px auto 5px;
}

ul.shinkei {
    width: 96%;
    margin: 0 2%;
}
ul.shinkei li.shinkei_L {
    width: 100%;
    float: left;
    text-align: center;
}
ul.shinkei li.shinkei_R {
    width: 100%;
    float: left;
    text-align: center;
}
ul.shinkei li.shinkei_TXT {
    width: 100%;
    float: left;
    text-align: center;
}
ul.shinkei li .shinkei_img {
    width: 100%;
    margin: 20px 0% 10px;
}
ul.shinkei li .shinkei_img img {
    width: 100%;
}
ul.shinkei li .shinkei_img img.imgH {
    width: 70%;
    margin: 0 15%;
}
ul.shinkei li .shinkei_img img.imgH02 {
    width: 70%;
    margin: 0 15%;
}


/* 短頭腫呼吸器科 */
ul.kokyuu {
    width: 96%;
    margin: 0 2%;
}
ul.kokyuu li {
    width: 100%;
    float: left;
    text-align: center;
    margin: 10px auto;
}
ul.kokyuu li .syuyou_img {
    width: 100%;
    margin: 0px 5%;
}
ul.kokyuu li .syuyou_img img {
    width: 100%;
    margin: 0px auto 5px;
}

ul.ul_movie {
    width: 100%;
}
ul.ul_movie li {
    width: 96%;
    margin: 20px 2%;
    float: left;
}


/* 内視鏡科(腹腔鏡･胸腔鏡) */
.naishikyou {
    width: 96%;
    margin: 0px 2%;
}
.naishikyou img {
    height: auto;
}
.naishikyou img.imgS {
    height: auto;
    width: 40%;
    margin: 0px 30% 20px;
}
.naishikyou img.imgH {
    height: auto;
    width: 100%;
    margin: 0px 0%;
}

.naishikyou2 {
    width: 96%;
    text-align: center;
    margin: 0px 2%;
}
.naishikyou2 img {
    width: 100%;
}

ul.naishi {
    width: 100%;
    margin: 0 0%;
}
ul.naishi li {
    width: 50%;
    float: left;
    text-align: center;
}
ul.naishi li .naishi_img {
    width: 100%;
    margin: 20px 0%;
}
ul.naishi li .naishi_img img {
    width: 100%;
}
ul.naishi li .naishi_img .img0 {
    width: 85%;
}


/*----------------------------------------
    RECOMMEND
----------------------------------------*/
ul.training {
    width: 100%;
    margin: 0 0%;
}
ul.training li {
    width: 100%;
    float: left;
    text-align: center;
}
ul.training li img {
    width: 100%;
    margin: 0px 0%;
}
ul.training li img.imgW {
    width: 100%;
    margin: 30px 0% 0;
}

.training_C {
    width: 80%;
    margin: 30px 10% 0;
}
.training_C img {
    width: 100%;
}














/*----------------------------------------
    求人情報
----------------------------------------*/
/* スタッフからのメッセージ
--------------------------------------------------*/
ul.msglist {
    width: 100%;
}
ul.msglist li {
    float: left;
    width: 90%;
    margin: 0px 5% 30px 5%;
}
ul.msglist li.msgC {
    float: left;
    width: 90%;
    margin: 0px 5% 30px 5%;
}
ul.msglist li.msgL {
    float: left;
    width: 90%;
    margin: 0px 5% 30px 5%;
}
ul.msglist li.msgR {
    float: left;
    width: 90%;
    margin: 0px 5% 30px 5%;
}
ul.msglist li img {
    width: 100%;
}


.msgheader {
    width: 100%;
}
.msgheaderL {
    float: left;
    width: 90%;
    margin: 10px 5% 20px 5%;
}

.msg_name {
    position: relative;
    font-size: 18px;
    margin-bottom: 10px;
}
.msg_name:first-letter{
    font-size: 28px;
}
.msg_name:after{
    content: "";
    display: block;
    height: 8px;
    width: 100%;
    background: rgba(202,174,114,0.5);
    position: absolute;
    bottom: 4px;
}


.recimgR {
    float: right;
    width: 90%;
    margin: 10px 5% 20px 5%;
}
.recimgR img {
    width: 100%;
    margin-left: 0%;
}

.recimgW {
    float: right;
    width: 90%;
    margin: 10px 5% 20px 5%;
}
.recimgW img {
    width: 100%;
    margin-left: 0%;
}


ul.prof {
    width: 100%;
}
ul.prof li.ttl {
    float: left;
    width: 38%;
}
ul.prof li.ttl p {
    font-weight: bold;
}
ul.prof li.dlm {
    float: left;
    width: 5%;
    color: #f0a010;
}
ul.prof li.cont {
    float: left;
    width: 100%;
}


p.msgtitle {
    font-size: 16px;
    color: #caae72;
    font-weight: normal;
    padding-bottom: 5px;
}


/* 募集要項
--------------------------------------------------*/
table.recruit, table.recruit tbody, table.recruit tr, table.recruit th, table.recruit td {
display: block;
max-width: 100%;
}

table.recruit {
    border-collapse: collapse;
    margin-bottom: 40px;
    width: 100%;
    border-top-style: none;
}
table.recruit th {
    padding: 6px 10px;
    text-align: center;
    font-weight: normal;
    vertical-align: top;
    width: 95%;
    background-color: #999999;
    color: #ffffff;
    margin-top: 15px;
}
table.recruit td {
    padding: 6px 10px 6px 10px;
    width: 95%;
}
table.recruit tr {
    border-bottom-style: none;
}


.btn_box {
    margin: 60px 4% 10px 4%;
    width: 92%;
}
.btn_txt:hover {
    opacity: 0.7;
}
.btn_txt {
    background-color: #f29838;
    color: #ffffff;
    text-align: center;
    padding: 10px 0;
    border-radius: 5px;
}



table.thanks {
    border-collapse: collapse;
    width: 100%;
    margin: 100px auto 250px;
}
table.thanks td {
    text-align: center;
}

/* Galaxy Fold */
@media only screen and (max-width:280px) {
table.thanks td {
    width: 50%;
  }
table.thanks td img.thanks_img {
    width: 100%;
  }
}



/* 応募フォーム
--------------------------------------------------*/
table.thanks {
    border-collapse: collapse;
    margin: 0px auto;
    width: 100%;
}
table.thanks td {
    text-align: center;
}


/*----------------------------------------
    予防医療
----------------------------------------*/



/*----------------------------------------
    診療科目
----------------------------------------*/
.medsubj {
    width: 100%;
}
ul.medicalsubject {
    margin: 0 2%;
    width: 96%;
}
ul.medicalsubject li {
/*
    margin: 10px 2%;
    background-color: #c8ae75;
    border: 3px solid #ede6d4;
    border-radius: 10px;
    color: #ffffff;
    width: 44%;
    font-size: 16px;
    padding: 10px 0px;
    letter-spacing: 0;
    text-align: center;
    float: left;
*/
}
ul.medicalsubject li a {
    margin: 10px 2%;
    background-color: #c8ae75;
    border: 3px solid #ede6d4;
    border-radius: 10px;
    color: #ffffff;
    width: 44%;
    font-size: 16px;
    padding: 10px 0px;
    letter-spacing: 0;
    text-align: center;
    float: left;
}




/* ページ内リンク
---------------------------------------------------------------------------- */
#tag-deals02 {
  margin-top: -50px; /* 固定ナビの高さ分のネガティブマージン */
  padding-top: 50px; /* 打ち消し用のパディング */
}
#tag-deals03 {
  margin-top: -50px;
  padding-top: 50px;
}
#tag-deals04 {
  margin-top: -50px;
  padding-top: 50px;
}
#tag-deals05 {
  margin-top: -50px;
  padding-top: 50px;
}

#tag-ha02 {
  margin-top: -50px;
  padding-top: 50px;
}


/* ご来院のケース */
#tg-oncology {
  margin-top: -100px;
  padding-top: 100px;
}
#tg-orthopedic {
  margin-top: -100px;
  padding-top: 100px;
}
#tg-cardiology {
  margin-top: -100px;
  padding-top: 100px;
}
#tg-gastroenterology {
  margin-top: -100px;
  padding-top: 100px;
}
#tg-urology {
  margin-top: -100px;
  padding-top: 100px;
}
#tg-respiratory {
  margin-top: -100px;
  padding-top: 100px;
}
#tg-endoscopy {
  margin-top: -100px;
  padding-top: 100px;
}
#tg-dermatology {
  margin-top: -100px;
  padding-top: 100px;
}
#tg-neurology {
  margin-top: -100px;
  padding-top: 100px;
}
#tg-dental {
  margin-top: -100px;
  padding-top: 100px;
}
#tg-ophthalmology {
  margin-top: -100px;
  padding-top: 100px;
}
#tg-anesthesiology {
  margin-top: -100px;
  padding-top: 100px;
}
#tg-hematology {
  margin-top: -100px;
  padding-top: 100px;
}
#tg-pediatrics {
  margin-top: -100px;
  padding-top: 100px;
}
#tg-preventive {
  margin-top: -100px;
  padding-top: 100px;
}




#tag-pre02 {
  margin-top: -50px; /* 固定ナビの高さ分のネガティブマージン */
  padding-top: 50px; /* 打ち消し用のパディング */
}
#tag-pre03 {
  margin-top: -50px;
  padding-top: 50px;
}
#tag-pre04 {
  margin-top: -50px;
  padding-top: 50px;
}
#tag-pre05 {
  margin-top: -50px;
  padding-top: 50px;
}
#tag-pre06 {
  margin-top: -50px;
  padding-top: 50px;
}

#tag-pethotel {
  margin-top: -50px;
  padding-top: 50px;
}
#tag-yakan {
  margin-top: -50px;
  padding-top: 50px;
}



