@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

/* ↓↓　雛形　レイアウトにあわせて追記・上書きして下さい　↓↓
   後々解読が面倒になるので、必要な箇所のみ記述すること
  （例：背景がPNGになるなら background-image: url("../files/xx_bg.png");　など） */


/* =================================================================================================================== */
/* PCカスタムプロパティ */
:root {
  --basic_background_color: #ffffff;
  --body_text_color: #333333;
  --link_color: #1fbb0a;
  --border_color: #666666;
  --table_border_color: #000000;
  --th_background_color: #ffffff;
  --td_background_color: #ffffff;
  --th_character_color: #333333;
  --td_character_color: #333333;
  --required_color: #1fbb0a;
  --top_h1_color: #ffffff;
  --header_navigation_color: transparent;
  --top_entry_title_color: #000000;
  --entry_title_bg_color: #ffffff;
  --blog_title_color: #333333;
  --sub_entry_title_bg_color: #333333;
  --entry_title_bg_w570_color: #000000;
  --sub_entry_title_bg_w570_color: #000000;
  --half_entry_title_bg_color: #ffffff;
  --half_sub_entry_title_bg_color: #000000;
  --column3_title_bg_color: #161616;
  --widget_title_bg_color: #161616;
  --widget_list_bg_color: #2c2c2c;
  --footnavi_color: transparent;
  --address_color: #000000;
  --copy_color: #000000;
}
/* =================================================================================================================== */



/* 置換以外 */
:root {
  --easys_min_width: 1300;/* EASYSの最小幅(単位なし) */
  --easys_max_width: 2000;/* EASYSの最大幅(単位なし) */
  --easys_top_main_h: 1000;/* トップメインのオリジナル高さ(単位なし) */
  --easys_naka_main_h: 500;/* 中ページメインのオリジナル高さ(単位なし) */
  --easys_standard_value001: #ffffff;/* A～Cブロック記事内リンクボタン＞文字色 */
  --easys_standard_value002: rgba(255,255,255,0.75);/* プルダウンメニュー＞背景色 */
  --easys_standard_value000: rgba(255,255,255,0.75);/* プルダウンメニュー＞背景色 (ホバー時) */
  --easys_standard_value003: #333333;/* プルダウンメニュー＞文字色 */
  --easys_standard_value004: #666666;/* プルダウンメニュー＞文字色(ホバー時) */
  --easys_standard_value005: #ffffff;/* カレンダーの本日＞文字色 */
  --easys_standard_value006: #ffffff;/* 大きな地図で見る＞文字色(ホバー時) */
  --easys_standard_value007: #ffffff;/* ページ遷移ボタン＞線色 */
  --easys_standard_value008: #ffffff;/* ページ遷移ボタン＞文字色 */
  --easys_standard_value009: #000000;/* ブログ＞ページング＞線色 */
}


/* ===================================================================================================================
   ■ 全体
------------------------------------------------------------------------------------------------------------------- */
html {
  /* background: var(--basic_background_color) url("../files/html_bg.jpg") repeat center top; */
  background: none var(--basic_background_color);
  scroll-padding-top: var(--easys_navi_h);
  scroll-behavior: smooth;
}

/*Safariのみ iPadでフォントサイズが変化しないように対策*/
_:lang(x) + _:-webkit-full-screen-document,
body {
          text-size-adjust: none;
  -webkit-text-size-adjust: none;
}

body {
  position: relative;/* 2000pxを超える画面の対策 */
  margin: 0 auto;
  min-width: calc(var(--easys_min_width)*1px);
  max-width: calc(var(--easys_max_width)*1px);
  background: none transparent;
  word-break: break-word;
  /* background: url("../files/body_bg.jpg") no-repeat center top / 100% ; */
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
body *[class*="title"] {
 /* font-family:  !important;*/
  /* font-weight:  !important;*/
}
body,
.wpcf7c-conf {
  color: var(--body_text_color);

}
body#page_6 {
  background: none transparent;
  /* background: url("../files/body_bg_top.jpg") no-repeat center top /100%; */
}
  
#wrapper {
  background: none transparent;
}
#outer_block {
  background: none transparent;
}

#main {
  overflow: clip !important;
}

#page_6 #outer_block {
  padding-top: 0;
}

a:link,
a:visited,
a:hover,
a:active {
   color: var(--link_color);
}
 
 /* A～Cブロック記事内リンクボタン */
.main_btn a,
.sub_text_btn a {
   background-color: var(--link_color);
   color: var(--easys_standard_value001);
}
  
  
/* ===================================================================================================================
   ■ ヘッダー
------------------------------------------------------------------------------------------------------------------- */
#branding_box {
  background: none transparent;
  position: relative;
  height: 0px;
  z-index: 500;
  padding: calc(100% * (var(--easys_naka_main_h) / var(--easys_max_width))) 0 0 0;
  background: url("../files/branding_box.png") no-repeat center top/100%;
}

#page_6 #branding_box {
  height: 0px;
  padding: calc(100% * (var(--easys_top_main_h) / var(--easys_max_width))) 0 0 0;
  /* background: url("../files/") no-repeat center top/100%; */
}


#page_6 #branding_box::after{
  content: '';
  display: block;
  position: absolute;
  width: calc(100%*(186/var(--easys_max_width)));
  height: calc(100%*(200/var(--easys_top_main_h)));
  top: calc(100%*(423/var(--easys_top_main_h)));
  left: calc(100%*(280/var(--easys_max_width)));
  pointer-events: none;
  animation: hurueru .2s infinite;
  background: url(../files/finger.png) no-repeat center top/100%;
}

@keyframes hurueru {
  0% {
    transform: translate(0, 0) rotateZ(0deg)
  }

  25% {
    transform: translate(2%, 2%) rotateZ(1deg)
  }

  50% {
    transform: translate(0, 2%) rotateZ(0deg)
  }

  75% {
    transform: translate(2%, 0) rotateZ(-1deg)
  }

  100% {
    transform: translate(0, 0) rotateZ(0deg)
  }
}

/*  H1テキスト
---------------------------------------------------------------------------------------------------- */

/*自由に位置設定したいとき*/
#site-description {
  margin: 0 auto;
  width: auto;
  position: absolute;
  top: 0px;
  right: 40px;
  /*位置　レスポンシブ有り*/
  /*
  top: calc(0 / var(--easys_naka_main_h) * 100%);
  left: calc(40 / 2000 * 100%);
  */
}
  
