@charset "utf-8";

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


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


/* =================================================================================================================== */
/* PCカスタムプロパティ */
:root {
  --basic_background_color:#ffffff;
  --body_text_color:#222222;
  --link_color:#f34213;
  --border_color:#540d6e;
  --table_border_color:#000000;
  --th_background_color:#88c50e;
  --td_background_color:#ffffff;
  --th_character_color:#ffffff;
  --td_character_color:#222222;
  --required_color:#f34213;
  --top_h1_color:#ffffff;
  --header_navigation_color:transparent;
  --top_entry_title_color:#222222;
  --entry_title_bg_color:#1aa838;
  --blog_title_color:#1d1d1f;
  --sub_entry_title_bg_color:#1d1d1f;
  --entry_title_bg_w570_color:#1d1d1f;
  --sub_entry_title_bg_w570_color:#1d1d1f;
  --half_entry_title_bg_color:#1d1d1f;
  --half_sub_entry_title_bg_color:#1d1d1f;
  --column3_title_bg_color:#1d1d1f;
  --widget_title_bg_color:#1d1d1f;
  --widget_list_bg_color:#1d1d1f;
  --footnavi_color:transparent;
  --address_color:#000000;
  --copy_color:#1aa838;
  --kdb_background_color: #d0ddb7;
}
/* 置換以外 */
:root {
  --easys_min_width: 1300;/* EASYSの最小幅(単位なし) */
  --easys_max_width: 2000;/* EASYSの最大幅(単位なし) */
  --easys_top_main_h: 1000;/* トップメインのオリジナル高さ(単位なし) */
  --easys_naka_main_h: 700;/* 中ページメインのオリジナル高さ(単位なし) */
  --fixed_side_btn_bottom:150px; /* サイド固定ボタンの下端からの距離 */
  --fixed_side_btn_side:0px; /* サイド固定ボタン、左右の距離 */
  --fixed_side_btn_width_full:240px; /* サイド固定ボタンの全幅 */
  --fixed_side_btn_width_collapsed:55px; /* サイド固定ボタンのホバー前の幅 */
  --fixed_side_btn_height:50px; /* サイド固定ボタンの高さ */
  --fixed_side_btn_margin:10px; /* サイド固定ボタンの間隔 */
  --easys_standard_value001: #ffffff;/* A～Cブロック記事内リンクボタン＞文字色 */
  --easys_standard_value002: 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;/* ブログ＞ページング＞線色 */
  --font_size_10: 10px;
  --font_size_11: 11px;
  --font_size_12: 12px;
  --font_size_13: 13px;
  --font_size_14: 14px;
  --font_size_15: 15px;
  --font_size_16: 16px;
  --font_size_17: 17px;
  --font_size_18: 18px;
  --font_size_20: 20px;
  --font_size_23: 23px;
  --font_size_28: 28px;
}
/* =================================================================================================================== */


/* ===================================================================================================================
   ■ 全体
------------------------------------------------------------------------------------------------------------------- */
::before,
::after {
  pointer-events: none;
}
html {
  /* background: var(--basic_background_color) url("../files/html_bg.jpg") repeat-x center top; */
  background: none #000000;
  scroll-padding-top:  0px;
  scroll-behavior: smooth;
}
body {
  position: relative;/* 2000pxを超える画面の対策 */
  margin: 0 auto;
  min-width: calc(var(--easys_min_width)*1px);
  max-width: calc(var(--easys_max_width)*1px);
  background: var(--basic_background_color);
  word-break: break-word;
  /*
  background: url("../files/body_bg.jpg") no-repeat center top;
  */
}
body,
.wpcf7c-conf {
  color: var(--body_text_color);
}
/* Safariのみ */
_:lang(x) + _:-webkit-full-screen-document,
body {
          text-size-adjust: none;
  -webkit-text-size-adjust: none;
}
body#page_6 {
  /* background: none no-repeat center top; */
}
#wrapper {
  background: none transparent;
}
#outer_block {
  background: none transparent;
}
#main {
  overflow: clip;
}

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 {
  position: relative;
  z-index: 500;
  padding: 0;
  /* height: 80px; ナビの高さ（メイン画像にナビ重ねないときのみ、ナビの高さ入力）*/
  /* CSSレスポンシブ用  */
  padding: calc(100% * (var(--easys_naka_main_h) / var(--easys_max_width))) 0 0 0;
  background: none;
}
/* トップページのみ調整する時 */
#page_6 #branding_box {
  /* height: 195px; */
  /* CSSレスポンシブ用  */
  padding: calc(100% * (var(--easys_top_main_h) / var(--easys_max_width))) 0 0 0;
  background: url(../files/top_header_cover.png) no-repeat center top/ 100%;
}

.loaded .animation-floating{
  opacity: 1;
  transform: none;
}

#branding_box .top_header_cover01{
  left: calc(150 / var(--easys_max_width) * 100%);
  top: calc(506 / var(--easys_top_main_h) * 100%);
  width: calc(548 / var(--easys_max_width) * 100%);
}
#branding_box .top_header_cover02{
  left: calc(152 / var(--easys_max_width) * 100%);
  top: calc(694 / var(--easys_top_main_h) * 100%);
  transition-delay: calc(.3s * 1);
  width: calc(1066 / var(--easys_max_width) * 100%);
}

