@charset 'utf-8';

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


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


/* =================================================================================================================== */
/* PCカスタムプロパティ */
:root
{
  --basic_background_color:#ffffff;
  --body_text_color:#333333;
  --link_color:#ff8809;
  --border_color:#666666;
  --table_border_color:transparent;
  --th_background_color:#eef8eb;
  --td_background_color:#eef8eb;
  --th_character_color:#333333;
  --td_character_color:#333333;
  --required_color:#ff8809;
  --top_h1_color:#ffffff;
  --header_navigation_color:transparent;
  --top_entry_title_color:#333333;
  --entry_title_bg_color:#ffffff;
  --blog_title_color:#333333;
  --sub_entry_title_bg_color:#333333;
  --entry_title_bg_w570_color:#ffffff;
  --sub_entry_title_bg_w570_color:#333333;
  --half_entry_title_bg_color:#ffffff;
  --half_sub_entry_title_bg_color:#333333;
  --column3_title_bg_color:#ffffff;
  --widget_title_bg_color:#333333;
  --widget_list_bg_color:#333333;
  --footnavi_color:#333333;
  --address_color:#333333;
  --copy_color:#ffffff;
    --kdb_background_color: #eef8eb;
}
/* 置換以外 */
:root
{
    --easys_min_width: 1300;/* EASYSの最小幅(単位なし) */
    --easys_max_width: 2000;/* EASYSの最大幅(単位なし) */
    --easys_top_main_h: 1000;/* トップメインのオリジナル高さ(単位なし) */
    --easys_naka_main_h: 800;/* 中ページメインのオリジナル高さ(単位なし) */
    --fixed_side_btn_bottom: 150px; /* サイド固定ボタンの下端からの距離 */
    --fixed_side_btn_side: 0; /* サイド固定ボタン、左右の距離 */
    --fixed_side_btn_width_full: 240px; /* サイド固定ボタンの全幅 */
    --fixed_side_btn_width_collapsed: 60px; /* サイド固定ボタンのホバー前の幅 */
    --fixed_side_btn_height: 60px; /* サイド固定ボタンの高さ */
    --fixed_side_btn_margin: 10px; /* サイド固定ボタンの間隔 */
    --easys_standard_value001: #fff;/* A～Cブロック記事内リンクボタン＞文字色 */
    --easys_standard_value002: rgba(255,255,255,.75);/* プルダウンメニュー＞背景色 */
    --easys_standard_value003: #333;/* プルダウンメニュー＞文字色 */
    --easys_standard_value004: #666;/* プルダウンメニュー＞文字色(ホバー時) */
    --easys_standard_value005: #fff;/* カレンダーの本日＞文字色 */
    --easys_standard_value006: #fff;/* 大きな地図で見る＞文字色(ホバー時) */
    --easys_standard_value007: #fff;/* ページ遷移ボタン＞線色 */
    --easys_standard_value008: #fff;/* ページ遷移ボタン＞文字色 */
    --easys_standard_value009: #000;/* ブログ＞ページング＞線色 */
    --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;
}
/* =================================================================================================================== */


/* ===================================================================================================================
   ■ 全体
------------------------------------------------------------------------------------------------------------------- */
html
{
    
  background: none var(--basic_background_color);
 

    scroll-padding-top: 0;
    /* scroll-padding-top: var(--easys_access_h); */
    scroll-behavior: smooth;
}
body
{
    position: relative;/* 2000pxを超える画面の対策 */

    min-width: calc(var(--easys_min_width)*1px);
    max-width: calc(var(--easys_max_width)*1px);
    margin: 0 auto;

    word-break: break-word;

    background: none no-repeat center top;
    /*
  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
{
    color: var(--easys_standard_value001);
    background-color: var(--link_color);
}


/* ===================================================================================================================
   ■ ヘッダー
------------------------------------------------------------------------------------------------------------------- */
#branding_box
{
    position: relative;
    z-index: 500;
    /* height: 195px; *//*ナビの高さ（メイン画像にナビ重ねないときのみ、ナビの高さ入力）*/
    padding: 0;
    /* CSSレスポンシブ用  */
    padding: calc(100% * (var(--easys_naka_main_h) / var(--easys_max_width))) 0 0 0;
    height: 0;
    background: none transparent;
}
/* トップページのみ調整する時 */
#page_6 #branding_box
{
    /* height: 195px; */
    /* CSSレスポンシブ用  */
    padding: calc(100% * (var(--easys_top_main_h) / var(--easys_max_width))) 0 0 0;
}

/*  H1テキスト
---------------------------------------------------------------------------------------------------- */
#site-description
{
    width: 960px;
    margin: 0 auto;
    /* CSSレスポンシブ用  */
    position: absolute;
    top: 155px;
    left: 60px;
    width: auto;
}
#site-description a
{
    display: inline;

    color: var(--top_h1_color);
}

/* ヘッダーのH1～グローバルナビの高さ調整 */
#header_information{
  background: url(../files/main_logo.png);
  height: auto;
  height: 140px;
  left: 0px;
  position: absolute;
  top: 0px;
  width: 460px;
  z-index: 1;
}

