@charset "utf-8";

/*
 * PC用スタイルCSS
 */


/* ↓↓　雛形　レイアウトにあわせて追記・上書きして下さい　↓↓
   後々解読が面倒になるので、必要な箇所のみ記述すること
  （例：背景がPNGになるなら background-image: url("/files/xx_bg.png");　など） */




/* ===================================================================================================================
   ■ 全体
------------------------------------------------------------------------------------------------------------------- */
html {
  background-image: none;
  background-color: #fff;
}
body {
  background: url("/files/body_bg.jpg") no-repeat center top;
  color: #3a3937;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
body#page_6 {
  background: url("/files/body_bg_top.jpg") no-repeat center top,url("/files/branding_box_bg.png") no-repeat center top 215px;
  background-size: 100%;
}
#wrapper {
  background: none transparent;
}
#outer_block {
  background: none transparent;
  padding-top: 120px;
  padding-bottom: 70px;
}

a:link, a:visited, a:hover, a:active {
color: #3a3937;
}

/* A～Cブロック記事内リンクボタン */
.main_btn a,
.sub_text_btn a {
  background-color: #ff7200;
  color: #fff;
}


/* ===================================================================================================================
   ■ ヘッダー
------------------------------------------------------------------------------------------------------------------- */
#branding_box {
  height: 640px;
  padding: 0;
  position: relative;
  z-index: 500;
  background: none transparent;
}
#page_6 #branding_box {
  height: 1920px;
}
/* ヘッダーのH1～グローバルナビの高さ調整 */
#header_information {height: 50px;}
#page_6 #header_information {height: 50px;}

/*  H1テキスト
---------------------------------------------------------------------------------------------------- */
#site-description {
  width: 98%;
  margin: 0 auto;
  text-align: right;
}
#site-description a {
  display: inline;
  color: #9fb6a1;
}

/*  サイトロゴ
---------------------------------------------------------------------------------------------------- */
.main_header, .header_class {
  width: 100%;
  padding: 0;
  float: left;
}
.main_header img, .header_class img {
  width: 220px;
  height: 195px;
  background: url("/files/logo.png") no-repeat center top;
  position: absolute;
  margin-left: 30px;
}

/*  グローバルナビ
---------------------------------------------------------------------------------------------------- */
#access {
  width: 100%;
  height: 100px;
}

#access .menu-header {
 width: 910px;
  height: 100px;
  float: right;
  margin: 0 auto;
  margin-right: 50px;
}

/* 親ボタンの背景画像、高さなど　全サイズ共通 */
div#access .menu-item a, div#access .menu-item a:hover {
  background-color: transparent;
  height: 100px;
  line-height: 100px;
  width: 130px;
  padding: 0;
  background: url(/files/topnavi.png);
}

/*ナビ7つの指定*/
div#access .gnavi21 a { background-position: left top;}
div#access .gnavi22 a { background-position: -130px top;}
div#access .gnavi23 a { background-position: -260px top;}
div#access .gnavi24 a { background-position: -390px top;}
div#access .gnavi25 a { background-position: -520px top;}
div#access .gnavi26 a { background-position: -650px top;}
div#access .gnavi27 a { background-position: right top;}

div#access .gnavi21 a:hover { background-position: left bottom;}
div#access .gnavi22 a:hover { background-position: -130px bottom;}
div#access .gnavi23 a:hover { background-position: -260px bottom;}
div#access .gnavi24 a:hover { background-position: -390px bottom;}
div#access .gnavi25 a:hover { background-position: -520px bottom;}
div#access .gnavi26 a:hover { background-position: -650px bottom;}
div#access .gnavi27 a:hover { background-position: right bottom;}

/* プルダウンメニューのサイズ */
#access ul.menu ul.sub-menu {
  top: 100px;
  width: 130px;
}
#access ul.menu ul.sub-menu,
#access ul.menu ul.sub-menu li {
  min-width: 130px;
  width: 130px;
}

