@charset "utf-8";

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


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




/* ===================================================================================================================
   ■ 全体
------------------------------------------------------------------------------------------------------------------- */
html {
  background: none #fff;
}
body {
  background: url("/files/body_bg.jpg") no-repeat center top/100%;
  color: #000000;
}
body#page_6 {
  background: none transparent;
}

#wrapper {
  background: none transparent;
}
#outer_block {
  background: none transparent;
}
#page_6 #outer_block {
  padding-top: 80px;
}
#page_15 #outer_block {
  padding-top: 0px;
}

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

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


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

/*  H1テキスト
---------------------------------------------------------------------------------------------------- */
#site-description {
  width: 100%;
  margin: 0 auto;
}
#site-description a {
  display: inline;
  color: #333333;
  position: absolute;
  left: 65px;
  top: 40.7vw;
}

/*  サイトロゴ
---------------------------------------------------------------------------------------------------- */
.main_header, .header_class {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.main_header img, .header_class img {
  background: url(/files/branding_box_bg.png)no-repeat center top/100%;
  position: absolute;
/*
  top: 30px;
  left: 64px;
  width: 350px;
  height: 80px;
*/
  top: 1.5vw;
  left: 3.2vw;
  width: 17.5vw;
  height: 4vw;
}

/*  グローバルナビ
---------------------------------------------------------------------------------------------------- */

/*メニュー内　パーツ-----------------------------------------------------*/
#header_parts{
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/*ロゴ*/
#header_logo{
    width: 350px;
    height: 80px;
    position: absolute;
    top: 30px;
    left: 65px;
}
#header_logo a{
    width: 350px;
    height: 80px;
    padding: 0;
    background: url(/files/branding_box_bg.png)no-repeat center top;
}

/*  グローバルナビ
---------------------------------------------------------------------------------------------------- */
#menu_btn {
  position: fixed;
  top: 0.5vw;/*ボタン位置*/
  right: 0;/*ボタン位置*/
  z-index: 1000;/*変更しない*/
  width: 100px;/*ボタンのサイズ*/
  height: 100px;/*ボタンのサイズ*/
  background: url(/files/menu_icon.png) no-repeat center top;/*ボタン画像「三」の方*/
  cursor: pointer;/*マウスカーソルをポインター(手)に変更*/
}
#menu_btn p {display: none;}
#access {
  width: 100%;
  height: 100vh;
  margin: 0;
  position: fixed;
  top: 0;/*出てくる方向どこでも、top:0はそのまま残しとく*/
  top: -110%;/*widthと同じ数値、出てくる方向にマイナスする*/
  background: url(/files/navi_bg.jpg) no-repeat center center / cover;/*ナビ開いたときの背景画像*/
}
#access.open {/*出てきた時*/
  top: 0;
  transition: top .4s;
}
#access.close {/*隠れている時*/
  top: -110%;
  transition: top .3s;
}
#access .menu-header {
  width: 260px;/*ナビ画像の幅*/
  height: 420px;/*ナビ画像の高さ*/
  margin: calc((100vh - 510px) / 2) calc((50vw - 125px) / 2);/*calc()で上下センターに合わせる（500px=menu-headerの高さ）*//*これでロゴ＆ナビ位置下げる*/
  padding: 0;
}

/*6列グローバルナビ*/
/* 親ボタンの背景画像、高さなど　全サイズ共通 */
div#access .menu-item a,div#access .menu-item a:hover {
  background-image: url('/files/topnavi.png');/*ナビ画像*/
  background-repeat: no-repeat;
  background-position: scroll;
  background-color: transparent;
  width: 250px;
  height: 75px;
  margin: 0px;
  padding: 0px;
}

div#access .gnavi11 a { background-position:left top ; }
div#access .gnavi12 a { background-position:left -75px; }
div#access .gnavi13 a { background-position:left -150px; }
div#access .gnavi14 a { background-position:left -225px; }
div#access .gnavi15 a { background-position:left -300px; }
div#access .gnavi16 a { background-position:left bottom; }

div#access .gnavi11 a:hover { background-position:right top;}
div#access .gnavi12 a:hover { background-position:right -75px;}
div#access .gnavi13 a:hover { background-position:right -150px;}
div#access .gnavi14 a:hover { background-position:right -225px;}
div#access .gnavi15 a:hover { background-position:right -300px;}
div#access .gnavi16 a:hover { background-position:right bottom;}