#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%;
}

/*  グローバルナビ
---------------------------------------------------------------------------------------------------- */
#access
{
    --gnavi01: 160px;
    --gnavi02: 160px;
    --gnavi03: 160px;
    --gnavi04: 160px;
    --gnavi05: 160px;
    --gnavi06: 160px;
}
#access
{
    display: none;
    justify-content: center;
    /* CSSレスポンシブ用
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  padding: 0;
  width: 100%;
  */
}
#access .menu-header #menu-gnavi
{
    display: flex;
}
#access .menu-header #menu-gnavi > li > a
{
    line-height: 55px;

    height: 55px;

    background: url('../files/topnavi2.png') no-repeat center top;
}
#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
{
    line-height: 1.2em;

    padding: 15px 10px;

    color: var(--easys_standard_value003);
    background-color: var(--easys_standard_value002);
}
#access ul li ul li a:hover
{
    color: var(--easys_standard_value004);
    background: none var(--easys_standard_value002);
}

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

}
#main_teaser,
#video_teaser #video_teaser_inner,
#jquery_slider_pc .viewer
{
    display: block;

    min-width: calc(var(--easys_min_width)*1px);
    max-width: calc(var(--easys_max_width)*1px);
    margin: 0 auto;
}
#main_teaser img,
#video_teaser #video_teaser_inner video,
#jquery_slider_pc .viewer img
{
    width: 100%;
}

/* ===================================================================================================================
   ■ サイド
------------------------------------------------------------------------------------------------------------------- */
/* サイドナビ　タイトル */
.widget-title,
.widget-title2 a
{
    padding: 0;

    text-align: center;

    color: var(--widget_title_bg_color);
    background-image: url(../files/widget_title_bg.png);
}
.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;

    white-space: nowrap;
    text-overflow: ellipsis;

    color: var(--widget_list_bg_color);
    background-image: url(../files/widget_list_bg.png);
}

#wp-calendar
{
    border-collapse: separate;
}
#wp-calendar caption
{
    text-align: center;
}
/*#wp-calendar thead th {
}*/
#wp-calendar tbody td
{
    line-height: 2;

    padding: 5px;

    border-width: 0 0 1px;
    border-style: dotted;
    border-color: var(--border_color);
    background: none transparent;
}
#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: 699px;
    background: url(../files/footer_bg.jpg) no-repeat center top;
}
#footer_box
{
    height: 699px;

    background: none;
}


/*  フッターナビ
---------------------------------------------------------------------------------------------------- */
#footer_sitemap_block
{
    padding: 0;
    /*絶対値指定する時  */
    position: absolute;
    top: 460px;
    inset-inline: 0;
    margin: 0 auto;
    width: auto;
}
/* 中央以外 */
/*
#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
{
    color: var(--footnavi_color);
    border-color: var(--footnavi_color);
}
#footer_sitemap_block #footer-widget-area .widget-area .menu-item a:hover
{
    background-color: transparent;
}




/*  フッター情報
---------------------------------------------------------------------------------------------------- */
.footer_infomation
{
    display: block;

    width: 960px;
    margin: 0 auto;
}
#footer_information .entry-post
{
    width: 100%;
    margin: 400px 0 0;
    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: .8;
}



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

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