/* プルダウンメニューの色　16進数、RGBA両方変更すること */
div#access ul.sub-menu li.sub-gnavi a, div#access ul.sub-menu li.sub-gnavi2 a {
  background: none #fff;
  background: none rgba(255, 255, 255, 0.75);
  filter: alpha(opacity=75); /* ie 6 7 */
  -ms-filter: "alpha(opacity=75)"; /* ie 8 */
  width: 130px;
  color: #ff7200;
}
#access ul li.current_page_item > a, #access ul li.current-menu-ancestor > a,
#access ul li.current-menu-item > a, #access ul li.current-menu-parent > a {
  color: #ff7200;
}
div#access ul.sub-menu li.sub-gnavi a:hover, div#access ul.sub-menu li.sub-gnavi2 a:hover {
  background: none #fff;
  background: none rgba(255, 255, 255, 0.75);
  filter: alpha(opacity=75); /* ie 6 7 */
  -ms-filter: "alpha(opacity=75)"; /* ie 8 */
  color: #b4cd4f;
}
#access ul li.current_page_item > a:hover, #access ul li.current-menu-ancestor > a:hover,
#access ul li.current-menu-item > a:hover, #access ul li.current-menu-parent > a:hover {
  color: #b4cd4f;
}

/* IE7 hack */
*:first-child+html div#access ul.sub-menu li.sub-gnavi a,
*:first-child+html div#access ul.sub-menu li.sub-gnavi2 a {
  background-color: #fff;
}
*:first-child+html div#access ul.sub-menu li.sub-gnavi a:hover,
*:first-child+html div#access ul.sub-menu li.sub-gnavi2 a:hover {
  background-color: #fff;
}

/* IE9 hack */
div#access ul.sub-menu li.sub-gnavi a:not(:target),
div#access ul.sub-menu li.sub-gnavi2 a:not(:target),
div#access ul.sub-menu li.sub-gnavi a:not(:target):hover,
div#access ul.sub-menu li.sub-gnavi2 a:not(:target):hover {
  filter: none;
  -ms-filter: none;
}

/*  メイン画像
---------------------------------------------------------------------------------------------------- */
/* 通常メイン画像 */
#main_teaser, #jquery_slider_pc {
  position: absolute;
  top: 215px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 99;
}
/* フラッシュ選択時 */
.flash_teaser {
  background-repeat: no-repeat;
  background-position: center top;
}

/* TOP SLIDER使用時 */
#jquery_slider_pc {
  margin: 0;
  top: 215px;
}





/* ===================================================================================================================
   ■ サイド
------------------------------------------------------------------------------------------------------------------- */
/* サイドナビ　タイトル */
.widget-title, .widget-title2 a {
  padding: 0;
  text-align: center;
  color: #135c58;
  background: url(/files/widget_title_bg.png) no-repeat scroll left top transparent;
}
.widget-title2 a:link, .widget-title2 a:visited,
.widget-title2 a:hover, .widget-title2 a:active {
  color: #135c58;
}

/* サイドナビ　メニュー部分 */
#blog_main .widget-area ul ul li a {
  color: #4c8961;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: url(/files/widget_list_bg.png) no-repeat scroll left top transparent;
}

#wp-calendar {
  border-collapse: separate;
}
#wp-calendar caption {
  text-align: center;
}
#wp-calendar thead th {
}
#wp-calendar tbody td {
  background: none transparent;
  border-width: 0 0 1px;
  border-style: dotted;
  border-color: #b4cd4f;
  line-height: 2;
  padding: 5px;
}
#wp-calendar tbody td a { text-decoration: underline; }
#wp-calendar tbody td a:hover { text-decoration: none; }




/* ===================================================================================================================
   ■ フッター
------------------------------------------------------------------------------------------------------------------- */
#footer_block {
  background-position: center top;
  height: 360px;
}
#footer_box {
  background: none transparent;
  height: 320px;
}

#footer_box {
  position: relative;
}
#footer_sitemap_block {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 5px;
  margin: auto;
}

