﻿@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;
}
/* 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;
  }
}


.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;
  }
}



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: 15% auto 0px;
    text-align: center;
/*
    top: 0px;
*/
    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;
    z-index: 88888;
    height: 60px;
    background-color: #ffffff;
}
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 {
    float: left;
    margin: 10px 0 auto 0;
    width: 100%;
    text-align: left;
}
div#header .header_L .header-logo img.head_logo {
    width: 90%;
}


.net_icon {
    position: fixed;
    text-align: right;
    bottom: 65px;
    right: 10px;
    z-index: 2000;
}
.net_icon img {
    width: 80px;
    height: 80px;
}


/*----------------------------------------
    head_cmnt
----------------------------------------*/
#head_cmnt {
    margin: 0 auto;
    width: 100%;
    position: absolute;
    top: 50px;
    left: 5%;
    z-index: 30;
}
#head_cmnt .msg24 {
    letter-spacing: 2px;
    font-size: 18px;
/*
    font-weight: bold;
    text-shadow: 0 0 1px #ffffff, 0 0 5px #ffffff, 0 0 10px #ffffff, 0 0 15px #000000, 0 0 20px #ffffff, 0 0 25px #ffffff, 0 0 30px #ffffff, 0 0 35px #ffffff;
*/
    color: #ffffff;
    text-align: left;
    font-family: "BIZ UDP明朝", "Noto Sans JP","M PLUS Rounded 1c", sans-serif;
    text-shadow: 0 0 10px #111111;
}
#head_cmnt .msg24 img {
    width: 250px;
}


/*----------------------------------------
    ドロワーメニュー
----------------------------------------*/
.wrapper {
  height: 100%;
  overflow-x: hidden;
  position: relative;
}
.overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  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(0px);
}



.menu-trigger {
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 6%;
    width: 30px;
    z-index: 100;
}
/* Galaxy Fold */
@media only screen and (max-width:280px){
.menu-trigger {
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 6%;
    width: 30px;
    z-index: 100;
    }
}


.menu-trigger span {
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    transition: all .5s;
    background-color: #4a2428;
}
.menu-trigger.active span {
    background-color: #4a2428;
}
.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: 20px;
    color: #4a2428;
    font-size: 10px;
    text-align: center;
}



nav {
  width: 100%;
  height: 100%;
  padding-top: 80px;
  background-color: rgb(255, 255, 255, 0.6);

  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  transform: translate(100%);
  transition: all .5s;
}
nav.open {
  transform: translateZ(0);
}


.nav_menu {
    margin: 0 0px 200px;
    font-size: 18px;
    letter-spacing: 0.5px;
    text-align: center;
}
.nav_menu a {
    display: block;
    padding: 15px 10px;
    color: #111111;

    line-height: 1.2;
    font-weight: normal;
}

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


.nav_menu .child {
    display: none;
    margin: 0 0 -1px;
    padding: 0;
    background-color: rgb(255, 255, 255, 0.3);
}
.nav_menu .child .menu {
    background: #999999;
    color: #777777;
}
.nam_menu .child .menu:hover {
    background: #666666;
}
.nav_menu .child > li {
    padding: 0 0px;
}
.nav_menu .child > li:last-child {
    border-bottom: 0;
}