/*ホバーで下線*/
div#access .menu-item {position: relative;}
div#access .menu-item a:after {
  display: block;
  content: "";
  background: none #000;/*下線の色*/
  width: 0;
  height: 1px;/*下線の高さ*/
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  margin: 0 auto;
  transition: all 0.2s ease 0s;
}
div#access li.menu-item a:hover:after { width: 70%; }/*デフォルトは100%*/

div#access .menu-item ul.sub-menu a:after {height: 0;}/*サブメニューでは無効化*/



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

/* プルダウンメニューの色　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: px;
  color: #333;
}
#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: #333;
}
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: #666;
}
#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: #666;
}

/* 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, #video_teaser {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 99;
}
/* フラッシュ選択時 */
.flash_teaser {
  background-repeat: no-repeat;
  background-position: center top;
}

/* TOP SLIDER使用時 */
#video_teaser {
  margin: 0;
  top: 6.3vw;
  text-align: left;/*動画左寄せ*/
}


/*トップページメイン画像や中ページティザーをレスポンシブした時*/
#main_teaser img {
  display: block;
  min-width: 1200px;
  max-width: 2000px;
  margin: 0 auto;
}

/* ===================================================================================================================
   ■ サイド
------------------------------------------------------------------------------------------------------------------- */
/* サイドナビ　タイトル */
.widget-title, .widget-title2 a {
  padding: 0;
  text-align: center;
  color: #000000;
}
.widget-title2 a:link, .widget-title2 a:visited,
.widget-title2 a:hover, .widget-title2 a:active {
  color: #000000;
}

/* サイドナビ　メニュー部分 */
#blog_main .widget-area ul ul li a {
  background-image: url(/files/widget_list_bg.jpg);
  color: #2c2c2c;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#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: #666666;
  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: 580px;
}
#footer_box {
  background: url(/files/footer_box_bg.png) no-repeat center top;
  height: 540px;
  position: relative;
}

#footer_box,#footer_sitemap_block,#footer-widget-area, .footer_infomation{
  width: 100%;
  margin: 0 auto;
}
#footer-widget-area{/*フッターナビの所*/
  display: block;
}
/*  フッターナビ
---------------------------------------------------------------------------------------------------- */
#footer_sitemap_block {
  /* フッターナビの上余白はここで調整 */
  position: absolute;
  bottom: 7px;
  margin: 0 auto;
}
#footer-widget-area .widget-area ul.menu {
  border: none;
}
#footer-widget-area .widget-area .menu-item a {
  border: none;
  color: #000000;
   width: 110px;
}
#footer-widget-area .widget-area .menu-item a:hover {
  background-color: transparent;
}

#footer-widget-area .widget-area{
    width: 540px;
    padding: 0 0 0 200px;/*左右位置調整*/
}
#footer-widget-area .widget-area .menu-item{
    width: 110px;
    text-align: left;/*文字左寄せ*/
}


ul#menu-footer_navi li:nth-child(3) {/*ナビ3つめ*/
    padding: 0 170px 0 0;
}



/*  フッター情報
---------------------------------------------------------------------------------------------------- */
.footer_infomation {
  display: block;
  margin: 0 auto;
  width:920px;
}
#footer_information .entry-post {
  width: 380px;
  margin: 175px 0 0;/*住所の上からの位置*/
  text-align: left;
  color: #000000;
}

/*  フッター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;}



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


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

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

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



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

/*  見出し
---------------------------------------------------------------------------------------------------- */
.headline_title {
  background-image: url(/files/top_entry_title.png);
  color: #000000;
  height: 75px;
  padding-top: 75px;
}
h3.entry_title, .entry_title, .entry-title { /* サイズ、背景、余白などはこちら */
  background-image: url(/files/entry_title_bg.jpg);
  color: #ffffff;
}
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: #ffffff;
}
/* 見出しリンクボタン */
.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.png);
  font-size: 20px;
  color: #000000;
}


/*■ H3 570幅*/
* .mid_entry_title {
  width: 530px;/*ずらした分短くする。デフォルトは550px*/
  padding: 0 0 0 40px;/*デフォルトは20px*/
}


/* 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: #000000;}

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



/* B-03など小見出し用 */
* .sub_entry_title {
  background: url("/files/sub_entry_title_bg.png") no-repeat scroll left top transparent;
  color: #000000;
}
* .sub_entry_title a:link, * .sub_entry_title a:visited,
* .sub_entry_title a:hover, * .sub_entry_title a:active {
  color: #000000;
}
/* 小見出しリンクボタン */
.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: #000000;
}


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


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

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


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

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