/*  フッターナビ
---------------------------------------------------------------------------------------------------- */
#footer_sitemap_block {
  /* フッターナビの上余白はここで調整 */
  padding: 15px 0 0;
}
#footer-widget-area .widget-area ul.menu {
  border-color: #95ba6a;
}
#footer-widget-area .widget-area .menu-item a {
  border-color: #95ba6a;
  color: #95ba6a;
}
#footer-widget-area .widget-area .menu-item a:hover {
  background-color: transparent;
}




/*  フッター情報
---------------------------------------------------------------------------------------------------- */
.footer_infomation {
  display: block;
  width: 1020px;
  margin: 0 auto;
}
#footer_information .entry-post {
  width: 100%;
  text-align: left;
/* テキスト左寄せ用*/
  margin: 80px 0 0 60px;

}



/*  フッターSNSボタン
---------------------------------------------------------------------------------------------------- */
#footer_sns_btn {
  margin: 20px auto 0;
}
#footer_sns_btn .footer_sns_inner {
  width: 250px;
  height: 25px;
}
#footer_sns_btn div {width: 25px;height: 25px;}
#footer_sns_btn div a:hover {opacity: 0.8;}



/*メールフォームボタン*/

#footer_link div {
  position: absolute;
  top: 0;
  width: 100%;
}
#footer_link div a {
  display: block;
  width: 155px;
  height: 120px;
  margin: 0 auto;
  text-indent: -9999px;
  background-image: url(/files/mail_btn.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100%;
  max-width: 155px;
  max-height: 120px;
  margin: 130px 0 0 150px;
}
#footer_link div a:hover {background-position: center bottom;}

div#b_btn {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 5000;
  width: 180px;
}
div#b_btn a:hover{opacity: 0.75;}

#float_top_btn{
    bottom: 180px;
    position: fixed;
    right: 105px;
    z-index: 999;
}
#float_top_btn a:hover{opacity: 0.75;}


/*  コピーライト
---------------------------------------------------------------------------------------------------- */
#copyright {
  color: #99d79f;
}


/*  フッターメニュー
---------------------------------------------------------------------------------------------------- */
.fixed_btn {z-index: 1000;
bottom: 190px;}

.fixed_btn div,
.fixed_btn div a {height: 50px;width: 55px;}

.fixed_btn #fixed_btn_gtn,
.fixed_btn #fixed_btn_gtn a {height: 150px;}



/* ===================================================================================================================
   ■ コンテンツ
------------------------------------------------------------------------------------------------------------------- */
#container_top {
  padding: 0;
}
#container_top.single_post {
  padding: 0 0 50px;
}

/*  見出し
---------------------------------------------------------------------------------------------------- */

.headline_title {
  background-image:none;
  color: #135c58;
}
.headline_title:before {
  content: '';
  background: url(/files/top_entry_title_before.png) 0 0 no-repeat transparent;
    position: absolute;
    width: 65px;
    height: 70px;
  margin-left: -100px;
}
.headline_title:after {
  content: '';
   background: url(/files/top_entry_title_after.png) 0 0 no-repeat transparent;
    position: absolute;
    width: 65px;
    height: 70px;
    margin-left: 40px;
}

h3.entry_title, .entry_title, .entry-title { /* サイズ、背景、余白などはこちら */
  background-image: url(/files/entry_title_bg.jpg);
  color: #135c58;
}
h3.entry_title, .entry_title, .entry_title h3, .entry-title { /* フォントサイズはこちら */
}
.entry_title a:link, .entry_title a:visited, .entry_title a:hover, .entry_title a:active,
.entry-title a:link, .entry-title a:visited, .entry-title a:hover, .entry-title a:active {
  color: #135c58;
}
/* 見出しリンクボタン */
.entry_title span.read_more_btn a,
.entry_title span.read_more_btn a:hover {
  background-image: url(/files/read_more_btn.png);
}
.entry_title span.read_more_btn a:hover {opacity: 0.8;}
* .mid_entry_title {
  background-image: url(/files/entry_title_bg_w570.jpg);
  font-size: 20px;
  color: #135c58;
}