#page_6 #site-description {
  /* top: 0;
  left: 40; */
  /*
  top: calc(0 / var(--easys_top_main_h) * 100%);
  left: calc(40 / 2000 * 100%);
  */
}
#site-description a {
  display: inline;
  color: var(--top_h1_color);
}
  
  /*  サイトロゴ
---------------------------------------------------------------------------------------------------- */
.main_header, .header_class {
    width: 960px;
    margin: 0 auto;
    padding: 0;
}
.main_header img, .header_class img {
  position: absolute;
  margin: auto;
  /* width: 220px;
  height: 45px;
  top: 50px;
  left: 60px; */
  /* レスポ有り */
  width: calc(100%*(220/var(--easys_max_width)));
  height: calc(100%*(45/var(--easys_naka_main_h)));
  top: calc(100%*(50/var(--easys_naka_main_h)));
  left: calc(100%*(60/var(--easys_max_width)));
  background: none transparent;
}
  
#page_6 .main_header img, #page_6 .header_class img {
  /* width: 220px;
  height: 45px;
  top: 50px;
  left: 60px; */
  position: absolute;
  margin: auto;
  /* レスポ有り */
  width: calc(100%*(220/var(--easys_max_width)));
  height: calc(100%*(45/var(--easys_top_main_h)));
  top: calc(100%*(50/var(--easys_top_main_h)));
  left: calc(100%*(60/var(--easys_max_width)));
}
  
/*固定時*/
.main_header img.fixed,
#page_6 .main_header img.fixed{
  position: fixed;
  top: 0;
  z-index: 600;
  width: 220px !important;
  height: 45px !important;
  margin-top: 0 !important;
  margin-left: 0 !important;
  /* background: url("../files/branding_box.png") no-repeat center top; */
}

/*画面幅2000px以上の時
---------------------------------------*/
/* @media screen and (min-width: 2000px) {
  .main_header img.fixed,
  #page_6 .main_header img.fixed {
    left:calc(50% - 1000px) !important;
  }
} */

  
/*  グローバルナビ
---------------------------------------------------------------------------------------------------- */


#access {
  width: 0;
  display: none;
  z-index: 590;
  height: 80px;
  margin: 0 auto;
  position: absolute;
  top: 0;
  background: none;
  /* background:  none; */
  /* background: url("../files/") no-repeat center top; */
}

/*ナビ上からの位置　メイン画像の下にナビがあるとき*/
/* #access {
  top: calc(100%*(0/var(--easys_naka_main_h)));
}
#page_6 #access {
  top: calc(100%*(0/var(--easys_top_main_h)));
} */



#access .menu-header{
  width: 0px; 
  height: var(--easys_navi_h);
  /* margin: 0 calc(0 / 2000 * 100%) 0 auto; */
  margin: 0;

}

/*6列グローバルナビ*/
/* 親ボタンの背景画像、高さなど　全サイズ共通 */
div#access .menu-item a {
  background-image: url('../files/topnavi.png');
  background-repeat: no-repeat;
  background-position: scroll;
  background-color: transparent;
  width: 140px;
  height: var(--easys_navi_h);
  margin: 0px;
  padding: 0px;
}

div#access .gnavi11 a { background-position: left top;}
div#access .gnavi12 a { background-position: -140px top;}
div#access .gnavi13 a { background-position: -280px top;}
div#access .gnavi14 a { background-position: -420px top;}
div#access .gnavi15 a { background-position: -560px top;}
div#access .gnavi16 a { background-position: right top;width: 250px;}

div#access .gnavi11 a:hover { background-position: left bottom;}
div#access .gnavi12 a:hover { background-position: -140px bottom;}
div#access .gnavi13 a:hover { background-position: -280px bottom;}
div#access .gnavi14 a:hover { background-position: -420px bottom;}
div#access .gnavi15 a:hover { background-position: -560px bottom;}
div#access .gnavi16 a:hover { background-position: right bottom;width: 250px;}

/*固定時用ナビ*/
#access.fixed{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  /* background: rgba(); */
  max-width: 2000px;
  min-width: 1300px;/*ロゴが左端にある時、ナビがロゴに重ならないように調整*/
}
#access.fixed .menu-header{
  position: relative;
  float: none;/*ロゴが左端にある時、ナビがロゴに重ならないように調整するために float: none;にする*/
  margin: 0 auto;
  max-width: 2000px;
  transform: none !important;/*レスポンシブ無しにするため*/
}

/* 親ボタンの背景画像、高さなど　全サイズ共通 */
div#access .menu-item a, div#access .menu-item a:hover {
  background-color: transparent;
  height: var(--easys_navi_h);
  line-height: var(--easys_navi_h);
}

/* div#access.fixed .menu-item a, div#access.fixed .menu-item a:hover {
  height: px;
  line-height: px;
} */

/* プルダウンメニューのサイズ */
#access ul.menu ul.sub-menu {
  top: 100%;
}
#access ul.menu ul.sub-menu,
#access ul.menu ul.sub-menu li {
  width: 100%;
}
/* プルダウンメニューの色　16進数、RGBA両方変更すること */
div#access ul.sub-menu li.sub-gnavi a,
div#access ul.sub-menu li.sub-gnavi2 a {
  box-sizing: border-box;
  padding: 15px 10px;
  width: 100%;
  height: auto !important;
  background: none var(--easys_standard_value002);
  color: var(--easys_standard_value003);
  line-height: 1.2em !important;
}
#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: var(--easys_standard_value003);
}
div#access ul.sub-menu li.sub-gnavi a:hover,
div#access ul.sub-menu li.sub-gnavi2 a:hover {
  background: none var(--easys_standard_value000);
  color: var(--easys_standard_value004);
}
#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: var(--easys_standard_value004);
}
  
  
/*  メイン画像
  ---------------------------------------------------------------------------------------------------- */
#main_teaser,
#video_teaser,
#jquery_slider_pc {
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 99;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
  
#main_teaser,
#video_teaser #video_teaser_inner,
#jquery_slider_pc .viewer {
  display: block;
  margin: 0 auto;
  min-width: calc(var(--easys_min_width)*1px);
  max-width: calc(var(--easys_max_width)*1px);
}
#main_teaser img,
#video_teaser #video_teaser_inner video,
#jquery_slider_pc .viewer img {
  width: 100%;
}
  
  /* ===================================================================================================================
     ■ サイド
  ------------------------------------------------------------------------------------------------------------------- */
  /* サイドナビ　タイトル */
