@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Cormorant+SC:wght@300;400;500;600;700&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');


/*
 * PC用スタイルCSS
 */


/* ↓↓　雛形　レイアウトにあわせて追記・上書きして下さい　↓↓
   後々解読が面倒になるので、必要な箇所のみ記述すること
  （例：背景がPNGになるなら background-image: url("../files/xx_bg.png");　など） */


/* =================================================================================================================== */
/* PCカスタムプロパティ ★　*/

/* 下記文字列があるものは連動して変更されます！ */
:root {
  --basic_background_color: #ffffff;
  --body_text_color: #30416b;
  --link_color: #5a9844;
  --border_color: #8a8a8a;
  --table_border_color: #393939;
  --th_background_color: transparent;
  --td_background_color: transparent;
  --th_character_color: #30416b;
  --td_character_color: #30416b;
  --required_color: #5a9844;
  --top_h1_color: #365289;
  --header_navigation_color: transparent;
  --top_entry_title_color: #5a9844;
  --entry_title_bg_color: #30416b;
  --blog_title_color: #30416b;
  --sub_entry_title_bg_color: #5a9844;
  --entry_title_bg_w570_color: #30416b;
  --sub_entry_title_bg_w570_color: #5a9844;
  --half_entry_title_bg_color: #30416b;
  --half_sub_entry_title_bg_color: #5a9844;
  --column3_title_bg_color: #ffffff;
  --widget_title_bg_color: #ffffff;
  --widget_list_bg_color: #30416b;
  --footnavi_color: #30416b;
  --address_color: #30416b;
  --copy_color: #c0c0c0;
}

/* 書き換えが必要なもの！ ★　*/
:root {
    /* スライダーの高さ(単位なし) */
    --easys_top_main_h: 1010;
  
    /* 中ページメイン（ティザー）の高さ(単位なし) */
    --easys_naka_main_h: 870;
  
    /*ナビの高さ（上下ON/OFFの場合は画像の高さ÷２）*/
    --easys_access_h: 60px;
    
    /* プルダウンメニュー＞背景色 */
    --easys_standard_value002: rgba(255, 255, 255, 0.75);
  
    /* プルダウンメニュー＞文字色 */
    --easys_standard_value003: #333333;
  
    /* プルダウンメニュー＞背景色(ホバー時) */
    --easys_standard_value010: rgba(255, 255, 255, 0.75);

    /* プルダウンメニュー＞文字色(ホバー時) */
    --easys_standard_value004: #666666;
  }

  
/* その他 */
:root {
  /* EASYSの最小幅(単位なし) */
  --easys_min_width: 1300;
  /* EASYSの最大幅(単位なし) */
  --easys_max_width: 2000;
  /* A～Cブロック記事内リンクボタン＞文字色 */
  --easys_standard_value001: #ffffff;
  /* カレンダーの本日＞文字色 */
  --easys_standard_value005: #ffffff;
  /* 大きな地図で見る＞文字色(ホバー時) */
  --easys_standard_value006: #ffffff;
  /* ページ遷移ボタン＞線色 */
  --easys_standard_value007: #ffffff;
  /* ページ遷移ボタン＞文字色 */
  --easys_standard_value008: #ffffff;
  /* ブログ＞ページング＞線色 */
  --easys_standard_value009: #000000;
}

/* =================================================================================================================== */


/* ===================================================================================================================
   ■ 全体
------------------------------------------------------------------------------------------------------------------- */

/*背景色 or 画像　どちらか必ず指定してください★*/
html {

  /* 背景色のみなら↓　 */
  background: var(--basic_background_color);

  /* 画像なら↓
  background: url("../files/html_bg.jpg"); */

  /* 通常時 */
  scroll-padding-top: var(--easys_access_h);

  /* ハンバーガーメニューのとき */
  /* scroll-padding-top: 0; */

  scroll-behavior: smooth;
}
/*トップページ　スライダーの背景あり or なし　どちらか必ず指定してください★*/
body#page_6 {

  /* 特に指定がなければ
  background: none no-repeat center top;*/

  /* トップページのスライダーの背景にあたる画像があれば */
  background: url("../files/top_body_bg.jpg") no-repeat center 140px / 100%;
}

/*中ページ　背景あり or なし　どちらか必ず指定してください★*/
body {
  position: relative;
  margin: 0 auto;
  min-width: calc(var(--easys_min_width)*1px);
  max-width: calc(var(--easys_max_width)*1px);
  font-family: "Noto Sans JP", sans-serif;
  word-break: break-word;

  /* 中ページのティザーの背景にあたる画像があれば
  background: url("../files/body_bg.jpg") no-repeat center top / 100%; */

  /* 特に指定がなければ*/
  background: none no-repeat center top;
}

#naka_page_title h1,
.widget-title,
.widget-title2 a,
#blog_main .widget-area ul ul li a,
#blog_main .entry-title,
#primary ul.xoxo li ul li a,
.headline_title,
h3.entry_title,
.entry_title,
.entry_title h3,
.entry-title,
* .sub_post_title,
* .mid_entry_title,
* .half_entry_title,
* .short_entry_title,
* .half_sub_entry_title,
* .short_sub_entry_title,
* .sub_entry_title,
* .sub_entry_title h4,
* .mid_sub_entry_title,
* .inline_title,
* .inline_title,
small a {
  font-family: "Noto Serif JP", serif;
}


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;
}
#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);
}


/* ===================================================================================================================
   ■ ヘッダー
------------------------------------------------------------------------------------------------------------------- */
/*画面上端から記事が入るまでの部分*/

/*トップページ　スライダーに重ねる画像あり or なし　どちらか必ず指定してください★*/
#page_6 #branding_box {
  height: 140px;
  /*ここでトップページメインの高さを設定しています*/
  padding: 0 0 calc(100% * (var(--easys_top_main_h) / var(--easys_max_width)));

  /* スライダー画像に重ねる画像がある場合↓ */
  background: url("../files/top_header_cover.png") no-repeat center bottom / 100%;

  /*上記該当しない場合は下記コメントアウト外す！！！
  background: none transparent; */
}

/*中ページ*/
#branding_box {
  position: relative;
  z-index: 500;
  /*ここで中ページメインの高さを設定しています*/
  padding: 0 0 calc(100% * (var(--easys_naka_main_h) / var(--easys_max_width)));
  height: 140px;
  background: url("../files/header_cover.png") no-repeat center bottom / 100%;
}

/*  H1テキスト
---------------------------------------------------------------------------------------------------- */
/* 中ページサイトタイトル 位置調整必要です　レスポンシブありなしに応じてどちらか選択してください★*/
#site-description {
  position: absolute;
  z-index: 753;
  margin: 0 auto;
  width: auto;

  /* レスポンシブないとき
  top: 0;
  left: 0; */

  /* レスポンシブあるとき  */
  top: calc((330 / var(--easys_naka_main_h) * 100%) + 140px);
  left: calc(130 / var(--easys_max_width) * 100%);

  /* 右寄せのとき */
  /* text-align: right; */
}

/* トップページサイトタイトル 位置調整必要です　★*/
#page_6 #site-description {
  /* レスポンシブないとき
  top: 0;
  left: 0; */

  /* レスポンシブあるとき  */
  top: calc((415 / var(--easys_top_main_h) * 100%) + 140px);
  left: calc(130 / var(--easys_max_width) * 100%);
}
#site-description a {
  display: inline;
  color: var(--top_h1_color);
}