/* B-09、B-10など幅半分ブロックの見出し用 */
* .half_entry_title,
* .short_entry_title {
  background-image: url(/files/half_entry_title_bg.jpg);
}
* .half_entry_title,
* .half_entry_title a,
* .short_entry_title,
* .short_entry_title a {color: #e8f0ca;}

* .half_sub_entry_title,
.short_sub_entry_title {
  background-image: url(/files/half_sub_entry_title_bg.jpg);
}
* .half_sub_entry_title,
* .half_sub_entry_title a,
.short_sub_entry_title,
.short_sub_entry_title a {color: #135c58;}



/* B-03など小見出し用 */
* .sub_entry_title {
  background: url("/files/sub_entry_title_bg.png") no-repeat scroll left top transparent;
  color: #4c8961;
}
* .sub_entry_title a:link, * .sub_entry_title a:visited,
* .sub_entry_title a:hover, * .sub_entry_title a:active {
  color: #4c8961;
}
/* 小見出しリンクボタン */
.sub_entry_title span.read_more_btn a,
.sub_entry_title span.read_more_btn a:hover {
  background-image: url(/files/sub_read_more_btn.png);
}
.sub_entry_title span.read_more_btn a:hover  {opacity: 0.8;}
* .mid_sub_entry_title {
  background-image: url(/files/sub_entry_title_bg_w570.png);
  font-size: 20px;
  color: #4c8961;
}


/* C-01など3列表示インラインタイトル用 */
* .inline_title {
  background-image: url(/files/column3_title_bg.jpg);
}
* .inline_title,
* .inline_title a {color: #fff;}


/* クーポンの本文見出しなど、固定幅でないインラインタイトル用 */
.coupon_data .inline_title,
.c_04 .inline_title,
.i_01 .inline_title,
.j_01 .inline_title {
  background: none transparent;
  border: 1px solid #448359;
  border-radius: 5px;
  height: auto;
  line-height: 1.7;
  padding: 10px;
  text-align: left;
  font-size: 15px;
  color: #55534e;
}

/* 詳細画面の下部「コメント」見出し */
.indent_border {
  border-color: #ff7200;
  width: 685px;
}


/* 大きな地図で見る */
small {
  border-color: #ff7200;
}
small a {
  width: 100%;
  padding: 5px 0;
  text-align: center !important;
  color: #ff7200 !important;
}

small a:hover {
  background-color: #ff7200;
  color: #FFF !important;
}





/*  テーブル
---------------------------------------------------------------------------------------------------- */
.table_area td.td_name, .table_area td.td_value, /* Eブロック、Gブロック等 */
body.coupon .table_area td.td_name, body.coupon .table_area td.td_value, /* クーポンページ */
.z_c1 .iqfm-table th, .z_c1 .iqfm-table td /* お問合せ */ {
  border-color: #448359;
  border-right: none;
  border-left: none;
}
.table_area td.td_name, body.coupon .table_area td.td_name, .z_c1 .iqfm-table th {
  background: none transparent;
}
.table_area td.td_value, body.coupon .table_area td.td_value, .z_c1 .iqfm-table td {
  background: none transparent;
}
/* Dメニュー下線 */
.td_cell {
  border-color: #b4cd4f;
  vertical-align: top;
}

.table_area table tr td {
  border: solid 1px #448359 !important;
  border-right: none !important;
  border-left: none !important;
  background: none transparent;
}



/*  ページ遷移ボタン（詳細ブロックやページ送りのナビ用）
---------------------------------------------------------------------------------------------------- */
.tablenav { padding: 1em 0; }
a.page-numbers, .tablenav .current,
.permalink_in a, .pageback a,
.page_up a {
  background: none transparent;
  border-style: solid;
  border-color: #ff7200;
  color: #ff7200 !important;
}
.permalink_in a:link, .permalink_in a:visited,
.pageback a:link, .pageback a:visited {
}
.tablenav .next:link, .tablenav .next:visited,
.tablenav .prev:link, .tablenav .prev:visited {
  border: 1px solid #fff;
  background: none transparent;
}
.tablenav .next:hover, .tablenav .next:active,
.tablenav .prev:hover, .tablenav .prev:active {
  background-color: #ff7200;
  border-color: #ff7200;
}
.tablenav .current, a.page-numbers:hover,
.permalink_in a:hover, .permalink_in a:active,
.pageback a:hover, .pageback a:active,
.page_up a:hover, .page_up a:active {
  background: none #ff7200;
  border-style: solid;
  border-color: #ff7200;
  color: #fff !important;
} 



/*  ブロック
---------------------------------------------------------------------------------------------------- */
/* 各ブロック点線 */
.border_margin,
.anchor_list ul li,
.cu_mail_block,
.blog_post,
.list_block .list_box {
  border-color: #b4cd4f;
}


/* Cブロック */
.c_01, .c_02, .c_03, .c_05, .c_06 {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  width: 100%;
  padding: 0 0 20px;
  *padding: 0 0 30px;
}
.c_04 { margin: 0 0 20px; }


/* Dブロック */
.menu-list table {
  border-collapse:separate;
}


/* Gブロック */
.g_01 .sub_entry_title a,
.g_02 .sub_entry_title a { text-decoration: underline; }
.g_01 .sub_entry_title a:hover,
.g_02 .sub_entry_title a:hover { text-decoration: none; }


/* Kブロック */
.k_03 .date_area {
  font-size: 13px;
  font-weight: bold;
}
.k_03 .news_small_text {
  font-size: 12px;
  line-height: 1.7;
}


/* Z-D ブログRSS */
.z_d1 { margin: 0 0 20px; }


/* ブログ記事一覧 横並び　※最新3件表示 */
#mcjm4i1sgutqg0x0egdd {margin: 0 0 100px;overflow: hidden;}
#mcjm4i1sgutqg0x0egdd .blog_post {
  width: 290px;
  float: left;
  display: block;
  background-color: #fff;
}
#mcjm4i1sgutqg0x0egdd .blog_post:nth-child(2) {margin: 0 45px;}/* 記事間 左右余白調整 */
#mcjm4i1sgutqg0x0egdd .blog_list_text_size {width: 100%;}
#mcjm4i1sgutqg0x0egdd .eyecatch {float: none;}
#mcjm4i1sgutqg0x0egdd .eyecatch img {width:290px;height:290px;object-fit:cover;}
#mcjm4i1sgutqg0x0egdd .date_area {/* 日付 */
  padding: 0 2%;
}
#mcjm4i1sgutqg0x0egdd .post_title_list {/* 記事タイトル */
  width: 100%;
  padding: 0 2%;
  }