.switch .menu:after {
  position: absolute;
  top: 70%;
  right: 10px;
  margin-top: -1.4rem;
  content: '>';
    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 {
    background-color: rgb(255, 255, 255, 0.3);
    color: #111111;
}

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

.nav_menu .menu {
    background-color: rgb(255, 255, 255, 0.6);
    color: #111111;
    font-weight: normal;
}
.nav_menu .menu:hover {
/* ***
    background-color: rgb(254, 205, 3, 0.6);
*/
    background-color: rgb(191, 191, 191, 0.7);
    color: #777777;
    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: #caab8f;
    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;
}

/* iPhone 5/SE 320, Galaxy Fold 280 */
/*
@media only screen and (max-width:280px){
ul.sp-panel li.sp_ln {
    padding-bottom: 5px;
    padding-top: 7px;
    border-right: solid 1px #ffffff;
}
ul.sp-panel li.sp_ln {
    line-height: 1.1;
  }
ul.sp-panel li.sp_ln_e {
    line-height: 1.1;
}
ul.sp-panel li span.panel_txt {
    font-size: 6px;
    letter-spacing: 0px;
  }
}
*/



/*----------------------------------------
    promise
----------------------------------------*/
p.box_msg {
    position: absolute;
    top: 85%;
    left: 0%;
    font-size: 24px;
    letter-spacing: 0.5px;
    z-index: 200;
    text-align: center;
    width: 100%;
    text-shadow: 0 0 15px #333333;
}


/* iPhone 5/SE 320 */
@media only screen and (max-width:320px){
p.box_msg {
    position: absolute;
    top: 85%;
    left: 0%;
    font-size: 20px;
    letter-spacing: 0.5px;
    z-index: 200;
    text-align: center;
    width: 100%;
  }
}

/* Galaxy Fold 280 */
@media only screen and (max-width:280px){
p.box_msg {
    position: absolute;
    top: 82%;
    left: 0%;
    font-size: 20px;
    letter-spacing: 0.5px;
    z-index: 200;
    text-align: center;
    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: 18px;
}



.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: #e65313;
    text-align: center;
    font-weight: bold;
}
.top_title_line-wrap {
    position: relative;     /* 位置調整 */
    margin-bottom:15px;     /* 周りの余白指定 */
}
.top_title_line-wrap:before {
    content: '';           /* 空白の要素を作る */
    background-color: #e65313; /* 背景色指定 */
    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: left;
    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: #e65313;
    text-align: center;
    font-weight: bold;
  }
.top_title_line-wrap {
    position: relative;     /* 位置調整 */
    margin-bottom:15px;     /* 周りの余白指定 */
  }
.top_title_line-wrap:before {
    content: '';           /* 空白の要素を作る */
    background-color: #e65313; /* 背景色指定 */
    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: left;
    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: #e65313;
    text-align: center;
    font-weight: bold;
  }
.top_title_line-wrap {
    position: relative;     /* 位置調整 */
    margin-bottom: 15px;     /* 周りの余白指定 */
  }
.top_title_line-wrap:before {
    content: '';           /* 空白の要素を作る */
    background-color: #e65313; /* 背景色指定 */
    display: block;        /* ブロック要素にする */
    position: absolute;    /* 位置調整 */
    left: 0;               /* 位置調整 */
    width: 100%;           /* 幅指定 */
    height: 2px;           /* 高さ指定 */
    top: 14px;                 /* 位置調整 */
    bottom: 0;             /* 位置調整 */
    margin: auto;          /* 位置調整 */
  }
}



/*----------------------------------------
    slogan
----------------------------------------*/
#slogan {
    width: 100%;
    margin: 0px auto;
    padding: 30px 0px;
}
#slogan .sl_box {
    margin-left: 10px;
    margin-right: 10px;
}
#slogan .sl_box p {
    font-size: 17px;
    line-height: 1.8;
    letter-spacing: 0px;
}
#slogan .sl_box p.sl_msg {
    padding-left: 0px;
}


/*----------------------------------------
    sec100
----------------------------------------*/
#sec100 {
    width: 100%;
    margin: 0px auto;
    background-color: #ffffff;
    padding: 60px 0 60px;
}
.title100 {
    text-align: left;
    padding-bottom: 40px;
}
.ttl100e {
    color: #a47c60;
    font-size: 22px;
    font-family: 'DejaVu Sans',Arial,Calibri;
    font-weight: bold;
    letter-spacing: 1.5px;
}
.ttl100j {
    color: #525252;
    font-size: 13px;
    margin-top: 0px;
}

