@charset "utf-8";

/*
 * PC用スタイルCSS
 */

/* ↓↓　雛形　レイアウトにあわせて追記・上書きして下さい　↓↓
   後々解読が面倒になるので、必要な箇所のみ記述すること
  （例：背景がPNGになるなら background-image: url("../files/xx_bg.png");　など） */
/* =================================================================================================================== */
/* PCカスタムプロパティ */
:root {
  --basic_background_color: #ffffff;
  --body_text_color: #000000;
  --link_color: #213770;
  --border_color: #3b3b40;
  --table_border_color: #3b3b40;
  --th_background_color: transparent;
  --td_background_color: transparent;
  --th_character_color: #000000;
  --td_character_color: #000000;
  --required_color: #e15d4c;
  --top_h1_color: #ffffff;
  --header_navigation_color: transparent;
  --top_entry_title_color: #213770;
  --entry_title_bg_color: #262626;
  --blog_title_color: #262626;
  --sub_entry_title_bg_color: #213770;
  --entry_title_bg_w570_color: #262626;
  --sub_entry_title_bg_w570_color: #213770;
  --half_entry_title_bg_color: #262626;
  --half_sub_entry_title_bg_color: #213770;
  --column3_title_bg_color: #ffffff;
  --widget_title_bg_color: #ffffff;
  --widget_list_bg_color: #262626;
  --footnavi_color: #ffffff;
  --address_color: #ffffff;
  --copy_color: #468ddb;
}
/* 置換以外 */
:root {
  --easys_min_width: 1300; /* EASYSの最小幅(単位なし) */
  --easys_max_width: 2000; /* EASYSの最大幅(単位なし) */
  --easys_top_main_h: 1080; /* トップメインのオリジナル高さ(単位なし) */
  --easys_naka_main_h: 880; /* 中ページメインのオリジナル高さ(単位なし) */
  --easys_standard_value001: #ffffff; /* A～Cブロック記事内リンクボタン＞文字色 */
  --easys_standard_value002: rgba(255, 255, 255, 0.75); /* プルダウンメニュー＞背景色 */
  --easys_standard_value003: #333333; /* プルダウンメニュー＞文字色 */
  --easys_standard_value004: #666666; /* プルダウンメニュー＞文字色(ホバー時) */
  --easys_standard_value005: #ffffff; /* カレンダーの本日＞文字色 */
  --easys_standard_value006: #ffffff; /* 大きな地図で見る＞文字色(ホバー時) */
  --easys_standard_value007: #ffffff; /* ページ遷移ボタン＞線色 */
  --easys_standard_value008: #ffffff; /* ページ遷移ボタン＞文字色 */
  --easys_standard_value009: #000000; /* ブログ＞ページング＞線色 */
}

/* 個人追加 */
:root {
  --main_nav_h: 64px; /* Gナビのheight */
  --fixed_nav_h: 80px; /* 固定ナビのheight */
  --btn_transition: 0.3s; /* ホバーでONOFFふわっと切替 */
}

/* =================================================================================================================== */

/* ===================================================================================================================
   ■ 全体
------------------------------------------------------------------------------------------------------------------- */
html {
  background: var(--basic_background_color);
  scroll-padding-top: var(--fixed_nav_h);
  scroll-behavior: smooth;
}

body {
  position: relative; /*2000pxを超える画面の対策*/
  margin: 0 auto;
  min-width: calc(var(--easys_min_width) * 1px);
  max-width: calc(var(--easys_max_width) * 1px);
  background: none no-repeat center top;
  word-break: break-word;
}

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;
}
#page_6 #outer_block {
  padding-top: 0;
}

a:link,
a:visited,
a:hover,
a:active {
  color: var(--link_color);
}

/* A～Cブロック記事内リンクボタン */
.main_btn a,
.sub_text_btn a {
  background-color: var(--link_color);
  color: var(--easys_standard_value001);
}

/* ===================================================================================================================
   ■ ヘッダー
------------------------------------------------------------------------------------------------------------------- */
#branding_box {
  position: relative;
  z-index: 500;
  background: none transparent;
  padding: calc(100% * (var(--easys_naka_main_h) / var(--easys_max_width))) 0 0 0;
  height: 0;
}

#page_6 #branding_box {
  padding: calc(100% * (var(--easys_top_main_h) / var(--easys_max_width))) 0 0 0;
}

/*  H1テキスト
---------------------------------------------------------------------------------------------------- */
#site-description {
  position: absolute;
  margin: 0 auto;
  width: auto;
  bottom: calc(50 / var(--easys_naka_main_h) * 100%);
  right: calc(35 / var(--easys_max_width) * 100%);
}

#page_6 #site-description {
  bottom: calc(50 / var(--easys_top_main_h) * 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: fixed;
  top: 16px;
  left: calc(50% - 200px);
  z-index: 1000; /*ナビより重ね順上*/
  width: 140px;
  height: 64px;
  background: none transparent;
}

/*  グローバルナビ
---------------------------------------------------------------------------------------------------- */
#menuTrigger {
  position: fixed;
  top: 25px;
  left: calc(50% - 22px);
  z-index: 999;
  width: 46px;
  height: 46px;
  background: none transparent;
}

#menuTrigger button {
  position: relative;
  left: 0;
  overflow: hidden;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  width: 46px;
  height: 46px;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