/*  サイトロゴ
---------------------------------------------------------------------------------------------------- */
/* ヘッダーのH1～グローバルナビの高さ調整 */
#header_information,
#page_6 #header_information {
  height: 0;
}
/*ロゴ　サイズ、位置、画像のありなし調整必要です　★*/
#header_information .main_header a img {
  position: absolute;
  z-index: 752;

  /* 1 レスポンシブないとき　ロゴ画像レスポンシブ無しで設置します */
  width: 250px;
  height: 140px;
  top: 0;
  left: 0;
  background: url("../files/main_logo.png") no-repeat left top;

  /* 2 レスポンシブあるとき　ロゴ画像レスポンシブ有で設置します
  top: calc(0 / var(--easys_naka_main_h) * 100%);
  left: calc(0 / var(--easys_max_width) * 100%);
  width: calc(300 / var(--easys_max_width) * 100%);
  height: calc(150 / var(--easys_naka_main_h) * 100%);
  background: url(../files/main_logo.png) no-repeat center top / 100%; */

  /* 3 ロゴ画像がスライダーやティザーに含まれている場合　リンク範囲のみここで取得します
  top: calc(0 / var(--easys_naka_main_h) * 100%);
  left: calc(0 / var(--easys_max_width) * 100%);
  width: calc(300 / var(--easys_max_width) * 100%);
  height: calc(150 / var(--easys_naka_main_h) * 100%);
  background:none; */

}

/* トップページ　上記で 2 か 3 を選択した場合のみ必要です★
#page_6 #header_information .main_header a img {
  top: calc(0 / var(--easys_top_main_h) * 100%);
  left: calc(0 / var(--easys_max_width) * 100%);
  width: calc(300 / var(--easys_max_width) * 100%);
  height: calc(150 / var(--easys_top_main_h) * 100%); 
} */

/* Gナビ上部固定 jsも追記必要です。
　ナビ固定時に、ロゴの追尾の指示がある場合は別途説明するので、声をかけてください

#header_information .main_header a img.fixed {
  position: fixed !important;
  top: 0;
  left: 0;
  transform: none !important;
  z-index: 1000;
}

@media(min-width:2000px) {
  #header_information .main_header a img.fixed {
    left: calc(50% - 1000px) !important;
  }
}
*/

/*  グローバルナビ（access）
---------------------------------------------------------------------------------------------------- */
#menuTrigger {
  position: fixed;
  top: 54px;
  right: 50px;
  z-index: 999;
  width: 70px;
  height: 32px;
  background: url(../files/btn_menu.png) no-repeat center top;
}
@media(min-width:2000px) {
  #menuTrigger {
    right: calc(50% - 950px);
  }
}

/*三本線*/
#menuTrigger button,
#menuTrigger button span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
#menuTrigger button {
    position: relative;
    width: 22px;
    height: 11px;
    background: none;
    border: none;
    appearance: none;
    cursor: pointer;
    margin: 10px 0 0 24px;
}
#menuTrigger button span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  border-radius: 1px;
}
#menuTrigger button span:nth-of-type(1) {
  top: 0px;
}
#menuTrigger button span:nth-of-type(2) {
  top: 5px;
}
#menuTrigger button span:nth-of-type(3) {
  top: 10px;
}

#menuTrigger.opened button span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(5px) rotate(-45deg);
}
#menuTrigger.opened button span:nth-of-type(2) {
  opacity: 0;
}
#menuTrigger.opened button span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
  transform: translateY(-5px) rotate(45deg);
}


/* 上からの位置は#accessで、左右の位置はdiv#access .menu-headerで ★*/
#access:not(.hamburger) {
  position: absolute;
  top: 40px;
  left: 0;
  z-index: 751;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  height: var(--easys_access_h);

  /* 上からの位置レスポンシブありのとき
  top: calc(40 / var(--easys_naka_main_h) * 100%); */
}

/* トップページ　上からの位置レスポンシブありのとき　★
#page_6 #access {
  top: calc(40 / var(--easys_top_main_h) * 100%);
}
 */

div#access:not(.hamburger) .menu-header {
  margin: 0 380px 0 auto;
  /*ナビ画像横幅　↓　★*/
  width: 420px;
  height: var(--easys_access_h);
}

div#access:not(.hamburger) .menu-item a {
  background-image: url('../files/topnavi.png');
  background-repeat: no-repeat;
  background-position: scroll;
  background-color: transparent;
  height: var(--easys_access_h);
  margin: 0px;
  padding: 0px;
}
/*
ナビ一つ目の横幅＝80px
ナビ二つ目の横幅＝80px　のように当てはめていってください。★

calc()の中で勝手に計算してくれるので記述さえ間違えなければナビの幅が正しくとれます。 */
div#access:not(.hamburger) .gnavi11 a {
  width: 60px;
  background-position-x: left;
}
div#access:not(.hamburger) .gnavi12 a {
  width: 80px;
  background-position-x: calc(-60px);
}
div#access:not(.hamburger) .gnavi13 a {
  width: 80px;
  background-position-x: calc(-60px - 80px);
}
div#access:not(.hamburger) .gnavi14 a {
  width: 120px;
  background-position-x: calc(-60px - 80px - 80px);
}
div#access:not(.hamburger) .gnavi15 a {
  width: 80px;
  background-position-x: right;
}
div#access:not(.hamburger) .gnavi16 a {
  display: none;
}
div#access:not(.hamburger) .menu-item a:hover {
  background-position-y: bottom;
}


/* 上からの位置は#accessで、左右の位置はdiv#access .menu-headerで ★*/
#access.hamburger {
  position: fixed;
  top: 0;
  right: -100vw;
  z-index: 951;
  margin: 0 auto;
  padding: 0;
  width: 100vw;
  height: 100vh;
  background-color: #2457a3;
  transition: 0.4s;
  opacity: 0;
}
#access.hamburger.opened {
  right: 0;
  opacity: 1;
}

div#access.hamburger .menu-header {
  margin: calc(50vh - 120px) auto 0;
  /*ナビ画像横幅　↓　★*/
  width: 560px;
  height: 240px;
}

div#access.hamburger .menu-item a {
  position: relative;
  background-image: url('../files/topnavi02.png');
  background-repeat: no-repeat;
  background-position-x: left;
  background-color: transparent;
  width: 560px;
  height: 40px;
  margin: 0px;
  padding: 0px;
}
/*
ナビ一つ目の横幅＝80px
ナビ二つ目の横幅＝80px　のように当てはめていってください。★

calc()の中で勝手に計算してくれるので記述さえ間違えなければナビの幅が正しくとれます。 */
div#access.hamburger .gnavi11 a,
div#access.hamburger .gnavi11 a:hover {
  background-position-y: top;
}
div#access.hamburger .gnavi12 a,
div#access.hamburger .gnavi12 a:hover {
  background-position-y: -40px;
}
div#access.hamburger .gnavi13 a,
div#access.hamburger .gnavi13 a:hover {
  background-position-y: -80px;
}
div#access.hamburger .gnavi14 a,
div#access.hamburger .gnavi14 a:hover {
  background-position-y: -120px;
}
div#access.hamburger .gnavi15 a,
div#access.hamburger .gnavi15 a:hover {
  background-position-y: -160px;
}
div#access.hamburger .gnavi16 a,
div#access.hamburger .gnavi16 a:hover {
  background-position-y: bottom;
}