.blog_box {
    padding-top: 10px;
    margin: 0 0;
}
.blog_area {
    margin-top: -30px;
    width: 98%;
    text-align: left;
    padding-bottom: 5px;
    padding-left: 5px;
/*
    border-bottom: dashed 1px #999999;
*/
    font-size: 16px;
    height: auto;
/* *****
    overflow-y: scroll;
    height: 250px;
***** */
}
.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;
}
/* ---------------------------------------- */




/*----------------------------------------
    sec200
----------------------------------------*/
#sec200 {
    padding: 50px 0;
}

#sec200 .sec200_L {
    float: left;
    width: 100%;
}
#sec200 .sec200_R {
    float: right;
    width: 100%;
    padding: 20px 0;
}

.title200 {
    text-align: center;
    padding-bottom: 40px;
}
.ttl200e {
    color: #a47c60;
    font-size: 22px;
    font-family: 'DejaVu Sans',Arial,Calibri;
    font-weight: bold;
    letter-spacing: 1.5px;
}
.ttl200j {
    color: #525252;
    font-size: 13px;
    margin-top: 0px;
}

.img200 {
     width: 100%;
}

dl.dl200 {
    margin-left: 0%;
    width: 100%;
}
dl.dl200 dt {
    float: left;
    width: 20%;
    margin-right: 5%;
    text-align: center;
    background-color: #caab8f;
    color: #ffffff;
    border-radius: 5px;
    font-size: 13px;
    padding: 7px 0px;
}
dl.dl200 dd {
    float: left;
    width: 75%;
    padding: 10px 0px;
    font-size: 13px;
}
.phone200 {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 3px;
    line-height: 0.5;
}

table.timetbl {
    float:left;
    margin-left: 0%;
    margin-top: 15px;
    width: 100%;
}
table.timetbl th {
    width: 20%;
    background-color: #caab8f;
    color: #ffffff;
    font-size: 14px;
    text-align: center;
/*
    padding: 7px 0;
*/
    padding: 4px 0;
    height: 35px;
    line-height: 1.2;
    border-bottom: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
}
table.timetbl td {
    width: 10%;
    background-color: #ffffff;
    color: #caab8f;
    text-align: center;
    font-size: 16px;
    padding: 5px 0;
    line-height: 1.2;
    border-left: 1px solid #caab8f;
}
table.timetbl td.yb {
    background-color: #caab8f;
    color: #ffffff;
    border-bottom: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
    font-size: 14px;
}

ul.ul200 {
    float:left;
    margin-left: 0%;
    margin-top: 15px;
    width: 100%;
}
ul.ul200 li {
    float: left;
    list-style: none;
    width: 40%;
    margin: 15px 4% 0;
    text-align: center;
    background-color: #ffffff;
    color: #caab8f;
    border-radius: 25px;
    border: 1px solid #caab8f;
    font-size: 12px;
    padding: 10px 0px;
}
ul.ul200 li.li200_1 {
    float: left;
    list-style: none;
    width: 45%;
    margin: 15px 4% 0 0%;
    text-align: center;
    background-color: #ffffff;
    color: #caab8f;
    border-radius: 25px;
    border: 1px solid #caab8f;
    font-size: 12px;
    padding: 10px 0px;
}
ul.ul200 li.li200_2 {
    float: left;
    list-style: none;
    width: 45%;
    margin: 15px 0% 0 4%;
    text-align: center;
    background-color: #ffffff;
    color: #caab8f;
    border-radius: 25px;
    border: 1px solid #caab8f;
    font-size: 12px;
    padding: 10px 0px;
}
ul.ul200 li a {
    color: #caab8f;
    font-weight: bold;
}


/*----------------------------------------
    sec300
----------------------------------------*/
#sec300 {
    margin: 0px auto 50px;
}