#menuTrigger span {
  position: absolute;
  top: -6px;
  left: 0;
  display: block;
  overflow: hidden;
  box-sizing: border-box;
  width: 46px;
  height: 2px;
  background-color: transparent;
  transition: transform 0.3s;
}

#menuTrigger span:nth-of-type(1) {
  transform: translate3d(0, 19px, 0);
}

#menuTrigger span:nth-of-type(2) {
  transform: translate3d(0, 27px, 0);
}

#menuTrigger span:nth-of-type(3) {
  transform: translate3d(0, 35px, 0);
}

#menuTrigger span::before,
#menuTrigger span::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #0b2261;
  content: "";
  transition: transform 0.6s cubic-bezier(0, 0.55, 0.45, 1) 0.2s;
  pointer-events: none;
}
#menuTrigger span:before {
  transform: translate3d(0, 0, 0);
}
#menuTrigger span:after {
  transform: translate3d(-100%, 0, 0);
}
#menuTrigger.opened span:before,
#menuTrigger:hover span:before {
  transform: translate3d(100%, 0, 0);
}
#menuTrigger.opened span:after,
#menuTrigger:hover span:after {
  transform: translate3d(0, 0, 0);
}
#menuTrigger:hover span:nth-of-type(1):before {
  transition-delay: 0.2s;
}
#menuTrigger:hover span:nth-of-type(1):after {
  transition-delay: 0.3s;
}
#menuTrigger:hover span:nth-of-type(2):before {
  transition-delay: 0.4s;
}
#menuTrigger:hover span:nth-of-type(2):after {
  transition-delay: 0.5s;
}
#menuTrigger:hover span:nth-of-type(3):before {
  transition-delay: 0.6s;
}
#menuTrigger:hover span:nth-of-type(3):after {
  transition-delay: 0.7s;
}

/* アクティブ時 */
#menuTrigger.opened span:nth-of-type(1) {
  transform: translate3d(-2px, 26px, 0) rotate(45deg);
}
#menuTrigger.opened span:nth-of-type(2) {
  opacity: 0;
  transform: translate3d(20px, 7px, 0);
}
#menuTrigger.opened span:nth-of-type(3) {
  transform: translate3d(-3px, 26px, 0) rotate(-45deg);
}

/*ナビ開いてるとき hoverで×回転*/
#menuTrigger.opened button {
  transition: 0.3s;
  transform: rotate(0deg);
}
#menuTrigger.opened button:hover {
  transition: 0.3s;
  transform: rotate(90deg);
}

/* 上からの位置は#accessで、左右の位置はdiv#access .menu-headerで ★*/
#access {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 999;
  margin: 0 auto;
  padding: 0;
  width: 440px;
  height: 64px;
  background: #fff none;
  transition: 0.5s;
  border-radius: 32px;
}

#access.opened {
  top: 16px;
  height: 444px;
}

#access::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: block;
  width: 440px;
  height: 0;
  background: url(../files/info_bg.png) no-repeat center top;
  content: "";
  pointer-events: none;
  border-radius: 32px;
  transition: 0.5s;
}

#access.opened::before {
  height: 444px;
}

#access::after {
  content: "";
  position: absolute;
  background: url(../files/main_logo.png) no-repeat center top;
  top: 0;
  left: 0;
  width: 440px;
  height: 64px;
  pointer-events: none;
}

div#access .menu-header {
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 400px;
  height: 0;
  transition: 0.5s;
  clip-path: inset(0);
}

div#access.opened .menu-header {
  top: 104px;
  height: 240px;
}

div#access .menu-item a {
  background: url("/files/topnavi.png") no-repeat left top;
  padding: 0;
  width: 400px;
  height: 40px;
}

div#access .gnavi-logo a {
  background-image: none;
  background-color: transparent;
  width: 440px;
  height: 120px;
}

div#access .gnavi11 a,
div#access .gnavi11 a:hover {
  background-position-y: top;
}
div#access .gnavi12 a,
div#access .gnavi12 a:hover {
  background-position-y: -40px;
}
div#access .gnavi13 a,
div#access .gnavi13 a:hover {
  background-position-y: -80px;
}
div#access .gnavi14 a,
div#access .gnavi14 a:hover {
  background-position-y: -120px;
}
div#access .gnavi15 a,
div#access .gnavi15 a:hover {
  background-position-y: -160px;
}
div#access .gnavi16 a,
div#access .gnavi16 a:hover {
  background-position-y: -200px;
}

div#access .menu-item a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 0;
  height: 2px; /*下線の高さ*/
  background: none #f4cb37; /*下線の色*/
  content: "";
  transition: all 0.3s ease 0s;
}
div#access .menu-item a:hover::after {
  width: 100%;
}
div#access .menu-item ul.sub-menu a::after {
  height: 0;
} /*サブメニューでは無効化*/

/*固定時用ナビ*/
#access.fixed {
  position: fixed;
  top: 0 !important;
  right: 0;
  bottom: inherit;
  left: 0;
  z-index: 999;
  padding: 0;
  min-width: calc(var(--easys_min_width) * 1px);
  max-width: calc(var(--easys_max_width) * 1px);
  width: 100%;
  height: var(--easys_access_h);
  /*固定時ナビ背景指示あればここで！★*/
  background: rgba(255, 255, 255, 0.95);
}
#access.fixed .menu-header {
  /*固定時ナビの位置調整はここで！真ん中 or 右寄せ必ず選択してください★*/
  /* 真ん中よせのとき
  margin: 0 auto; */
  /*右寄せのとき
  margin:0 0 0 auto;*/
  float: none;
  max-width: calc(var(--easys_max_width) * 1px);
  transform: none !important;
}