#mcjm4i1sgutqg0x0egdd .blog_thumb {/* サムネイル画像 */
  width: 290px;
  height: 290px;
  max-height: 290px;
  object-fit: cover;
}
#mcjm4i1sgutqg0x0egdd .news_small_text {/* 記事本文 */
  line-height: 1.8;
  display: block;
  width: 94%;
  margin: 0 auto;
  font-size: 14px;
  word-break: break-all;
  position: relative;
}


/* Z-E リンクバナー */
.banner_box { text-align: center; }
.banner_box img {
  max-width: 100%;
  width: auto;
  _width: 100%;
}



/* Z-I スライドショー */
.z_j1 { margin: 0 0 15px; }


/* Z_L お知らせブロック */
.Z_l1 .date_area {
  font-size: 13px;
  font-weight: bold;
}
.Z_l1 .news_small_text { font-size: 12px; }


/* Z_M タブブロック */
.z_m1 .link_list {
  font-size: 13px;
  line-height: 1.5;
}
.z_m1 div.link_list { margin-bottom: 10px; }
div.link_list a {
  background-color: #EEEEEE;
  border: 1px solid #CCCCCC;
  color: #;
}
div.link_list a:hover {
  background-color: #999999;
  border: 1px solid #cccccc;
  color: #fff;
}


.faq-title {
  background-color: #90c8a7;
  font-weight: normal;
  color: #fff;
}