div#access.hamburger .menu-item a::before,
div#access.hamburger .menu-item a::after {
  content: '';
  position: absolute;
  pointer-events: none;
  display: block;
}
div#access.hamburger .menu-item a::before {
  top: 12px;
  right: 0;
  width: 36px;
  height: 17px;
  background: url(../files/topnavi02_link_btn.png) no-repeat center top;
}
div#access.hamburger .menu-item a::after {
  top: 16px;
  right: 12px;
  width: 11px;
  height: 9px;
  background: url(../files/topnavi02_link_arr.png) no-repeat center top;
  transition: right 0.3s;
}
div#access.hamburger .menu-item a:hover::after {
  right: 7px;
}



#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_value010);
  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);
}


#branding_box::before {
  display: block;
  content: '';
  width: 310px;
  height: 60px;
  position: fixed;
  top: 40px;
  right: 40px;
  background: url(../files/access_bg.png) no-repeat center top;
  opacity: 0;
  pointer-events: none;
}
#branding_box.fixed::before {
  opacity: 1;
  pointer-events: all;
}
@media(min-width:2000px) {
  #branding_box::before {
    right: calc(50% - 960px);
  }
}



/*  メイン画像
---------------------------------------------------------------------------------------------------- */
#main_teaser,
#video_teaser,
#jquery_slider_pc {
  width: 100%;
  position: absolute;
  top: 140px;
  right: 0;
  left: 0;
  z-index: 99;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
#video_teaser {
  text-align: right;
}
#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%;
}
#video_teaser #video_teaser_inner video {
  width: 71%;
}

#jquery_slider_pc .viewer {
  aspect-ratio: var(--easys_max_width)/var(--easys_top_main_h);
}



/* ===================================================================================================================
   ■ サイド
------------------------------------------------------------------------------------------------------------------- */
/* サイドナビ　タイトル */
.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: 650px;
  background: url(../files/footer_bg.jpg) repeat-x center top;
}

#footer_box {
  height: 650px;
  background: url(../files/footer_box_bg.png) no-repeat left top;
}

#footer-widget-area {
  display: block;
}

/*  フッターナビ
---------------------------------------------------------------------------------------------------- */
/* フッターに記載されナビに当たる部分です。
中央 or 中央以外のどちらかを必ず選択してください。　★ */

/*中央寄せの場合*/
/* #footer_sitemap_block {
  position: absolute;
  bottom: 50px;
  left: 50%;
  margin: 0 auto;
  width: auto;
  transform: translateX(-50%);
} */

/* 中央以外 */
#footer-widget-area .widget-area {
  position: absolute;
  top: 158px;
  left: 485px;
}

#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);
  border: none;
}
#footer_sitemap_block #footer-widget-area .widget-area .menu-item a {
  position: relative;
  border-color: var(--footnavi_color);
  border: none;
  color: var(--footnavi_color);
  padding: 0 99px 0 15px;
}
#footer_sitemap_block #footer-widget-area .widget-area .menu-item a:hover {
  background-color: transparent;
}

/*ナビ・装飾*/
/* #footer-widget-area .widget-area .menu-item {
  position: relative;
}

#footer-widget-area .widget-area .menu-item::before {
  display: block;
  content: '・';
  width: 15px;
  height: 15px;
  color: #ccc;
  position: absolute;
} */

#footer-widget-area .widget-area .menu-item a::before,
#footer-widget-area .widget-area .menu-item a::after {
  content: '';
  position: absolute;
  pointer-events: none;
  display: block;
}
#footer-widget-area .widget-area .menu-item a::before {
  top: 1px;
  right: 0;
  width: 36px;
  height: 17px;
  background: url(../files/footer_link_btn.png) no-repeat center top;
}
#footer-widget-area .widget-area .menu-item a::after {
  top: 4px;
  right: 12px;
  width: 11px;
  height: 9px;
  background: url(../files/footer_link_btn_arr.png) no-repeat center top;
  transition: right 0.3s;
}
#footer-widget-area .widget-area .menu-item a:hover::after {
  right: 7px;
}


/*ナビ縦*/
#footer_sitemap_block #footer-widget-area .widget-area .menu-item a:hover {
  background-color: transparent;
}
#footer-widget-area .widget-area .menu-item {
  float: none;
  text-align: left;
  margin-bottom: 16px;
}

/*ナビ２列*/
/* #footer_sitemap_block #footer-widget-area .widget-area ul.menu {
  border: none;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 100px;
  align-content: space-between;
  width: 425px;
} */

/*  フッター情報
---------------------------------------------------------------------------------------------------- */
/* フッターに記載される住所や電話番号に当たる部分です。
中央 or 中央以外のどちらかを必ず選択してください。　★ */

/*中央寄せの場合*/
/* .footer_infomation {
  display: block;
  margin: 0 auto;
  width: 960px;
}
#footer_information .entry-post {
  width: 500px;
  margin: 140px auto 0;
  text-align: center;
} */

/* 中央以外 */
#footer_information {
  position: absolute;
  top: 278px;
  left: 80px;
}
#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.footer_sns_01 {
  margin: 23px 0 94px;
}
#footer_sns_btn.footer_sns_01 div {
  width: 40px;
  height: 40px;
}

#footer_sns_btn.footer_sns_02 {
  margin: 77px 0 0;
}
#footer_sns_btn.footer_sns_02 div {
  width: 355px;
  height: 70px;
}

#footer_sns_btn div a:hover {
  opacity: 0.8;
}



/*  コピーライト
---------------------------------------------------------------------------------------------------- */
#copyright {
  color: var(--copy_color);
}

/* フッターに記載されるコピーライトに当たる部分です。
中央 or 中央以外のどちらかを必ず選択してください。　★ */

/*中央寄せの時*/
/* #copyright {
  position: absolute;
  bottom: 0;
  left: 50%;
  margin: 0;
  transform: translateX(-50%);
} */

/* 中央以外 */
#copyright {
  position: absolute;
  bottom: 44px;
  right: 130px;
}


/*  サイドメニュー
---------------------------------------------------------------------------------------------------- */
.fixed_btn {
  top: 54px;
  right: 130px;
  bottom: inherit;
  z-index: 1000;
  display: flex;
}

/* サイドボタンに当たる部分です。
サイズの変更がある場合のみ変更してください　★ */
.fixed_btn div,
.fixed_btn div a {
  overflow: hidden;
  height: 32px;
}

.fixed_btn div + div {
  margin-left: 10px;
}

.fixed_btn div a {
  position: relative;
}

.fixed_btn #fixed_btn_contact,
.fixed_btn #fixed_btn_contact a {
  width: 110px;
}
.fixed_btn #fixed_btn_blog,
.fixed_btn #fixed_btn_blog a {
  width: 90px;
}

.fixed_btn div a::after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s;
  opacity: 0;
}
.fixed_btn #fixed_btn_contact a::after {
  background: url(../files/btn_contact_on.png) no-repeat center top / 100%;
}
.fixed_btn #fixed_btn_blog a::after {
  background: url(../files/btn_blog_on.png) no-repeat center top / 100%;
}
.fixed_btn div a:hover::after {
  opacity: 1;
}