#access ul.menu ul.sub-menu {
  top: 100%;
}
#access ul.menu ul.sub-menu,
#access ul.menu ul.sub-menu li {
  width: 100%;
}

.main_header img.fixed,
#page_6 .main_header img.fixed {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  z-index: 600 !important;
  display: block;
  width: 440px !important;
  height: 64px !important;
  background: url(/files/main_logo.png) !important;
}

@media screen and (min-width: 2000px) {
  .main_header img.fixed,
  #page_6 .main_header img.fixed {
    left: calc(50% - 1000px) !important;
  }
}

/* プルダウンメニューのサイズ */
#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_value002);
  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);
}

/*  メイン画像
---------------------------------------------------------------------------------------------------- */
/* 通常メイン画像 */
#video_teaser,
#main_teaser,
#jquery_slider_pc {
  position: absolute;
  top: 0; /*★メイン上にヘッダー部分がくる場合位置指定*/
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 99;
}

/* フラッシュ選択時 */
.flash_teaser {
  background-repeat: no-repeat;
  background-position: center top;
}

/* TOP SLIDER使用時 */
#jquery_slider_pc,
#main_teaser img {
  display: block;
  min-width: 1300px !important;
  max-width: 2000px;
  margin: 0 auto;
  right: 0;
  width: 100%;
}

#main_teaser img {
  display: block;
  min-width: 1300px !important;
  max-width: 2000px;
  margin: 0 auto;
}

#main_teaser::after {
  content: "";
  position: absolute;
  background: url(../files/header_cover.png) no-repeat center top / 100%;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ===================================================================================================================
   ■ サイド
------------------------------------------------------------------------------------------------------------------- */
/* サイドナビ　タイトル */
.widget-title,
.widget-title2 a {
  padding: 0;
  background-image: url(../files/widget_title_bg.png);
  color: var(--widget_title_bg_color);
  text-align: center;
}
.widget-title2 a:link,
.widget-title2 a:visited,
.widget-title2 a:hover,
.widget-title2 a:active {
  color: var(--widget_title_bg_color);
}

/* サイドナビ　メニュー部分 */
#blog_main .widget-area ul ul li a {
  overflow: hidden;
  background-image: url(../files/widget_list_bg.png);
  color: var(--widget_list_bg_color);
  text-overflow: ellipsis;
  white-space: nowrap;
}

#wp-calendar {
  border-collapse: separate;
}

#wp-calendar caption {
  text-align: center;
}

/* #wp-calendar thead th {
} */

#wp-calendar tbody td {
  background: none transparent;
  border-width: 0 0 1px;
  border-style: dotted;
  border-color: var(--border_color);
  line-height: 2;
  padding: 5px;
}

#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 {
  background: none #1d226f;
  height: 650px;
  position: relative;
}

#footer_box {
  background: url(../files/footer_box_bg.png) no-repeat center top;
  height: 550px;
  position: relative;
}

#footer_box,
#footer_sitemap_block,
#footer-widget-area,
.footer_infomation {
  width: 100%;
  margin: 0 auto;
}

/*  フッターナビ
---------------------------------------------------------------------------------------------------- */
#footer-widget-area .widget-area {
  position: absolute;
  top: 155px;
  left: calc(50% - -425px);
}

#footer_sitemap_block #footer-widget-area {
  display: block;
  width: 960px;
}

#footer_sitemap_block #footer-widget-area .widget-area ul.menu {
  border-color: transparent;
  display: flex;
  flex-direction: column;
  text-align: right;
}

#footer-widget-area .widget-area .menu-item {
  margin: 0 0 8px;
}

#footer_sitemap_block #footer-widget-area .widget-area .menu-item a {
  border-color: transparent;
  color: var(--footnavi_color);
}

#footer_sitemap_block #footer-widget-area .widget-area .menu-item a:hover {
  background-color: transparent;
}

/*  フッター情報
---------------------------------------------------------------------------------------------------- */
.footer_infomation {
  display: block;
  margin: 0;
  width: 400px;
  position: absolute;
  top: 272px;
  left: calc(50% - 549px);
}

#footer_information .entry-post {
  width: 100%;
  margin: 0;
  text-align: left;
  color: var(--address_color);
}

#footer_information .entry-post .tel {
  position: absolute;
  top: 143px;
}

/*  フッターSNSボタン
---------------------------------------------------------------------------------------------------- */
#footer_sns_btn {
  margin: 20px auto 0;
}

#footer_sns_btn .footer_sns_inner {
  width: 250px;
  height: 25px;
}

#footer_sns_btn div {
  width: 25px;
  height: 25px;
}

#footer_sns_btn div a:hover {
  opacity: 0.8;
}

/*  コピーライト
---------------------------------------------------------------------------------------------------- */
#copyright {
  color: var(--copy_color);
  text-align: left;
  position: absolute;
  bottom: 56px;
  left: calc(50% - 548px);
  margin: 0;
  width: 510px;
}