/*  メールフォーム
---------------------------------------------------------------------------------------------------- */
.iqfm-table td input[type="text"]:not([size]) {
  width: 75%;
}
#container_top .iqfm-table td textarea {
  width: 96%;
  height: 15em;
  font-size: 100%;
}
/* 必須項目 */
.iqfm-req_color {
  color: #ff7200;
}
.z_c1 button, .z_c1 input[type="reset"], .z_c1 input[type="button"], .z_c1 input[type="submit"] {
  line-height: 1.7;
}
.z_c1 .post_data { margin: 0 0 30px; }



/*  クーポンページ
---------------------------------------------------------------------------------------------------- */
body.coupon {
}
.coupon_print_block .print_header,
h1.print_page_title,
.coupon_box table tr td.coupon_data,
.coupon_box table tr td.coupon_meta_title,
.coupon_box table tr td.coupon_meta {
  border-color: #ccc;
}
/* 有効期限の部分 */
.coupon_box table tr td.coupon_meta_title {
  background-color: #666;
  width: 8em;
  color: #fff;
}
.coupon_box table tr td.coupon_meta {
  background-color: #fff;
}
.e-04 .menu_area td {
  height: 3.5em;
}
.e-04 .menu_area .parent_title {
  font-size: 120%;
  height:  auto;
}



/*  ブログ
---------------------------------------------------------------------------------------------------- */
#nav-below div { border-color: #000; }
#nav-below .nav-next { padding: 0 0 0 10px; }

#blog_main .entry-title {
  background-image: url(/files/blog_title.jpg);
  background-position: center bottom;
  height: auto;
  padding: 15px 20px 15px 20px;
  line-height: 1.5;
}
#blog_main .entry-title,
#blog_main .entry-title a {color: #e8f0ca;}


/*  ローディング画面
---------------------------------------------------------------------------------------------------- */
.black-screen {
  background-color: #000000;
}

.black-screen > .inner {
  top: calc(50vh - (5vw / 2));
  width: 3vw;
  height: 3vw;
  background-image: url("/files/loading.svg");
}


/*  地図
---------------------------------------------------------------------------------------------------- */
#map_canvas {
  width: 100%;
  height: 450px;
  margin: 0 0 20px;
}


/* ============================== ↓↓各ブロックの個別CSSはこちらに記述↓↓ ============================== */

/*  トップページ
---------------------------------------------------------------------------------------------------- */


/*  ○○○
---------------------------------------------------------------------------------------------------- */





/*セカンドメイン*/
.secondmain {display: none;}
#page_6 .secondmain {
  display: block;
  position: absolute;}

#page_6 .secondmain div {
  position: absolute;
  top: 0;
  width: 100%;
}

#page_6 .secondmain div a {
  display: block;
  width: 560px;
  height: 87px;
  margin: 0 auto;
  text-indent: -9999px;
  background-image: url(/files/second_btn.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100%;
  max-width: 560px;
  max-height: 87px;
}

#page_6 .secondmain div a:hover {background-position: center bottom;}



/*レスポンシブ制御*/
#jquery_slider_pc {
  display: block;
  min-width: 1200px;
  max-width: 2000px;
  margin: 0 auto;
}


#page_6 .secondmain {
  left: 0;
  right: 0;
  margin: auto;
}

#page_6 .secondmain img {
  display: block;
  min-width: 1200px;
  max-width: 2000px;
  left: 0;
  right: 0;
  margin: auto;
  }

/*gナビ追尾*/
#access.fixed {
  width: 100%;
  z-index: 2000;
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(255,255,255,0.8);/*コーダー指示書にある背景色･背景画像指示に変更*/
}
#access.fixed .menu-header {
  margin-right: 50px;
}


/*ON/OFF2連バナー調整*/
#l96vsrbuexi52116flb8 .float_left a img,
#l96vsrbuexi52116flb8 .float_right a img,
#cy42b7piw933og1xmddd .float_left a img,
#cy42b7piw933og1xmddd .float_right a img{ display: none;}

