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, sup, 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 {
margin:0;
padding:0;
border:0;
outline:0;
font-size:100%;
vertical-align:baseline;
background:transparent;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
display:block;
}
audio, canvas, progress, video {
display: inline-block; vertical-align: baseline;
}

html {
}
body {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  color: #444;
  font-family: sans-serif;
  line-height: 1.0;
}

br {letter-spacing:0;}
ul, li {list-style:none;}
img, a img {border:0; text-decoration:none; vertical-align:top;}
mark {background:#ff0; color:#000;}
b, strong {font-weight:bold;}
table {border-collapse:collapse; border-spacing:0;}
td, th {padding:0;}
hr {box-sizing:content-box; height:0;}
button, input, optgroup, select, textarea {color:inherit; font:sans-serif; margin:0;}
button {overflow: visible;}
button, select {text-transform:none;}
button, html input[type="button"], input[type="reset"], input[type="submit"] {-webkit-appearance:button; cursor:pointer;}
input[type="checkbox"], input[type="radio"] {box-sizing:border-box; padding:0;}
textarea {overflow:auto;}

div:after, ul:after {content:""; display:block; clear:both;}
.cf:before,
.cf:after {content:""; display:table;}
.cf:after {clear:both;}
.cf {zoom:1;}

a {
  background-color:transparent;
  outline:0;
  transition: all 0.3s ease-out;
}
a:link    {color:#111; text-decoration:none;}
a:visited {color:#111; text-decoration:none;}
a:hover   {color:#0cafa2; text-decoration:underline;}
a:active  {color:#0cafa2; text-decoration:none;}

/* -------------------------------------------------------
Layout
---------------------------------------------------------- */
.contents_wrap {
  flex: 1 1 auto;
}


/* -------------------------------------------------------
for SmartPhone
---------------------------------------------------------- */
@media only screen and (max-width:1023px){
  body {
    font-family: serif;
  }
  .pcv {
    display: none;
  }

  .ff_ss {
    font-family: sans-serif;
  }

  .img_l img {
    width: 100%;
  }

  .t_scroll {
    overflow: auto;
    white-space: nowrap;
  }
  .t_scroll table {
    width: 100%;
  }
  .t_scroll::-webkit-scrollbar {
    height: 5px;
  }
  .t_scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .t_scroll::-webkit-scrollbar-thumb {
    background: #bcbcbc;
  }

  /* s_header */
  .s_header {
    position: fixed;
    box-sizing: border-box;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    height: 64px;
    z-index: 10;
  }
  .s_header .title {
    padding: 16px 0 0 8px;
    text-align: left;
  }
  .s_header .title img {
    width: 160px;
  }

  /* nav */
  nav.gnav {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: scroll;
    background: #fff;
    color: #111;
    text-align: center;
    transform: translateY(-100%);
    transition: all 0.6s;
  }
  nav.gnav ul {
    width: 100%;
    background: #fff;
    margin: 0 auto;
    padding: 0;
  }
  nav.gnav ul li {
    width: 100%;
    height: 64px;
    padding: 0;
    border-bottom: 1px dotted #ccc;
    font-size: 1.1em;
  }
  nav.gnav ul li:first-child {
    border-bottom: none;
  }
  nav.gnav ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }

  nav.gnav ul li a {
    display: block;
    color: #111;
    /*padding: 1em 0;*/
    line-height: 64px;
  }

  /* このクラスを、jQueryで付与・削除する */
  nav.gnav.active {
    transform: translateY(0%);
  }

  .navtoggle {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 64px;
    height: 64px;
    z-index: 100;
    background: #111;
    text-align: center;
  }
  .navtoggle span {
    display: block;
    position: absolute;
    /* .navToggleに対して */
    width: 40px;
    border-bottom: solid 3px #eee;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: 12px;
  }

  /* 最初のspanをマイナス45度に */
  .navtoggle.active span:nth-child(1) {
    top: 24px;
    left: 12px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  /* 2番目と3番目のspanを45度に */
  .navtoggle.active span:nth-child(2),
  .navtoggle.active span:nth-child(3) {
    top: 24px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .navtoggle span:nth-child(1) {
    top: 15px;
  }

  .navtoggle span:nth-child(2) {
    top: 24px;
  }

  .navtoggle span:nth-child(3) {
    top: 33px;
  }

  .navtoggle span:nth-child(4) {
    border: none;
    color: #eee;
    font-size: 10px;
    font-weight: bold;
    top: 48px;
  }

  /* main */
  .main_v {
    width: 100%;
    height: 320px;
    background: url(../images/main.jpg) no-repeat center center;
    background-size: cover;
  }

  /* top contents */
  .t_c {
    margin-top: 40px;
  }

  .top_c + .top_c {
    margin-top: 40px;
  }

  .top_c {
    display: flex;
    /*flex-flow: column wrap;*/
    flex-direction: row;
    flex-wrap: wrap;
  }
  .top_c .s_box1 {
    webkit-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .top_c .s_box2 {
    webkit-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }

  .t_c_l_img img,
  .t_c_r_img img {
    /*width: 100%;*/
    max-width: 100%;
  }
  .t_c_l_img,
  .t_c_r_img {
    margin-top: 32px;
  }
  .t_c_r_txt,
  .t_c_l_txt {
    padding: 0 1em;
    color: #111;
    line-height: 1.8;
  }
  .t_hd1 {
    font-size: 120%;
    font-weight: bold;
  }


  /* top_infomation */
  .top_infomation {
    width: 100%;
    margin-bottom: 40px;
    padding: 40px 0;
    background: url(../images/bg1.jpg) repeat left top;
  }
  .t_i_title {
    margin-bottom: 32px;
    text-align: center;
  }
  .t_i_title .t_hd2 {
    display: inline-block;
    padding-bottom: 8px;
    border-bottom: 4px solid #60c4bc;
  }
  .top_infomation ul {
    letter-spacing: -0.4em;
    text-align: center;
  }
  .top_infomation ul li {
    letter-spacing: normal;
    display: inline-block;
    box-sizing: border-box;
    /*width: 100%;*/
    max-width: 332px;
    margin: 0 16px 16px;
    padding: 16px;
    background: #fff;
    border: 1px solid #ccc;
    text-align: left;
    vertical-align: top;
  }
  .top_i_img {
    width: 100%;
    max-width: 320px;
    height: 180px;
    overflow: hidden;
    margin-bottom: 16px;
  }
  .top_i_img img {
    width: 100%;
    height: auto;
  }
  .top_i_t {
    font-size: 18px;
    font-weight: bold;
    text-align: left;
  }
  .top_infomation ul li p {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.4;
    text-align: left;
  }
  .t_i_btn {
    margin-top: 16px;
    text-align: center;
  }
  .t_i_btn a {
    display: inline-block;
    box-sizing: border-box;
    padding: .6em 1em;
    background: #111;
    border: 1px solid #111;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
  }
  .t_i_btn a:hover {
    background: #fff;
    border: 1px solid #ddd;
    color: #0cafa2;
  }



  /* top_topics */
  .top_topics {
    width: 100%;
  }
  .t_t_title {
    margin-bottom: 32px;
    text-align: center;
  }
  .t_t_title .t_hd2 {
    display: inline-block;
    padding-bottom: 8px;
    border-bottom: 4px solid #60c4bc;
  }
  .top_topics ul {
    letter-spacing: -0.4em;
    text-align: center;
  }
  .top_topics ul li {
    letter-spacing: normal;
    display: inline-block;
    box-sizing: border-box;
    width: 49%;
    margin: 0 0 32px;
    padding: 0 8px;
    /*border-bottom: 1px dotted #ccc;*/
    overflow: hidden;
    text-align: left;
    vertical-align: top;
  }
  .top_topics ul li a {
    color: #111;
    text-decoration: none;
  }
  .top_topics ul li a:hover {
    color: #0cafa2;
  }
  .top_t_img {
    box-sizing: border-box;
    width: 100%;
    max-height: 126px;
    overflow: hidden;
    margin-bottom: 16px;
  }
  .sub_t_img {
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
    margin-bottom: 16px;
  }
  .top_t_img img,
  .sub_t_img img {
    width: 100%;
    height: auto;
  }

  .t_t_date {
    margin-bottom: 8px;
    padding-bottom: 8px;
    /*border-bottom: 1px solid #eee;*/
    color: #333;
    font-size: 80%;
  }
  .top_topics ul li p {
    height: 5em;
    overflow: hidden;
    font-size: 16px;
    line-height: 1.6;
  }
  .tpics_link_btn {
    margin-top: 32px;
    margin-bottom: 32px;
    text-align: center;
  }
  .tpics_link_btn a {
    display: inline-block;
    padding: 1em 2em;
    background: #111;
    border: 1px solid #111;
    color: #fff;
    text-decoration: none;
  }
  .tpics_link_btn a:hover {
    background: #fff;
    border: 1px solid #ddd;
    color: #0cafa2;
  }



  /* contents-------------------------- */
  .page_title {
    position: relative;
    width: 100%;
    height: 240px;
    background: url(../images/page_title_bg.jpg) no-repeat center top;
    background-size: cover;
    margin-top: 64px;
    text-align: center;
  }
  .page_title h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit- transform: translateY(-50%) translateX(-50%);
    margin: auto;
    color: #fff;
    font-size: 140%;
    font-weight: bold;
  }

  .entry_body {
    margin: 40px auto 40px;
  }

  .hd2 {
    padding: 0 8px;
  }
  .hd2 h2 {
    padding-bottom: .8em;
    border-bottom: 1px solid #333;
    font-size: 120%;
    font-weight: normal;
    text-align: center;
  }
  .hd3 {
    margin-top: 56px;
  }
  .hd3 h3 {
    padding: 1em 0 1em 2em;
    background: #111;
    color: #fff;
    font-size: 100%;
    font-weight: normal;
  }

  /* greeting・butsuzou */
  .greeting {}
  .greeting header,
  .butsuzou_block header {
    margin-bottom: 32px;
  }
  .greeting header h2,
  .butsuzou_block header h2 {
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #666;
    font-size: 24px;
  }
  .greeting header span {
    display: block;
    text-align: right;
  }
  .butsuzou_block header span {
    display: inline;
    margin-right: 1em;
    font-size: 14px;
  }
  .greeting_wrap,
  .bs_wrap {
  }
  .bs_wrap + .bs_wrap {
    margin-top: 64px;
  }
  .greeting_wrap .g_img,
  .bs_wrap .bs_img {
    margin-bottom: 32px;
    padding: 0 8px;
    text-align: center;
  }
  .greeting_wrap .g_txt,
  .bs_wrap .bs_txt {
    padding: 0 8px;
  }
  .greeting_wrap .g_img img,
  .bs_wrap .bs_img img {
    width: 100%;
    max-width: 400px;
  }
  .greeting_wrap .g_img figcaption,
  .bs_wrap .bs_img figcaption {
    margin-top: 8px;
    font-size: 80%;
  }
  .greeting_wrap .g_txt p {
    margin-bottom: 1em;
    font-size: 100%;
    line-height: 1.8;
    text-indent: 1em;
  }
  .bs_wrap .bs_txt p {
    font-size: 100%;
    line-height: 1.8;
    text-indent: 1em;
  }


  /* monto */
  .montokouryou {
    margin-top: 40px;
    padding: 32px 16px;
    background: url(../images/monto_bg.jpg) repeat-y center center;
  }
  .montokouryou p {
    color: #111;
    font-size: 120%;
    letter-spacing: .1em;
    line-height: 2.0;
  }
  .montokouryou ruby rt {
    font-family: sans-serif;
    font-size: 10px;
    font-weight: normal;
  }
  .seitei {
    margin-top: 16px;
    font-size: 14px;
    text-align: right;
  }


  /* circle */
  .circle_img {
    margin-top: 40px;
    text-align: center;
  }
  .circle_img img {
    max-width: 100%;
  }
  .circle_info {
    margin: 32px 0 64px;
    padding: 0 8px;
    line-height: 1.8;
    text-align: left;
  }


  /* gallery */
  .photo_area {}
  .photo_area .info {
    padding: 0 8px;
    font-size: .9em;
  }
  .photo_area ul.gallery {
    letter-spacing: -0.4em;
    margin-bottom: 1em;
    text-align: center;
  }
  .photo_area ul.gallery li {
    letter-spacing: normal;
    display: inline-block;
    width: 46%;
    margin: 4px;
  }
  .photo_area ul.gallery li .g_s_img {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  .photo_area ul.gallery li .g_s_img:before {
    content:"";
    display: block;
    padding-top: 56.25%;
  }
  .photo_area ul.gallery li .g_s_img img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    margin: auto;
  }


  /* repair */
  .repair_info {
    margin-top: 24px;
  }
  .repair_info_header {
    margin-bottom: 24px;
    padding: 16px 24px;
    background: #f3f3f3;
  }
  .repair_info_header .r_i_h_title {
    font-size: 140%;
  }
  .repair_info_header .r_i_h_title span {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
  }
  .repair_info_header p {
    margin-top: 1em;
    font-size: 100%;
  }
  .repair_intro {
    margin-bottom: 24px;
    padding: 0 1em;
    line-height: 1.6;
  }

  .repair_box + .repair_box {
    margin-top: 32px;
  }
  .repair_box {
    margin: 0 8px;
    padding: 16px;
    border: 1px solid #ddd;
  }
  .r_b_title {
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.4;
  }
  .r_b_title span {
    display: inline-block;
    width: 4em;
    margin-right: 8px;
    padding: 4px 0;
    background: #59bf9f;
    color: #fff;
    font-size: 16px;
    font-weight: normal;
    text-align: center;
    /*vertical-align: bottom;*/
  }
  .repair_box p {
    padding-left: 1em;
    line-height: 1.8;
  }
  .repair_box .rb_img {
    margin-bottom: 16px;
    text-align: center;
  }
  .repair_box .rb_img img {
    width: 100%;
    max-width: 300px;
  }

  .repair ul {
    letter-spacing: -0.4em;
    margin-bottom: 1em;
    text-align: center;
  }
  .repair ul li {
    letter-spacing: normal;
    display: inline-block;
    width: 46%;
    margin: 4px;
  }
  .repair ul li .r_s_img {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  .repair ul li .r_s_img:before {
    content:"";
    display: block;
    padding-top: 56.25%;
  }
  .repair ul li .r_s_img img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    margin: auto;
  }



  /* access */
  .map {
    width: 100%;
    margin-top: 32px;
  }
  .map iframe {
    width: 100%;
    height: 240px;
  }

  .access_info {
    margin-top: 16px;
    padding: 0 8px;
  }

  .access_info table {
    width: 100%;
    border: 1px solid #eee;
  }
  .access_info th,
  .access_info td {
    padding: 1em;
    border: 1px solid #eee;
    font-size: 100%;
    font-weight: normal;
    line-height: 1.6;
    vertical-align: middle;
  }
  .access_info th {
    background: #111;
    color: #fff;
  }
  .access_info td {}

  .access_route {
    margin-top: 16px;
    padding: 0 8px
  }
  .access_route .a_r_l {
    border: 4px solid #eee;
  }
  .access_route .a_r_r {
    margin-top: 16px;
    border: 4px solid #eee;

  }
  .access_route .a_r_l .inner,
  .access_route .a_r_r .inner {
    padding: 1em;
    color: #000;
    font-size: 120%;
    line-height: 1.7;
    text-align: center;
  }
  .access_route .a_r_l .inner p {
    font-size: 1rem;
  }
  .access_route .a_r_r .inner p {
    font-size: .8rem;
    text-align: left;
  }
  .access_route .a_time {
    font-size: 160%;
  }


  /* info */
  .info_block {
    margin-top: 40px;
  }
  .info_block .hd3 {
    margin: 0;
  }
  .info_title {
    width: 100%;
  }
  .info_box + .info_box {
    margin-top: 40px;
  }
  .info_box table {
    width: 100%;
    margin-top: 16px;
    border: 1px solid #eee;
  }
  .info_box th,
  .info_box td {
    padding: 1em;
    border: 1px solid #eee;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.6;
  }
  .info_box th {
    width: 6em;
    background: #111;
    color: #fff;
  }


  /* topics */
  .topics {
    width: 100%;
    margin-top: 32px;
  }
  .t_title {
    margin-bottom: 32px;
    text-align: center;
  }
  .t_title .t_hd2 {
    display: inline-block;
    padding-bottom: 8px;
    border-bottom: 4px solid #60c4bc;
  }
  .topics ul {
    text-align: center;
  }
  .topics ul li {
    box-sizing: border-box;
    width: 100%;
    margin: 0 0 32px;
    padding: 0 8px;
    border-bottom: 1px dotted #ccc;
    overflow: hidden;
    text-align: left;
  }

  .topics ul li a {
    color: #111;
    text-decoration: none;
  }
  .topics ul li a:hover {
    color: #0cafa2;
  }
  .t_img {
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 16px;
  }
  .t_img img {
    width: 100%;
    height: auto;
  }
  .t_date {
    margin-bottom: 8px;
    padding-bottom: 8px;
    color: #333;
    font-size: 80%;
  }
  .topics ul li p {
    height: 5em;
    overflow: hidden;
    font-size: 16px;
    line-height: 1.6;
  }

  ul.pagenav {
    letter-spacing: -0.4em;
    margin-top: 32px;
    text-align: center;
  }
  ul.pagenav li {
    letter-spacing: normal;
    display: inline-block;
    margin: 0 4px;
  }
  ul.pagenav li a {
    display: block;
    width: 32px;
    height: 32px;
    background: #ddd;
    color: #111;
    font-family: sans-serif;
    font-size: 14px;
    text-decoration: none;
    line-height: 32px;
    text-align: center;
  }
  ul.pagenav li a:hover {
    background: #111;
    color: #fff;
  }
  ul.pagenav li a.nv {
    background: #60c4bc;
    color: #fff;
  }


  /* blog */
  .blog {
    margin: 80px auto 40px;
  }
  .blog header {
    margin-bottom: 32px;
    padding: 0 8px;
  }
  .blog header .b_date {
    margin-bottom: 1em;
    font-family: sans-serif;
    color: #666;
    font-size: 12px;
  }
  .blog header h1 {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.4;
  }
  .eyecatch img {
    width: 100%;
  }
  .blog_body {
    margin-top: 32px;
    padding: 0 8px;
    font-family: sans-serif;
    line-height: 1.8;
  }
  .blog_body img {
    width: 100%;
  }

  .back_btn {
    margin-top: 64px;
    text-align: center;
  }
  .back_btn a {
    display: inline-block;
    padding: 1em 2em;
    background: #111;
    border: 1px solid #111;
    color: #fff;
    text-decoration: none;
  }
  .back_btn a:hover {
    background: #fff;
    border: 1px solid #ddd;
    color: #0cafa2;
  }



  /* page top */
  .gototop {
    text-align: center;
  }
  .gototop a {
    display: inline-block;
    padding: 1em 2em;
    background: #1f1f1f;
    color: #fff;
    font-size: 12px;
    text-decoration: none;
  }
  .gototop a i {
    font-size: 14px;
  }


  /* footer */
  .footer {
    width: 100%;
    padding: 16px 0;
    background: #1f1f1f;
    line-height: 1.6;
    text-align: center;
  }
  .footer p {
    color: #eee;
    font-size: 14px;
    letter-spacing: 1px;
  }
  .footer .site_name span {
    font-size: 12px;
  }
  .footer .address {
    margin-left: 2em;
    font-size: 12px;
  }
  .footer .s-br {
    display: block;
  }
  .footer .hpc {
  	margin-left: 2em;
  	font-size: 10px;
  	text-align: center;
  }
  .footer .hpc a {
  	color: #fff;
  }

}/* end SP */


/* -------------------------------------------------------
for TAB
---------------------------------------------------------- */
@media screen and (min-width:481px) and (max-width:1023px) {
  .top_infomation ul {
    letter-spacing: -0.4em;
    text-align: center;
  }
  .top_infomation ul li {
    letter-spacing: normal;
    display: inline-block;
    box-sizing: border-box;
    width: 100%;
    max-width: 320px;
    margin: 0 16px 16px;
    padding: 16px;
    background: #fff;
    border: 1px solid #ccc;
    text-align: left;
  }
  .top_i_img {
    width: 100%;
    max-width: 288px;
    height: 162px;
    overflow: hidden;
    margin-bottom: 16px;
  }
  .top_i_img img {
    width: 100%;
    height: auto;
  }


  .top_t_img {
    box-sizing: border-box;
    width: 100%;
    max-width: 480px;
    margin: 0 auto 16px;
    text-align: center;
  }
  .sub_t_img {
    box-sizing: border-box;
    width: 100%;
    max-width: 480px;
    margin: 0 auto 16px;
    text-align: center;
  }

  .top_t_img img,
  .sub_t_img img {
    width: 100%;
    height: auto;
  }
}/* end TAB */



/* -------------------------------------------------------
for PC
---------------------------------------------------------- */
@media only screen and (min-width:1024px){
	html {
	  display: flex;
	  flex-direction: column;
	  height: 100%;
	  -ms-text-size-adjust:100%;
	  -webkit-text-size-adjust:100%;
	}

  body {
    font-family: "游明朝体", "YuMincho", "游明朝", "Yu Mincho", serif;
    zoom:1;
  }
  .spv {
    display: none;
  }

  .ff_ss {
    font-family: sans-serif;
  }

  .img_l img {
    width: 100%;
    max-width: 1024px;
  }

  /* header */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 144px;
    background: rgba(255,255,255,1.0);
    border-bottom: 1px solid #eee;
    z-index: 100;
  }
  .header_inner {
    display: flex;
    width: 1024px;
    margin: 0 auto;
    align-items: center;
  }
  .header_inner .title {
    width: 72px;
  }
  .header_inner .h_l_l,
  .header_inner .h_l_r {
    box-sizing: border-box;
    width: 476px;
  }
  .header_inner .h_l_l {
    padding-right: 32px;
    text-align: right;
  }
  .header_inner .h_l_r {
    padding-left: 32px;
    text-align: left;
  }
  .header_inner .h_l_l ul,
  .header_inner .h_l_r ul {
    display: table;
    width: 100%;
  }
  .header_inner .h_l_l ul li,
  .header_inner .h_l_r ul li {
    display: table-cell;
    width: 25%;
    text-align: center;
    vertical-align: middle;
  }

  /* contents_wrap */
  .contents_wrap {
    margin-top: 144px;
  }

  /* main_v */
  .main_v {
    width: 100%;
    height: 700px;
    background: url(../images/main.jpg) no-repeat center center;
  }


  /* top contents */
  .t_hd1 {
    font-size: 36px;
    font-weight: bold;
  }
  .t_hd2 {
    font-size: 24px;
    font-weight: bold;
  }

  .t_c {
    margin-top: 100px;
  }
  .top_c {
    width: 100%;
    margin: 0 auto;
    display: flex;
  }
  .top_c + .top_c {
    margin-top: 16px;
  }
  .t_c_l_img,
  .t_c_r_img,
  .t_c_l_txt,
  .t_c_r_txt {
    width: 50vw;
    min-width: 512px;
  }
  .t_c_l_img,
  .t_c_r_img {
    position: relative;
    overflow-x: hidden;
    min-height: 560px;
  }
  .t_c_l_img {
    text-align: right;
  }
  .t_c_l_img img {
    position: absolute;
    top: 0;
    right: 0;
  }
  .t_c_r_img {
    text-align: left;
  }
  .t_c_r_img img {
    position: absolute;
    top: 0;
    left: 0;
  }
  .t_c_inner .t_hd1 {
    line-height: 1.4;
  }
  .t_c_r_txt .t_c_inner {
    box-sizing: border-box;
    width: 512px;
    padding: 16px 0 0 72px;
  }
  .t_c_l_txt {
    text-align: right;
  }
  .t_c_l_txt .t_c_inner {
    display: inline-block;
    box-sizing: border-box;
    width: 512px;
    padding: 16px 72px 0 0;
    text-align: left;
  }

  .t_c_inner p {
    margin-top: 1.5em;
    color: #111;
    font-size: 18px;
    line-height: 2.0;
    letter-spacing: .1em;
  }


  /* top_infomation */
  .top_infomation {
    width: 100%;
    margin-top: 100px;
    padding: 100px 0;
    background: url(../images/bg1.jpg) repeat left top;
  }
  .t_i_title {
    margin-bottom: 56px;
    text-align: center;
  }
  .t_i_title .t_hd2 {
    display: inline-block;
    padding-bottom: 8px;
    border-bottom: 4px solid #60c4bc;
  }
  .top_infomation ul {
    width: 1024px;
    margin: 0 auto;
    letter-spacing: -0.4em;
    text-align: center;
  }
  .top_infomation ul li {
    display: inline-block;
    letter-spacing: normal;
    box-sizing: border-box;
    width: 272px;
    margin: 0 20px;
    padding: 16px;
    background: #fff;
    border: 1px solid #ccc;
  }
  .top_i_img {
    width: 240px;
    height: 180px;
    overflow: hidden;
    margin-bottom: 16px;
  }
  .top_i_img img {
    width: 100%;
    height: auto;
  }
  .top_i_t {
    font-size: 18px;
    font-weight: bold;
    text-align: left;
  }
  .top_infomation ul li p {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.4;
    text-align: left;
  }
  .t_i_btn {
    margin-top: 16px;
    text-align: center;
  }
  .t_i_btn a {
    display: inline-block;
    box-sizing: border-box;
    padding: .6em 1em;
    background: #111;
    border: 1px solid #111;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
  }
  .t_i_btn a:hover {
    background: #fff;
    border: 1px solid #ddd;
    color: #0cafa2;
  }

  /* top_topics */
  .top_topics {
    width: 100%;
    padding: 100px 0;
  }
  .t_t_title {
    margin-bottom: 56px;
    text-align: center;
  }
  .t_t_title .t_hd2 {
    display: inline-block;
    padding-bottom: 8px;
    border-bottom: 4px solid #60c4bc;
  }
  .top_topics ul {
    width: 1024px;
    margin: 0 auto;
    letter-spacing: -0.4em;
    text-align: left;
  }
  .top_topics ul li {
    display: inline-block;
    letter-spacing: normal;
    box-sizing: border-box;
    width: 288px;
    /*margin-right: 56px;*/
    margin: 0 24px 24px;
    overflow: hidden;
    text-align: left;
    vertical-align: top;
  }
  .top_topics ul li:last-child {
    /*margin: 0;*/
  }
  .top_topics ul li a {
    color: #111;
    text-decoration: none;
  }
  .top_topics ul li a:hover {
    color: #0cafa2;
  }
  .top_t_img {
    width: 288px;
    height: 162px;
    overflow: hidden;
    margin-bottom: 16px;
  }
  .sub_t_img {
    width: 288px;
    height: 162px;
    overflow: hidden;
    margin-bottom: 16px;
  }

  .top_t_img img,
  .sub_t_img img {
    width: 100%;
    height: auto;
    transition: all 0.3s ease-out;
  }
  .top_t_img img:hover {
    transform: scale(1.2);
  }
  .t_t_date {
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
    color: #333;
    font-size: 12px;
  }
  .top_topics ul li p {
    height: 5em;
    overflow: hidden;
    font-size: 16px;
    line-height: 1.6;
  }
  .tpics_link_btn {
    margin-top: 32px;
    text-align: center;
  }
  .tpics_link_btn a {
    display: inline-block;
    padding: 1em 2em;
    background: #111;
    border: 1px solid #111;
    color: #fff;
    text-decoration: none;
  }
  .tpics_link_btn a:hover {
    background: #fff;
    border: 1px solid #ddd;
    color: #0cafa2;
  }



  /* contents-------------------------- */
  .page_title {
    position: relative;
    width: 100%;
    height: 320px;
    background: url(../images/page_title_bg.jpg) no-repeat center top;
    background-size: cover;
    text-align: center;
  }
  .page_title h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit- transform: translateY(-50%) translateX(-50%);
    margin: auto;
    color: #fff;
    font-size: 32px;
    font-weight: bold;
    letter-spacing: .1em;
  }
  .page_title ruby rt {
    font-family: sans-serif;
    font-size: 12px;
    font-weight: normal;
  }

  .entry_body {
    width: 1024px;
    margin: 64px auto 80px;
  }

  .hd2 {
    /*margin-bottom: 40px;*/
  }
  .hd2 h2 {
    display: inline-block;
    padding-bottom: .8em;
    padding-right: 5em;
    border-bottom: 1px solid #333;
    font-size: 24px;
    font-weight: normal;
  }
  .hd3 {
    margin-top: 56px;
  }
  .hd3 h3 {
    padding: 1em 0 1em 2em;
    background: #111;
    color: #fff;
    font-size: 18px;
    font-weight: normal;
  }


  /* greeting・bitsuzou */
  .greeting {}
  .greeting header,
  .butsuzou_block header {
    margin-bottom: 32px;
  }
  .greeting header h2,
  .butsuzou_block header h2 {
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #666;
    font-size: 24px;
  }
  .greeting header span {
    display: block;
    text-align: right;
  }
  .butsuzou_block header span {
    display: inline-block;
    margin-right: 16px;
    font-size: 16px;
  }

  .greeting_wrap,
  .bs_wrap {
    display: flex;
    width: 100%;
  }
  .bs_wrap + .bs_wrap {
    margin-top: 64px;
  }
  .greeting_wrap .g_img,
  .bs_wrap .bs_img {
    width: 360px;
    vertical-align: top;
  }
  .greeting_wrap .g_txt,
  .bs_wrap .bs_txt {
    flex: 1;
    padding-left: 32px;
    vertical-align: top;
  }
  .greeting_wrap .g_img img,
  .bs_wrap .bs_img img {
    width: 100%;
  }
  .greeting_wrap .g_img figcaption,
  .bs_wrap .bs_img figcaption {
    margin-top: 8px;
    font-size: 12px;
  }
  .greeting_wrap .g_txt p {
    margin-bottom: 1em;
    font-size: 100%;
    line-height: 1.8;
    text-indent: 1em;
  }
  .bs_wrap .bs_txt p {
    font-size: 100%;
    line-height: 1.8;
    text-indent: 1em;
  }


  /* monto */
  .montokouryou {
    margin-top: 40px;
    padding: 48px 64px;
    background: url(../images/monto_bg.jpg) no-repeat center center;
  }
  .montokouryou p {
    color: #111;
    font-size: 24px;
    letter-spacing: .1em;
    line-height: 2.0;
  }
  .montokouryou ruby rt {
    font-family: sans-serif;
    font-size: 10px;
    font-weight: normal;
  }
  .seitei {
    margin-top: 16px;
    font-size: 14px;
    text-align: right;
  }


  /* circle */
  .circle_img {
    text-align: center;
  }
  .circle_info {
    margin: 40px 0 64px;
    line-height: 1.8;
    text-align: center;
  }


  /* gallery */
  .photo_area {
    margin-top: 32px;
    margin-bottom: 64px;
  }
  .photo_area .info {
    font-size: .9em;
  }
  .photo_area ul.gallery {
    letter-spacing: -0.4em;
    margin-bottom: 1em;
  }
  .photo_area ul.gallery li {
    letter-spacing: normal;
    display: inline-block;
    position: relative;
    width: 248px;
    height: 140px;
    overflow: hidden;
    margin: 0 4px 8px;
  }
  .photo_area ul.gallery li img {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 100%;
    transition: all .3s;
  }
  .photo_area ul.gallery li img:hover {
    opacity: 0.8;
    cursor: pointer;
  }


  /* repair */
  .repair_block {
    margin-top: 64px;
  }

  .repair_info {
    margin-top: 32px;
  }
  .repair_info_header {
    margin-bottom: 32px;
    padding: 16px 24px;
    background: #f3f3f3;
    letter-spacing: .1em;
  }
  .repair_info_header .r_i_h_title {
    font-size: 24px;
  }
  .repair_info_header .r_i_h_title span {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
  }
  .repair_info_header p {
    margin-top: 1em;
    font-size: 16px;
  }
  .repair_intro {
    margin-bottom: 32px;
  }

  .repair_box + .repair_box {
    margin-top: 32px;
  }
  .repair_box {
    padding: 16px;
    border: 1px solid #ddd;
  }
  .r_b_title {
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: bold;
  }
  .r_b_title span {
    display: inline-block;
    width: 4em;
    margin-right: 8px;
    padding: 4px 0;
    background: #59bf9f;
    color: #fff;
    font-size: 16px;
    font-weight: normal;
    text-align: center;
    /*vertical-align: bottom;*/
  }
  .repair_box p {
    padding-left: 1em;
    line-height: 1.8;
  }
  .repair_box .rb_img {
    float: right;
    width: 200px;
    margin: 0 0 16px 16px;
  }
  .repair_box .rb_img img {
    width: 100%;
  }


  .repair {
    margin-top: 32px;
  }
  .repair ul {
    letter-spacing: -0.4em;
  }
  .repair li {
    letter-spacing: normal;
    display: inline-block;
    position: relative;
    width: 248px;
    height: 140px;
    overflow: hidden;
    margin: 0 4px 8px;
  }
  .repair li img {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 100%;
    transition: all .3s;
  }
  .repair li img:hover {
    opacity: 0.8;
    cursor: pointer;
  }




  /* access */
  .map {
    width: 100%;
    margin-top: 40px;
  }
  .map iframe {
    width: 100%;
    height: 400px;
  }

  .access_info {
    margin-top: 40px;
  }

  .access_info table {
    width: 100%;
    border: 1px solid #eee;
  }
  .access_info th,
  .access_info td {
    padding: 1em;
    border: 1px solid #eee;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.6;
  }
  .access_info th {
    background: #111;
    color: #fff;
  }
  .access_info td {}

  .access_route {
    display: flex;
    margin-top: 32px;
  }
  .access_route .a_r_l {
    box-sizing: border-box;
    width: 50%;
    margin: 0 16px 0 0;
    border: 4px solid #eee;
  }
  .access_route .a_r_r {
    box-sizing: border-box;
    width: 50%;
    margin: 0 0 0 16px;
    border: 4px solid #eee;

  }
  .access_route .a_r_l .inner,
  .access_route .a_r_r .inner {
    padding: 16px;
    color: #000;
    font-size: 18px;
    line-height: 1.7;
    text-align: center;
    vertical-align: middle;
  }
  .access_route .a_r_l .inner p,
  .access_route .a_r_r .inner p {
    font-size: 16px;
  }
  .access_route .a_time {
    font-size: 32px;
  }


  /* info */
  .info_block {
    margin-top: 40px;
  }
  .info_block .hd3 {
    margin: 0;
  }
  .info_title {
    width: 100%;
  }
  .info_box + .info_box {
    margin-top: 64px;
  }
  .info_box table {
    width: 100%;
    margin-top: 16px;
    border: 1px solid #eee;
  }
  .info_box th,
  .info_box td {
    padding: 1em;
    border: 1px solid #eee;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.6;
  }
  .info_box th {
    width: 200px;
    background: #111;
    color: #fff;
    vertical-align: middle;
  }


  /* topics */
  /* top_topics */
  .topics {
    margin-top: 40px;
  }

  .topics ul {
    width: 1024px;
    margin: 0 auto;
    letter-spacing: -0.4em;
    text-align: left;
  }
  .topics ul li {
    display: inline-block;
    letter-spacing: normal;
    box-sizing: border-box;
    width: 288px;
    margin: 0 24px 40px;
    overflow: hidden;
    text-align: left;
  }
  .topics ul li a {
    color: #111;
    text-decoration: none;
  }
  .topics ul li a:hover {
    color: #0cafa2;
  }
  .t_img {
    width: 288px;
    height: 162px;
    overflow: hidden;
    margin-bottom: 16px;
  }
  .t_img img {
    width: 100%;
    height: auto;
    transition: all 0.3s ease-out;
  }
  .t_img img:hover {
    transform: scale(1.2);
  }
  .t_date {
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
    color: #333;
    font-size: 12px;
  }
  .topics ul li p {
    height: 5em;
    overflow: hidden;
    font-size: 16px;
    line-height: 1.6;
  }
  ul.pagenav {
    letter-spacing: -0.4em;
    margin-top: 32px;
    text-align: center;
  }
  ul.pagenav li {
    letter-spacing: normal;
    display: inline-block;
    margin: 0 4px;
  }
  ul.pagenav li a {
    display: block;
    width: 32px;
    height: 32px;
    background: #ddd;
    color: #111;
    font-family: sans-serif;
    font-size: 14px;
    text-decoration: none;
    line-height: 32px;
    text-align: center;
  }
  ul.pagenav li a:hover {
    background: #111;
    color: #fff;
  }
  ul.pagenav li a.nv {
    background: #60c4bc;
    color: #fff;
  }


  /* blog */
  .blog {
    width: 1024px;
    margin: 64px auto 80px;
  }

  .blog header {
    margin-bottom: 32px;
  }
  .blog header .b_date {
    margin-bottom: 1em;
    font-family: sans-serif;
    color: #666;
    font-size: 12px;
  }
  .blog header h1 {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.4;
  }
  .blog_body {
    margin-top: 40px;
    font-family: sans-serif;
    line-height: 1.8;
  }
  .eyecatch {
  	text-align: center;
	}
  .eyecatch img {
    max-width: 100%;
  }

  .blog_body img {
    max-width: 1024px;
  }


  .back_btn {
    margin-top: 80px;
    text-align: center;
  }
  .back_btn a {
    display: inline-block;
    padding: 1em 2em;
    background: #111;
    border: 1px solid #111;
    color: #fff;
    text-decoration: none;
  }
  .back_btn a:hover {
    background: #fff;
    border: 1px solid #ddd;
    color: #0cafa2;
  }

  /* pagepath */
  .pagepath {
    width: 1024px;
    margin: 16px auto 0;
  }
  .pagepath ul {
    letter-spacing: -0.4em;
  }
  .pagepath ul li {
    letter-spacing: normal;
    display: inline-block;
    padding-right: 1em;
    font-family: sans-serif;
    font-size: 12px;
  }
  .pagepath ul li:after {
    font-family: "FontAwesome";
    content: "\f105";
    color: #999;
    margin-left: 1em;
  }
  .pagepath ul li:last-child:after {
    content: "";
    margin: 0;
  }
  .pagepath ul li a {
    color: #666;

  }

  /* footer */
  .footer {
    width: 100%;
    margin-top: auto;/* 古いsafari向け */
    padding: 32px 0;
    background: #1f1f1f;
    text-align: center;
  }
  .footer p {
    display: inline-block;
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
  }
  .footer .site_name span {
    font-size: 12px;
  }
  .footer .address {
    margin-left: 2em;
    font-size: 12px;
  }
  .footer .hpc {
  	margin-left: 2em;
  	font-size: 12px;
  }
  .footer .hpc a {
  	color: #fff;
  }

}/* end PC */



/* -------------------------------------------------------
Common
---------------------------------------------------------- */
.fs80 {font-size:80%;}
.fs90 {font-size:90%;}
.fs100 {font-size:100%;}
.fs120 {font-size:120%;}
.fs150 {font-size:150%;}
.fs10px {font-size:10px;}
.fs11px {font-size:11px;}
.fs12px {font-size:12px;}
.fs13px {font-size:13px;}
.fs14px {font-size:14px;}
.fs15px {font-size:15px;}
.fs16px {font-size:16px;}
.fs17px {font-size:17px;}
.fs18px {font-size:18px;}

.lh15 {line-height:1.5;}
.lh16 {line-height:1.6;}
.lh17 {line-height:1.7;}
.lh18 {line-height:1.8;}
.lh20 {line-height:2.0;}

.mgb8 {margin-bottom:8px;}
.mgb16 {margin-bottom:16px;}
.mgb24 {margin-bottom:24px;}
.mgb32 {margin-bottom:32px;}
.mgb40 {margin-bottom:40px;}
.mgb48 {margin-bottom:48px;}
.mgb56 {margin-bottom:56px;}
.mgb64 {margin-bottom:64px;}
.mgb80 {margin-bottom:80px;}
.mgb100 {margin-bottom:100px;}
.mgb05em {margin-bottom:0.5em;}
.mgb1em {margin-bottom:1em;}
.mgb15em {margin-bottom:1.5em;}
.mgb2em {margin-bottom:2em;}

.pdlr8 {padding:0 8px;}
.pdlr16 {padding:0 16px;}
.pdlr24 {padding:0 24px;}
.pdlr32 {padding:0 32px;}
.pdlr1em {padding:0 1em;}
.pdlr2em {padding:0 2em;}

.tac {text-align:center;}
.tal {text-align:left;}
.tar {text-align:right;}

.fw_b {font-weight:bold;}