/*  フッターメニュー
---------------------------------------------------------------------------------------------------- */
/* サイドバナー */
.side_fixed_btn {
  background: url(../files/sidenavi_bg.png) no-repeat top right;
  bottom: 0;
  height: max-content;
  margin-block: auto;
  padding-block: 20px;
  position: fixed;
  right: 24px;
  top: 0;
  z-index: 1000;
}

.side_fixed_btn .btn_gimmick + .btn_gimmick {
  margin-top: 10px;
}

.side_fixed_btn .btn_gimmick a {
  font-size: 12px;
  padding-inline: 0 40px;
  color: #000;
}

.side_fixed_btn .btn_gimmick a:hover::before,
.side_fixed_btn .btn_gimmick a:hover::after {
  transform: none;
}

.side_fixed_btn .btn_gimmick a::before {
  background: url(../files/sidenavi_btn_off.png) no-repeat top center;
  height: 4px;
  left: auto;
  right: 0;
  transform: none;
  width: 28px;
}

.side_fixed_btn .btn_gimmick a::after {
  background: url(../files/sidenavi_btn_on.png) no-repeat top center;
  height: 4px;
  left: auto;
  opacity: 0;
  right: 0;
  transform: none;
  transition: opacity 0.3s;
  width: 28px;
}

.side_fixed_btn .btn_gimmick a:hover::after {
  opacity: 1;
}

/* CONTACTボタン */
.fixed_btn1 {
  position: fixed;
  top: 23px;
  left: calc(50% + 80px);
  width: 130px;
  height: 48px;
  z-index: 500;
}

.fixed_btn1 div {
  position: relative;
  width: 130px;
  height: 48px;
}

.fixed_btn1 div a::after {
  content: "";
  position: absolute;
  background: url(../files/btn_contact_on.png) no-repeat center top;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: var(--btn_transition);
}

.fixed_btn1 div a:hover::after {
  opacity: 1;
}

/* TOPボタン */
#float_top_btn {
  bottom: 30px;
  position: fixed;
  right: 30px;
  z-index: 999;
}

.open #float_top_btn {
  z-index: 1;
}

#float_top_btn::before {
  background: url(../files/top_btn_arr.png) no-repeat center center;
  content: "";
  display: block;
  height: 10px;
  inset: 0;
  margin: auto;
  position: absolute;
  width: 10px;
}

#float_top_btn:hover::before {
  animation: css-footerBackbtnTick 1s cubic-bezier(0.19, 1, 0.22, 1) 0s infinite normal both;
}

#float_top_btn a:hover {
  opacity: 1;
}

@keyframes css-footerBackbtnTick {
  0% {
    transform: translateY(-10px);
  }

  75% {
    transform: translate(0);
  }

  to {
    transform: translate(0);
  }
}

@media screen and (min-width: 2000px) {
  #float_top_btn {
    right: calc(50% - 980px);
  }

  .side_fixed_btn {
    right: calc(50% - 976px);
  }
}

/* ===================================================================================================================
   ■ コンテンツ
------------------------------------------------------------------------------------------------------------------- */
#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);
  padding: 20px 0 10px;
}

h3.entry_title,
.entry_title,
.entry-title {
  /* サイズ、背景、余白などはこちら */
  background-image: url(../files/entry_title_bg.png);
  color: var(--entry_title_bg_color);
}

/*h3.entry_title,
.entry_title,
.entry_title h3,
.entry-title {
  フォントサイズはこちら
}*/

.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);
}

/*--------------h3以降中央寄せ-----------------------*/
/* 見出し用 */
.entry_title {
  text-align: center;
  padding: 0;
  width: 960px;
}
/*----リンク有---*/
.entry_title h4 {
  width: 840px;
  padding-left: -120px;
}
/*-見出しリンクボタン-*/
.entry_title span.read_more_btn {
  margin-left: -120px;
}

h3.entry_title:not(#blog_main .entry-title),
.entry_title:not(#blog_main .entry-title) {
  text-align: center;
  padding: 0;
  width: 960px;
}

.entry_title.type-B h3 {
  width: 720px;
  padding-left: 120px;
}

/* 見出しリンクボタン */
.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);
  text-align: center;
}

.sub_entry_title.type-B {
  width: 840px;
  padding-left: 120px;
}

.sub_entry_title.type-B h4 {
  width: 720px;
}
/*
* .sub_entry_title h4 {
  フォントサイズはこちら
}
*/
* .sub_entry_title a:link,
* .sub_entry_title a:visited,
* .sub_entry_title a:hover,
* .sub_entry_title a:active {
  color: var(--sub_entry_title_bg_color);
}

/* 小見出しリンクボタン */
.sub_entry_title span.read_more_btn a,
.sub_entry_title span.read_more_btn a:hover {
  background-image: url(../files/sub_read_more_btn.png);
}

.sub_entry_title span.read_more_btn a:hover {
  opacity: 0.8;
}

* .mid_sub_entry_title {
  background-image: url(../files/sub_entry_title_bg_w570.png);
  font-size: 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: #ffffff !important;
}

/*  クーポンページ
---------------------------------------------------------------------------------------------------- */
/* クーポンの本文見出しなど、固定幅でないインラインタイトル用 */
.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: #ffffff !important;
}