/*  テーブル
---------------------------------------------------------------------------------------------------- */
.table_area td.td_name, .table_area td.td_value,
body.coupon .table_area td.td_name, body.coupon .table_area td.td_value,
table.iqfm-table th, table.iqfm-table td  {
  border-color: #000000;
  border-right: none;
  border-left: none;
  background: none transparent;
  color: #000000;
}
table.table_area td.td_name, body.coupon table.table_area td.td_name, .iqfm-table th {
  background: none transparent;
}
table.table_area td.td_value, body.coupon table.table_area td.td_value, .iqfm-table td,
.custom-wpcf7c-confirmed td, input.wpcf7c-conf, textarea.wpcf7c-conf {
  background: none transparent;
}
/*メール送信後メッセージボックスのボーダー（デフォルト：グリーン）*/
div.wpcf7-mail-sent-ok {
  border-color: #000 !important;
}

/* Dメニュー下線 */
.td_cell {
  border-color: #666;
  vertical-align: top;
}

.table_area table tr td {
  border: solid 1px #000000 !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: #000000;
  color: #000000 !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: #000000;
  border-color: #000000;
}
.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 #000000;
  border-style: solid;
  border-color: #000000;
  color: #fff !important;
}



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


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


/* 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: transparent;
  border: 1px solid #000000;
  color: #000000;
}
div.link_list a:hover {
  background-color: #000000;
  border: 1px solid #000000;
  color: #fff;
}


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



/*  メールフォーム
---------------------------------------------------------------------------------------------------- */
.iqfm-table td input[type="text"]:not([size]) {
  width: 75%;
}

/* 必須項目 */
.iqfm-req_color {
  color: #000000;
}
.iqfm-table button, .iqfm-table input[type="reset"], .iqfm-table input[type="button"], .iqfm-table input[type="submit"] {
  line-height: 1.7;
}
.iqfm-table .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: #472c24;
}
/* 有効期限の部分 */
.coupon_box table tr td.coupon_meta_title {
  background-color: transparent;
  width: 8em;
  color: #000000;
}
.coupon_box table tr td.coupon_meta {
  background-color: transparent;
  color: #000000;
}
.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;
  line-height: 1.5;
  padding: 15px 10px 15px 10px;
  text-align: center;
}
#blog_main .entry-title,
#blog_main .entry-title a {
    color: #000000;
}



/*  ローディング画面
---------------------------------------------------------------------------------------------------- */
.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;
}

/*  googleカレンダー
---------------------------------------------------------------------------------------------------- */
iframe[src^="https://calendar.google.com"] {
  border: none !important;
}


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


/* ============================== ↓↓各ブロックの個別CSSはこちらに記述↓↓ ============================== */
.easys_content_inner {
  position: relative;
  top: 100px;
  height: 100%;
  opacity: 0;
  transform: rotate3d(-1, -1, 0, -10deg);
  transform-origin: center;
  transition: 1.3s ease 0s;
}

/*.easys_content_inner.moved:not(div#y2u7x70h4srpljcu2f1s)*/
.easys_content_inner.moved{
  top: 0;
  opacity: 1;
  transform: rotate3d(0, 0, 1, 0);
}



/*--------------------------
  デザインブロック
--------------------------*/
/*PC 背景付きブロックの記事画像 非表示*/
#ey1e49uc4cfi6crklb8u .entry_post:first-of-type .eyecatch,
#rnv7d9hpvgo5k8zegqol .entry_post:first-of-type .eyecatch,
#u4pcl2ft2yjas7qz8zby .entry_post:first-of-type .eyecatch,
#u14hgspihtpyboh1ex52 .entry_post:first-of-type .eyecatch
{display: none;}

/*float 解除*/
#ey1e49uc4cfi6crklb8u .entry_post:first-of-type .float_left,
#ey1e49uc4cfi6crklb8u .entry_post:first-of-type .float_right,
#rnv7d9hpvgo5k8zegqol .entry_post:first-of-type .float_left,
#rnv7d9hpvgo5k8zegqol .entry_post:first-of-type .float_right,
#u4pcl2ft2yjas7qz8zby .entry_post:first-of-type .float_left,
#u4pcl2ft2yjas7qz8zby .entry_post:first-of-type .float_right,
#u14hgspihtpyboh1ex52 .entry_post:first-of-type .float_left,
#u14hgspihtpyboh1ex52 .entry_post:first-of-type .float_right {float: none;}

.easys_content .sub_post .float_left {float: left !important;}
.easys_content .sub_post .float_right {float: right !important;}