/*  サイドメニュー
---------------------------------------------------------------------------------------------------- */
/* サイド固定ボタン：通常時は右端から185px隠れ、ホバーで全体表示 */
.fixed_side_btn
{
    position: fixed;
    z-index: 1000;
    right: var(--fixed_side_btn_side);
    bottom: var(--fixed_side_btn_bottom);

    pointer-events: none;
}
.fixed_side_btn div
{
    position: relative;

    overflow: hidden;

    width: var(--fixed_side_btn_width_full);
    height: var(--fixed_side_btn_height);
    margin-bottom: var(--fixed_side_btn_margin);

    transition: transform .3s ease;
    transform: translateX(calc(var(--fixed_side_btn_width_full) - var(--fixed_side_btn_width_collapsed)));
    pointer-events: auto;
}
.fixed_side_btn div:last-child
{
    margin-bottom: 0;
}
.fixed_side_btn div:hover
{
    transition: opacity .3s ease, transform .5s ease;
    transform: translateX(0px);
}
.fixed_side_btn div a
{
    display: block;
    overflow: hidden;

    width: 100%;
    height: 100%;

    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_off.png);
}
.fixed_side_btn .weblog a
{
    background-image: url(../files/btn_blog.png);
}

.fixed_side_btn .contact{
position: fixed;
right: 0;
width: 200px;
height: 140px;
top: 0;
transform: none;
}

.fixed_side_btn .contact::after{
  position: absolute;
  opacity: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../files/btn_contact_on.png);
  content: "";
  pointer-events: none;
}

.fixed_side_btn .contact:hover::after{
opacity: 1;
}

@media (min-width: 2000px)
{
    .fixed_side_btn .contact
    {
        right: calc(50% - 1000px);
    }
    .fixed_side_btn .contact:hover{
      transform: none;
    }
}

/* 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 .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: 30px;
}
@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: 30px;
  right: var(--float_top_btn_x);
  width: var(--float_top_btn_w);
}
#float_top_btn a:hover img{
  opacity: .8;
}

#float_top_btn a:hover img{
  opacity: .8;
}

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

/*  見出し
---------------------------------------------------------------------------------------------------- */
.headline_title
{
    color: var(--top_entry_title_color);
    background-image: url(../files/top_entry_title.png);
    height: 110px;
    line-height: 1;
    box-sizing: border-box;
    padding-top: 70px;
}
h3.entry_title,
.entry_title,
.entry-title
{
    color: var(--entry_title_bg_color);
    /* サイズ、背景、余白などはこちら */
    background-image: url(../files/entry_title_bg.png);
    padding-left: 30px;
    width: 930px;
}
.entry_title h3{
    width: 810px;
}

/*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: .8;
}
* .mid_entry_title
{
    font-size: var(--font_size_20);

    background-image: url(../files/entry_title_bg_w570.png);
}
* .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
{
    color: var(--sub_entry_title_bg_color);
    background: url(../files/sub_entry_title_bg.png) no-repeat scroll left top transparent;
}
/*
* .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: .8;
}
* .mid_sub_entry_title
{
    font-size: var(--font_size_20);

    background-image: url(../files/sub_entry_title_bg_w570.png);
}
* .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
{
    font-size: var(--font_size_15);
    line-height: 1.7;

    height: auto;
    padding: 10px;

    text-align: left;

    color: var(--th_character_color);
    border: 1px solid var(--table_border_color);
    border-radius: 5px;
    background: none var(--th_background_color);
}

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

    border-color: var(--link_color);
}


/* 大きな地図で見る */
small
{
    border-color: var(--link_color);
}
small a
{
    width: 100%;
    padding: 5px 0;

    text-align: center !important;

    color: var(--link_color) !important;
}

small a:hover
{
    color: var(--easys_standard_value006) !important;
    background-color: var(--link_color) !important;
}





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

/*メール送信後メッセージボックスのボーダー（デフォルト：グリーン）*/
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;
    font-weight: bold;

    z-index: 500;

    text-decoration: none;

    color: var(--body_text_color);

    padding-block: 10px;
}
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;
}


/* 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{
  margin: 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ブロック text_box共通 下からフェードイン */

/* DB テキスト部分オーバーフロー表示 */
.ndb_01 .text_box{
  overflow: visible;
}

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

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