/*  テーブル
---------------------------------------------------------------------------------------------------- */
.easys_content:not(.ne_01) table:not(#wp-calendar) tr > * {
  background: none transparent !important;
  border-color: var(--table_border_color);
  border-top: none !important;
  border-right: none !important;
  border-left: none !important;
}

.easys_content:not(.ne_01) table:not(#wp-calendar) tr:first-child > * {
  border-top: 1px solid var(--table_border_color) !important;
}

/*メール送信後メッセージボックスのボーダー（デフォルト：グリーン）*/
div.wpcf7-mail-sent-ok {
  border-color: var(--border_color) !important;
}

/* Dメニュー下線 */
.td_cell {
  vertical-align: top;
  border-color: var(--border_color);
}

/*黒背景お問い合わせフォームテキストカラー修正
---------------------------------------------------------------------------------------------------- */
/* input.wpcf7c-conf {
  color: #ffffff;
}textarea.wpcf7c-conf {
  color: #ffffff;
} */

.table_area table tr td {
  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;
  text-align: center;
}

#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 {
  width: 100%;
  height: 450px;
  margin: 0 0 20px;
}

/*  googleカレンダー
---------------------------------------------------------------------------------------------------- */
iframe[src^="https://calendar.google.com"]
{
  border: none !important;
}

/* ページ内リンクアンカー位置調整 */
a[id^="anchor"] {
  display: block;
  visibility: hidden;
  margin-top: -110px;
  height: 110px;
  content: "";
}

/* メール投稿ブロック画像幅調整 */
.img_size_thumb {
  height: 150px;
}

small {
  box-sizing: border-box;
}

.flow_arr {
  height: 40px;
}

/*コンタクトフォームスパム*/
.grecaptcha-badge {
  visibility: hidden;
}

/* ============================== ↓↓各ブロックの個別CSSはこちらに記述↓↓ ============================== */
/* .widget-title, .widget-title2 a,
#blog_main .widget-area ul ul li a,
#blog_main .entry-title,
.headline_title,
h3.entry_title, .entry_title, .entry_title h3, .entry-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 {

} */

/* 自動マージン */
/* 対象のマージンを消す */
.easys_content.no_margin {
  margin: 0;
}

/* もし記事が割り込まれたらマージンを入れる */
.easys_content.no_margin + .easys_content:not(.no_margin) {
  margin-top: 70px;
}

/* ＝＝＝デザインブロックスクロールギミック共通＝＝＝ */
.design_block:not(.nogmk) {
  position: absolute;
  top: 0;
  left: calc(50% - 1000px);
  width: 2000px;
  opacity: 0;
  transition: 1s ease 0s;
}

.design_block.moved:not(.nogmk.moved) {
  opacity: 1;
  transform: translate(0px, 0px) rotate3d(0, 0, 1, 0) !important;
}

.nogmk {
  position: absolute;
  top: 0;
  left: calc(50% - 1000px);
  width: 2000px;
}

.clip {
  opacity: 1;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1s, opacity 1s 0.1s, transform 1s;
}

.clip.moved {
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
}

/* デザインブロックボタン共通 */
.btn_gimmick a {
  align-items: center;
  background: none transparent;
  border-radius: 0;
  box-sizing: border-box;
  color: currentcolor;
  display: block;
  display: flex;
  font-family: "Chakra Petch", sans-serif;
  font-size: 16px;
  font-weight: 700;
  height: 100%;
  letter-spacing: 0.1em;
  padding: 0;
  padding-left: 100px;
  position: relative;
  text-align: right;
  text-decoration: none;
  white-space: pre;
  width: 100%;
}

#wtoyfiy7g5px7krfflx2 .btn_gimmick a,
#pkfksteclx4ei23wpmge .btn_gimmick a {
  color: #fff;
}

.btn_gimmick a:hover span {
  animation-duration: 0.1s;
  animation-iteration-count: 3;
  animation-name: common_blink;
  animation-timing-function: linear;
}
.btn_gimmick a:hover span:nth-child(2n) {
  animation-delay: 0.5s; /* spanのついた2の倍数の文字列の変化を0.5秒遅らせる*/
}
.btn_gimmick a:hover span:nth-child(3n + 1) {
  animation-delay: 0.15s; /* spanのついた3の倍数＋1の文字列の変化を0.15秒遅らせる*/
}
@keyframes common_blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
  100% {
    opacity: 1;
  }
}

.btn_gimmick a::before,
.btn_gimmick a::after {
  bottom: 0;
  content: "";
  display: block;
  height: 55px;
  left: 0;
  margin: auto;
  position: absolute;
  top: 0;
  width: 55px;
  z-index: 1;
}

.btn_gimmick a::before {
  background: url(../files/design_link_btn_line.png) no-repeat top center;
  height: 72px;
  transition: transform 0.3s, opacity 0.8ms;
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 72px;
}
.btn_gimmick a:hover::before {
  opacity: 0;
  transform: scale(0.9) rotateZ(180deg);
}
.btn_gimmick a::after {
  background: url(../files/design_link_btn.png) no-repeat top center;
  left: 9px;
}

@keyframes loop {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(calc(-100% / 3));
  }
}

/*  DB
---------------------------------------------------------------------------------------------------- */
.db {
  position: relative;
}

.db *[class*="title"] {
  display: none;
}

.db .text_box {
  overflow: visible;
}

.db .post_data {
  text-align: justify;
  line-height: 2.25;
}