#branding_box img{
  height: auto;
  max-width: 100%;
}

/*  H1テキスト
---------------------------------------------------------------------------------------------------- */
#site-description{
  top: 27%;
  margin: 0 auto;
  /* CSSレスポンシブ用 */
  position: absolute;
  inset-inline: 0;
  text-align: right;
  width: max-content;
  line-height: 1;
  z-index: 2;
}
#page_6 #site-description{
  top: 16.5%;
}
#site-description a{
  color: var(--top_h1_color);
  display: inline;
}

/*  サイトロゴ
---------------------------------------------------------------------------------------------------- */
/* ヘッダーのH1～グローバルナビの高さ調整 */
#header_information{
  background: none;
  height: calc(51 / var(--easys_naka_main_h) * 100%);
  inset-inline: 0;
  margin-inline: auto;
  position: absolute;
  top: 0;
  width: calc(424 / var(--easys_max_width) * 100%);
  z-index: 1;
}
#page_6 #header_information{
  height: calc(86 / var(--easys_top_main_h) * 100%);
  inset-inline: 0;
  margin-inline: auto;
  top: calc(66 / var(--easys_top_main_h) * 100%);
}
#header_information .post-data{
  height: 100%;
  width: 100%;
}
#header_information .main_header{
  height: 100%;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
#header_information .main_header a{
  display: block;
  height: 100%;
  padding: 0;
  width: 100%;
}
#header_information .main_header a img{
  display: block;
  height: 100%;
  width: 100%;
}
/* gナビ上部固定 */
/* #header_information:has(~ #access.fixed){
  position: fixed;
  top: 0;
  z-index: 3;
}

@media( min-width: 2000px ){
  #header_information:has(~ #access.fixed){
    left: calc(50% - 1000px);
  }
} */

/*  グローバルナビ
---------------------------------------------------------------------------------------------------- */
#access {
  --gnavi01: 160px;
  --gnavi02: 160px;
  --gnavi03: 160px;
  --gnavi04: 160px;
  --gnavi05: 160px;
  --gnavi06: 160px;
}
#access {
  display: flex;
  justify-content: center;
  /* CSSレスポンシブ用
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  padding: 0;
  width: 100%;
  */
  display: none;
}
#access .menu-header #menu-gnavi {
  display: flex;
}
#access .menu-header #menu-gnavi > li > a {
  height: 55px;
  background: url("../files/topnavi2.png") no-repeat center top;
  line-height: 55px;
}
#access .menu-header #menu-gnavi > li:nth-of-type(1) > a {
  width: var(--gnavi01);
  background-position-x: left;
}
#access .menu-header #menu-gnavi > li:nth-of-type(2) > a {
  width: var(--gnavi02);
  background-position-x: calc((var(--gnavi01)) * -1);
}
#access .menu-header #menu-gnavi > li:nth-of-type(3) > a {
  width: var(--gnavi03);
  background-position-x: calc((var(--gnavi01) + var(--gnavi02)) * -1);
}
#access .menu-header #menu-gnavi > li:nth-of-type(4) > a {
  width: var(--gnavi04);
  background-position-x: calc((var(--gnavi01) + var(--gnavi02) + var(--gnavi03)) * -1);
}
#access .menu-header #menu-gnavi > li:nth-of-type(5) > a {
  width: var(--gnavi05);
  background-position-x: calc((var(--gnavi01) + var(--gnavi02) + var(--gnavi03) + var(--gnavi04)) * -1);
}
#access .menu-header #menu-gnavi > li:nth-of-type(6) > a {
  width: var(--gnavi06);
  background-position-x: right;
}
#access .menu-header #menu-gnavi > li > a:hover {
  background-position-y: bottom;
}
/* Gナビ上部固定(最大2000pxを維持) 
#access.fixed {
  position: fixed;
  padding: 0;
  min-width: 960px;
}
#access.fixed .menu-header {
  display: flex;
  justify-content: center;
  max-width: calc(var(--easys_max_width)*1px);
  width: 100%;
  background-color: rgba(255,255,255,0.95);
}
#access.fixed .menu-header #menu-gnavi {
  margin-right: 0;
}*/

/* プルダウンメニュー */
#access ul li ul li {
  border-bottom: 1px dotted var(--border_color);
}
#access ul li ul li a {
  padding: 15px 10px;
  background-color: var(--easys_standard_value002);
  color: var(--easys_standard_value003);
  line-height: 1.2em;
}
#access ul li ul li a:hover {
  background: none var(--easys_standard_value002);
  color: var(--easys_standard_value004);
}

/* カレントページのメニュー */
#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);
}
#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;
  overflow: hidden;
}

#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{
  background: url(../files/body_bg.jpg) no-repeat center bottom/100%;
} */

#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: 600px;
  background: url(../files/footer_bg.jpg) repeat center top;
}
#footer_box {
  height: 600px;
  background: none;
}