/*  スクロールトップ
---------------------------------------------------------------------------------------------------- */
#float_top_btn {
  right: 30px;
}
#float_top_btn::before {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    width: 10px;
    height: 10px;
    background: url(../files/top_btn_arr.png) no-repeat center top;
}
#float_top_btn:hover::before {
    animation: footerBackbtnTick 1s cubic-bezier(.19, 1, .22, 1) 0s infinite normal both;
}
@keyframes footerBackbtnTick {
    0% {
        transform: translateY(-10px);
    }
    75% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(0);
    }
}



@media(min-width:2000px) {
  .fixed_btn {
    right: calc(50% - 870px);
  }
  #float_top_btn {
    right: calc(50% - 970px);
  }
}


/* ===================================================================================================================
   ■ コンテンツ
------------------------------------------------------------------------------------------------------------------- */
#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: 142px;
  line-height: 195px;
}
h3.entry_title,
.entry_title,
.entry-title {
  /* サイズ、背景、余白などはこちら */
  background-image: url(../files/entry_title_bg.png);
  color: var(--entry_title_bg_color);
  padding: 0 10px;
  text-align: center;
}
.entry_title h3 {
  box-sizing: border-box;
  padding-left: 120px;
}
/*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: 20px;
  text-align: center;
}
* .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);
  padding: 0 10px;
  text-align: center;
}

* .sub_entry_title h4 {
  box-sizing: border-box;
  padding-left: 120px;
}

* .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;
  text-align: center;
}
* .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;
}


/*  地図
---------------------------------------------------------------------------------------------------- */
#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はこちらに記述↓↓ ============================== */
.moved {
  top: 0;
  opacity: 1 !important;
  transform: translate(0px, 0px) scale(1) rotate3d(0, 0, 1, 0) !important;
  filter: blur(0) !important;
}

/*全体フェードイン　Dブロックは解除*/
.easys_content_inner:not(.nd_01 .easys_content_inner),
.fade_rotate {
  opacity: 0;
  transform: translateY(100px) rotate3d(-1, -1, 0, -20deg);
  transition: 1.3s ease 0s;
}

.easys_content_inner.moved:not(.nd_01 .easys_content_inner.moved),
.fade_rotate.moved {
  opacity: 1;
  transform: translateY(0) rotate3d(0, 0, 1, 0);
}

/*パララックス除外*/
/* #oau35pnaxwgzmn4fd5v2 .easys_content_inner {
  opacity: 1;
  transition: none;
  transform: none !important;
  filter: none !important;
} */

/* 対象のマージンを消す */
.easys_content.no_margin {
  margin: 0;
}

/* もし記事が割り込まれたらマージンを入れる */
.easys_content.no_margin+.easys_content:not(.no_margin) {
  margin-top: 160px;
}

.easys_content.no_margin.nk_01 [class*="title"] {
  margin-bottom: 0;
  padding-bottom: 25px;
}

/* デザインブロック共通設定
--------------------------------------- */
/*追加画像*/
.design_block,
.add_image {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  opacity: 0;
  pointer-events: none;
  transition: all 1s ease 0s;
  z-index: 9;
}

.add_image {
  opacity: 1;
}

.db_block {
  margin-top: 0 !important;
}

.db_block *[class*="title"] {
  display: none;
}

.easys_content .sub_post .float_left {
  float: left !important;
}

.easys_content .sub_post .float_right {
  float: right !important;
}

.outer_top #outer_block:not(.shosai .outer_top #outer_block) {
  padding-top: 0;
}



/* ===========デザインブロックボタン=========== */
div.easys_content.ndb_01.no_margin .main_btn a .design_block.img00 {
  top: 0;
  left: 0;
  z-index: 0;
  width: 65px;
  height: 100%;
  border: 1px solid #5a9844;
  border-radius: 9999px;
  opacity: 1;
  transition: all 0.3s;
}
div.easys_content.ndb_01.no_margin .main_btn a:hover .design_block.img00 {
  width: 100%;
}

div.easys_content.ndb_01.no_margin .main_btn a .design_block.img01 {
  top: 0;
  left: 0;
  z-index: 0;
  width: 65px;
  height: 100%;
  opacity: 1;
  transition: none;
  overflow: hidden;
}
div.easys_content.ndb_01.no_margin .main_btn a .design_block.img01::before,
div.easys_content.ndb_01.no_margin .main_btn a .design_block.img01::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 10;
  display: block;
  margin: auto;
  width: 15px;
  height: 8px;
  content: "";
  cursor: pointer;
  transition: all 0.3s;
}
div.easys_content.ndb_01.no_margin .main_btn a .design_block.img01::before {
  opacity: 0;
  left: -90px;
}
div.easys_content.ndb_01.no_margin .main_btn a:hover .design_block.img01::before {
  opacity: 1;
  left: 25px;
}
div.easys_content.ndb_01.no_margin .main_btn a .design_block.img01::after {
  opacity: 1;
  left: 25px;
}
div.easys_content.ndb_01.no_margin .main_btn a:hover .design_block.img01::after {
  opacity: 0;
  left: 90px;
}




/* ==========デザインブロックギミック========== */
div.easys_content:not(.no_margin) + div.easys_content.no_margin {
  margin-top: 120px !important;
}

div.easys_content.ndb_01.no_margin .easys_content_inner {
  width: 1100px;
}