#wtoyfiy7g5px7krfflx2 .post_data,
#pkfksteclx4ei23wpmge .post_data,
#sog87x5ctpt9marp5gkj .post_data,
#ilkrp6rfdbsahz2aoxgg .post_data,
#x7neaeo9ks9n0o1j7cop .post_data {
  color: #fff;
}

.db .main_btn {
  margin: 0;
  padding: 0;
}

.db .main_btn a {
  font-family: "Chakra Petch", sans-serif;
}

/*  DB1
#cqyrbz3p9m8ck2lu9s4c
--------------------------------------------------------------- */
#cqyrbz3p9m8ck2lu9s4c {
  background: url(../files/design01_bg.png) no-repeat center top, url(/files/block_bg01.jpg) repeat center top;
  height: 1240px;
}

#cqyrbz3p9m8ck2lu9s4c > .design_block.block1 {
  background: url(/files/design01_ttl.png) no-repeat center top;
  top: 180px;
  left: calc(50% - 550px);
  width: 684px;
  height: 500px;
  transform: translateX(-100px);
  z-index: 1;
}

#cqyrbz3p9m8ck2lu9s4c > .design_block.block2 {
  background: url(/files/design01_img01.jpg) no-repeat center top;
  top: 180px;
  left: calc(50% - -20px);
  width: 640px;
  height: 420px;
}

#cqyrbz3p9m8ck2lu9s4c > .design_block.block3 {
  background: url(/files/design01_img02.jpg) no-repeat center top;
  top: 680px;
  left: calc(50% - 630px);
  width: 520px;
  height: 380px;
}

#cqyrbz3p9m8ck2lu9s4c .text_box {
  width: 530px;
  margin: 670px 0 0 501px;
}

#cqyrbz3p9m8ck2lu9s4c .main_btn {
  margin: 57px 0 0 0;
}

/*  DB2
#wtoyfiy7g5px7krfflx2
--------------------------------------------------------------- */
#wtoyfiy7g5px7krfflx2 {
  background: url(../files/block_bg02.jpg) repeat center top;
  height: 1222px;
}

#wtoyfiy7g5px7krfflx2 > .design_block.block1 {
  top: 0px;
  left: 0;
  width: calc(1920px * 3);
  height: 320px;
  background: url(../files/design02_img01.jpg) repeat-x center top;
  animation: loop 40s linear 0s infinite;
  pointer-events: none;
}

#wtoyfiy7g5px7krfflx2 > .design_block.block2 {
  top: 320px;
  left: 0;
  width: calc(1920px * 3);
  height: 320px;
  background: url(../files/design02_img02.jpg) repeat-x center top;
  animation: loop 40s linear 0s infinite;
  pointer-events: none;
  animation-direction: reverse;
}

#wtoyfiy7g5px7krfflx2 > .design_block.block3 {
  background: url(/files/design02_cover.png) no-repeat center top;
  height: 1222px;
}

#wtoyfiy7g5px7krfflx2 > .design_block.block4 {
  background: url(/files/design02_ttl.png) no-repeat center top;
  top: 0;
  left: calc(50% - 480px);
  width: 960px;
  height: 760px;
  transform: translateX(-100px);
}

#wtoyfiy7g5px7krfflx2 .easys_content_inner {
  position: relative;
}

#wtoyfiy7g5px7krfflx2 .text_box {
  width: 610px;
  margin: 750px 0 0 170px;
}

#wtoyfiy7g5px7krfflx2 .main_btn {
  margin: 56px 0 0 194px;
}

/*  DB3
#k8xsd7ew5t56vv2px1fm
--------------------------------------------------------------- */
#k8xsd7ew5t56vv2px1fm {
  background: url(../files/design03_bg.png) no-repeat center top, url(../files/block_bg03.jpg) repeat center top;
  height: 1249px;
}

#k8xsd7ew5t56vv2px1fm > .design_block.block1 {
  background: url(/files/design03_ttl.png) no-repeat center top;
  top: 180px;
  left: calc(50% - -40px);
  width: 510px;
  height: 440px;
  transform: translateX(-100px);
}

#k8xsd7ew5t56vv2px1fm > .design_block.block2 {
  background: url(/files/design03_img01.jpg) no-repeat center top;
  top: 180px;
  left: calc(50% - 659px);
  width: 700px;
  height: 440px;
}

#k8xsd7ew5t56vv2px1fm > .design_block.block3 {
  background: url(/files/design03_img02.png) no-repeat center top;
  top: 728px;
  left: calc(50% - -128px);
  width: 600px;
  height: 340px;
}

#k8xsd7ew5t56vv2px1fm > .design_block.block4 {
  background: url(/files/design03_catch.png) no-repeat center top;
  top: 957px;
  left: calc(50% - 142px);
  width: 381px;
  height: 145px;
  transform: translateX(-100px);
}

#k8xsd7ew5t56vv2px1fm .text_box {
  width: 530px;
  margin: 717px 0 0 -67px;
}

#k8xsd7ew5t56vv2px1fm .main_btn {
  margin: 58px 0 0 0;
}

/*  DB4
#pkfksteclx4ei23wpmge
--------------------------------------------------------------- */
#pkfksteclx4ei23wpmge {
  background: none transparent;
  height: 880px;
}

#pkfksteclx4ei23wpmge {
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
}