/*  フッターナビ
---------------------------------------------------------------------------------------------------- */
#footer_sitemap_block {
  padding: 15px 0 0;
  /*絶対値指定する時
  position: absolute;
  bottom: 50px;
  left: 50%;
  margin: 0;
  width: auto;
  transform: translateX(-50%);
  */
  display: none;
}
/* 中央以外 */
/*
#footer-widget-area .widget-area{
    position: absolute;
    top: 320px;
    left: calc(50% - 140px);
}
*/
#footer_sitemap_block #footer-widget-area {
  display: block;
  width: 960px;
}
#footer_sitemap_block #footer-widget-area .widget-area ul.menu {
  border-color: var(--footnavi_color);
}
#footer_sitemap_block #footer-widget-area .widget-area .menu-item a {
  border-color: var(--footnavi_color);
  color: var(--footnavi_color);
}
#footer_sitemap_block #footer-widget-area .widget-area .menu-item a:hover {
  background-color: transparent;
}




/*  フッター情報
---------------------------------------------------------------------------------------------------- */
.footer_infomation {
  display: block;
  margin: 0 auto;
  width: 960px;
}
#footer_information .entry-post {
  margin: 380px 0 0;
  width: 100%;
  text-align: center;

  /* テキスト左寄せ用
  margin: 40px 0 0 320px;
*/
}
/* 中央以外 */
/*
#footer_information{
    position: absolute;
    top: 180px;
    left: calc(50% + -474px);
}
#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;
}
#footer_sns_btn div a:hover {
  opacity: 0.8;
}



/*  コピーライト
---------------------------------------------------------------------------------------------------- */
#copyright {
  color: var(--copy_color);
}
/* 中央寄せの時 */
#copyright {
  bottom: 40px;
  inset-inline: 0;
  margin: 0 auto;
  position: absolute;
  width: max-content;
}

/* 中央以外 */
/*
#copyright {
    position: absolute;
    bottom: 0px;
    left: calc(50% - 100px);
}
*/

/*  サイドメニュー
---------------------------------------------------------------------------------------------------- */
/* サイド固定ボタン：通常時は右端から185px隠れ、ホバーで全体表示 */
.fixed_side_btn {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position:fixed;
  bottom:var(--fixed_side_btn_bottom);
  inset-inline: 0;
  margin-inline: auto;
  z-index:1000;
  width: clamp(0px, 100%, 2000px);
  overflow: hidden;
  pointer-events:none;
}

/* .fixed_side_btn{
  opacity: 0;
  transition: opacity .5s;
}

.fixed_side_btn.fixed{
  opacity: 1;
}

.fixed_side_btn div{ 
  height: 60px;
  pointer-events: none;
}

.fixed_side_btn.fixed div{
  pointer-events:auto;
} */

.fixed_side_btn div {
  position:relative;
  width:var(--fixed_side_btn_width_full);
  height:var(--fixed_side_btn_height);
  margin-bottom:var(--fixed_side_btn_margin);
  overflow:hidden;
  transition:transform 0.3s ease;
  transform: translateX(calc(100% - var(--fixed_side_btn_width_collapsed)));
  pointer-events:auto;
  margin-left: auto;
}
.fixed_side_btn div:last-child {
  margin-bottom:0;
}
.fixed_side_btn div:hover {
  transition:transform 0.5s ease;
  transform:translateX(0px);
}
.fixed_side_btn div a {
  display:block;
  width:100%;
  height:100%;
  overflow:hidden;
  text-indent:-9999px;
  background-repeat:no-repeat;
  background-position:left center;
  background-size:contain;
}

/* デフォルトボタン */
.fixed_side_btn .gaten a {
  background-image:url(../files/btn_gaten.png);
}
.fixed_side_btn .map a {
  background-image:url(../files/btn_map.png);
}
.fixed_side_btn .contact a {
  background-image:url(../files/btn_contact.png);
}
.fixed_side_btn .weblog a {
  background-image:url(../files/btn_blog.png);
}

/* SNSボタン */
.fixed_side_btn .line a {
  background-image:url(../files/btn_line.png);
}
.fixed_side_btn .instagram a {
  background-image:url(../files/btn_insta.png);
}
.fixed_side_btn .facebook a {
  background-image:url(../files/btn_fb.png);
}
.fixed_side_btn .youtube a {
  background-image:url(../files/btn_youtube.png);
}
.fixed_side_btn .tiktok a {
  background-image:url(../files/btn_tiktok.png);
}
.fixed_side_btn .threads a {
  background-image:url(../files/btn_threads.png);
}
.fixed_side_btn .site a {
  background-image:url(../files/btn_site.png);
}

/* 個別ボタンの高さ調整 */
/* .fixed_side_btn .gaten {
  height: 150px;
} */

/* 2000幅を超えた時 */
/* #wrapper {
  -webkit-clip-path:inset(0);
          clip-path:inset(0);
}

@media (min-width: 2000px) {
  .fixed_side_btn {
    left:calc(50% + 1000px - var(--fixed_side_btn_width_collapsed));
    width:var(--fixed_side_btn_width_collapsed);
  }
  .fixed_side_btn div {
    transform:translateX(0);
  }

  .fixed_side_btn div:hover {
    transform:translateX(calc((var(--fixed_side_btn_width_full) - var(--fixed_side_btn_width_collapsed)) * -1));
  }
} */