/*全体フェードイン　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;
}

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

.add-image,
.add-image 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,
.add-image.moved img{
  filter: none;
  opacity: 1;
  scale: 1;
  transform: none;
}

.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{
  backface-visibility: hidden;
}

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

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

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

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

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

.animation-scale-shrink{
  opacity: 0;
  overflow: hidden;
}

.animation-scale-shrink img{
  scale: 1.3;
  transition: scale 2.3s ease;
}

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

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

@keyframes css-floating{
  to{
    translate: 0 25px;
  }
}

/* slide-in */
.animation-slide-in{
  backface-visibility: hidden;
  clip-path: inset(0 100% 0 0);
  --slide-in-duration: .8s;

/* transform: translateX(-20px); */
  transition: clip-path var(--slide-in-duration), transform var(--slide-in-duration);
  z-index: 1;
}

.animation-slide-in.moved{
  clip-path: inset(0);
  transform: none;
}

.animation-slide-in::after{
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.animation-slide-in::after{
  clip-path: inset(0);
  left: -100%;
  transition: clip-path var(--slide-in-duration) var(--slide-in-duration), left var(--slide-in-duration);
  /* transition: clip-path var(--slide-in-duration); */
}

.animation-slide-in-000::after{
  background-color: #000000;
}

.animation-slide-in.moved::after{
  clip-path: inset(0 0 0 100%);
  left: 0;
}

/* bounce-in */
.css-bounce-in {
  opacity: 0;
}

.css-bounce-in.moved {
  animation: css-bounce-in 0.5s cubic-bezier(0.12, 0, 0.39, 0) 1 forwards;
}

@keyframes css-bounce-in {
  0%,
  20%,
  40%,
  60%,
  80%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    opacity: 1;
  }
  0% {
    transform: scale3d(0.3, 0.3, 0.3);
    opacity: 0;
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    transform: scale3d(1.03, 1.03, 1.03);
    opacity: 1;
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

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

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

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

/*DB > 造園×土木の有限会社日浦緑地建設
mo3ffsiwx6x0pu1nteun
--------------------------------------- */
#mo3ffsiwx6x0pu1nteun{
  background: url(../files/design01_bg.jpg) no-repeat center top;
  height: 1200px;
  position: relative;
}

#mo3ffsiwx6x0pu1nteun::after{
  background: url(../files/design01_cover.png) no-repeat center top;
  content: "";
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

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

#mo3ffsiwx6x0pu1nteun  .easys_content_inner{
  position: relative;
}

#mo3ffsiwx6x0pu1nteun .text_box{
  inset-inline: 0;
  margin-inline: auto;
  position: absolute;
  top: 880px;
  width: 690px;
}

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

#mo3ffsiwx6x0pu1nteun .post_data{
  color: currentColor;
}

/* 追加画像 */
.design01_ttl{
  inset-inline: 0;
  top: 218px;
  margin-inline: auto;
}

.design01_img01{
  left: calc(50% - 580px);
  top: 429px;
}

.design01_img02{
  left: calc(50% + 20px);
  top: 430px;
}

#mo3ffsiwx6x0pu1nteun .design01_img02{
  animation-delay: calc(.3s * 1);
  opacity: 0;
}

/*DB > 有限会社日浦緑地建設ってどんな会社？
wv01wdrsag4dck421e0h
--------------------------------------- */
#wv01wdrsag4dck421e0h{
  background:  url(../files/design02_bg.jpg) no-repeat center top;
  height: 1100px;
}

#wv01wdrsag4dck421e0h .easys_content_inner,
#wv01wdrsag4dck421e0h .entry_post{
  margin-bottom: 0;
}

#wv01wdrsag4dck421e0h  .easys_content_inner{
  height: 100%;
  position: relative;
  transform: none;
  width: 1010px;
}

#wv01wdrsag4dck421e0h .entry_post{
position: relative;
  margin-inline: auto;
  padding-top: 250px;
  position: relative;
}

#wv01wdrsag4dck421e0h [class*="headline_title"]{
  display: none;
}

#wv01wdrsag4dck421e0h [class*="headline_title"].moved{
  opacity: 1;
  transform: none;
}

#wv01wdrsag4dck421e0h .sub_post{
  box-sizing: border-box;
  position: absolute;
  margin: 0;
  display: block;
  height: 200px;
  padding-top: 80px;
}

#wv01wdrsag4dck421e0h .sub_post_0,
#wv01wdrsag4dck421e0h .sub_post_2,
#wv01wdrsag4dck421e0h .sub_post_4{
  left: 0;
}