#l96vsrbuexi52116flb8 .float_left a,
#cy42b7piw933og1xmddd .float_left a{
  display: block;
  height: 450px;
  background: url(/files/banner_service.png) center top no-repeat;
  width: 460px;
}
#l96vsrbuexi52116flb8 .float_right a,
#cy42b7piw933og1xmddd .float_right a{
  display: block;
  height: 450px;
  background: url(/files/banner_concept.png) center top no-repeat;
  width: 460px;
}
#l96vsrbuexi52116flb8 .float_left a:hover,
#l96vsrbuexi52116flb8 .float_right a:hover,
#cy42b7piw933og1xmddd .float_left a:hover,
#cy42b7piw933og1xmddd .float_right a:hover{ background-position: center bottom; }

#l96vsrbuexi52116flb8,
#cy42b7piw933og1xmddd{
  background: url(/files/banner_bg_01.jpg) center top repeat;
  height: 550px;
  margin-bottom: 100px;
}
#cy42b7piw933og1xmddd{margin-bottom: 0;}
#l96vsrbuexi52116flb8 .img_display,
#cy42b7piw933og1xmddd .img_display{
  margin-top: 50px;
}
#page_6 #outer_block{padding-top: 0;}




/*-------------健康改善・姿勢調整---------------------*/

#tztpsz30m23rqx64kkbz .float_left a img,
#tztpsz30m23rqx64kkbz .float_right a img,
#dvhmlnyufiv615irubs3 .float_left a img,
#dvhmlnyufiv615irubs3 .float_right a img,
#m80w5f3fcfu4sk5uvy20 .float_left a img,
#m80w5f3fcfu4sk5uvy20 .float_right a img{ display: none;}

#tztpsz30m23rqx64kkbz .float_left a,
#dvhmlnyufiv615irubs3 .float_left a,
#m80w5f3fcfu4sk5uvy20 .float_left a{
  display: block;
  height: 450px;
  background: url(/files/banner_taishitsu.png) center top no-repeat;
  width: 460px;
}
#tztpsz30m23rqx64kkbz .float_right a,
#dvhmlnyufiv615irubs3 .float_right a,
#m80w5f3fcfu4sk5uvy20 .float_right a{
  display: block;
  height: 450px;
  background: url(/files/banner_shisei.png) center top no-repeat;
  width: 460px;
}
#tztpsz30m23rqx64kkbz .float_left a:hover,
#tztpsz30m23rqx64kkbz .float_right a:hover,
#dvhmlnyufiv615irubs3 .float_left a:hover,
#dvhmlnyufiv615irubs3 .float_right a:hover,
#m80w5f3fcfu4sk5uvy20 .float_left a:hover,
#m80w5f3fcfu4sk5uvy20 .float_right a:hover{ background-position: center bottom; }

#tztpsz30m23rqx64kkbz,
#dvhmlnyufiv615irubs3,
#m80w5f3fcfu4sk5uvy20{
  background: url(/files/banner_bg_01.jpg) center top repeat;
  height: 550px;
  margin-top: 50px;
}
#dvhmlnyufiv615irubs3,#m80w5f3fcfu4sk5uvy20{margin-top: 0;}
#tztpsz30m23rqx64kkbz .img_display,
#dvhmlnyufiv615irubs3 .img_display,
#m80w5f3fcfu4sk5uvy20 .img_display{
  margin-top: 50px;
}



/*-------------鍼灸・美容鍼---------------------*/

#pg4rkiuqgy40ip16qgvd .float_left a img,
#pg4rkiuqgy40ip16qgvd .float_right a img,
#nhyrsdummic6bmlwbi6r .float_left a img,
#nhyrsdummic6bmlwbi6r .float_right a img,
#en1ndeoahxbjcpc52y0j .float_left a img,
#en1ndeoahxbjcpc52y0j .float_right a img{ display: none;}