/*  スクロールトップ
---------------------------------------------------------------------------------------------------- */
#float_top_btn a:hover img{
  opacity: .8;
}
:root{
  /* トップに戻るボタン */
  --float_top_btn_w: 70px;
  --float_top_btn_x: 20px;
}
@media(min-width:2000px){
  #float_top_btn{
    left: calc(50% + (1000px - var(--float_top_btn_w) - var(--float_top_btn_x)));
  }
}
#float_top_btn{
  bottom: 20px;
  right: var(--float_top_btn_x);
  width: var(--float_top_btn_w);
}

/* #float_top_btn a{
  position: relative;
}

#float_top_btn a::after{
  background: url(../files/top_btn_on.png) no-repeat left top;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity .3s;
  width: 100%;
  z-index: 1;
}

#float_top_btn a:hover::after{
  opacity: 1;
}

#float_top_btn a img{
  transition: opacity 0.3s ease;
}

#float_top_btn a:hover img{
  opacity: 0;
} */

/* ===================================================================================================================
   ■ コンテンツ
------------------------------------------------------------------------------------------------------------------- */
#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);
}
h3.entry_title,
.entry_title,
.entry-title {
  /* サイズ、背景、余白などはこちら */
  background-image: url(../files/entry_title_bg.png);
  color: var(--entry_title_bg_color);
  height: 70px;
  line-height: 70px;
}
/*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: 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: var(--font_size_20);
}
* .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 {
  フォントサイズはこちら
}
*/
* .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: var(--font_size_20);
}
* .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: var(--font_size_15);
  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;
}





/*  テーブル
---------------------------------------------------------------------------------------------------- */
.easys_content:not(.ne_01) table:not(#wp-calendar) tr > * {
  border: solid 1px var(--table_border_color);
  background: var(--td_background_color);
  color: var(--td_character_color);
}
.easys_content:not(.ne_01) table:not(#wp-calendar) { border-collapse: separate; border-spacing : 10px !important;}
.easys_content:not(.ne_01) table:not(#wp-calendar) tr > *:first-child {
  background: var(--th_background_color);
}

/*メール送信後メッセージボックスのボーダー（デフォルト：グリーン）*/
div.wpcf7-mail-sent-ok {
  border-color: var(--border_color) !important;
}
/* Dメニュー下線 */
.td_cell {
  border-color: var(--border_color);
  vertical-align: top;
}

/*  置きEASYS専用（html.okieasys時のみ適用）
---------------------------------------------------------------------------------------------------- */
/* ヘッダー */
html.okieasys #header_information .main_header a {
  font-size: 24px;
  color: var(--body_text_color);
  padding-block: 10px;
  text-decoration: none;
  font-weight: bold;
  z-index: 500;
}
html.okieasys #branding_box {
  background: none;
}
/* フッター */
html.okieasys #footer_box {
  background: none;
}
html.okieasys #footer_information .entry-post .post-data .footer_sitename {
  font-size: 20px;
}

/* リンク画像ホバー時 opacity調整 */
.field_1col a:hover img,
.field_2col a:hover img,
.field_3col a:hover img,
.field_4col a:hover img,
.field_5col a:hover img{
  opacity: 1;
}

/* LPまたはONE 詳細ページ以外の #page_6 のpadding削除 */
#page_6:not(.detail) #jquery_slider_pc + #outer_block,
#page_6:not(.detail) #video_teaser + #outer_block{
  padding-top: 0;
}

/* もし記事が割り込まれたらマージンを入れる */
.easys_content.no_margin + .easys_content:not(.no_margin){
  margin-top: 70px;
}

.easys_content.no_margin.nk_01 [class*="title"]{
  margin-bottom: 0;
  padding-bottom: 25px;
}

/*全体フェードイン　DB,Dブロックは解除*/
.easys_content:not(.nd_01):not(.ndb_01) .easys_content_inner{
  opacity: 0;
  transform: translateY(100px);
  transition: transform 1.3s ease 0s, opacity 1.3s ease 0s;
}

.easys_content:not(.nd_01):not(.ndb_01) .easys_content_inner.moved{
  opacity: 1;
  transform: none;
}

/* DBフェードインアニメーション */
.ndb_01 .text_box{
  overflow: visible;
}

.ndb_01 .post_data{
  opacity: 0;
  transform: translateY(100px);
  transition: transform 1.3s ease 0s, opacity 1.3s ease 0s;
}

.ndb_01 .post_data.moved{
  opacity: 1;
  transform: none;
}

/* アニメーション画像 */
.add-image,
.add-image img{
  display: block;
  pointer-events: none;
  width: max-content;
}

.add-image:not(.gsap):not([class*="css-"]):not(.animation-slide-in),
.add-image:not(.gsap):not([class*="css-"]):not(.animation-slide-in) img{
  transition: clip-path 1.3s ease,
  filter 1.3s ease,
  opacity 1.3s ease,
  scale 1.3s ease,
  transform 1.3s ease;
}

.add-image{
  position: absolute;
  z-index: 1;
}

/* フェードイン後 */
.add-image.moved:not(.gsap):not([class*="css-"]):not(.animation-slide-in),
.add-image.moved:not(.gsap):not([class*="css-"]):not(.animation-slide-in) img{
  filter: none;
  opacity: 1;
  scale: 1;
  transform: none;
}

.animation-clip-from-left{
  clip-path: inset(0 100% 0 0);
}