.widget-title,
.widget-title2 a {
  padding: 0;
  background-image: url(../files/widget_title_bg.png);
  color: var(--widget_title_bg_color);
  text-align: center;
}
.widget-title2 a:link,
.widget-title2 a:visited,
.widget-title2 a:hover,
.widget-title2 a:active {
  color: var(--widget_title_bg_color);
}

/* サイドナビ　メニュー部分 */
#blog_main .widget-area ul ul li a {
  overflow: hidden;
  background-image: url(../files/widget_list_bg.png);
  color: var(--widget_list_bg_color);
  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 {
  padding: 5px;
  border-width: 0 0 1px;
  border-style: dotted;
  border-color: var(--border_color);
  background: none transparent;
  line-height: 2;
}
#wp-calendar tbody td a {
  text-decoration: underline;
}
#wp-calendar tbody td a:hover {
  text-decoration: none;
}
#calendar_wrap table tr td#today {
  background-color: var(--link_color);
}
#calendar_wrap table tr td#today,
#calendar_wrap table tr td#today a {
  color: var(--easys_standard_value005);
}

/* ===================================================================================================================
   ■ フッター
------------------------------------------------------------------------------------------------------------------- */
#footer_block {
  position: relative;
  height: 510px;
  background: url(../files/footer_bg.png) repeat center top;
}
#footer_box {
  height: 470px;
  background: url(../files/footer_box_bg.png) no-repeat center top;
}


/*  フッターナビ
---------------------------------------------------------------------------------------------------- */
#footer_sitemap_block {
  padding: 0;
  /*絶対値指定する時*/
  /* position: absolute;
  top: 0px;
  left: 50%;
  margin: 0;
  width: auto;
  transform: translateX(-50%); */
  
}
/* 中央以外 */
/*
#footer-widget-area .widget-area{
  position: absolute;
  top: 0px;
  left: calc(50% - 0px);
}
*/
#footer_sitemap_block #footer-widget-area {
  display: none;
  width: 960px;
}
#footer_sitemap_block #footer-widget-area .widget-area ul.menu {
  border-color: var(--footnavi_color);
  /* display: flex;
  flex-direction: column; */
  /* width: 250px;
  height: 250px; */
}
#footer_sitemap_block #footer-widget-area .widget-area .menu-item a {
  border-color: var(--footnavi_color);
  color: var(--footnavi_color);
  text-align: left;
}
#footer_sitemap_block #footer-widget-area .widget-area .menu-item a:hover {
  background-color: transparent;
}

/*ナビ縦並び２列*/
/* #footer-widget-area .widget-area ul.menu {
  border: none;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 120px;
  align-content: space-between;
  width: 300px;
} */

/*  フッター情報
---------------------------------------------------------------------------------------------------- */
.footer_infomation {
  display: block;
  margin: 0 auto;
  width: 960px;
}

#footer_information .entry-post {
  margin: 250px 0 0;
  width: 100%;
  text-align: center;

  /* テキスト左寄せ用
  margin: 40px 0 0 320px;
*/
}

/* 中央以外 */
/*
#footer_information{
  position: absolute;
  top: 250px;
  left: calc(50% - 250px);
}
#footer_information .entry-post {
  width: 450px;
  margin: 0;
  text-align: left;
}
*/


/*  フッター住所
---------------------------------------------------------------------------------------------------- */
#footer_information .entry-post .post-data > p {
  color: var(--address_color);
  /*絶対値指定する時
  position: absolute;
  bottom: 110px;
  left: 50%;
  margin: 0;
  width: auto;
  transform: translateX(-50%);
  */
}

/*  フッターSNSボタン
---------------------------------------------------------------------------------------------------- */
#footer_sns_btn {
  margin: 20px auto 0;
  /* 絶対値指定する時
  position: absolute;
  bottom: 130px;
  left: 50%;
  margin: 0;
  transform: translateX(-50%);
  */
}
#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: var(--copy_color);
}
/* 中央寄せの時 */

#copyright {
  position: absolute;
  bottom: 0px;
  left: 50%;
  margin: 0;
  transform: translateX(-50%);
}

/* 中央以外 */
/*
#copyright {
  position: absolute;
  bottom: 0px;
  left: calc(50% - px);
}
*/

/*  サイドメニュー
---------------------------------------------------------------------------------------------------- */
.fixed_btn {
  z-index: 1000;
}

.fixed_btn div,
.fixed_btn div a {
  width: 55px;
  height: 50px;
}

.fixed_btn #fixed_btn_gtn,
.fixed_btn #fixed_btn_gtn a {
  /* height: 150px; */
}

/*  スクロールトップ
---------------------------------------------------------------------------------------------------- */
#float_top_btn a:hover img {
  opacity: 0.8;
}

/*画面幅2000px以上の時
---------------------------------------*/
/* @media screen and (min-width: 2000px) {
  #float_top_btn {
    right:calc(50% - 980px) !important;
  }
} */

/* ===================================================================================================================
   ■ コンテンツ
------------------------------------------------------------------------------------------------------------------- */
#container_top {
  padding: 0;
}
#container_top.single_post {
  padding: 0 0 50px;
}

/*  見出し
---------------------------------------------------------------------------------------------------- */
.headline_title {
  background-image: url(../files/top_entry_title.png);
  color: var(--top_entry_title_color);
  height: 90px;
  line-height: 110px;
}
h3.entry_title,
.entry_title,
.entry-title {
  /* サイズ、背景、余白などはこちら */
  background-image: url(../files/entry_title_bg.png);
  color: var(--entry_title_bg_color);
}
/*h3.entry_title,
.entry_title,
.entry_title h3,
.entry-title {
  font-family:  !important
  font-weight:  !important
}*/
.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: var(--entry_title_bg_color);
}
/* 見出しリンクボタン */
.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;
}
* .mid_entry_title,
* .mid_entry_title a {
  color: var(--entry_title_bg_w570_color);
}

/* B-09、B-10など幅半分ブロックの見出し用 */
* .half_entry_title,
* .short_entry_title {
  background-image: url(../files/half_entry_title_bg.png);
}
* .half_entry_title,
* .half_entry_title a,
* .short_entry_title,
* .short_entry_title a {
  color: var(--half_entry_title_bg_color);
}