#wv01wdrsag4dck421e0h .sub_post_1,
#wv01wdrsag4dck421e0h .sub_post_3,
#wv01wdrsag4dck421e0h .sub_post_5{
  right: 0;
}

#wv01wdrsag4dck421e0h .sub_post_0,
#wv01wdrsag4dck421e0h .sub_post_1{
  top: 410px;
  padding-right: 0px;
  width: 500px;
}

#wv01wdrsag4dck421e0h .sub_post_2,
#wv01wdrsag4dck421e0h .sub_post_3{
  top: 620px;
}

#wv01wdrsag4dck421e0h .sub_post_2,
#wv01wdrsag4dck421e0h .sub_post_4{width: 403px;    padding-left: 96px;}

#wv01wdrsag4dck421e0h .sub_post_3,
#wv01wdrsag4dck421e0h .sub_post_5{width: 600px;}

#wv01wdrsag4dck421e0h .sub_post_4,
#wv01wdrsag4dck421e0h .sub_post_5{
      top: 830px;
}

#wv01wdrsag4dck421e0h .sub_post_1{
    padding-right: 100px;
}

#wv01wdrsag4dck421e0h .sub_post_3{
    padding-left: 20px;
    padding-right: 190px;
}

#wv01wdrsag4dck421e0h .sub_post_5{
    padding-right: 204px;
}

#wv01wdrsag4dck421e0h .sub_post .entry_title{
  display: none;
}

#wv01wdrsag4dck421e0h .sub_post_texts{
  overflow: visible;
}

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

#wv01wdrsag4dck421e0h .post_data{
  color: #1e9658;
  font-size: 0;
  line-height: 1;
}

#wv01wdrsag4dck421e0h .sub_post .post_data{
  display: block;
  margin-inline: auto;
  width: max-content;
}

#wv01wdrsag4dck421e0h .post_data p{
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  display: inline-block;
  font-size: 80px;
  line-height: 1;
}

#wv01wdrsag4dck421e0h .sub_post_4 .post_data p,
#wv01wdrsag4dck421e0h .sub_post_5 .post_data p{
    font-size: 80px;
}

/*DB > もっとリアルに知りたい！先輩の声
vv73w9ulw3a9v2i42rqk
--------------------------------------- */
#vv73w9ulw3a9v2i42rqk{
    background: url(../files/design03_bg.jpg) no-repeat center top;
    height: 1150px;
    box-sizing: border-box;
}

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

#vv73w9ulw3a9v2i42rqk .easys_content_inner{
  position: relative;
    padding-block: 350px;
}

/*バナー > 日浦緑地建設で働く魅力/日浦緑地建設の働きやすさ
ti3c2amwnx1bn5lb7kth
--------------------------------------- */
#ti3c2amwnx1bn5lb7kth{
  background: url(../files/bnrhalf_bg.jpg) no-repeat center top;
  padding-block: calc((700px - 300px) / 2);
  position: relative;
}

#ti3c2amwnx1bn5lb7kth::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 700px;
/* ループさせる画像 */
  background: url(../files/bnrhalf_moveimg.png) repeat-x left top;
  content: "";
  animation: loop_bnrhalf_moveimg 80s linear 0s infinite;
  pointer-events: none;
}
@keyframes loop_bnrhalf_moveimg {
  to {
    background-position: top left -2000px;
  }
}

#ti3c2amwnx1bn5lb7kth::after{
  background: url(../files/bnrhalf_cover.png) no-repeat center top;
  content: "";
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

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

#ti3c2amwnx1bn5lb7kth .easys_content_inner{
  overflow: visible;
  padding: 0;
  width: 1080px;
}

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

#ti3c2amwnx1bn5lb7kth [class*="field_"]{
  position: relative;
  margin: 0;
  width: 540px !important;
}

#ti3c2amwnx1bn5lb7kth [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);
  }
}

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

#ti3c2amwnx1bn5lb7kth [class*="field_"]:hover img{
  opacity: 1;
}

#ti3c2amwnx1bn5lb7kth .eyecatch{
  width: 100%;
}

/*DB > 未経験からでも、腕一本で食べていける未来を！
jd7esqswupqfwtxcbd6u
--------------------------------------- */
#jd7esqswupqfwtxcbd6u{
  background: url(../files/design04_bg.jpg) no-repeat center top;
  height: 1300px;
  position: relative;
}