.animation-clip.moved{
  clip-path: inset(0);
}

.add-image img{
  height: auto;
}

/* blur */
.animation-blur{
  filter: blur(10px);
  opacity: 0;
}

.animation-blur.moved{
  filter: none;
  opacity: 1;
}

/* clip-path */
.animation-clip-from-bottom{
  clip-path: inset(100% 0 0 0);
}

.animation-clip-from-center-y{
  clip-path: inset(50% 0);
}

.animation-clip-from-center-x{
  clip-path: inset(0 50%);
}

.animation-clip-from-left{
  clip-path: inset(0 100% 0 0);
}

.animation-clip-from-top{
  clip-path: inset(0 0 100% 0);
}

/* general */
.animation-from-bottom{
  opacity: 0;
  transform: translateY(100px);
}

.animation-from-left{
  opacity: 0;
  transform: translateX(-100px);
}

.animation-from-right{
  opacity: 0;
  transform: translateX(100px);
}

.animation-from-top{
  opacity: 0;
  transform: translateY(-100px);
}

.animation-min-from-bottom{
  opacity: 0;
  transform: translateY(20px);
}

.animation-min-from-left{
  opacity: 0;
  transform: translateX(-20px);
}

.animation-min-from-left{
  opacity: 0;
  transform: translateX(-20px);
}

.animation-min-from-right{
  opacity: 0;
  transform: translateX(20px);
}

.animation-min-from-top{
  opacity: 0;
  transform: translateY(-20px);
}

/* hidden */
.animation-hidden-from-bottom{
  overflow: hidden;
}

.animation-hidden-from-bottom img{
  opacity: 0;
  transform: translateY(100%);
  transition-duration: 2s;
}

.animation-hidden-from-bottom.moved img{
  opacity: 1;
  transform: none;
}

/* opacity */
.animation-opacity{
  opacity: 0;
}

/* rotate */
.animation-rotate-from-left{
  opacity: 0;
  transform: rotate(-30deg);
  transform-origin: right bottom;
}

/* scale */
.animation-scale{
  opacity: 0;
  transition-duration: 0.6s !important;
  scale: 0;
}

.animation-scale.moved{
  opacity: 1;
  scale: 1;
}

/* css */
.css-floating{
  animation: css-floating 3s ease-in-out infinite;
}

@keyframes css-floating {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

.css-swing{
  animation: css-swing .8s ease-in-out 0s infinite alternate;
}

@keyframes css-swing {
  0% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(10deg);
  }
}

/* DB共通 */
.ndb_01 .headline_title{
  display: none;
}

.ndb_01 .post_data{
  color: #ffffff;
}

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

/* ===========================================================================
   トップページ   pageID：6
=========================================================================== */

/*DB > 挑戦を重ね、技術を磨き、未来に繋ぐ会社
umqzub0gq8f2yz12gvo9
--------------------------------------- */
#umqzub0gq8f2yz12gvo9{
  background: url(../files/design01_bg.jpg) no-repeat center top;
  height: 1000px;
  position: relative;
}

#umqzub0gq8f2yz12gvo9::before {
  position: absolute;
  bottom: 100px;
  left: -290px;
  z-index: 2;
  display: block;
  width: calc(100% + 290px * 2);
  height: 170px;
/* ループさせる画像 */
  background: url(../files/design01_img02.png) no-repeat left top;
  content: "";
  animation: loop_design01_img02 40s linear 0s infinite;
  pointer-events: none;
}
@keyframes loop_design01_img02 {
  to {
    background-position: top left 100%;
  }
}

#umqzub0gq8f2yz12gvo9 .easys_content_inner,
#umqzub0gq8f2yz12gvo9 .entry_post{
  height: 100%;
  margin-bottom: 0;
}

#umqzub0gq8f2yz12gvo9 .easys_content_inner{
  position: relative;
}

#umqzub0gq8f2yz12gvo9 .text_box{
  left: 0;
  overflow: visible;
  position: absolute;
  top: 474px;
  width: 480px;
  z-index: 2;
}

#umqzub0gq8f2yz12gvo9 .post_data,
#umqzub0gq8f2yz12gvo9 .post_data :last-child{
  margin-bottom: 0;
}

#umqzub0gq8f2yz12gvo9 .post_data{
}

/* 追加画像 */
.design01_img01{
  left: calc(50% + 34px);
  top: 248px;
}
.design01_img02{
  left: calc(50% + 392px);
  top: 176px;
}

/*バナー > 公式HPはこちら/GATEN職
tja50ir06qjuar0jp6k5
--------------------------------------- */
#tja50ir06qjuar0jp6k5{
  background: url(../files/bnrhalf_bg.jpg) no-repeat center center;
  padding-block: 165px;
}

#tja50ir06qjuar0jp6k5 div{
  margin-bottom: 0;
  padding: 0;
}

#tja50ir06qjuar0jp6k5 .easys_content_inner{
  padding-bottom: 0;
  width: 960px;
}

#tja50ir06qjuar0jp6k5 [class*="field_"]{
  position: relative;
  transition: clip-path 1.3s ease,
  filter 1.3s ease, opacity 1.3s ease,
  scale .3s ease,
  transform 1.3s ease;
  width: 460px !important;
}