/* タイトルテキスト */
.block_midashi_back {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  color: #d9e0e9;
  font-family: 'Cormorant SC', serif;
  font-size: 80px;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: auto;
  white-space: nowrap;
  display: flex;
  justify-content: space-around;
}
.moved .block_midashi_back {
  -webkit-transform: scale(1);
  transform: scale(1);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.block_midashi_back span {
  display: inline-block;
  vertical-align: baseline;
  -webkit-transform: perspective(1500px) translate3d(100px, 0, -10px) rotateY(80deg);
  transform: perspective(1500px) translate3d(100px, 0, -10px) rotateY(80deg);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  opacity: 0;
  margin: 0 12px;
}
.moved .block_midashi_back span {
  -webkit-transform: perspective(1500px) rotateY(0deg) translate3d(0, 0, 0);
  transform: perspective(1500px) rotateY(0deg) translate3d(0, 0, 0);
  opacity: 1;
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.45s ease, color 0.8s linear, -webkit-transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}
.moved .block_midashi_back span:nth-of-type(1) {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.moved .block_midashi_back span:nth-of-type(2) {
  -webkit-transition-delay: 0.04s;
  transition-delay: 0.04s;
}
.moved .block_midashi_back span:nth-of-type(3) {
  -webkit-transition-delay: 0.08s;
  transition-delay: 0.08s;
}
.moved .block_midashi_back span:nth-of-type(4) {
  -webkit-transition-delay: 0.12s;
  transition-delay: 0.12s;
}
.moved .block_midashi_back span:nth-of-type(5) {
  -webkit-transition-delay: 0.16s;
  transition-delay: 0.16s;
}
.moved .block_midashi_back span:nth-of-type(6) {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.moved .block_midashi_back span:nth-of-type(7) {
  -webkit-transition-delay: 0.24s;
  transition-delay: 0.24s;
}
.moved .block_midashi_back span:nth-of-type(8) {
  -webkit-transition-delay: 0.28s;
  transition-delay: 0.28s;
}
.moved .block_midashi_back span:nth-of-type(9) {
  -webkit-transition-delay: 0.32s;
  transition-delay: 0.32s;
}
.moved .block_midashi_back span:nth-of-type(10) {
  -webkit-transition-delay: 0.36s;
  transition-delay: 0.36s;
}
.moved .block_midashi_back span:nth-of-type(11) {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.moved .block_midashi_back span:nth-of-type(12) {
  -webkit-transition-delay: 0.44s;
  transition-delay: 0.44s;
}
.moved .block_midashi_back span:nth-of-type(13) {
  -webkit-transition-delay: 0.48s;
  transition-delay: 0.48s;
}
.moved .block_midashi_back span:nth-of-type(14) {
  -webkit-transition-delay: 0.52s;
  transition-delay: 0.52s;
}
.moved .block_midashi_back span:nth-of-type(15) {
  -webkit-transition-delay: 0.56s;
  transition-delay: 0.56s;
}
.moved .block_midashi_back span:nth-of-type(16) {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.moved .block_midashi_back span:nth-of-type(17) {
  -webkit-transition-delay: 0.64s;
  transition-delay: 0.64s;
}
.moved .block_midashi_back span:nth-of-type(18) {
  -webkit-transition-delay: 0.68s;
  transition-delay: 0.68s;
}
.moved .block_midashi_back span:nth-of-type(19) {
  -webkit-transition-delay: 0.72s;
  transition-delay: 0.72s;
}
.moved .block_midashi_back span:nth-of-type(20) {
  -webkit-transition-delay: 0.76s;
  transition-delay: 0.76s;
}




/* ===========================================================================
     トップページ
=========================================================================== */
/*DB＞沖縄県うるま市で不動産・建築/設計を行う栄一総建
q3z9kw4tecgayi3r5vym
--------------------------------------- */
#q3z9kw4tecgayi3r5vym {
  position: relative;
  /* 背景画像 */
  background: url(../files/design01_bg.png) no-repeat center top #f7f8f9;
}
#q3z9kw4tecgayi3r5vym,
#q3z9kw4tecgayi3r5vym .easys_content_inner,
#q3z9kw4tecgayi3r5vym .entry_post {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;
  /* デザインブロックの高さ（だいたい背景画像の高さと同じです） */
  height: 1247px;
}
#q3z9kw4tecgayi3r5vym [class*='title'] {
  /* タイトル削除 */
  display: none;
}
#q3z9kw4tecgayi3r5vym .text_box {
  /* テキストエリアの位置調整はここのmarginで！ */
  margin: 625px auto 0 0;
  /* テキストエリアの横幅 */
  width: 530px;
}
#q3z9kw4tecgayi3r5vym .post_data {
  line-height: 2.12;
  font-size: 16px;
}

#q3z9kw4tecgayi3r5vym .block_midashi_back {
  top: 165px;
  width: 390px;
}

#q3z9kw4tecgayi3r5vym .design_block.img00 {
  top: 180px;
  left: calc(50% - 30px);
  width: 59px;
  height: 172px;
  background: url(../files/design01_ttl01.png) no-repeat center top;
}
#q3z9kw4tecgayi3r5vym .design_block.img01 {
  top: 447px;
  left: calc(50% - 550px);
  width: 530px;
  height: 188px;
  background: url(../files/design01_ttl02.png) no-repeat center top;
}

#q3z9kw4tecgayi3r5vym .design_block.img02 {
  top: 447px;
  right: calc(50% - 1000px);
  width: 900px;
  height: 480px;
  overflow: hidden;
  opacity: 1;
  transition: none;
}
#q3z9kw4tecgayi3r5vym .design_block.img02::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 480px;
  /* ループさせる画像 */
  background: url(../files/design01_img.png) repeat-x left top;
  content: "";
  animation: loop 40s linear 0s infinite;
  pointer-events: none;
}
@keyframes loop {
  to {
    background-position: top left -2174px;
  }
}


/*バナー＞不動産部　/　建築/設計部（※top）
gu2noy0u7uwsb7ppd9nb
--------------------------------------- */
#gu2noy0u7uwsb7ppd9nb {
  position: relative;
  box-sizing: border-box;
  height: 696px;
  /* 背景画像あれば */
  background: url(../files/bnrhalf_bg.jpg) repeat center top;
}
#gu2noy0u7uwsb7ppd9nb .easys_content_inner {
  padding: 0;
  width: 848px;
  height: 336px;
  position: absolute;
  top: 180px;
  right: 0;
  left: 0;
  margin: 0 auto;
}
#gu2noy0u7uwsb7ppd9nb .img_display {
  height: 336px;
}
#gu2noy0u7uwsb7ppd9nb div {
  margin-bottom: 0;
}
#gu2noy0u7uwsb7ppd9nb .field_2col {
  position: relative;
  width: 404px !important;
  height: 336px;
}
#gu2noy0u7uwsb7ppd9nb .field_2col::after {
  position: absolute;
  bottom: 0;
  display: block;
  width: 404px;
  height: 66px;
  content: "";
  pointer-events: none;
}
#gu2noy0u7uwsb7ppd9nb .float_left::after {
  /*左側ON画像*/
  background: url(../files/bnrhalf_estate_ttl.png) no-repeat center top;
}
#gu2noy0u7uwsb7ppd9nb .float_right::after {
  /*右側ON画像*/
  background: url(../files/bnrhalf_architecture_ttl.png) no-repeat center top;
}
#gu2noy0u7uwsb7ppd9nb .eyecatch {
  width: 100%;
  height: 100%;
}
#gu2noy0u7uwsb7ppd9nb .eyecatch a {
  position: absolute;
  right: 0;
  bottom: 4px;
  display: block;
  width: 180px;
  height: 26px;
}
#gu2noy0u7uwsb7ppd9nb .eyecatch a img {
  position: absolute;
  right: 19px;
  bottom: 7px;
  width: 85px;
  height: 11px;
  opacity: 1;
}

#gu2noy0u7uwsb7ppd9nb .eyecatch a .design_block.img00 {
  top: 0;
  left: 0;
  z-index: 0;
  width: 65px;
  height: 26px;
  background-color: #5a9844;
  border-radius: 9999px;
  opacity: 1;
  transition: all 0.3s;
}
#gu2noy0u7uwsb7ppd9nb .eyecatch a:hover .design_block.img00 {
  width: 180px;
}

#gu2noy0u7uwsb7ppd9nb .eyecatch a .design_block.img01 {
  top: 0;
  left: 0;
  z-index: 0;
  width: 65px;
  height: 26px;
  opacity: 1;
  transition: none;
  overflow: hidden;
}
#gu2noy0u7uwsb7ppd9nb .eyecatch a .design_block.img01::before,
#gu2noy0u7uwsb7ppd9nb .eyecatch a .design_block.img01::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 10;
  display: block;
  margin: auto;
  width: 15px;
  height: 8px;
  content: "";
  cursor: pointer;
  background: url(../files/bnrhalf_link_arr.png) no-repeat center top / 100%;
  transition: all 0.3s;
}
#gu2noy0u7uwsb7ppd9nb .eyecatch a .design_block.img01::before {
  opacity: 0;
  left: -100px;
}
#gu2noy0u7uwsb7ppd9nb .eyecatch a:hover .design_block.img01::before {
  opacity: 1;
  left: 24px;
}
#gu2noy0u7uwsb7ppd9nb .eyecatch a .design_block.img01::after {
  opacity: 1;
  left: 24px;
}
#gu2noy0u7uwsb7ppd9nb .eyecatch a:hover .design_block.img01::after {
  opacity: 0;
  left: 100px;
}