/*ボタン共通*/
#ey1e49uc4cfi6crklb8u .main_btn,
#rnv7d9hpvgo5k8zegqol .main_btn {padding-top: 0;}

#ey1e49uc4cfi6crklb8u .main_btn a,
#rnv7d9hpvgo5k8zegqol .main_btn a{
  text-indent: -9999px;
  display: block;
  width: 200px;
  height: 200px;
  border-radius: 0;
  padding: 0 ;
  margin: 0 0 0 auto;/*右寄せ*/
  background: url(/files/link_text_bg.png) no-repeat center top;
}

/*ギミック*/
#ey1e49uc4cfi6crklb8u .main_btn a,
#rnv7d9hpvgo5k8zegqol .main_btn a{
  display: block;
  position: relative;
  background: url("/files/link_text_bg.png") no-repeat center top transparent;
  width: 203px;
  height: 203px;
  padding: 0;
  font-size: 0; text-indent: -9999px; overflow: hidden;
}
#ey1e49uc4cfi6crklb8u .main_btn a:before,
#ey1e49uc4cfi6crklb8u .main_btn a:after,
#rnv7d9hpvgo5k8zegqol .main_btn a:before,
#rnv7d9hpvgo5k8zegqol .main_btn a:after {
  display: block;
  content: '';
  position: absolute;
  width: 203px;
  height: 203px;
  border-radius: 50%;
  box-sizing: border-box;
  transition: all 0.3s ease 0s;
}
#ey1e49uc4cfi6crklb8u .main_btn a:before,
#rnv7d9hpvgo5k8zegqol .main_btn a:before {
  border: 0 solid #fff;
  top: 0;
  left: 0;
}
#ey1e49uc4cfi6crklb8u .main_btn a:after,
#rnv7d9hpvgo5k8zegqol .main_btn a:after {
  border: 0 solid #452A23;
  top: 10px;
  left: 10px;
  width: 183px;
  height: 183px;
}
#rnv7d9hpvgo5k8zegqol .main_btn a:before {
  border: 0 solid #FEFEFE;
}

#ey1e49uc4cfi6crklb8u .main_btn a:hover:before,
#rnv7d9hpvgo5k8zegqol .main_btn a:hover:before {
  border-width: 20px;
}
#ey1e49uc4cfi6crklb8u .main_btn a:hover:after,
#rnv7d9hpvgo5k8zegqol .main_btn a:hover:after {
  border-width: 1px;
  transform: scale(1.1);
}


/*  トップページ
---------------------------------------------------------------------------------------------------- */
/*　1 -------------------------------*/
#ey1e49uc4cfi6crklb8u{
  height: 1400px;
  position: relative;
  z-index: 1;
  background: url(/files/top_bg_1.png) no-repeat center top / auto scroll,url(/files/top_bg_1_01.jpg) no-repeat center center / cover fixed;
}
#ey1e49uc4cfi6crklb8u *[class*="title"]{
    display: none;
}
#ey1e49uc4cfi6crklb8u .text_box{
    position: absolute;
    width: 530px;
    top: 170px;
    left: calc(50% + 10px);
}


#ey1e49uc4cfi6crklb8u .post_data.margin-bottom_15{margin-bottom: 0;}

/*　2　-------------------------------*/
#rnv7d9hpvgo5k8zegqol{
  height: 1700px;
  position: relative;
  z-index: 1;
  background: url(/files/top_bg_2.jpg) no-repeat center top;
}
#rnv7d9hpvgo5k8zegqol *[class*="title"]{
    display: none;
}
#rnv7d9hpvgo5k8zegqol .text_box{
    position: absolute;
    width: 470px;
    top: 480px;
    left: calc(50% + 0px);
}



/*飾りパララックス*/
#tyswx7u59g8m38stjp0a {
  background: url(/files/top_para.png) no-repeat center center / cover fixed;
  height: 600px;/*任意の高さ*/
}



/*  採用情報ページ
---------------------------------------------------------------------------------------------------- */
/*　1　-------------------------------*/
#u4pcl2ft2yjas7qz8zby{
  height: 1300px;
  position: relative;
  z-index: 1;
  background: url(/files/p3_bg01.jpg) no-repeat center top;
}
#u4pcl2ft2yjas7qz8zby *[class*="title"]{
    display: none;
}
#u4pcl2ft2yjas7qz8zby .text_box{
    position: absolute;
    width: 470px;
    top: 490px;
    left: calc(50% - 490px);
}

#u4pcl2ft2yjas7qz8zby .post_data{
    color: #fff;
}