.title300 {
    text-align: left;
    padding-bottom: 20px;
    margin-top: -50px;
}
.ttl300e {
    color: #a47c60;
    font-size: 22px;
    font-family: 'DejaVu Sans',Arial,Calibri;
    font-weight: bold;
    letter-spacing: 1.5px;
}
.ttl300j {
    color: #525252;
    font-size: 13px;
    margin-top: 0px;
}

.msg300 {
    padding-top: 10px;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;
}
.submsg300 {
    padding-top: 20px;
    padding-left: 0px;
    text-shadow: 0 0 1px #ffffff;
}

.dtl300 {
    text-align: left;
    padding-top: 40px;
    padding-left:25px;
    padding-bottom: 60px;
}
.dtl300 a {
    font-size: 14px;
    color: #caab8f;
    font-weight: bold;
}



/*----------------------------------------
    sec05
----------------------------------------*/
#sec05 {
    margin: -55px auto 50px;
}

.title05 {
    margin-top: 40px;
    text-align: left;
    padding-left: 10px;
    padding-bottom: 30px;
    color: #a47c60;
}
.ttl05e {
    color: #a47c60;
    font-size: 22px;
    font-family: 'DejaVu Sans',Arial,Calibri;
    font-weight: bold;
    letter-spacing: 1.5px;
}
.ttl05j {
    color: #a47c60;
    font-size: 13px;
    margin-top: 0px;
}

.img05 {
    margin-left: 0%;
    width: 100%;
    text-align: left;
}

.msg500 {
    padding-top: 0px;
    padding-left: 2%;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;
}
.submsg500 {
    padding-top: 20px;
    padding-left: 2%;
    padding-right: 2%;
    color: #303030;
}

.dtl500 {
    text-align: left;
    padding-top: 40px;
    padding-left:25px;
}
.dtl500 a {
    font-size: 14px;
    color: #caab8f;
    font-weight: bold;
}
/*
.dtl500 {
    text-align: left;
    padding-top: 40px;
    padding-botto: 40px;
    padding-left: 2%;
}
.dtl500 a {
    font-size: 14px;
    color: #caab8f;
    font-weight: bold;
}
*/


/*----------------------------------------
    sec06
----------------------------------------*/
#sec06 {
    margin: 0px auto 0;
/*
    margin: -450px auto 0;
*/
}

.box06 {
    position: relative;
}
.bg_img06 img {
    margin-top: 0px;
    width: auto;
    height: 550px;
}

.title06 {
    text-align: center;
    padding-bottom: 20px;
}
.ttl06e {
    color: #3171c1;
    font-size: 22px;
    font-family: 'DejaVu Sans',Arial,Calibri;
    font-weight: bold;
    letter-spacing: 1.5px;
}
.ttl06j {
    color: #ffffff;
    font-size: 13px;
    margin-top: 0px;
}

.box06 .sec06_inner {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 100%;
    margin: 0 auto;
}

.img06 {
    margin-left: 0%;
    width: 100%;
    text-align: left;
}

.msg600 {
    padding-top: 0px;
    padding-left: 2%;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;
}
.submsg600 {
    padding-top: 20px;
}

.ul06 {
    padding-top: 30px;
    width: 100%;
    margin: 0 0%;
}
.ul06 .li06 a {
    width: 94%;
    margin: 15px 3%;
    float: left;
    background-color: #3171c1;
    color: #ffffff;
    border-radius: 20px;
    padding: 25px 0px;
    line-height: 1.5;
}
.ul06 .li06 img {
    width: 65%;
}
.ul06 .li06 .eng06 {
    color: #cccccc;
    font-family: 'DejaVu Sans',Arial,Calibri;
    font-size: 16px;
}
.ul06 .li06 .li06_L {
    float: left;
    padding-left: 30px;
}
.ul06 .li06 .li06_R {
    float: left;
}


/*----------------------------------------
    sec700
----------------------------------------*/
#sec700 {
    width: 100%;
    margin: 0px auto;
    padding: 50px 0 0;
    background-color: #f5f5f5;
}


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