#jd7esqswupqfwtxcbd6u::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 120px;
/* ループさせる画像 */
  background: url(../files/design04_movetext.png) repeat-x left top;
  content: "";
  animation: loop_design04_movetext 40s linear 0s infinite;
  pointer-events: none;
}
@keyframes loop_design04_movetext {
  to {
    background-position: top left -2424px;
  }
}

#jd7esqswupqfwtxcbd6u::after{
  background: url(../files/design04_cover.png) no-repeat center top;
  content: "";
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

#jd7esqswupqfwtxcbd6u .easys_content_inner,
#jd7esqswupqfwtxcbd6u .entry_post{
  height: 100%;
  margin-bottom: 0;
  width: 1040px;
}

#jd7esqswupqfwtxcbd6u  .easys_content_inner{
  position: relative;
}

#jd7esqswupqfwtxcbd6u .text_box{
  right: 0;
  margin-inline: auto;
  width: 500px;
  position: absolute;
  top: 900px;
}

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

#jd7esqswupqfwtxcbd6u .post_data{
  color: currentColor;
}

/* 追加画像 */
.design04_ttl{
  left: calc(50% + 15px);
  top: 625px;
}

.design04_img{
  left: calc(50% - 546px);
  top: 638px;
}

/*DB > 求めているのはむしろ未経験の方！失敗もしながらたくさんの経験を
kiai2xogfm3o3xaiywi7
--------------------------------------- */
#kiai2xogfm3o3xaiywi7{
  background: url(../files/design05_bg.jpg) no-repeat center top;
  height: 840px;
  position: relative;
}

#kiai2xogfm3o3xaiywi7::after{
  background: url(../files/design05_cover.png) no-repeat center top;
  content: "";
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

#kiai2xogfm3o3xaiywi7 .easys_content_inner,
#kiai2xogfm3o3xaiywi7 .entry_post{
  height: 100%;
  margin-bottom: 0;
  width: 1000px;
}

#kiai2xogfm3o3xaiywi7  .easys_content_inner{
  position: relative;
}

#kiai2xogfm3o3xaiywi7 .text_box{
  left: 0;
  margin-inline: auto;
  position: absolute;
  top: 460px;
  width: 440px;
}

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

#kiai2xogfm3o3xaiywi7 .post_data{
  color: currentColor;
}

/* 追加画像 */
.design05_ttl{
  left: 0;
  top: 135px;
}

.design05_img{
  left: calc(50% - 10px);
  top: 165px;
}

/*DB > 独立も応援！その後も、ずっと仲間です
huafac2bbs0ge20kzdw6
--------------------------------------- */
#huafac2bbs0ge20kzdw6{
  background: url(../files/design06_bg.jpg) no-repeat center top;
  height: 1000px;
  position: relative;
}

#huafac2bbs0ge20kzdw6::after{
  background: url(../files/design06_cover.png) no-repeat center top;
  content: "";
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

#huafac2bbs0ge20kzdw6 .easys_content_inner,
#huafac2bbs0ge20kzdw6 .entry_post{
  height: 100%;
  margin-bottom: 0;
  width: 1020px;
}

#huafac2bbs0ge20kzdw6  .easys_content_inner{
  position: relative;
}

#huafac2bbs0ge20kzdw6 .text_box{
  right: 0;
  margin-inline: auto;
  position: absolute;
  top: 430px;
  width: 470px;
}

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

#huafac2bbs0ge20kzdw6 .post_data{
  color: currentColor;
}

/* 追加画像 */
.design06_ttl{
  left: calc(50% + 20px);
  top: 154px;
}

.design06_img{
  left: calc(50% - 532px);
  top: 174px;
}

/*イメージ画像
lsfyk0p32udd4pcq3wtf
--------------------------------------- */
#lsfyk0p32udd4pcq3wtf{
  overflow: hidden;
  padding-inline: 0;
  position: relative;
}

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

#lsfyk0p32udd4pcq3wtf .easys_content_inner{
  clip-path: inset(0);
  backface-visibility: hidden;
  height: 100%;
  width: 100%;
}

#lsfyk0p32udd4pcq3wtf .eyecatch{
  display: block;
}

#lsfyk0p32udd4pcq3wtf a:hover::before{
  opacity: 1;
}