#pkfksteclx4ei23wpmge > .design_block.block1 {
  position: absolute;
  top: 0;
  height: 880px;
  background: none transparent;
}

#pkfksteclx4ei23wpmge > .design_block.block1::before {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  background: url(/files/design04_para_bg.jpg) no-repeat center center / cover;
  content: "";
}

#pkfksteclx4ei23wpmge > .design_block.block2 {
  background: url(/files/design04_ttl.png) no-repeat center top;
  top: 220px;
  left: calc(50% - 550px);
  width: 530px;
  height: 177px;
  transform: translateX(-100px);
}

#pkfksteclx4ei23wpmge > .design_block.block3 {
  background: url(/files/design04_cover.png) no-repeat center top;
  height: 880px;
}

#pkfksteclx4ei23wpmge .text_box {
  width: 530px;
  margin: 385px 0 0 -68px;
}

#pkfksteclx4ei23wpmge .main_btn {
  margin: 60px 0 0 0;
}

/*  DB5
#sog87x5ctpt9marp5gkj
--------------------------------------------------------------- */
#sog87x5ctpt9marp5gkj {
  background: url(../files/design05_bg.jpg) no-repeat center top;
  height: 880px;
}

#sog87x5ctpt9marp5gkj > .design_block.block1 {
  background: url(/files/design05_ttl.png) no-repeat center top;
  top: 180px;
  left: calc(50% - -20px);
  width: 530px;
  height: 216px;
}

#sog87x5ctpt9marp5gkj > .design_block.block2 {
  top: 140px;
  left: calc(50% - 570px);
  width: 440px;
  height: 600px;
  overflow: hidden;
}

#sog87x5ctpt9marp5gkj > .design_block.block2::before {
  position: absolute;
  content: "";
  background: url(/files/design05_img.png) repeat-y center top;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: loop1 38s linear 0s infinite;
}

@keyframes loop1 {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 -1560px; /* 画像のマイナス幅 */
  }
}

#sog87x5ctpt9marp5gkj > .design_block.block3 {
  background: url(/files/design05_cover.png) no-repeat center top;
  height: 880px;
}

#sog87x5ctpt9marp5gkj .text_box {
  width: 531px;
  margin: 385px 0 0 500px;
}

/*  DB6
#ow3bxl7kno7ru94yi2pr
--------------------------------------------------------------- */
#ow3bxl7kno7ru94yi2pr {
  background: url(../files/design06_bg.png) no-repeat center top, url(../files/block_bg03.jpg) repeat center top;
  height: 1260px;
}

#ow3bxl7kno7ru94yi2pr > .design_block.block1 {
  background: url(/files/design06_ttl.png) no-repeat center top;
  top: 180px;
  left: calc(50% - 550px);
  width: 570px;
  height: 480px;
  transform: translateX(-100px);
}

#ow3bxl7kno7ru94yi2pr > .design_block.block2 {
  background: url(/files/design06_catch.png) no-repeat center top;
  top: 945px;
  left: calc(50% - -346px);
  width: 327px;
  height: 143px;
  transform: translateX(-100px);
}

#ow3bxl7kno7ru94yi2pr > .design_block.block3 {
  background: url(/files/design06_img01.jpg) no-repeat center top;
  top: 180px;
  left: calc(50% - -20px);
  width: 600px;
  height: 380px;
}

#ow3bxl7kno7ru94yi2pr > .design_block.block4 {
  background: url(/files/design06_img02.jpg) no-repeat center top;
  top: 660px;
  left: calc(50% - 950px);
  width: 840px;
  height: 420px;
}

#ow3bxl7kno7ru94yi2pr .text_box {
  width: 530px;
  margin: 654px 0 0 499px;
}

/*  DB7
#ilkrp6rfdbsahz2aoxgg
--------------------------------------------------------------- */
#ilkrp6rfdbsahz2aoxgg {
  background: url(../files/design07_bg.png) no-repeat center top, url(../files/block_bg02.jpg) repeat center top;
  height: 1130px;
}

#ilkrp6rfdbsahz2aoxgg > .design_block.block1 {
  background: url(/files/design07_ttl.png) no-repeat center top;
  top: 180px;
  left: calc(50% - -20px);
  width: 530px;
  height: 372px;
  transform: translateX(-100px);
}

#ilkrp6rfdbsahz2aoxgg > .design_block.block2 {
  background: url(/files/design07_catch.png) no-repeat center top;
  top: 552px;
  left: calc(50% - -20px);
  width: 530px;
  height: 398px;
  transform: translateX(-100px);
  z-index: 1;
}

#ilkrp6rfdbsahz2aoxgg > .design_block.block3 {
  background: url(/files/design07_img.jpg) no-repeat center top;
  top: 530px;
  left: calc(50% - 1000px);
  width: 1100px;
  height: 420px;
}

#ilkrp6rfdbsahz2aoxgg .text_box {
  width: 530px;
  margin: 170px 0 0 -70px;
}

/*  DB8
#esdgsvjwxcvwqvdyox7d
--------------------------------------------------------------- */
#esdgsvjwxcvwqvdyox7d {
  background: url(../files/design08_bg.png) no-repeat center top, url(../files/block_bg01.jpg) repeat center top;
  height: 1220px;
}