#tja50ir06qjuar0jp6k5 [class*="field_"]:hover{
  scale: .95;
}

#tja50ir06qjuar0jp6k5 [class*="field_"]::after {
  background: none no-repeat center top/ 100%;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: opacity .3s;
  width: 100%;
}

#tja50ir06qjuar0jp6k5 [class*="field_"]:nth-child(1)::after{
  background-image: url("../files/bnrhalf_site_on.png");
}

#tja50ir06qjuar0jp6k5 [class*="field_"]:nth-child(2)::after{
  background-image: url("../files/bnrhalf_gaten_on.png");
}

#tja50ir06qjuar0jp6k5 [class*="field_"]:hover::after{
  opacity: 1;
}

#tja50ir06qjuar0jp6k5 [class*="field_"] a{
  display: block;
  position: relative;
  z-index: 1;
}

#tja50ir06qjuar0jp6k5 [class*="field_"] .eyecatch{
  width: 100%;
}

#tja50ir06qjuar0jp6k5 [class*="field_"] img{
  transition: opacity .3s;
}

#tja50ir06qjuar0jp6k5 [class*="field_"]:hover img{
  opacity: 0;
}

/*DB > 挑戦を楽しめる技術者へ
k4geju46bcsc8mwufgqf
--------------------------------------- */
#k4geju46bcsc8mwufgqf{
  background: url(../files/design02_bg.jpg) no-repeat center top;
  height: 940px;
  position: relative;
}

#k4geju46bcsc8mwufgqf::after{
  background: url(../files/design02_cover.png) no-repeat center top;
  content: "";
  display: block;
  inset: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 1;
}

#k4geju46bcsc8mwufgqf .easys_content_inner,
#k4geju46bcsc8mwufgqf .entry_post{
  height: 100%;
  margin-bottom: 0;
}

#k4geju46bcsc8mwufgqf .easys_content_inner{
  position: relative;
}

#k4geju46bcsc8mwufgqf .text_box{
  left: 0;
  overflow: visible;
  position: absolute;
  top: 574px;
  /* width: 480px; */
  z-index: 2;
}

#k4geju46bcsc8mwufgqf .post_data,
#k4geju46bcsc8mwufgqf .post_data :last-child{
  margin-bottom: 0;
}

#k4geju46bcsc8mwufgqf .post_data{
  color: currentColor;
}

/* 追加画像 */
.design02_img01{
  left: calc(50% - 340px);
  top: 80px;
}

/*バナー > TICKの魅力 ×5
zp8dpv22388rybd03xk1
--------------------------------------- */
#zp8dpv22388rybd03xk1{
  background: url(../files/bnrmany_bg.jpg) no-repeat center center;
  padding-block: 275px 165px;
  position: relative;
}

#zp8dpv22388rybd03xk1::after {
  animation: css-steps-animation-bg 1s steps(1) infinite; 
  background: url(../files/bnrmany_cover01.png) no-repeat center top,
  url(../files/bnrmany_cover02.png) no-repeat center 270px;
  bottom: 0;
  content: "";
  height: 270px;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 1;
}

@keyframes css-steps-animation-bg { 
  0%   { background-position-y: 0, 270px; }
  50%  { background-position-y: 270px, 0; }
}

#zp8dpv22388rybd03xk1 div{
  margin-bottom: 0;
  padding: 0;
}

#zp8dpv22388rybd03xk1 .easys_content_inner{
  overflow: visible;
  padding-bottom: 0;
  width: 1040px;
}

#zp8dpv22388rybd03xk1 .img_display{
  overflow: visible !important;
}

#zp8dpv22388rybd03xk1 [class*="field_"]{
  position: relative;
  transition: clip-path 1.3s ease,
  filter 1.3s ease, opacity 1.3s ease,
  transform 1.3s ease;
  width: 200px !important;
}

#zp8dpv22388rybd03xk1 [class*="field_"]:hover{
  animation: css-shake 1s ease-in-out 1;
  opacity: 1;
}

@keyframes css-shake{
  16.65%{
    transform: translateY(16px);
  }
  33.3%{
    transform: translateY(-12px);
  }
  49.95%{
    transform: translateY(8px);
  }
  66.6%{
    transform: translateY(-4px);
  }
  83.25%{
    transform: translateY(2px);
  }
  100%{
    transform: translateY(0);
  }
}

#zp8dpv22388rybd03xk1 .float_left{
  margin-right: 10px;
}

#zp8dpv22388rybd03xk1 [class*="field_"] a{
  display: block;
  position: relative;
  z-index: 1;
}

#zp8dpv22388rybd03xk1 [class*="field_"] .eyecatch{
  width: 100%;
}

#zp8dpv22388rybd03xk1 [class*="field_"] img{
  transition: opacity .3s;
}

/*DB > 新しいスタートを、もっと身軽に
zh975g24ohqj01xslr97
--------------------------------------- */
#zh975g24ohqj01xslr97{
  background: url(../files/design03_bg.jpg) no-repeat center top;
  height: 790px;
  position: relative;
}

#zh975g24ohqj01xslr97 .easys_content_inner,
#zh975g24ohqj01xslr97 .entry_post{
  height: 100%;
  margin-bottom: 0;
}