#lsfyk0p32udd4pcq3wtf .field_1col{
  transition: transform ease-out .3s;
}

#lsfyk0p32udd4pcq3wtf .field_1col:last-child{
  left: 0;
  margin-inline: auto;
  position: fixed;
  right: 0;
  top: 0;
  z-index: -1;
}

#lsfyk0p32udd4pcq3wtf .field_1col:last-child img{
  height: 100vh;
  object-fit: cover;
  width: 100vw;
  width: clamp(1300px, 100vw, 2000px);
} 

/*DB > 残業ほぼゼロ！プライベートの時間も大切に
s1494hxdyqub0w4rravc
--------------------------------------- */
#s1494hxdyqub0w4rravc{
  background: url(../files/design07_bg.jpg) no-repeat center top;
  height: 900px;
  position: relative;
}

#s1494hxdyqub0w4rravc::after{
  background: url(../files/design07_cover.png) no-repeat center top;
  content: "";
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

#s1494hxdyqub0w4rravc .easys_content_inner,
#s1494hxdyqub0w4rravc .entry_post{
  height: 100%;
  margin-bottom: 0;
  width: 1100px;
}

#s1494hxdyqub0w4rravc  .easys_content_inner{
  position: relative;
}

#s1494hxdyqub0w4rravc .text_box{
  left: 0;
  margin-inline: auto;
  position: absolute;
  top: 455px;
  width: 510px;
}

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

#s1494hxdyqub0w4rravc .post_data{
  color: currentColor;
}

/* 追加画像 */
.design07_ttl{
  left: -16px;
  top: 96px;
}

.design07_img01{
  left: calc(50% + 124px);
  top: 126px;
}

.design07_img02{
  left: calc(50% + 32px);
  top: 448px;
}

/*DB > 頑張りはしっかり評価。慣れ親しんだ土地で、腰を据えて働けます！
kvv5tjyg8oz8203i2uil
--------------------------------------- */
#kvv5tjyg8oz8203i2uil{
  background: url(../files/design08_bg.jpg) no-repeat center top;
  height: 1000px;
}

#kvv5tjyg8oz8203i2uil .easys_content_inner,
#kvv5tjyg8oz8203i2uil .entry_post{
  height: 100%;
  margin-bottom: 0;
  width: 1000px;
}

#kvv5tjyg8oz8203i2uil  .easys_content_inner{
  position: relative;
}

#kvv5tjyg8oz8203i2uil .text_box{
  right: 0;
  margin-inline: auto;
  position: absolute;
  top: 486px;
  width: 500px;
}

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

#kvv5tjyg8oz8203i2uil .post_data{
  color: currentColor;
}

/* 追加画像 */
.design08_ttl{
  left: calc(50% - 16px);
  top: 130px;
}

.design08_img01{
  left: calc(50% - 520px);
  top: 75px;
}

.design08_img02{
  left: calc(50% - 580px);
  top: 400px;
}

/*DB > 施工管理スタッフもあわせて募集しています！
f8xfr6clxi25cf4uqiag
--------------------------------------- */
#f8xfr6clxi25cf4uqiag{
  background: url(../files/design09_bg.jpg) no-repeat center top;
  height: 1200px;
}

#f8xfr6clxi25cf4uqiag .easys_content_inner,
#f8xfr6clxi25cf4uqiag .entry_post{
  height: 100%;
  margin-bottom: 0;
  width: 1030px;
}

#f8xfr6clxi25cf4uqiag  .easys_content_inner{
  position: relative;
}

#f8xfr6clxi25cf4uqiag .text_box{
  left: 0;
  margin-inline: auto;
  position: absolute;
  top: 624px;
  width: 500px;
}

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

#f8xfr6clxi25cf4uqiag .post_data{
  color: currentColor;
}

/* 追加画像 */
.design09_ttl{
  left: -6px;
  top: 320px;
}

.design09_img{
  left: calc(50% + 23px);
  top: 348px;
}

/*募集要項
nckx322ko5b1854ij7l7
--------------------------------------- */

/*タイトル＞新着情報
g1tti3n35c1cf5py6q2a
--------------------------------------- */

/*新着情報
mcjm4i1sgutqg0x0egdd
--------------------------------------- */

/*会社概要 (※)
e38d88s2rm8ltw73iz9d
--------------------------------------- */

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



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