/*----------------------------------------
  footer
----------------------------------------*/
footer {
    margin: -50px auto 0;
    padding: 90px 0px 70px;
    color: #fff;
    background-color: #a47c60;
    position: relative;
}
footer a {
    color: #fff;
}

.foot_info {
    float: left;
    width: 90%;
    text-align: left;
    padding-top: 50px;
    margin: 0 5%;
}
.foot_menu {
    float: left;
    width: 100%;
}


.f_logo_nm {
     width: 90%;
}
.f_info {
    padding-top: 20px;
    font-size: 13px;
}
.f_info p {
    padding-top: 15px;
    font-size: 13px;
}
.f_phone {
    font-size: 20px;
    font-family: 'Heebo', sans-serif;
}

.f_menu_area {
    float: left;
    z-index: 1;
    margin-top: 0px;
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
}
.f_main_menu {
    font-size: 13px;
    padding-bottom: 5px;
    line-height: 2;
}
.f_ttl {
    background-color: #ffffff;
    color: #a47c60;
    text-align: center;
    font-size: 13px;
    border-radius: 7px;
    padding: 6px 0;
    margin: 20px 5%;
    width: 90%;
}


.strg_box {
    float: left;
    width: 100%;
    padding-top: 30px;
    text-align: center;
}
.f_strg {
    font-size: 0px;
    line-height: 0px;
}

.copyright {
    font-size: 13px;
    color: #ffffff;
}



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



/*----------------------------------------
    nextpage --- NEXT PAGE
----------------------------------------*/
#nextpage {
    z-index: 2;
    width: 100%;
    padding-top: 30px;
    background-color: #ffffff;
    padding-bottom: 30px;
}
/*
#nextpage {
    margin-top: 65px;
    height: 100%;
    padding-bottom: 40px;
}
*/


/*----------------------------------------
    title common
----------------------------------------*/
.next_cont {
    padding: 30px 10px;
}

.nextsubtitle {
    font-size: 20px;
    letter-spacing: 1px;
    line-height: 2;
    color: #ffcc00;
    font-weight: bold;
}
.nextbox {
    padding-bottom: 30px;
}
.nextbox p {
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 2.2;
}

.item_box {
    padding: 15px 0px 15px 10px;
}
p.next_item {
    border-left: 5px solid #ffcc00;
    line-height: 1.7;
    padding-left: 10px;
    font-size: 18px;
/*
    color: #f4b084;
    font-size: 18px;
*/
}

.pc_bot {
    padding-bottom: 250px;
}


/*----------------------------------------
    共通
----------------------------------------*/
.bott { padding-bottom: 30px; }
.last { padding-bottom: 30px; }
.last2 { padding-bottom: 450px; }



/*----------------------------------------
    nextheader
----------------------------------------*/
#nextheader {
    width: 100%;
    margin: 60px auto 0;
    background-color: #f5f5f5;
    height: 150px;
    position: relative;
}
#nextheader .nexttitle {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 100%;
    margin: 0 auto;
}
#nextheader .nexttitle p {
    font-size: 20px;
    color: #4a2428;
    letter-spacing: 1px;
    padding-left: 10px;
    padding-right: 10px;
}
#nextheader .nexttitle .subtitle {
    font-size: 14px;
    color: #caab8f;
    font-family: 'Heebo', sans-serif;
    font-weight: bold;
    letter-spacing: 0.5px;
}


/*----------------------------------------
    next01
----------------------------------------*/
#next01 {
    width: 100%;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px 0;
}
#next01 .nextcont01 {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 30px;
}