* .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: var(--half_sub_entry_title_bg_color);
}



/* B-03など小見出し用 */
* .sub_entry_title {
  background: url(../files/sub_entry_title_bg.png) no-repeat scroll left top transparent;
  color: var(--sub_entry_title_bg_color);
}
/*
* .sub_entry_title h4 {
  font-family:  !important
  font-weight:  !important
}
*/
* .sub_entry_title a:link,
* .sub_entry_title a:visited,
* .sub_entry_title a:hover,
* .sub_entry_title a:active {
  color: var(--sub_entry_title_bg_color);
}
/* 小見出しリンクボタン */
.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;
}
* .mid_sub_entry_title,
* .mid_sub_entry_title a {
  color: var(--sub_entry_title_bg_w570_color);
}

/* C-01など3列表示インラインタイトル用 */
* .inline_title {
  background-image: url(../files/column3_title_bg.png);
}
* .inline_title,
* .inline_title a {
  color: var(--column3_title_bg_color);
}

/* クーポンの本文見出しなど、固定幅でないインラインタイトル用 */
.coupon_data .inline_title,
.c_04 .inline_title,
.i_01 .inline_title,
.j_01 .inline_title {
  padding: 10px;
  height: auto;
  border: 1px solid var(--table_border_color);
  border-radius: 5px;
  background: none var(--th_background_color);
  color: var(--th_character_color);
  text-align: left;
  font-size: 15px;
  line-height: 1.7;
}

/* 詳細画面の下部「コメント」見出し */
.indent_border {
  width: 685px;
  border-color: var(--link_color);
}


/* 大きな地図で見る */
small {
  border-color: var(--link_color);
}
small a {
  padding: 5px 0;
  width: 100%;
  color: var(--link_color) !important;
  text-align: center !important;
}

small a:hover {
  background-color: var(--link_color) !important;
  color: var(--easys_standard_value006) !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: var(--table_border_color);
  /* border-right: none; */
  /* border-left: none; */
  background: none transparent;
}
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: var(--border_color) !important;
}

/* Dメニュー下線 */
.td_cell {
  border-color: var(--border_color);
  vertical-align: top;
}

.table_area table tr td {
  border: solid 1px var(--table_border_color) !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 {
  border-style: solid;
  border-color: var(--link_color);
  background: none transparent;
  color: var(--link_color) !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 var(--easys_standard_value007);
  background: none transparent;
}
.tablenav .next:hover,
.tablenav .next:active,
.tablenav .prev:hover,
.tablenav .prev:active {
  border-color: var(--link_color);
  background-color: var(--link_color);
}
.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 {
  border-style: solid;
  border-color: var(--link_color);
  background: none var(--link_color);
  color: var(--easys_standard_value008) !important;
} 


/*  ブロック
---------------------------------------------------------------------------------------------------- */
/* 各ブロック点線 */
.border_margin,
.anchor_list ul li,
.cu_mail_block,
.blog_post,
.list_block .list_box {
  border-color: var(--border_color);
}


/* Cブロック */
.c_01,
.c_02,
.c_03,
.c_05,
.c_06 {
  display: inline-block;
  padding: 0 0 20px;
  width: 100%;
}
.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-weight: bold;
  font-size: 13px;
}
.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;
}



/* Z-I スライドショー */
.z_j1 {
  margin: 0 0 15px;
}


/* Z_L お知らせブロック */
.Z_l1 .date_area {
  font-weight: bold;
  font-size: 13px;
}
.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 {
  border: 1px solid var(--link_color);
  background-color: transparent;
  color: var(--link_color);
}
div.link_list a:hover {
  border: 1px solid var(--link_color);
  background-color: var(--link_color);
  color: #ffffff;
}


.faq-title {
  background-color: var(--link_color);
  color: #ffffff;
  font-weight: normal;
}


/*  メールフォーム
---------------------------------------------------------------------------------------------------- */
.iqfm-table td input[type="text"]:not([size]) {
  width: 75%;
}
/* 必須項目 */
.iqfm-req_color {
  color: var(--required_color);
}
.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: var(--table_border_color);
}
/* 有効期限の部分 */
.coupon_box table tr td.coupon_meta_title {
  width: 8em;
  background-color: var(--th_background_color);
  color: var(--th_character_color);
}
.coupon_box table tr td.coupon_meta {
  background-color: var(--td_background_color);
  color: var(--td_character_color);
}
.e-04 .menu_area td {
  height: 3.5em;
}
.e-04 .menu_area .parent_title {
  height: auto;
  font-size: 120%;
}


/*  ブログ
---------------------------------------------------------------------------------------------------- */
#nav-below div {
  border-color: var(--easys_standard_value009);
}
#nav-below .nav-next {
  padding: 0 0 0 10px;
}

#blog_main .entry-title {
  padding: 15px 20px 15px 20px;
  height: auto;
  background-image: url(../files/blog_title.png);
  background-position: center bottom;
  line-height: 1.5;
}
#blog_main .entry-title,
#blog_main .entry-title a {
  color: var(--blog_title_color);
}

.img_size_thumb {
  overflow: hidden;
  width: 150px;
  height: 150px;
}


/*  ローディング画面
---------------------------------------------------------------------------------------------------- */
/* .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 {
  margin: 0 0 20px;
  width: 100%;
  height: 450px;
}


/*  googleカレンダー
---------------------------------------------------------------------------------------------------- */
iframe[src^="https://calendar.google.com"] {
  border: none !important;
}


/* ページ内リンクアンカー位置調整 */
a[id^="anchor"] {
  display: block;
  visibility: hidden;
  margin-top: -110px;
  height: 110px;
  content: "";
}


/* ============================== ↓↓各ブロックの個別CSSはこちらに記述↓↓ ============================== */


/*全体フェードイン　Dブロックは解除*/
/* .easys_content_inner:not(.nd_01 .easys_content_inner){
  transition: all 1.3s ease 0s;
  transform: translate(0px, 100px);
  opacity: 0;
}
.easys_content_inner.moved:not(.nd_01 .easys_content_inner.moved) {
  transform: translate(0px, 0px);
  opacity: 1;
} */