#esdgsvjwxcvwqvdyox7d > .design_block.block1 {
  background: url(/files/design08_ttl.png) no-repeat center top;
  top: 180px;
  left: calc(50% - 550px);
  width: 570px;
  height: 420px;
  transform: translateX(-100px);
}

#esdgsvjwxcvwqvdyox7d > .design_block.block2 {
  background: url(/files/design08_catch.png) no-repeat center top;
  top: 936px;
  left: calc(50% - 215px);
  width: 485px;
  height: 199px;
  transform: translateX(-100px);
  z-index: 1;
}

#esdgsvjwxcvwqvdyox7d > .design_block.block3 {
  background: url(/files/design08_img01.jpg) no-repeat center top;
  top: 180px;
  left: calc(50% - -20px);
  width: 640px;
  height: 420px;
}

#esdgsvjwxcvwqvdyox7d > .design_block.block4 {
  top: 700px;
  left: calc(50% - 1000px);
  width: 930px;
  height: 340px;
  overflow: hidden;
}

#esdgsvjwxcvwqvdyox7d > .design_block.block4::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: calc(1760px * 3);
  height: 100%;
  background: url(../files/design08_img02.png) repeat-x center top;
  animation: loop 40s linear 0s infinite;
  pointer-events: none;
  animation-direction: reverse;
}

#esdgsvjwxcvwqvdyox7d .text_box {
  width: 530px;
  margin: 690px 0 0 502px;
}

/*  DB9
#x7neaeo9ks9n0o1j7cop
--------------------------------------------------------------- */
#x7neaeo9ks9n0o1j7cop {
  background: url(../files/design09_bg.jpg) no-repeat center top;
  height: 880px;
}

#x7neaeo9ks9n0o1j7cop > .design_block.block1 {
  background: url(/files/design09_ttl.png) no-repeat center top;
  top: 180px;
  left: calc(50% - 550px);
  width: 530px;
  height: 252px;
  transform: translateX(-100px);
}

#x7neaeo9ks9n0o1j7cop > .design_block.block2 {
  background: url(/files/design09_catch.png) no-repeat center top;
  height: 880px;
  transform: translateX(-100px);
}

#x7neaeo9ks9n0o1j7cop .text_box {
  width: 530px;
  margin: 423px 0 0 -70px;
}

/*  バナー bnr
---------------------------------------------------------------------------------------------------- */
/*  バナー＞お問い合わせ #vuo0bi2olozuyku7sgll
--------------------------------------------------------------- */
#vuo0bi2olozuyku7sgll {
  overflow: hidden;
  padding-inline: 0;
  position: relative;
  box-sizing: border-box;
}

#vuo0bi2olozuyku7sgll div {
  margin-bottom: 0;
  padding-bottom: 0;
}

#vuo0bi2olozuyku7sgll .easys_content_inner {
  clip-path: inset(0);
  width: 100%;
  height: 100%;
  padding: 0;
}

#vuo0bi2olozuyku7sgll .eyecatch {
  display: block;
}

#vuo0bi2olozuyku7sgll a:hover img,
#vuo0bi2olozuyku7sgll a:hover::before {
  opacity: 1;
}

#vuo0bi2olozuyku7sgll .field_1col {
  transition: transform ease-out 0.3s;
}

#vuo0bi2olozuyku7sgll .field_1col:first-child::before,
#vuo0bi2olozuyku7sgll .field_1col:first-child::after {
  content: "";
  inset: 0;
  margin: auto;
  position: absolute;
  transition: transform 0.5s;
  z-index: 1;
  pointer-events: none;
}

#vuo0bi2olozuyku7sgll .field_1col:first-child::before {
  background: url(../files/bnr_contact_frame_out.png) no-repeat center center/100%;
  height: calc(420 / 620 * 100%);
  width: calc(420 / var(--easys_max_width) * 100%);
}

#vuo0bi2olozuyku7sgll .field_1col:first-child::after {
  background: url(../files/bnr_contact_frame_in.png) no-repeat center center/100%;
  height: calc(400 / 620 * 100%);
  width: calc(400 / var(--easys_max_width) * 100%);
}

#vuo0bi2olozuyku7sgll .field_1col:first-child:hover::after {
  transform: rotate(-90deg);
}

#vuo0bi2olozuyku7sgll .field_1col:first-child:hover + .field_1col {
  transform: scale(1.1);
}

#vuo0bi2olozuyku7sgll .field_1col:last-child {
  left: 0;
  margin-inline: auto;
  position: fixed;
  right: 0;
  top: 0;
  z-index: -1;
}

#vuo0bi2olozuyku7sgll .field_1col:last-child img {
  height: 100vh;
  object-fit: cover;
  width: 100vw;
  width: clamp(1300px, 100vw, 2000px);
}

/* 背景色設定 
---------------------------------------------------------------------------------------------------- */
#g1tti3n35c1cf5py6q2a {
  margin-bottom: 0;
  padding: 160px 0 5px;
  background: url(../files/block_bg03.jpg);
}

#mcjm4i1sgutqg0x0egdd {
  padding-bottom: 160px;
  background: url(../files/block_bg03.jpg);
}

#page_6 #rf8jvyojuils00h86sxy {
  background: none transparent;
  padding: 160px 0;
}

#rf8jvyojuils00h86sxy {
  background: url(../files/block_bg03.jpg);
  padding: 160px 0;
}