.nextttl01 {
    font-size: 20px;
    letter-spacing: 1px;
    padding-bottom: 15px;
    font-weight: bold;
    padding-left: 10px;
    padding-right: 10px;
}
.nextttl01e {
    font-size: 14px;
    font-family: 'Heebo', sans-serif;
    letter-spacing: 0.5px;
}
.nextttl02 {
    font-size: 18px;
    letter-spacing: 1px;
    padding-bottom: 10px;
    font-weight: bold;
    padding-left: 0px;
    padding-right: 10px;
}

.cont01 {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 50px;
}


/* 診療案内
---------------------------------------------------------------------------- */
.animal img {
    height: 80px;
    padding: 5px 5px;
}

.yakan_nm {
    padding: 20px 0px 0px 0px;
    text-align: center;
}
.yakan {
    float: left;
    padding: 10px 0px 10px 0px;
    width: 100%;
    text-align: center;
}


/* トリミング
---------------------------------------------------------------------------- */
table.trim th {
    vertical-align: middle;
    text-align: center;
    padding: 6px 5px;
    border: 2px solid #989898;
    font-size: 14px;
    background-color: #e8dfd4;
}
table.trim td {
    vertical-align: top;
    text-align: center;
    padding: 6px 5px;
    border: 1px solid #989898;
    vertical-align: middle;
    font-size: 14px;
}
table.trim td.left {
    vertical-align: top;
    text-align: left;
    padding: 6px 10px 6px 10px;
    border: 1px solid #989898;
    font-size: 14px;
}












/*----------------------------------------
    next000
----------------------------------------*/
#next000 {
}
#next000 .next000_L {
    float: left;
    width: 95%;
    padding-left: 5%;
    padding-top: 100px;
}
.head100 {
    font-size: 22px;
    letter-spacing: 2px;
    line-height: 2;
}
.head100_e2 {
    font-size: 16px;
    padding-left: 0px;
}





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


ol.numlist02 {
    list-style-type: decimal;
    list-style-position: outside;
    margin-left: 30px;
}
ol.numlist02 li {
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 2.2;
}



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;
}
/* ============================================== */




/*----------------------------------------
    当院について
----------------------------------------*/
.about_img01 {
    float: right;
    width: 90%;
    padding: 15px 5% 15px 5%;
}

/* ***
dl.greeting_list {
    padding-top: 10px;
    padding-bottom: 30px;
}
dl.greeting_list dt {
    float: left;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 2.2;
    padding-top: 20px;
}
dl.greeting_list dd {
    float: left;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 2.2;
    padding-top: 10px;
    padding-left: 0px;
    padding-bottom: 20px;
}

.greeting_end {
    float: left;
    margin-top: 40px;
}
*** */



/*----------------------------------------
    診療案内
----------------------------------------*/
.med_ani_s {
    background-color: #ffc000;
    color: #ffffff;
    padding: 8px 43px;
}


/*----------------------------------------
    スタッフ紹介
----------------------------------------*/
.staff_box {
    padding: 30px 0 0px 0px;
}

table.staff, table.staff tbody, table.staff tr, table.staff th, table.staff td {
    display: block;
    max-width: 100%;
}
table.staff {
    border-collapse: collapse;
    width: 100%;
    margin-top: 5px;
}
table.staff th {
    width: 100%;
    vertical-align: top;
}
table.staff td {
    width: 100%;
    vertical-align: top;
    text-align: left;
    padding-bottom: 10px;
}
.staff_img {
    padding: 0;
    float: left;
    width: 98.5%;
    margin: 10px 1% 10px 0.5%;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}



/*
ul.staff {
    width: 100%;
}
ul.staff li.stf_L {
    float: left;
    margin: 0 0% 10px 0%;
    width: 100%;
}
ul.staff li.stf_R {
    float: left;
    margin: 0 0% 40px 0%;
    width: 100%;
}
ul.staff p.stf_name {
    font-size: 16px;
    letter-spacing: 0.5;
    text-align: center;
}
ul.staff li img {
    width: 80%;
    margin: 0 10% 10px 10%;
}
*/