#gu2noy0u7uwsb7ppd9nb .eyecatch a .design_block.img02 {
  top: -306px;
  left: -223px;
  width: 404px;
  height: 270px;
  opacity: 1;
  transition: none;
  border-radius: 10px;
  overflow: hidden;
}
#gu2noy0u7uwsb7ppd9nb .eyecatch a .design_block.img02::before {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.5s;
}
#gu2noy0u7uwsb7ppd9nb .float_left .eyecatch a .design_block.img02::before {
  background: url(../files/bnrhalf_estate_img.jpg) no-repeat center top;
}
#gu2noy0u7uwsb7ppd9nb .float_right .eyecatch a .design_block.img02::before {
  background: url(../files/bnrhalf_architecture_img.jpg) no-repeat center top;
}
#gu2noy0u7uwsb7ppd9nb .eyecatch a:hover .design_block.img02::before {
  transform: scale(1.1);
}


/*DB＞栄一総建の強みとは
vuia7rwp6phi1xlxshma
--------------------------------------- */
#vuia7rwp6phi1xlxshma {
  position: relative;
  /* 背景画像 */
  background: url(../files/design02_bg.png) no-repeat center top;
}
#vuia7rwp6phi1xlxshma,
#vuia7rwp6phi1xlxshma .easys_content_inner,
#vuia7rwp6phi1xlxshma .entry_post {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;
  /* デザインブロックの高さ（だいたい背景画像の高さと同じです） */
  height: 1467px;
}
#vuia7rwp6phi1xlxshma [class*='title'] {
  /* タイトル削除 */
  display: none;
}
#vuia7rwp6phi1xlxshma .text_box {
  /* テキストエリアの位置調整はここのmarginで！ */
  margin: 585px 0 0 auto;
  /* テキストエリアの横幅 */
  width: 530px;
}
#vuia7rwp6phi1xlxshma .post_data {
  line-height: 2.12;
  font-size: 16px;
}

#vuia7rwp6phi1xlxshma .block_midashi_back {
  top: 167px;
  width: 511px;
}

#vuia7rwp6phi1xlxshma .design_block.img00 {
  top: 180px;
  left: calc(50% - 39px);
  width: 77px;
  height: 172px;
  background: url(../files/design02_ttl01.png) no-repeat center top;
}
#vuia7rwp6phi1xlxshma .design_block.img01 {
  top: 447px;
  left: calc(50% + 20px);
  width: 530px;
  height: 147px;
  background: url(../files/design02_ttl02.png) no-repeat center top;
}

#vuia7rwp6phi1xlxshma .design_block.img02 {
  top: 447px;
  left: calc(50% - 780px);
  width: 680px;
  height: 480px;
  background: url(../files/design02_img01.jpg) no-repeat center top;
}
#vuia7rwp6phi1xlxshma .design_block.img03 {
  top: 1007px;
  left: calc(50% - 630px);
  width: 650px;
  height: 282px;
  background: url(../files/design02_catch.png) no-repeat center top;
}
#vuia7rwp6phi1xlxshma .design_block.img04 {
  top: 1007px;
  left: calc(50% + 20px);
  width: 600px;
  height: 280px;
  background: url(../files/design02_img02.png) no-repeat center top;
}


/*DB＞沖縄全域お任せください
jqk79atz6j0cu69rv4xj
--------------------------------------- */
#jqk79atz6j0cu69rv4xj {
  position: relative;
  /* 背景画像 */
  background: url(../files/design03_bg.png) no-repeat center top;
}
#jqk79atz6j0cu69rv4xj,
#jqk79atz6j0cu69rv4xj .easys_content_inner,
#jqk79atz6j0cu69rv4xj .entry_post {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;
  /* デザインブロックの高さ（だいたい背景画像の高さと同じです） */
  height: 1152px;
}
#jqk79atz6j0cu69rv4xj [class*='title'] {
  /* タイトル削除 */
  display: none;
}
#jqk79atz6j0cu69rv4xj .text_box {
  /* テキストエリアの位置調整はここのmarginで！ */
  margin: 635px 0 0 auto;
  /* テキストエリアの横幅 */
  width: 530px;
}
#jqk79atz6j0cu69rv4xj .post_data {
  line-height: 2.12;
  font-size: 16px;
}

#jqk79atz6j0cu69rv4xj .block_midashi_back {
  top: 71px;
  width: 740px;
}

#jqk79atz6j0cu69rv4xj .design_block.img00 {
  top: 85px;
  left: calc(50% - 57px);
  width: 113px;
  height: 172px;
  background: url(../files/design03_ttl01.png) no-repeat center top;
}
#jqk79atz6j0cu69rv4xj .design_block.img01 {
  top: 532px;
  left: calc(50% + 20px);
  width: 530px;
  height: 112px;
  background: url(../files/design03_ttl02.png) no-repeat center top;
}
#jqk79atz6j0cu69rv4xj .design_block.img02 {
  top: 0;
  left: calc(50% - 1000px);
  width: 2000px;
  height: 1152px;
  background: url(../files/design03_map.png) no-repeat center top;
  opacity: 1;
  transition: none;
}


/*バナー＞お問い合わせ（※top）
oau35pnaxwgzmn4fd5v2
--------------------------------------- */
#oau35pnaxwgzmn4fd5v2 {
  position: relative;
}
#oau35pnaxwgzmn4fd5v2 div {
  margin-bottom: 0;
  padding-bottom: 0;
}
#oau35pnaxwgzmn4fd5v2 .easys_content_inner {
  position: relative;
  width: 100%;
}
#oau35pnaxwgzmn4fd5v2 [class*="field_"] {
  padding: calc(660 / 2000 * 100%) 0 0;
  background: url(../files/bnr_contact.png) no-repeat center top / 100%;
}
/* ボタンの位置とサイズ */
#oau35pnaxwgzmn4fd5v2 .eyecatch {
  position: absolute;

  /* 上からの位置 */
  top: calc(455 / 660 * 100%);

  /* 横からの位置 */
  left: calc(461 / 2000 * 100%);
  display: block;
  width: calc(205 / 2000 * 100%);
}
#oau35pnaxwgzmn4fd5v2 .eyecatch a {
  position: relative;
  display: block;
  padding-top: calc(44 / 205 * 100%);
  height: 0;
}
#oau35pnaxwgzmn4fd5v2 .eyecatch a img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
}
#oau35pnaxwgzmn4fd5v2 .eyecatch a::before {
  position: absolute;
  top: calc(-455 / 44 * 100%);
  left: calc(-461 / 205 * 100%);
  z-index: -1;
  display: block;
  width: calc(2000 / 205 * 100%);
  height: calc(660 / 44 * 100%);
  background: url(../files/bnr_contact_bg.jpg) no-repeat center top / 100%;
  content: "";
  transition: 0.5s;
  pointer-events: none;
}
#oau35pnaxwgzmn4fd5v2 .eyecatch a:hover::before {
  transform: scale(1.1);
}


#oau35pnaxwgzmn4fd5v2 .eyecatch a .design_block.img00 {
  top: 0;
  left: 0;
  z-index: 0;
  width: calc(65 / 205 * 100%);
  height: 100%;
  background-color: #5a9844;
  border-radius: 9999px;
  opacity: 1;
  transition: all 0.3s;
}
#oau35pnaxwgzmn4fd5v2 .eyecatch a:hover .design_block.img00 {
  width: 100%;
}