/*　2　-------------------------------*/
#u14hgspihtpyboh1ex52{
  height: 1100px;
  position: relative;
  z-index: 1;
  background: url(/files/p3_bg02.jpg) no-repeat center top;
  margin-bottom: 70px;
}
#u14hgspihtpyboh1ex52 *[class*="title"]{
    display: none;
}
#u14hgspihtpyboh1ex52 .text_box{
    position: absolute;
    width: 960px;
    top: 325px;
    left: calc(50% - 480px);
}
#u14hgspihtpyboh1ex52 .post_data{
    text-align: center;
}



/*  記事背景
---------------------------------------------------------------------------------------------------- */
/*・リピート背景　「repeat_bg01.png」	*/
/*トップページの「会社概要」*/
#miyg2m21kbod6etedrdy{
  background: url(/files/repeat_bg01.png)repeat center top;
  padding-top: 80px;
}
#miyg2m21kbod6etedrdy .html_post{
    margin-bottom: 0;
    padding-bottom: 40px;
}

/*採用情報ページの「募集要項」*/
#vtgjmxl43275brxutk5x{
  background: url(/files/repeat_bg01.png)repeat center top;
  padding-top: 70px;
}

/*会社概要ページの「代表挨拶」*/
#gner9f0n5tw3aa8x81ll{
  background: url(/files/repeat_bg01.png)repeat center top;
  margin-bottom: 70px;
  padding-top: 70px;
}


/*  バナー
---------------------------------------------------------------------------------------------------- */
/*1列バナー　動画背景*/
/*全幅*/
#cviu5b77zmryae6fr2u6{
    position: relative;
    height: 600px;
    margin-bottom: 70px;
}

/*スマホ画像非表示*/
#cviu5b77zmryae6fr2u6 img{
  display: none;
}

/*動画*/
#cviu5b77zmryae6fr2u6 video{
  position: absolute;
  top: 0;
  z-index: -1;
}

/*上に重ねる画像  960px*/
#cviu5b77zmryae6fr2u6 .eyecatch{display: block;}/*記述しないと画像表示されない*/
#cviu5b77zmryae6fr2u6 .eyecatch a{
  display: block;
  position: relative;
  width: 960px;/*画面幅縮めたときに、両端が見切れていくようにする為*/
  height: 600px;/*バナー画像高さ*/
  z-index: 1;/*動画より重ね順上にする*/
  margin-top: 0px;/*上からの位置調整*/
  background: url("/files/business_bnr.png") no-repeat center top;
  transition: opacity 0.3s;
}

/*ホバーでON*/
#cviu5b77zmryae6fr2u6 .eyecatch a:hover{ opacity: 0.8;}




/*1列　お問い合わせ　レスポンシブ*/
#g07a1ovl3u7v8famn0on,
#dqarlmuo2z2yeolj9evg,
#rb6nus0t2ku91wdi9dud{
    margin-bottom: 70px;
}
#g07a1ovl3u7v8famn0on .easys_content_inner,
#dqarlmuo2z2yeolj9evg .easys_content_inner,
#rb6nus0t2ku91wdi9dud .easys_content_inner{
    width: 100%;
    padding:0;
}
.img_display_1034 .margin-bottom_50{
    margin-bottom: 0;
}

/*スマホ用バナー非表示*/
.img_display_1034 a img{
  display: none;
}

/*バナー画像*/
.img_display_1034 .eyecatch a{
  background:url("/files/contact_bg.png") no-repeat center top/100%;
  display: block;
  width: 100vw;
  height: 22.5vw;
  min-height: 275px;
  min-width: 1200px;
position: relative;
}
/*塗りつぶす色*/
.img_display_1034 .eyecatch a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;/*ホバー前はbeforeの幅0*/
  background: rgba(0, 0, 0, 0.5);/*塗りつぶす色*/
  transition: 0.4s ease 0s;
}
.img_display_1034 .eyecatch a:hover:before{width: 100%;}/*ホバー時beforeの幅100%*/



/*二列バナー --------------------------------------------*/
#zp9nock5dm2z5kcbpiy6 .easys_content_inner,
#hy0wyoumlka3xxp7vny9 .easys_content_inner{
    width: 100%;
    padding:0;
}
.img_display_1006 .margin-bottom_30{padding: 0;margin: 0;}
.img_display_1006 .field_2col{width: 50% !important;}
.img_display_1006 .field_2col .eyecatch{width: 100% !important;}


.grecaptcha-badge { visibility: hidden; }