/*  デザインブロック共通
-------------us57zy4v0dfw46962vu6-----------mzcijqppk969k2bjydem---------------------------------------------------------------------------- */

#us57zy4v0dfw46962vu6,
#mzcijqppk969k2bjydem,
#lnv8305v5478syhea8k5,
#jaahlz6fca2ga7dtj5qf,
#eegwyjy1i46enybpr8a5,
#aixtq32j3mbnr927htea,
#jezqviy7dbzt2fsxk7xs,
#ebnysueereck1twk2wjj,
#iys63mezjj4e8fnd9uaf {
  background-repeat: no-repeat;
  background-position: center top;
  margin-bottom: 0;
  position: relative;
}

#us57zy4v0dfw46962vu6 .easys_content_inner,
#mzcijqppk969k2bjydem .easys_content_inner,
#lnv8305v5478syhea8k5 .easys_content_inner,
#jaahlz6fca2ga7dtj5qf .easys_content_inner,
#eegwyjy1i46enybpr8a5 .easys_content_inner,
#aixtq32j3mbnr927htea .easys_content_inner,
#jezqviy7dbzt2fsxk7xs .easys_content_inner,
#ebnysueereck1twk2wjj .easys_content_inner,
#iys63mezjj4e8fnd9uaf .easys_content_inner {
  position: relative; 
  width: 960px;
  opacity: 1;
  transform: translate(0px, 0px) !important;
}

#us57zy4v0dfw46962vu6 .post_margin,
#mzcijqppk969k2bjydem .post_margin,
#lnv8305v5478syhea8k5 .post_margin,
#jaahlz6fca2ga7dtj5qf .post_margin,
#eegwyjy1i46enybpr8a5 .post_margin,
#aixtq32j3mbnr927htea .post_margin,
#jezqviy7dbzt2fsxk7xs .post_margin,
#ebnysueereck1twk2wjj .post_margin,
#iys63mezjj4e8fnd9uaf .post_margin {
  margin: 0;
}

#us57zy4v0dfw46962vu6 .eyecatch,
#mzcijqppk969k2bjydem .eyecatch,
#lnv8305v5478syhea8k5 .eyecatch,
#jaahlz6fca2ga7dtj5qf .eyecatch,
#eegwyjy1i46enybpr8a5 .eyecatch,
#aixtq32j3mbnr927htea .eyecatch,
#jezqviy7dbzt2fsxk7xs .eyecatch,
#ebnysueereck1twk2wjj .eyecatch,
#iys63mezjj4e8fnd9uaf .eyecatch {
  display: none;
  float: none !important;
}

#us57zy4v0dfw46962vu6 .entry_post,
#mzcijqppk969k2bjydem .entry_post,
#lnv8305v5478syhea8k5 .entry_post,
#jaahlz6fca2ga7dtj5qf .entry_post,
#eegwyjy1i46enybpr8a5 .entry_post,
#aixtq32j3mbnr927htea .entry_post,
#jezqviy7dbzt2fsxk7xs .entry_post,
#ebnysueereck1twk2wjj .entry_post,
#iys63mezjj4e8fnd9uaf .entry_post {
  box-sizing: border-box;
  position: relative;
}

#us57zy4v0dfw46962vu6 .entry_post > [class*="title"],
#mzcijqppk969k2bjydem .entry_post > [class*="title"],
#lnv8305v5478syhea8k5 .entry_post > [class*="title"],
#jaahlz6fca2ga7dtj5qf .entry_post > [class*="title"],
#eegwyjy1i46enybpr8a5 .entry_post > [class*="title"],
#aixtq32j3mbnr927htea .entry_post > [class*="title"],
#jezqviy7dbzt2fsxk7xs .entry_post > [class*="title"],
#ebnysueereck1twk2wjj .entry_post > [class*="title"],
#iys63mezjj4e8fnd9uaf .entry_post > [class*="title"] {
  display: none;
}


#us57zy4v0dfw46962vu6 .text_box,
#us57zy4v0dfw46962vu6 .text_box,
#lnv8305v5478syhea8k5 .text_box,
#jaahlz6fca2ga7dtj5qf .text_box,
#eegwyjy1i46enybpr8a5 .text_box,
#aixtq32j3mbnr927htea .text_box,
#jezqviy7dbzt2fsxk7xs .text_box,
#ebnysueereck1twk2wjj .text_box,
#iys63mezjj4e8fnd9uaf .text_box {
  float: none !important;
  overflow: visible;
  height: auto;
  width: 100%;
  margin: 0;
}

#us57zy4v0dfw46962vu6 .post_data,
#mzcijqppk969k2bjydem .post_data,
#lnv8305v5478syhea8k5 .post_data,
#jaahlz6fca2ga7dtj5qf .post_data,
#eegwyjy1i46enybpr8a5 .post_data,
#aixtq32j3mbnr927htea .post_data,
#jezqviy7dbzt2fsxk7xs .post_data,
#ebnysueereck1twk2wjj .post_data,
#iys63mezjj4e8fnd9uaf .post_data {
  float: none !important;
  overflow: visible;
  display: block;
  margin: 0;
  /* transition: 1.3s;
  opacity: 0;
  transform: translate(0 , 100px);*/
} 

/* ##us57zy4v0dfw46962vu6 .post_data.moved,
#mzcijqppk969k2bjydem .post_data.moved,
#lnv8305v5478syhea8k5 .post_data.moved,
#jaahlz6fca2ga7dtj5qf .post_data.moved,
#eegwyjy1i46enybpr8a5 .post_data.moved,
#aixtq32j3mbnr927htea .post_data.moved,
#jezqviy7dbzt2fsxk7xs .post_data.moved,
#ebnysueereck1twk2wjj .post_data.moved,
#iys63mezjj4e8fnd9uaf .post_data.moved,
#DB10ID .post_data.moved {
  opacity: 1;
  transform: translate(0,0);
} */

/* 追加画像 */
.design_block {
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0;
  position: absolute;
  transition: all 1.3s ease 0s;
}
.design_block.moved {
  opacity: 1;
}
#us57zy4v0dfw46962vu6 .design_block[class*="block"].moved,
#mzcijqppk969k2bjydem .design_block[class*="block"].moved,
#lnv8305v5478syhea8k5 .design_block[class*="block"].moved,
#jaahlz6fca2ga7dtj5qf .design_block[class*="block"].moved,
#eegwyjy1i46enybpr8a5 .design_block[class*="block"].moved,
#aixtq32j3mbnr927htea .design_block[class*="block"].moved,
#jezqviy7dbzt2fsxk7xs .design_block[class*="block"].moved,
#ebnysueereck1twk2wjj .design_block[class*="block"].moved,
#iys63mezjj4e8fnd9uaf .design_block[class*="block"].moved {
  transform: translate(0px, 0px) scale(1,1) rotate(0deg);
  clip-path: inset(0) !important;
  -webkit-clip-path: inset(0) !important;
}