#pg4rkiuqgy40ip16qgvd .float_left a,
#nhyrsdummic6bmlwbi6r .float_left a,
#en1ndeoahxbjcpc52y0j .float_left a{
  display: block;
  height: 450px;
  background: url(/files/banner_shinkyu.png) center top no-repeat;
  width: 460px;
}
#pg4rkiuqgy40ip16qgvd .float_right a,
#nhyrsdummic6bmlwbi6r .float_right a,
#en1ndeoahxbjcpc52y0j .float_right a{
  display: block;
  height: 450px;
  background: url(/files/banner_biyou.png) center top no-repeat;
  width: 460px;
}
#pg4rkiuqgy40ip16qgvd .float_left a:hover,
#pg4rkiuqgy40ip16qgvd .float_right a:hover,
#nhyrsdummic6bmlwbi6r .float_left a:hover,
#nhyrsdummic6bmlwbi6r .float_right a:hover,
#en1ndeoahxbjcpc52y0j .float_left a:hover,
#en1ndeoahxbjcpc52y0j .float_right a:hover{ background-position: center bottom; }

#pg4rkiuqgy40ip16qgvd,
#nhyrsdummic6bmlwbi6r,
#en1ndeoahxbjcpc52y0j{
  background: url(/files/banner_bg_02.jpg) center top repeat;
  height: 550px;
}
#pg4rkiuqgy40ip16qgvd .img_display,
#nhyrsdummic6bmlwbi6r .img_display,
#en1ndeoahxbjcpc52y0j .img_display{margin-top: 50px;}

#gwlpdc6k5o6aveb04eai{margin-top: 70px;}
#en1ndeoahxbjcpc52y0j{margin-bottom: 70px;}



/*コンテンツ背景*/
#ggbsrcxx24odbltfujyo{
  background: url(/files/block_bg_01.jpg) center top repeat;
  padding-top: 100px;
  padding-bottom: 70px;
}

#fjywqzh6c8jgiqc3s1t2{
  background: url(/files/block_bg_01.jpg) center top repeat;
  padding-top: 120px;
  padding-bottom: 70px;
}

#p9099a10p95yor543v85{
  background: url(/files/nayami_bg.jpg) center top no-repeat;
}

#tb13qmpjc2dvtacen2pu,#z20ig1b2bih3ny3ando4,#aazfzqcsijlz492hqymw,#s68uv7hqchwcd4skvyvl,#p8kqiav9w1ij6l8jft6o{
  background: url(/files/block_bg_01.jpg) center top repeat;
}

#aazfzqcsijlz492hqymw{
  padding-top: 100px;
  margin-bottom: 70px;
}
#tb13qmpjc2dvtacen2pu,#s68uv7hqchwcd4skvyvl{padding-top: 70px;}
#tb13qmpjc2dvtacen2pu .headline_title,#s68uv7hqchwcd4skvyvl .headline_title{
  margin-bottom: 0;
padding-bottom: 25px;}

#z20ig1b2bih3ny3ando4,#p8kqiav9w1ij6l8jft6o{padding-bottom: 50px;
margin-bottom: 50px;}


#oh072e3yl9d22rz3kocz{
  background: url(/files/block_bg_01.jpg) center top repeat;
  padding-top: 70px;
  padding-bottom: 30px;
  margin-bottom: 50px;
}
#vj0l0ihjvud03bqhi1bw{
  background: url(/files/block_bg_01.jpg) center top repeat;
  padding-top: 70px;
  padding-bottom: 30px;
}

#hez8v2c3xsj84iun8t7n .easys_content_inner{
  padding-bottom: 0;
}



/*ページ内リンクアンカー位置調整*/
a[name^="anchor"],
#fmmrgaf1bl4co0jhjt1r::before {
  content: "";
  display: block;
  height: 100px;
  margin-top: -100px;
  visibility: hidden;
}
a[name^="anchor"],
#gkweqd8zw9lzw7fxj56q::before {
  content: "";
  display: block;
  height: 100px;
  margin-top: -100px;
  visibility: hidden;
}
a[name^="anchor"],
#z9bvrp3pp3x39cuy0cs0::before {
  content: "";
  display: block;
  height: 100px;
  margin-top: -100px;
  visibility: hidden;
}