#zh975g24ohqj01xslr97 .easys_content_inner{
  position: relative;
}

#zh975g24ohqj01xslr97 .text_box{
  right: 0;
  overflow: visible;
  position: absolute;
  top: 398px;
  width: 480px;
  z-index: 2;
}

#zh975g24ohqj01xslr97 .post_data,
#zh975g24ohqj01xslr97 .post_data :last-child{
  margin-bottom: 0;
}

#zh975g24ohqj01xslr97 .post_data{
}

/* 追加画像 */
.design03_img01{
  left: calc(50% - 680px);
  top: 184px;
}
.design03_img02{
  left: calc(50% + 392px);
  top: 176px;
}

/*DB > 仲間と働くから、仕事はもっと面白い
l910dfwv3hxgsvzwjjoh
--------------------------------------- */
#l910dfwv3hxgsvzwjjoh{
  background: url(../files/design04_bg.jpg) no-repeat center top;
  height: 670px;
  position: relative;
}

#l910dfwv3hxgsvzwjjoh .easys_content_inner,
#l910dfwv3hxgsvzwjjoh .entry_post{
  height: 100%;
  margin-bottom: 0;
}

#l910dfwv3hxgsvzwjjoh .easys_content_inner{
  position: relative;
}

#l910dfwv3hxgsvzwjjoh .text_box{
  left: 0;
  overflow: visible;
  position: absolute;
  top: 308px;
  width: 480px;
  z-index: 2;
}

#l910dfwv3hxgsvzwjjoh .post_data,
#l910dfwv3hxgsvzwjjoh .post_data :last-child{
  margin-bottom: 0;
}

#l910dfwv3hxgsvzwjjoh .post_data{
}

/* 追加画像 */
.design04_img01{
  left: calc(50% + 42px);
  top: 0px;
}
#l910dfwv3hxgsvzwjjoh .design04_img02{
  left: calc(50% - 668px);
  top: 376px;
}
#l910dfwv3hxgsvzwjjoh  .design04_img03{
  animation-delay: -.2s;
  left: calc(50% + 434px);
  top: 0;
}

/*DB > 次のステージへ、技術をアップデート
buaz69da0qsoqfccm2jw
--------------------------------------- */
#buaz69da0qsoqfccm2jw{
  background: url(../files/design05_bg.jpg) no-repeat center top;
  height: 700px;
  position: relative;
}

#buaz69da0qsoqfccm2jw .easys_content_inner,
#buaz69da0qsoqfccm2jw .entry_post{
  height: 100%;
  margin-bottom: 0;
}

#buaz69da0qsoqfccm2jw .easys_content_inner{
  position: relative;
}

#buaz69da0qsoqfccm2jw .text_box{
  right: 0;
  overflow: visible;
  position: absolute;
  top: 354px;
  width: 480px;
  z-index: 2;
}

#buaz69da0qsoqfccm2jw .post_data,
#buaz69da0qsoqfccm2jw .post_data :last-child{
  margin-bottom: 0;
}

#buaz69da0qsoqfccm2jw .post_data{
}

/* 追加画像 */
.design05_img01{
  left: calc(50% - 650px);
  top: 40px;
}

/*DB > その経験、次の現場で輝く
zi3di8ck1dj25w0clda5
--------------------------------------- */
#zi3di8ck1dj25w0clda5{
  background: url(../files/design06_bg.jpg) no-repeat center top;
  height: 670px;
  position: relative;
}

#zi3di8ck1dj25w0clda5 .easys_content_inner,
#zi3di8ck1dj25w0clda5 .entry_post{
  height: 100%;
  margin-bottom: 0;
}

#zi3di8ck1dj25w0clda5 .easys_content_inner{
  position: relative;
}

#zi3di8ck1dj25w0clda5 .text_box{
  left: 0;
  overflow: visible;
  position: absolute;
  top: 298px;
  width: 480px;
  z-index: 2;
}

#zi3di8ck1dj25w0clda5 .post_data,
#zi3di8ck1dj25w0clda5 .post_data :last-child{
  margin-bottom: 0;
}

#zi3di8ck1dj25w0clda5 .post_data{
}

/* 追加画像 */
.design06_img01{
  left: calc(50% + 32px);
  top: 80px;
}
[class*="design06_img02"]{
  animation: css-steps-animation-toggle 1s steps(1) infinite;
  left: calc(50% + 390px);
  top: 330px;
}
.design06_img02_02{
  animation-direction: reverse;
}

@keyframes css-steps-animation-toggle { 
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/*DB > 仕事も、自分の時間も、大切に
gmyfeaaum12dibnhk3ak
--------------------------------------- */
#gmyfeaaum12dibnhk3ak{
  background: url(../files/design07_bg.jpg) no-repeat center top;
  height: 890px;
  overflow: hidden;
  position: relative;
}

#gmyfeaaum12dibnhk3ak::after{
  background: url(../files/design07_cover.png) no-repeat center top;
  content: "";
  display: block;
  inset: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 1;
}

#gmyfeaaum12dibnhk3ak .easys_content_inner,
#gmyfeaaum12dibnhk3ak .entry_post{
  height: 100%;
  margin-bottom: 0;
}

#gmyfeaaum12dibnhk3ak .easys_content_inner{
  position: relative;
}