#us57zy4v0dfw46962vu6 .post_data p,
#mzcijqppk969k2bjydem .post_data p,
#lnv8305v5478syhea8k5 .post_data p,
#jaahlz6fca2ga7dtj5qf .post_data p,
#eegwyjy1i46enybpr8a5 .post_data p,
#aixtq32j3mbnr927htea .post_data p,
#jezqviy7dbzt2fsxk7xs .post_data p,
#ebnysueereck1twk2wjj .post_data p,
#iys63mezjj4e8fnd9uaf .post_data p {
  color: #333333;
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: calc(32/15);
  text-align: justify;
  font-feature-settings: "palt";
}


/*  DB①＞とにかく自由な会社～ (※top)
--------------------------us57zy4v0dfw46962vu6-------------------------------------------------------------------------- */

#us57zy4v0dfw46962vu6 {
  height: 1000px;
  background-image: url(../files/db1.jpg);
}
#us57zy4v0dfw46962vu6 .entry_post {
  padding: 460px 185px 0 185px;
}
#us57zy4v0dfw46962vu6 .post_data {
  margin-bottom: 0;
}

#us57zy4v0dfw46962vu6 .design_block.block1 {
  background-image: url(../files/db1_ttl.png);
  width: 700px;
  height: 85px;
  top: 340px;
  left: calc(50% - 350px);
  clip-path: inset( 0 100% 0 0);
  opacity: 1;
}


/*  DB②＞福利厚生に力、いれてます！ (※top)
----------------------------------mzcijqppk969k2bjydem------------------------------------------------------------------ */
/* 
#mzcijqppk969k2bjydem {
  height: 1000px;
  background-image: url(../files/db_bg.jpg);
}
#mzcijqppk969k2bjydem .entry_post {
  padding: 520px 480px 0 34px;
}
#mzcijqppk969k2bjydem .post_data {
  margin-bottom: 0;
}
 */




/*  DB③＞一回やってみよう！を大事にしています (※top)
----------------------------------lnv8305v5478syhea8k5------------------------------------------------------------------ */
/* 
#lnv8305v5478syhea8k5 {
  height: 1000px;
  background-image: url(../files/db_bg.jpg);
}
#lnv8305v5478syhea8k5 .entry_post {
  padding: 520px 480px 0 34px;
}
#lnv8305v5478syhea8k5 .post_data {
  margin-bottom: 0;
} */

/*  DB④＞楽しい仲間達がいる！！！ (※top)
----------------------------------jaahlz6fca2ga7dtj5qf------------------------------------------------------------------ */

/* #jaahlz6fca2ga7dtj5qf {
  height: 1000px;
  background-image: url(../files/db_bg.jpg);
}
#jaahlz6fca2ga7dtj5qf .entry_post {
  padding: 520px 480px 0 34px;
} */


/*  DB⑤＞先輩にインタビューしてみた (※top)
----------------------------------eegwyjy1i46enybpr8a5------------------------------------------------------------------ */

/* #eegwyjy1i46enybpr8a5 {
  height: 1000px;
  background-image: url(../files/db_bg.jpg);
}
#eegwyjy1i46enybpr8a5 .entry_post {
  padding: 520px 480px 0 34px;
}
#eegwyjy1i46enybpr8a5 .post_data {
  margin-bottom: 0;
} */



/*  デザインブロック合体＆画像切替(PC用)
---------------------------------------------------------------------------------------------------- */
/* -----共通----- */
.db_union_img_switch {
  overflow: hidden;

          clip-path: inset(0);
  -webkit-clip-path: inset(0);
}
/* fixed背景 */
.db_union_img_switch::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  content: "";
}
/* 各DB */
.db_union_img_switch > div {
  position: relative;
}
.db_union_img_switch > div::before {
  position: absolute;
  top: 50%;
  left: calc(50% - -50px);
  z-index: 1;
  width: 2000px;
  content: "";
  opacity: 0;
  transition: opacity 0.3s ease 0.0s;
  transform: translatey(-50%);
  pointer-events: none;
}
.db_union_img_switch.fixed > div::before {
  position: fixed;
  margin-left: var(--db_union_ml, 0);
}
.db_union_img_switch > div.current::before {
  opacity: 1;
}
/* 各DB＞テキスト部分 */
.db_union_img_switch > div > div {
  position: absolute;
  top: 50%;
  z-index: 2;
  height: auto;
  transform: translateY(-50%);
}
/* タイトル */
.db_union_img_switch > div > div > h2 {
  white-space: normal;
  line-height: normal;
}
/* コメント */
.db_union_img_switch > div > div > div {
  line-height: normal;
}
/* リンクボタン */
.db_union_img_switch > div > div > a {
  display: inline-block;
  line-height: normal;
}

/* -----個別設定----- */
#mzcijqppk969k2bjydem {
  margin-bottom: 0px;
}
/* fixed背景 */
#mzcijqppk969k2bjydem::before {
  background:  url(/files/db_bg.jpg) fixed center / cover;
}
/* 各DB */
#mzcijqppk969k2bjydem > div:nth-of-type(1) {
  height: 1000px;
}

#mzcijqppk969k2bjydem > div:nth-of-type(1) h2 {
  background: url(../files/db2_ttl.png) no-repeat center top;
  width: 640px;
  height: 220px;
  transform: translateX(-157px);
}

#mzcijqppk969k2bjydem > div:nth-of-type(1)::before {
  height: 1000px;
  width: 640px;
  background: url(/files/db2_img.png) center / cover;
}
#mzcijqppk969k2bjydem > div:nth-of-type(2) {
  height: 1000px;
}

#mzcijqppk969k2bjydem > div:nth-of-type(2) h2 {
  background: url(../files/db3_ttl.png) no-repeat center top;
  width: 770px;
  height: 220px;
  transform: translateX(-170px);
}