/*----------------------------------------
    料金について
----------------------------------------*/
.fee_area {
    width: 100%;
}

/*----------------------------------------
    料金について（モバイル版）
----------------------------------------*/
@media screen and (max-width: 767px) {
    .fee_area {
        width: 100%;
    }
    
    .fee_area table {
        width: 100%;
    }
    
    .fee_area table th,
    .fee_area table td {
        width: 50%;  /* 左右半分ずつ */
        padding: 8px 5px;
        vertical-align: top;
        white-space: normal;  /* 改行を許可 */
        word-wrap: break-word;  /* 長い単語も折り返す */
        max-width: 200px;
    }
    
    /* 見出し行の上部余白 */
    .fee_area table th.pdt30 {
        padding-top: 20px;
    }
    
    /* thead部分のスタイル調整 */
    .fee_area table thead td {
        padding: 8px 5px;
        line-height: 1.4;
    }
    
    /* 3列テーブル（一部のテーブル）の調整 */
    .fee_area table tbody tr td:nth-child(2) {
        white-space: normal;
    }
}

/*----------------------------------------
    皮膚トラブルでお悩みの飼い主さまへ
----------------------------------------*/
.skin_img {
    float: left;
    margin-top: 0px;
    width: 100%;
}
.skin_img img {
    width: 46%;
    margin: 20px 2% 5px;
}
.skin_img p {
    padding-left:0px;
    text-align: center;
}

.skin_img2 {
    float: right;
    width: 100%;
}
.skin_img2 img {
    width: 70%;
    margin: 15px 15% 0;
}


/*----------------------------------------
    高度眼科診療
----------------------------------------*/

.oph_img {
    float: right;
}
.oph_img img {
    width: 100%;
    margin: 20px 0px 0;
}
































/*----------------------------------------
    院内紹介
----------------------------------------*/



/* # クリニック紹介
------------------------------------------------------------------- */
ul.innai {
    width: 100%;
    display:-webkit-box;
    display:-moz-box;
    display:-ms-flexbox;
    display:-webkit-flex;
    display:-moz-flex;
    display:flex;
    -webkit-box-lines:multiple;
    -moz-box-lines:multiple;
    -webkit-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
}

/*
ul.innai li {
    margin: 15px 2%;
    width: 46%;
    vertical-align: top;
}
*/
ul.innai li {
    margin: 15px 2%;
    width: 96%;
    vertical-align: top;
}
ul.innai li.imgH {
    margin: 15px 18%;
    width: 64%;
    vertical-align: top;
}
ul.innai li img {
    width: 100%;
}

p.inname {
    font-size: 14px;
    padding-top: 10px;
    text-align: center;
    letter-spacing: 0.8px;
    line-height: 1.2;
}



/* # 医療設備
--------------------------------------- */
ul.kiki {
    width: 100%;
    margin: 10px 0px 60px 0px;
    display:-webkit-box;
    display:-moz-box;
    display:-ms-flexbox;
    display:-webkit-flex;
    display:-moz-flex;
    display:flex;
    -webkit-box-lines:multiple;
    -moz-box-lines:multiple;
    -webkit-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
}
ul.kiki li {
    margin: 15px 2%;
    width: 46%;
    vertical-align: top;
}
ul.kiki li img {
    width: 100%;
}

p.kinm {
    font-size: 14px;
    padding-top: 10px;
    text-align: left;
    letter-spacing: 0.8px;
    line-height: 1.2;
}
p.ki {
    padding-top: 7px;
    font-size: 14px;
    text-align: left;
    letter-spacing: 0.5px;
    line-height: 1.3;
}






/*----------------------------------------
    診療料金
----------------------------------------*/