#oau35pnaxwgzmn4fd5v2 .eyecatch a .design_block.img01 {
  top: 0;
  left: 0;
  z-index: 0;
  width: calc(65 / 205 * 100%);
  height: 100%;
  opacity: 1;
  transition: none;
  overflow: hidden;
}
#oau35pnaxwgzmn4fd5v2 .eyecatch a .design_block.img01::before,
#oau35pnaxwgzmn4fd5v2 .eyecatch a .design_block.img01::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 10;
  display: block;
  margin: auto;
  width: calc(15 / 65 * 100%);
  height: calc(8 / 44 * 100%);
  content: "";
  cursor: pointer;
  background: url(../files/bnr_contact_link_arr.png) no-repeat center top / 100%;
  transition: all 0.3s;
}
#oau35pnaxwgzmn4fd5v2 .eyecatch a .design_block.img01::before {
  opacity: 0;
  left: calc(-100 / 65 * 100%);
}
#oau35pnaxwgzmn4fd5v2 .eyecatch a:hover .design_block.img01::before {
  opacity: 1;
  left: calc(26 / 65 * 100%);
}
#oau35pnaxwgzmn4fd5v2 .eyecatch a .design_block.img01::after {
  opacity: 1;
  left: calc(26 / 65 * 100%);
}
#oau35pnaxwgzmn4fd5v2 .eyecatch a:hover .design_block.img01::after {
  opacity: 0;
  left: calc(100 / 65 * 100%);
}



/*会社概要（※top）
tajpwcgnuytpweavy50j
--------------------------------------- */
#tajpwcgnuytpweavy50j {
  padding: 160px 0 110px;
  background: url(../files/block_bg01.jpg) repeat center top;
}


/* ===========================================================================
     不動産部
=========================================================================== */
/*DB＞不動産を売りたい方
c9y6ekhuzhpgx4joy52k
--------------------------------------- */
#c9y6ekhuzhpgx4joy52k {
  position: relative;
  color: #ffffff;
  /* 背景画像 */
  background: url(../files/design04_bg.png) no-repeat center top;
}
#c9y6ekhuzhpgx4joy52k,
#c9y6ekhuzhpgx4joy52k .easys_content_inner,
#c9y6ekhuzhpgx4joy52k .entry_post {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;
  /* デザインブロックの高さ（だいたい背景画像の高さと同じです） */
  height: 1248px;
}
#c9y6ekhuzhpgx4joy52k [class*='title'] {
  /* タイトル削除 */
  display: none;
}
#c9y6ekhuzhpgx4joy52k .text_box {
  /* テキストエリアの位置調整はここのmarginで！ */
  margin: 585px auto 0 0;
  /* テキストエリアの横幅 */
  width: 530px;
}
/* 下記リンクボタンがある場合 ------------------------------------*/
#c9y6ekhuzhpgx4joy52k .post_data {
  line-height: 2.12;
  font-size: 16px;
  /* テキストとボタンの間の余白調整用 */
  margin-bottom: 75px;
}
#c9y6ekhuzhpgx4joy52k .main_btn {
  position: relative;
  display: block;
  padding: 0;
  /* ボタンサイズ */
  width: 205px;
  height: 44px;
  background: url(../files/design04_link_text.png) no-repeat center top;
}
#c9y6ekhuzhpgx4joy52k .main_btn a {
  position: absolute;
  display: block;
  padding: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  background: none;
  text-indent: -9999px;
}
#c9y6ekhuzhpgx4joy52k .main_btn a .design_block.img01::before,
#c9y6ekhuzhpgx4joy52k .main_btn a .design_block.img01::after {
  background: url(../files/design04_link_arr.png) no-repeat center top / 100%;
}

#c9y6ekhuzhpgx4joy52k .block_midashi_back {
  top: 167px;
  width: 427px;
}

#c9y6ekhuzhpgx4joy52k > .design_block.img00 {
  top: 180px;
  left: calc(50% - 32px);
  width: 64px;
  height: 173px;
  background: url(../files/design04_ttl01.png) no-repeat center top;
}
#c9y6ekhuzhpgx4joy52k > .design_block.img01 {
  top: 448px;
  left: calc(50% - 550px);
  width: 530px;
  height: 148px;
  background: url(../files/design04_ttl02.png) no-repeat center top;
}
#c9y6ekhuzhpgx4joy52k > .design_block.img02 {
  top: 448px;
  left: calc(50% + 100px);
  width: 680px;
  height: 480px;
  background: url(../files/design04_img.jpg) no-repeat center top;
}


/*DB＞不動産を買いたい方
cnd8346gtag2tv2jvuyj
--------------------------------------- */
#cnd8346gtag2tv2jvuyj {
  position: relative;
}
#cnd8346gtag2tv2jvuyj,
#cnd8346gtag2tv2jvuyj .easys_content_inner,
#cnd8346gtag2tv2jvuyj .entry_post {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;
  /* デザインブロックの高さ（だいたい背景画像の高さと同じです） */
  height: 1250px;
}
#cnd8346gtag2tv2jvuyj [class*='title'] {
  /* タイトル削除 */
  display: none;
}
#cnd8346gtag2tv2jvuyj .text_box {
  /* テキストエリアの位置調整はここのmarginで！ */
  margin: 180px 0 0 auto;
  /* テキストエリアの横幅 */
  width: 530px;
}
/* 下記リンクボタンがある場合 ------------------------------------*/
#cnd8346gtag2tv2jvuyj .post_data {
  line-height: 2.12;
  font-size: 16px;
  /* テキストとボタンの間の余白調整用 */
  margin-bottom: 40px;
}
#cnd8346gtag2tv2jvuyj .main_btn {
  position: relative;
  display: block;
  padding: 0;
  /* ボタンサイズ */
  width: 206px;
  height: 44px;
  background: url(../files/design05_link_text.png) no-repeat center top;
}
#cnd8346gtag2tv2jvuyj .main_btn a {
  position: absolute;
  display: block;
  padding: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  background: none;
  text-indent: -9999px;
}
#cnd8346gtag2tv2jvuyj .main_btn a .design_block.img01::before,
#cnd8346gtag2tv2jvuyj .main_btn a .design_block.img01::after {
  background: url(../files/design05_link_arr.png) no-repeat center top / 100%;
}

#cnd8346gtag2tv2jvuyj > .design_block.img00 {
  top: 0;
  left: calc(50% + 20px);
  width: 530px;
  height: 186px;
  background: url(../files/design05_ttl.png) no-repeat center top;
}
#cnd8346gtag2tv2jvuyj > .design_block.img01 {
  top: 0;
  left: calc(50% - 520px);
  width: 430px;
  height: 580px;
  background: url(../files/design05_img01.jpg) no-repeat center top;
}
#cnd8346gtag2tv2jvuyj > .design_block.img02 {
  top: 710px;
  left: calc(50% + 20px);
  width: 560px;
  height: 360px;
  background: url(../files/design05_img02.jpg) no-repeat center top;
}
#cnd8346gtag2tv2jvuyj > .design_block.img03 {
  top: 710px;
  left: calc(50% - 412px);
  width: 480px;
  height: 360px;
  background: url(../files/design05_catch.png) no-repeat center top;
}