#mzcijqppk969k2bjydem > div:nth-of-type(2)::before {
  height: 1000px;
  width: 640px;
  background: url(/files/db3_img.png) center / cover;
}
#mzcijqppk969k2bjydem > div:nth-of-type(3) {
  height: 1000px;
}

#mzcijqppk969k2bjydem > div:nth-of-type(3) h2 {
  background: url(../files/db4_ttl.png) no-repeat center top;
  width: 700px;
  height: 220px;
  transform: translateX(-157px);
}

#mzcijqppk969k2bjydem > div:nth-of-type(3)::before {
  height:1000px;
  width: 640px;
  background: url(/files/db4_img.png) center / cover;
}


#mzcijqppk969k2bjydem > div:nth-of-type(4) {
  height: 1000px;
}
#mzcijqppk969k2bjydem > div:nth-of-type(4) h2 {
  background: url(../files/db5_ttl.png) no-repeat center top;
  width: 770px;
  height: 305px;
  transform: translateX(-157px);
}


#mzcijqppk969k2bjydem > div:nth-of-type(4)::before {
  height:1000px;
  width: 640px;
  background: url(/files/db5_img.png) center / cover;
}
/* 各DB＞テキスト部分 */
#mzcijqppk969k2bjydem > div > div {
  left: calc(50% - 450px);
  width: 456px;
}

/* タイトル */
#mzcijqppk969k2bjydem > div > div > h2 {
  margin-bottom: 25px;
  color: transparent;
  font-size: 0px;
  text-indent: -9999999px;
}

/* コメント */
#mzcijqppk969k2bjydem > div > div > div {
  margin-bottom: 20px;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: calc(32/15);
  text-align: justify;
  font-feature-settings: "palt";
}



/*  DB⑥＞メリハリある働き方を実現！ (※top)
----------------------------------aixtq32j3mbnr927htea------------------------------------------------------------------ */

#aixtq32j3mbnr927htea {
  height: 1000px;
  background-image: url(../files/db6_bg.jpg);
}
#aixtq32j3mbnr927htea .entry_post {
  padding: 500px 0px 0 510px;
}
#aixtq32j3mbnr927htea .post_data {
  margin-bottom: 0;
}

#aixtq32j3mbnr927htea .post_data p {
  color:#fff;
}

#aixtq32j3mbnr927htea .design_block.block1 {
  background-image: url(../files/db6_ttl.png);
  width: 560px;
  height: 265px;
  top: 200px;
  left: calc(50% - -20px);
  clip-path: inset( 0 100% 0 0);
  opacity: 1;
}

#aixtq32j3mbnr927htea .design_block.block2 {
  background-image: url(../files/db6_img.png);
  width: 500px;
  height: 680px;
  top: 160px;
  left: calc(50% - 550px);
}


/*  DB⑦＞躍できる場所、ここにあります！ (※top)
----------------------------------jezqviy7dbzt2fsxk7xs------------------------------------------------------------------ */

#jezqviy7dbzt2fsxk7xs {
  height: 1000px;
  background-image: url(../files/db7_bg.jpg);
}
#jezqviy7dbzt2fsxk7xs .entry_post {
  padding: 434px 510px 0 0px;
}
#jezqviy7dbzt2fsxk7xs .post_data {
  margin-bottom: 0;
}

#jezqviy7dbzt2fsxk7xs .post_data p {
  color:#fff;
}

#jezqviy7dbzt2fsxk7xs .design_block.block1 {
  background-image: url(../files/db7_ttl.png);
  width: 465px;
  height: 160px;
  top: 240px;
  left: calc(50% - 480px);
  clip-path: inset( 0 100% 0 0);
  opacity: 1;
}
#jezqviy7dbzt2fsxk7xs .design_block.block2 {
  background-image: url(../files/db7_img.png);
  width: 770px;
  height: 653px;
  top: 200px;
  opacity: 1;
  left: calc(50% - 120px);
  transform: translate(0px, 0px) scale(0);
  transform-origin: center center;
  transition: all 0.8s cubic-bezier(.40, .45, .7, 2) 0s;
}

/*  DB⑧＞採用メッセージ (※top)
----------------------------------ebnysueereck1twk2wjj------------------------------------------------------------------ */

#ebnysueereck1twk2wjj {
  height: 1180px;
  background-image: url(../files/db8_bg.jpg);
}
#ebnysueereck1twk2wjj .entry_post {
  padding: 440px 0px 0 270px;
}
#ebnysueereck1twk2wjj .post_data {
  margin-bottom: 0;
}

#ebnysueereck1twk2wjj .design_block.block1 {
  background-image: url(../files/db8_ttl.png);
  width: 580px;
  height: 140px;
  top: 270px;
  left: calc(50% - 210px);
  clip-path: inset( 0 100% 0 0);
  opacity: 1;
}

/*  DB⑨＞会社概要 (※top)
----------------------------------iys63mezjj4e8fnd9uaf------------------------------------------------------------------ */

#iys63mezjj4e8fnd9uaf {
  padding-top: 340px;
  background-image: none;
  background-color: #f7d30a;
  padding-bottom: 90px;
  margin-bottom: 80px;
}
#iys63mezjj4e8fnd9uaf .entry_post {
  padding: 0px 0px 0 0px;
}
#iys63mezjj4e8fnd9uaf .post_data {
  margin-bottom: 0;
}

#iys63mezjj4e8fnd9uaf .easys_content_inner {
  background-color: #fff;
    /* box-sizing: border-box; */
    padding: 80px;
}

#iys63mezjj4e8fnd9uaf .design_block.block1 {
  background-image: url(../files/db9_ttl.png);
  width: 615px;
  height: 210px;
  top: 80px;
  opacity: 1;
  left: calc(50% - 307.5px);
  transform: translate(0px, 0px) scale(0);
  transform-origin: center center;
  transition: all 0.8s cubic-bezier(.40, .45, .7, 2) 0s;
}

/*  バナー＞GATEN職／お問い合わせ (※top)
--------------sak1i2tnirhuifpfsjke-------------------------------------------------------------------------------------- */

/*二列バナー*/
.block_group1{
  margin-bottom: 0px;
  background: url(../files/banner_bg.png) no-repeat center top/100%;
  padding-top: calc(125 / 2000 * 100%);
  padding-bottom: calc(125 / 2000 * 100%);
}