/*----------------------------------------
    アクセス
----------------------------------------*/
ul.accslist {
    width: 100%;
    margin-bottom: 30px;
}
ul.accslist li.item {
    float: left;
    width: 100%;
    margin-right: 0%;
    margin-bottom: 5px;
}
.item1 {
    color: #e65313;
    background-color: #ffead4;
    text-align: center;
    padding: 5px 0px;
}
ul.accslist li.data {
    float: left;
    width: 100%;
    padding: 5px 0px;
    margin-bottom: 5px;
    text-align: center;
}
.parking {
    padding-top: 10px;
    width: 100%;
}
.parking img {
    margin: 0 5%;
    width: 90%;
}



/*----------------------------------------
    トリミング＆ペットホテル
----------------------------------------*/




/* iPhone 5/SE 320 */
@media only screen and (max-width:320px){
table.trimtbl th {
    font-size: 10px;
    width: 40%;
  }
table.trimtbl td {
    font-size: 12px;
    width: 30%;
  }
table.trimtbl td.course {
    font-size: 10px;
    width: 30%;
  }
}

/* Galaxy Fold 280 */
@media only screen and (max-width:280px){
table.trimtbl th {
    font-size: 10px;
    width: 40%;
  }
table.trimtbl td {
    font-size: 12px;
    width: 30%;
  }
table.trimtbl td.course {
    font-size: 10px;
    width: 30%;
    letter-spacing: 0px;
  }
}

.img_next01 {
    margin: 0px 0px 20px 0px;
    width: 100%;
    float: right;
}
.img_next01 img {
    width: 100%;
}



/*----------------------------------------
    予防医療
----------------------------------------*/
.img_next02 {
    margin: 0px 0px 20px 0px;
    width: 100%;
    float: right;
}
.img_next02 img {
    width: 100%;
}

.img_next03 {
    margin: 0px 10% 10px 10%;
    width: 80%;
    float: right;
}
.img_next03 img {
    width: 100%;
}



/*----------------------------------------
    求人情報
----------------------------------------*/


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

table.recruit {
    border-collapse: collapse;
	z-index:400; 
    margin-top: 10px;
    margin-bottom: 20px;
}
table.recruit th {
    width: 96%;
    padding: 6px 2%;
    text-align: center;
    border-bottom: 1px solid  #ffffff;
    background-color: #8c8c8c;
    color: #fff;
    font-weight: normal;
    margin-top: 10px;
}
table.recruit th.end {
    padding: 6px 10px;
    text-align: center;
    border-bottom: 1px solid  #8c8c8c;
    background-color: #8c8c8c;
    color: #fff;
    font-weight: normal;
    margin-top: 10px;
}
table.recruit th.job {
    background-color: #8c8c8c;
    color: #fff;
    padding: 6px 10px;
    text-align: center;
    border-style: none;

    font-size: 16px;
}
table.recruit td {
    width: 96%;
    padding: 6px 2%;
    border-style: none;
}
table.recruit td.job {
    background-color: #8c8c8c;
    color: #fff;
    padding: 6px 10px 6px 20px;
    border-style: none;
    font-size: 16px;
}

.btn_box {
    margin: 60px 4% 10px 4%;
}
.btn_txt:hover {
    opacity: 0.7;
}
.btn_txt {
    color: #ffffff;
    text-align: center;
    padding: 10px 0;
    border-radius: 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: #e65313;
    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;
}





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






/* ページ内リンク
---------------------------------------------------------------------------- */

/* 獣医師勤務表 */
#tg-calendar {
  margin-top: -40px;
  padding-top: 40px;
}

/* 予防について */
#tg-pre02 {
  margin-top: -40px;
  padding-top: 40px;
}
#tg-pre03 {
  margin-top: -40px;
  padding-top: 40px;
}
#tg-pre04 {
  margin-top: -40px;
  padding-top: 40px;
}
#tg-pre05 {
  margin-top: -40px;
  padding-top: 40px;
}
#tg-pre06 {
  margin-top: -40px;
  padding-top: 40px;
}



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

#tg-net {
  margin-top: -50px;
  padding-top: 50px;
}