/*DB＞土地の売買・店舗やアパートもお気軽にご相談ください
req49mxgupok38j123ee
--------------------------------------- */
#req49mxgupok38j123ee {
  position: relative;
  color: #ffffff;
}
#req49mxgupok38j123ee,
#req49mxgupok38j123ee .easys_content_inner,
#req49mxgupok38j123ee .entry_post {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;
  /* デザインブロックの高さ（だいたい背景画像の高さと同じです） */
  height: 800px;
}
#req49mxgupok38j123ee [class*='title'] {
  /* タイトル削除 */
  display: none;
}
#req49mxgupok38j123ee .text_box {
  /* テキストエリアの位置調整はここのmarginで！ */
  margin: 322px auto 0 0;
  /* テキストエリアの横幅 */
  width: 530px;
}
#req49mxgupok38j123ee .post_data {
  line-height: 2.12;
  font-size: 16px;
}

#req49mxgupok38j123ee .design_block.img00 {
  top: 0;
  z-index: 0;
  height: 800px;
  opacity: 1;
  filter: none !important;
  transition: none;
  transform: none !important;
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
#req49mxgupok38j123ee .design_block.img00::before {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  background: url(../files/design06_para_bg.jpg) no-repeat center center / cover;
  object-fit: cover;
  content: "";
}

#req49mxgupok38j123ee .design_block.img01 {
  top: 180px;
  left: calc(50% - 550px);
  width: 530px;
  height: 152px;
  background: url(../files/design06_ttl.png) no-repeat center top;
}



/* ===========================================================================
     物件紹介
=========================================================================== */


/* ===========================================================================
     建築/設計部
=========================================================================== */
/*DB＞設計から施工まで一貫して行います
diwnrxq326a928vllxr3
--------------------------------------- */
#diwnrxq326a928vllxr3 {
  position: relative;
  /* 背景画像 */
  background: url(../files/design07_bg.jpg) no-repeat center top;
}
#diwnrxq326a928vllxr3,
#diwnrxq326a928vllxr3 .easys_content_inner,
#diwnrxq326a928vllxr3 .entry_post {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;
  /* デザインブロックの高さ（だいたい背景画像の高さと同じです） */
  height: 1876px;
}
#diwnrxq326a928vllxr3 [class*='title'] {
  /* タイトル削除 */
  display: none;
}
#diwnrxq326a928vllxr3 .text_box {
  /* テキストエリアの位置調整はここのmarginで！ */
  margin: 665px auto 0 0;
  /* テキストエリアの横幅 */
  width: 530px;
}
#diwnrxq326a928vllxr3 .post_data {
  line-height: 2.12;
  font-size: 16px;
}

#diwnrxq326a928vllxr3 .block_midashi_back {
  top: 168px;
  width: 890px;
}

#diwnrxq326a928vllxr3 .design_block.img00 {
  top: 180px;
  left: calc(50% - 68px);
  width: 135px;
  height: 173px;
  background: url(../files/design07_ttl01.png) no-repeat center top;
}
#diwnrxq326a928vllxr3 .design_block.img01 {
  top: 488px;
  left: calc(50% - 550px);
  width: 530px;
  height: 188px;
  background: url(../files/design07_ttl02.png) no-repeat center top;
}
#diwnrxq326a928vllxr3 .design_block.img02 {
  top: 488px;
  left: calc(50% + 120px);
  width: 430px;
  height: 600px;
  background: url(../files/design07_img01.jpg) no-repeat center top;
}
#diwnrxq326a928vllxr3 .design_block.img03 {
  top: 1128px;
  left: calc(50% - 630px);
  width: 760px;
  height: 568px;
  background: url(../files/design07_img02.png) no-repeat center top;
}
#diwnrxq326a928vllxr3 .design_block.img04 {
  top: 1273px;
  left: calc(50% + 20px);
  width: 618px;
  height: 163px;
  background: url(../files/design07_catch.png) no-repeat center top;
}


/*DB＞新築
qyo47i5ib2n80xcdtl7n
--------------------------------------- */
#qyo47i5ib2n80xcdtl7n {
  position: relative;
  color: #ffffff;
  /* 背景画像 */
  background: url(../files/design08_bg.png) no-repeat center top;
}
#qyo47i5ib2n80xcdtl7n,
#qyo47i5ib2n80xcdtl7n .easys_content_inner,
#qyo47i5ib2n80xcdtl7n .entry_post {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;
  /* デザインブロックの高さ（だいたい背景画像の高さと同じです） */
  height: 1120px;
}
#qyo47i5ib2n80xcdtl7n [class*='title'] {
  /* タイトル削除 */
  display: none;
}
#qyo47i5ib2n80xcdtl7n .text_box {
  /* テキストエリアの位置調整はここのmarginで！ */
  margin: 458px 0 0 auto;
  /* テキストエリアの横幅 */
  width: 530px;
}
#qyo47i5ib2n80xcdtl7n .post_data {
  line-height: 2.12;
  font-size: 16px;
}

#qyo47i5ib2n80xcdtl7n .design_block.img00 {
  top: 320px;
  left: calc(50% + 20px);
  width: 530px;
  height: 147px;
  background: url(../files/design08_ttl.png) no-repeat center top;
}
#qyo47i5ib2n80xcdtl7n .design_block.img01 {
  top: 320px;
  left: calc(50% - 780px);
  width: 680px;
  height: 480px;
  background: url(../files/design08_img.jpg) no-repeat center top;
}


/*DB＞リフォーム
o1i20t316ccfcl4tbm64
--------------------------------------- */
#o1i20t316ccfcl4tbm64 {
  position: relative;
  /* 背景画像 */
  background: url(../files/design09_bg.png) no-repeat center top;
}
#o1i20t316ccfcl4tbm64,
#o1i20t316ccfcl4tbm64 .easys_content_inner,
#o1i20t316ccfcl4tbm64 .entry_post {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 0;
  /* デザインブロックの高さ（だいたい背景画像の高さと同じです） */
  height: 940px;
}
#o1i20t316ccfcl4tbm64 [class*='title'] {
  /* タイトル削除 */
  display: none;
}
#o1i20t316ccfcl4tbm64 .text_box {
  /* テキストエリアの位置調整はここのmarginで！ */
  margin: 277px auto 0 0;
  /* テキストエリアの横幅 */
  width: 530px;
}
#o1i20t316ccfcl4tbm64 .post_data {
  line-height: 2.12;
  font-size: 16px;
}

#o1i20t316ccfcl4tbm64 .design_block.img00 {
  top: 140px;
  left: calc(50% - 550px);
  width: 530px;
  height: 145px;
  background: url(../files/design09_ttl.png) no-repeat center top;
}
#o1i20t316ccfcl4tbm64 .design_block.img01 {
  top: 140px;
  left: calc(50% + 100px);
  width: 680px;
  height: 480px;
  background: url(../files/design09_img.jpg) no-repeat center top;
}



/* ===========================================================================
     施工事例
=========================================================================== */


/* ===========================================================================
     オフィシャルブログ
=========================================================================== */


/* ===========================================================================
     お問い合わせ
=========================================================================== */



/* 
--------------------------------------- */

/* 
--------------------------------------- */

body #progress > #progress_bar {
  position: absolute;
  top: calc(50% + 25px);
}
body #progress > #progress_text {
  top: calc(50% + 60px);
  font-size: 25px;
}