#gmyfeaaum12dibnhk3ak .text_box{
  right: 0;
  overflow: visible;
  position: absolute;
  top: 336px;
  width: 480px;
  z-index: 2;
}

#gmyfeaaum12dibnhk3ak .post_data,
#gmyfeaaum12dibnhk3ak .post_data :last-child{
  margin-bottom: 0;
}

#gmyfeaaum12dibnhk3ak .post_data{
}

/* 追加画像 */
.design07_img01{
  left: calc(50% - 650px);
  top: 134px;
}
.design07_img02{
  bottom: 0;
  inset-inline: 0;
  margin-inline: auto;
}

/*バナー > 応募はこちらから！
z19jfikh80kwash55mde
--------------------------------------- */
#z19jfikh80kwash55mde{
  position: relative;
}

#z19jfikh80kwash55mde div{
  margin-bottom: 0;
  padding: 0;
}

#z19jfikh80kwash55mde .easys_content_inner{
  position: relative;
  width: 100%;
}

#z19jfikh80kwash55mde .field_1col:nth-child(1){
  height: max-content;
  inset: 24px 0 0;
  margin: auto;
  position: absolute;
  transition: scale .3s ease;
  width: max-content;
  z-index: 1;
}

#z19jfikh80kwash55mde .field_1col:nth-child(1):hover{
  scale: .95;
}

#z19jfikh80kwash55mde .field_1col:nth-child(1)::before{
  background: url(../files/bnr_contact_on.png) no-repeat center top;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity .3s;
  width: 100%;
}

#z19jfikh80kwash55mde .field_1col:nth-child(1):hover::before{
  opacity: 1;
}

#z19jfikh80kwash55mde a{
  display: block;
  position: relative;
  z-index: 1;
}

#z19jfikh80kwash55mde .field_1col:hover img{
  opacity: 1;
}

#z19jfikh80kwash55mde .eyecatch{
  width: 100%;
}

#z19jfikh80kwash55mde .field_1col:nth-child(1) img{
  transition: opacity .3s;
}

#z19jfikh80kwash55mde .field_1col:nth-child(1):hover img{
  opacity: 0;
}

#z19jfikh80kwash55mde .field_1col:last-child img{
  margin-inline: calc(50% - 1000px);
  width: 2000px;
}

/*DB > こんな人、TICK向いてます
hwb2uzb29rbdh6j2p0ro
--------------------------------------- */
#hwb2uzb29rbdh6j2p0ro{
  background: url(../files/design08_bg.jpg) no-repeat center top;
  height: 900px;
  position: relative;
}

#hwb2uzb29rbdh6j2p0ro .easys_content_inner,
#hwb2uzb29rbdh6j2p0ro .entry_post{
  height: 100%;
  margin-bottom: 0;
}

#hwb2uzb29rbdh6j2p0ro .easys_content_inner{
  position: relative;
}

#hwb2uzb29rbdh6j2p0ro .text_box{
  inset-inline: 0;
  margin-inline: auto;
  overflow: visible;
  position: absolute;
  top: 600px;
  width: 680px;
  z-index: 2;
}

#hwb2uzb29rbdh6j2p0ro .post_data,
#hwb2uzb29rbdh6j2p0ro .post_data :last-child{
  margin-bottom: 0;
}

#hwb2uzb29rbdh6j2p0ro .post_data{
  color: currentColor;
}

/* 追加画像 */
.design08_img01{
  left: calc(50% - 480px);
  top: 220px;
}
.design08_img02{
  left: calc(50% - 702px);
  top: 214px;
}
[class*="design08_img03"]{
  animation: css-steps-animation-toggle 1s steps(1) infinite; 
  left: calc(50% + 354px);
  top: 436px;
}
.design08_img03_02{
  animation-direction: reverse;
}
.design08_cover{
  left: 0;
  top: 464px;
}

/*DB > 仕事も人生も、動いた分だけ面白くなる
d74gjevw5hkysrry7jvc
--------------------------------------- */
#d74gjevw5hkysrry7jvc{
  background: url(../files/design09_bg.jpg) no-repeat center top;
  height: 1000px;
  position: relative;
}

#d74gjevw5hkysrry7jvc .easys_content_inner,
#d74gjevw5hkysrry7jvc .entry_post{
  height: 100%;
  margin-bottom: 0;
}

#d74gjevw5hkysrry7jvc .easys_content_inner{
  position: relative;
}

#d74gjevw5hkysrry7jvc .text_box{
  left: 20px;
  overflow: visible;
  position: absolute;
  top: 406px;
  width: 460px;
  z-index: 2;
}

#d74gjevw5hkysrry7jvc .post_data,
#d74gjevw5hkysrry7jvc .post_data :last-child{
  margin-bottom: 0;
}

#d74gjevw5hkysrry7jvc .post_data{
  color: currentColor;
}

/* 追加画像 */
.design09_img01{
  left: calc(50% + 78px);
  top: 320px;
}

/*募集要項
cd2gorzw10gvxs7g1up5
--------------------------------------- */

/*会社概要 (※top)
ecj9uaih94tryihzlprd
--------------------------------------- */

/*お問い合わせフォーム_1
o58r6311s786ge2wgkbz
--------------------------------------- */