#h7v0u8sby2paac9fl2h6 {
  margin-bottom: 60px;
}

.block_group1 div {
  overflow: visible !important;
}

.block_group1 .easys_content_inner{
  width: calc(1440 / 2000 * 100%);
  padding: 0 !important;
}
.block_group1 .field_2col{margin-bottom: 0;width: calc(690 / 1440 * 100%) !important;}
.block_group1 .field_2col .eyecatch{width: 100% !important;}

.block_group1 a:hover img {
  opacity: 1;
  animation: poyoyon0 2.5s infinite;
}

/*  バナー＞4連 (※top)
-------------tn7su0lwh4883u3ns1hp--------------------------------------------------------------------------------------- */


#tn7su0lwh4883u3ns1hp {
  margin: 0;
  position: relative;
  background: url(../files/4ren_bg.jpg) no-repeat center top/100%;
  padding-top: calc(380 / 2000 * 100%) ;
  padding-bottom: calc(200 / 2000 * 100%) ;
}

#tn7su0lwh4883u3ns1hp::after{
  content: '';
  display: block;
  position: absolute;
  top: 10%;
  left: calc(616 / 2000 * 100%);
  width: calc(770 / 2000 * 100%);
  padding-top: calc(180 / 2000 * 100%) ;
  pointer-events: none;
  background: url(../files/4ren_ttl.png) no-repeat center top/100%;
  transform: translate(0px, 0px) scale(0);
  transform-origin: center center;
  transition: all 0.8s cubic-bezier(.40, .45, .7, 2) 0s;
}

#tn7su0lwh4883u3ns1hp.moved::after {
  transform: translate(0px, 0px) scale(1);
}

#tn7su0lwh4883u3ns1hp div {
  margin-bottom: 0;
  padding-bottom: 0;
}

#tn7su0lwh4883u3ns1hp .easys_content_inner {
  width: calc(1750 / var(--easys_max_width) * 100%);
  padding: 0;
}

#tn7su0lwh4883u3ns1hp .img_display {
  display: flex;
  justify-content: space-between;
}

#tn7su0lwh4883u3ns1hp .field_4col {width: calc(430 / 1750 * 100%) !important;margin-right: 0;}
#tn7su0lwh4883u3ns1hp .eyecatch{width: 100%;}
#tn7su0lwh4883u3ns1hp .eyecatch a{
  display: block;
  position: relative;
  padding: calc(430 / 430 * 100%) 0 0;
}

#tn7su0lwh4883u3ns1hp .eyecatch a::before,
#tn7su0lwh4883u3ns1hp .eyecatch a::after{
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;/*ON画像非表示*/
  width: 100%;
  height: 100%;
  pointer-events: none;
  transition: opacity 0.3s ease 0s;/*ゆっくり変化*/
}
/*OFF画像表示*/
#tn7su0lwh4883u3ns1hp .eyecatch a::after{opacity:1;}

/*ホバー時*/
#tn7su0lwh4883u3ns1hp .eyecatch a:hover::before{opacity: 1;}/*ON画像表示*/
#tn7su0lwh4883u3ns1hp .eyecatch a:hover::after{opacity: 0;}/*Off画像非表示*/

/*固定画面のSPバナー画像非表示*/
#tn7su0lwh4883u3ns1hp .eyecatch a img{display: none;}

#tn7su0lwh4883u3ns1hp .clear_float {
  display: none;
}


/*OFF画像*/
#tn7su0lwh4883u3ns1hp .float_left a::after{ background: url("../files/4ren_1_off.png") no-repeat center top /100%;}
#tn7su0lwh4883u3ns1hp .float_left:nth-of-type(2) a::after{ background: url("../files/4ren_2_off.png") no-repeat center top /100%;}
#tn7su0lwh4883u3ns1hp .float_left:nth-of-type(3) a::after{ background: url("../files/4ren_3_off.png") no-repeat center top /100%;}
#tn7su0lwh4883u3ns1hp .float_right a::after{ background: url("../files/4ren_4_off.png") no-repeat center top /100%; }

/*ON画像*/
#tn7su0lwh4883u3ns1hp .float_left a::before{ background: url("../files/4ren_1_on.png") no-repeat center top /100%;}
#tn7su0lwh4883u3ns1hp .float_left:nth-of-type(2) a::before{ background: url("../files/4ren_2_on.png") no-repeat center top /100%;}
#tn7su0lwh4883u3ns1hp .float_left:nth-of-type(3) a::before{ background: url("../files/4ren_3_on.png") no-repeat center top /100%;}
#tn7su0lwh4883u3ns1hp .float_right a::before{ background: url("../files/4ren_4_on.png") no-repeat center top /100%; }



/*  バナー＞お問い合わせ (※top)
----------j7w2h1tz1tepvauxf7iu------------------------------------------------------------------------------------------ */

#j7w2h1tz1tepvauxf7iu {
  background: url(../files/banner_bg.png) no-repeat center top/100%;
  padding-top: calc(85 / 2000 * 100vw);
  padding-bottom: calc(85 / 2000 * 100vw);
}
#j7w2h1tz1tepvauxf7iu div {
  overflow: visible !important;
}

/*1列バナー　レスポンシブ*/
#j7w2h1tz1tepvauxf7iu .easys_content_inner{
  width: 63%;
  padding:0;
}


#j7w2h1tz1tepvauxf7iu .margin-bottom_50{
  margin-bottom: 0;
}

#j7w2h1tz1tepvauxf7iu a:hover img {
  opacity: 1;
  animation: poyoyon0 2.5s infinite;
}

@keyframes poyoyon0 {
  0%,
  40% {
    transform: skew(0deg, 0deg);
  }

  5% {
    transform: skew(5deg, 5deg);
  }

  10% {
    transform: skew(-4deg, -4deg);
  }

  15% {
    transform: skew(3deg, 3deg);
  }

  20% {
    transform: skew(-2deg, -2deg);
  }

  25% {
    transform: skew(1deg, 1deg);
  }

  30% {
    transform: skew(-0.6deg, -0.6deg);
  }

  35% {
    transform: skew(0.3deg, 0.3deg);
  }
}

/*  ○○○
---------------------------------------------------------------------------------------------------- */



/*  ○○○
---------------------------------------------------------------------------------------------------- */



/*  ○○○
---------------------------------------------------------------------------------------------------- */
