@charset "utf-8";

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


/* =================================================================================================================== */
/* PCカスタムプロパティ */
:root {
  --basic_background_color: #ffffff;
  --body_text_color: #333333;
  --link_color: #bc9056;
  --border_color: #aaaaaa;
  --table_border_color: #aaaaaa;
  --th_background_color: transparent;
  --td_background_color: transparent;
  --th_character_color: #333333;
  --td_character_color: #333333;
  --required_color: #bc9056;
  --top_h1_color: #aaaaaa;
  --header_navigation_color: transparent;
  --top_entry_title_color: #bc9056;
  --entry_title_bg_color: #333333;
  --blog_title_color: #333333;
  --sub_entry_title_bg_color: #333333;
  --entry_title_bg_w570_color: #333333;
  --sub_entry_title_bg_w570_color: #333333;
  --half_entry_title_bg_color: #333333;
  --half_sub_entry_title_bg_color: #333333;
  --column3_title_bg_color: #333333;
  --widget_title_bg_color: #333333;
  --widget_list_bg_color: #333333;
  --footnavi_color: #bc9056;
  --address_color: #444444;
  --copy_color: #969696;
}
/* 置換以外 */
:root {
  --easys_max_width:2000;/* EASYSの最大幅(単位なし) */
  --easys_min_width:1300;/* EASYSの最小幅(単位なし) */
  --easys_naka_main_h:680;/* 中ページメインのオリジナル高さ(単位なし) */
  --easys_standard_value001:#FFFFFF;/* A～Cブロック記事内リンクボタン＞文字色 */
  --easys_standard_value002:rgba(255,255,255,0.75);/* プルダウンメニュー＞背景色 */
  --easys_standard_value003:#333333;/* プルダウンメニュー＞文字色 */
  --easys_standard_value004:#BC9056;/* プルダウンメニュー＞文字色(ホバー時) */
  --easys_standard_value005:#FFFFFF;/* カレンダーの本日＞文字色 */
  --easys_standard_value006:#FFFFFF;/* 大きな地図で見る＞文字色(ホバー時) */
  --easys_standard_value007:#FFFFFF;/* ページ遷移ボタン＞線色 */
  --easys_standard_value008:#FFFFFF;/* ページ遷移ボタン＞文字色 */
  --easys_standard_value009:#000000;/* ブログ＞ページング＞線色 */
  --easys_top_main_h:1035;/* トップメインのオリジナル高さ(単位なし) */
}
/* =================================================================================================================== */


/* ===================================================================================================================
   ■ 全体
------------------------------------------------------------------------------------------------------------------- */
html {
  background:none var(--basic_background_color);
  scroll-behavior:smooth;
  scroll-padding-top:var(--easys_access_h);
  /* background: var(--basic_background_color) url("../files/html_bg.jpg") repeat-x center top; */
  scroll-padding-top: 80px;
}

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;
  background: none transparent;
}

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

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


/*背景画像
---------------------------------------*/
body:not(#page_9)::before {
  content:" ";
  display:block;
  position:fixed;
  top: 0;
  bottom:0;
  left:0;
  right:0;
  z-index:-999;
  width: 700px;
  height: 700px;
  margin:auto;
  animation:circle linear 30s infinite;
  pointer-events:none;
  background:url(../files/html_bg.svg) no-repeat top center;
}
body#page_6::before {
  width: 700px;
  height: 700px;
  background:url(../files/html_bg_top.svg ) no-repeat top center;
}


@keyframes circle {
  0% {
    transform:rotateY(0deg);
  }
  100% {
    transform:rotateY(-360deg);
  }
}

/* ===================================================================================================================
   ■ ヘッダー
------------------------------------------------------------------------------------------------------------------- */
#branding_box {
  height: 0px;
  padding: 0;
  position: relative;
  z-index: 500;
  padding: calc(100% * (var(--easys_naka_main_h) / var(--easys_max_width))) 0 0 0;
  background: none transparent;
}
#page_6 #branding_box {
  height: 0px;
  padding: calc(100% * (var(--easys_top_main_h) / var(--easys_max_width))) 0 0 0;
  overflow: hidden;
}


#page_6 #branding_box::before {
  position: absolute;
  top: calc(100%*(455/1035));
  left: 0;
  z-index: 1;
  display: block;
  width: calc(100%*((2000*3)/2000));
  height: calc(100%*(140/1035));
  background: url(../files/pc_teaser_01_bg.png) repeat-x left top / auto 100%;
  content: '';
  animation: loop_main 40s linear 0s infinite;
  pointer-events: none;
}
@keyframes loop_main {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(calc(-100%/3));
  }
}


/*  H1テキスト
---------------------------------------------------------------------------------------------------- */
#site-description {
  margin: 0 auto;
  position: absolute;
  top: 110px;
  right: 45px;
  width: auto;
  z-index: 998;
}
#site-description a {
  display: inline;
  color: var(--top_h1_color);
}
/*  サイトロゴ
---------------------------------------------------------------------------------------------------- */

/* ヘッダーのH1～グローバルナビの高さ調整 */
#header_information {
  height: auto;
}
#page_6 #header_information {
  height: auto;
}


.main_header, .header_class {
  width:  100%;
  margin: 0 auto;
  padding: 0;
}
.main_header img, .header_class img {
  width: 350px;
  height: 110px;
  background: url(../files/main_logo.png) no-repeat top center/100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 998;
}

/*  グローバルナビ
---------------------------------------------------------------------------------------------------- */
#access {
  position:absolute;
  top:30px;
  left:0;
  z-index:590;
  width:100%;
  height:60px;
  min-width:1300px;
  max-width:2000px;
  margin:0 auto;
}
div#access .menu-header ,
div#access .menu-header #menu-gnavi {
  height:100%;
}
div#access .menu-header {
  width: 790px;
  margin: 0 165px 0 auto;
}
div#access .menu-item a {
  width:160px;
  height:60px !important;
  padding:0;
  line-height:60px !important;
  background:url("../files/topnavi.png") no-repeat center top;
}

:root {
  --gnavi01:100px;
  --gnavi02:110px;
  --gnavi03:80px;
  --gnavi04:80px;
  --gnavi05:80px;
  --gnavi06:60px;
  --gnavi07:80px;
  --gnavi08:110px;
}
div#access .gnavi11 a { width: var(--gnavi01);}
div#access .gnavi12 a { width: var(--gnavi02);}
div#access .gnavi13 a { width: var(--gnavi03);}
div#access .gnavi14 a { width: var(--gnavi04);}
div#access .gnavi15 a { width: var(--gnavi05);}
div#access .gnavi16 a { width: var(--gnavi06);}
div#access .gnavi17 a { width: var(--gnavi07);}
div#access .gnavi18 a { width: var(--gnavi08);}



div#access .gnavi11 a {
  background-position-x:left;
}
div#access .gnavi12 a {
  background-position-x:calc(var(--gnavi01) * -1);
}
div#access .gnavi13 a {
  background-position-x:calc((var(--gnavi01) + var(--gnavi02)) * -1);
}
div#access .gnavi14 a {
  background-position-x:calc((var(--gnavi01) + var(--gnavi02) + var(--gnavi03)) * -1);
}
div#access .gnavi15 a {
  background-position-x:calc((var(--gnavi01) + var(--gnavi02) + var(--gnavi03) + var(--gnavi04)) * -1);
}
div#access .gnavi16 a {
  background-position-x:calc((var(--gnavi01) + var(--gnavi02) + var(--gnavi03) + var(--gnavi04) + var(--gnavi05)) * -1);
}
div#access .gnavi17 a {
  background-position-x:calc((var(--gnavi01) + var(--gnavi02) + var(--gnavi03) + var(--gnavi04) + var(--gnavi05) + var(--gnavi06)) * -1);
}
div#access .gnavi18 a {
  background-position-x:calc((var(--gnavi01) + var(--gnavi02) + var(--gnavi03) + var(--gnavi04) + var(--gnavi05) + var(--gnavi06) + var(--gnavi07)) * -1);
}



div#access .gnavi19 a {
  background-image: url(../files/btn_blog_off.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100%;
  width: 45px;
  height: 60px;
}
div#access .gnavi20 a {
  background-image: url(../files/btn_insta_off.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100%;
  width: 45px;
  height: 60px;
}
div#access .menu-item a:hover {
  background-position-y:bottom;
}


div#access .gnavi19 a::before{
content:' ';
display:block;
position:absolute;
top:0;
left:0;
z-index:1;
width:100%;
height:100%;
background: url(../files/btn_blog_on.png) no-repeat top center/100%;
pointer-events: none;
opacity: 0;
transition: 0.3s ease 0s;
}
div#access .gnavi19 a:hover img,
div#access .gnavi19 a:hover::before{
opacity: 1;
}



div#access .gnavi20 a::before{
content:' ';
display:block;
position:absolute;
top:0;
left:0;
z-index:1;
width:100%;
height:100%;
background: url(../files/btn_insta_on.png) no-repeat top center/100%;
pointer-events: none;
opacity: 0;
transition: 0.3s ease 0s;
}
div#access .gnavi20 a:hover img,
div#access .gnavi20 a:hover::before{
opacity: 1;
}


/*固定ナビ*/
#access.fixed {
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:998;
}

#access.fixed::before {
  content:" ";
  display:block;
  position:absolute;
  top:0;
  left:0;
  z-index:-1;
  width:100%;
  height:100%;
  pointer-events:none;
  background-color:rgba(255,255,255,0.8);

  backdrop-filter:blur(10px);
}

#access.fixed .menu-header{

}


/* 下線ホバー */
div#access  .menu-item a {
  position:relative;
}
div#access .menu-item a::after {
  content:"";
  position:absolute;
  bottom:12px;
  left:0;
  width:100%;
  height:1px;
  transition:transform 0.3s;
  transform:scale(0, 1);
  transform-origin:left bottom;
  background-color:#222;
}
div#access .menu-item a:hover::after {
  transform:scale(1, 1);
}
/* プルダウンのホバー時デフォルト下線消す */
div#access ul.sub-menu li.sub-gnavi a:hover::after ,
div#access ul.sub-menu li.sub-gnavi2 a:hover::after {
  transform:scale(0, 1);
  text-decoration:none;
}
div#access .gnavi20 a::after,
div#access .gnavi19 a::after,
div#access ul.sub-menu li.sub-gnavi a::after ,
div#access ul.sub-menu li.sub-gnavi2 a::after {
display: none;
}


/*プルダウン表示ギミック
---------------------------------------------------------------------------------------------------- */
div#access #menu-gnavi > .menu-item > ul.sub-menu {
  position:absolute;
  top: 70px;
  left:0;
  width: 180px;
  min-height: 100px;
  border-radius: 5px;
  overflow: hidden;
  visibility:hidden;
  transition:all 0.4s ease 0s;
  transform:translateY(-1rem);
  opacity:0;
  color:#222;
  background-color:transparent;
  box-shadow:none;
  display: block;
}

div#access #menu-gnavi > .menu-item > ul.sub-menu::before {
  content:" ";
  display:block;
  position:absolute;
  top: 0;
  bottom:0;
  left:0;
  right:0;
  z-index:-1;
  width: 100%;
  height: 100%;
  margin:auto;
  pointer-events:none;
  background-color:rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
}


div#access #menu-gnavi > .menu-item:hover > ul.sub-menu  {
  visibility:visible;
  transform:translateY(0);
  opacity:1;
}
div#access #menu-gnavi > .menu-item > ul > li {
  position:relative;
  bottom:0;
  height:0;
  height:50px;
  min-width:auto;
  margin:0;
  overflow:hidden;
  border:none;
  text-align: left;
}


div#access #menu-gnavi > .menu-item > ul > li a {
    text-align: left;
}
div#access #menu-gnavi > .menu-item:hover > ul > li a{
}

div#access #menu-gnavi > .menu-item {
  box-sizing: border-box;
}


/* プルダウンの装飾修正 */
div#access ul.sub-menu li.sub-gnavi a,
div#access ul.sub-menu li.sub-gnavi2 a,
div#access ul.sub-menu li.sub-gnavi a:hover,
div#access ul.sub-menu li.sub-gnavi2 a:hover {
  background: none transparent!important;
  color: #cccccc;
}

div#access ul.sub-menu li.sub-gnavi2 a {
  height: 90px;
  color: #ffffff;
  text-align: left;
  line-height: 90px;
}
div#access ul.sub-menu li.sub-gnavi2 a:hover {
  text-decoration: none;
}

#menu-item-84  > ul > li a::after,
#menu-item-35  > ul > li a::after,
#menu-item-32  > ul > li a::after {
  content:" ";
  display:block;
  position:absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  z-index:1;
  width:11px;
  height:9px;
  pointer-events:none;
  transform: rotate(0deg);
  background:url(../files/submenu_link_btn_arr.png) no-repeat top center;
}

#menu-item-84  > ul > li a:hover::after,
#menu-item-35  > ul > li a:hover::after,
#menu-item-32  > ul > li a:hover::after{
  animation-name:iconArrow;
  animation-duration: .5s;
  animation-timing-function: cubic-bezier(.65,.01,.3,.97);
}

@keyframes iconArrow {
  0% {
      transform: translate(0);
      opacity: 1
  }

  40% {
      opacity: 0
  }

  49.9% {
      transform: translate(50%);
      opacity: 0
  }

  50% {
      transform: translate(-50%);
      opacity: 0
  }

  to {
      transform: translate(0);
      opacity: 1
  }
}


/* Gナビ上部固定(最大2000pxを維持)
div#access.fixed {
  position: fixed;
  padding: 0;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-idex:999;
}
div#access.fixed .menu-header {
  position: relative;
  float: none;
  margin: 0 auto;
  max-width: calc(var(--easys_max_width)*1px);
  width: 100%;
  background-color: rgba(22,69,162,0.85);
}
div#access.fixed .menu-header #menu-gnavi {
  float: right;
  margin-right: 10px;
}
*/

/* プルダウンメニューのサイズ */
#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);
}

/*  メイン画像
---------------------------------------------------------------------------------------------------- */
#main_teaser,
#video_teaser,
#jquery_slider_pc {
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 99;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
#main_teaser,
#video_teaser #video_teaser_inner,
#jquery_slider_pc .viewer {
  display: block;
  margin: 0 auto;
  min-width: calc(var(--easys_min_width)*1px);
  max-width: calc(var(--easys_max_width)*1px);
}
#main_teaser img,
#video_teaser #video_teaser_inner video,
#jquery_slider_pc .viewer img {
  width: 100%;
}


/*メインレスポンシブなし
---------------------------------------*/
body{
  background-size: auto;
}
#branding_box {
 padding: calc(var(--easys_naka_main_h) * 1px) 0 0 0;
}

#main_teaser {
  overflow:hidden;
}


#main_teaser img {
  position:relative;
  top:0;
  width:960px;
  height: var(--easys_naka_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: 630px;
  background: url(../files/footer_bg.png) no-repeat center top;
}
#footer_box {
  height: 630px;
  background: none transparent;
}


/*  フッターナビ
---------------------------------------------------------------------------------------------------- */
#footer_sitemap_block {
  padding: 0;
  position: absolute;
  top: 380px;
  left: 0px;
  width: 100%;
}

#footer_sitemap_block #footer-widget-area {
  display: block;
  width: 990px;
  text-align: right;
}

#footer-widget-area .widget-area {
}

#footer_sitemap_block #footer-widget-area .widget-area ul.menu {
  border-color: var(--footnavi_color);
}
#footer_sitemap_block #footer-widget-area .widget-area .menu-item a {
  border-color: var(--footnavi_color);
  color: var(--footnavi_color);
  padding: 0 10px;
}
#footer_sitemap_block #footer-widget-area .widget-area .menu-item a:hover {
  background-color: transparent;
}


/*  フッター情報
---------------------------------------------------------------------------------------------------- */
.footer_infomation {
  display:block;
  width:960px;
  margin:0 auto;
}
#footer_information .entry-post {
  width:100%;
  margin: 280px 0 0;
  text-align: left;
  color:var(--address_color);
}


/*  フッターSNSボタン
---------------------------------------------------------------------------------------------------- */
#footer_sns_btn {
  margin: 20px auto 0;
  /* 絶対値指定する時
  position: absolute;
  bottom: 130px;
  left: 50%;
  margin: 0;
  transform: translateX(-50%);
  */
}
#footer_sns_btn .footer_sns_inner {
  width: 250px;
  height: 25px;
}
#footer_sns_btn div {
  width: 25px;
  height: 25px;
}
#footer_sns_btn div a:hover {
  opacity: 0.8;
}



/*  コピーライト
---------------------------------------------------------------------------------------------------- */
#copyright {
  color: var(--copy_color);
  position: absolute;
  bottom: 150px;
  right: calc(50% - 480px);
}


/*  サイドメニュー
---------------------------------------------------------------------------------------------------- */
.fixed_btn {
  z-index: 1000;
}

.fixed_btn div,
.fixed_btn div a {
  width: 55px;
  height: 50px;
}

.fixed_btn #fixed_btn_gtn,
.fixed_btn #fixed_btn_gtn a {
  height: 150px;
}

#float_top_btn {
  bottom: 20px;
  position: fixed;
  right: 20px;
  z-index: 999;
}

/*  スクロールトップ
---------------------------------------------------------------------------------------------------- */
#float_top_btn a:hover img {
  opacity: 0.8;
}


/* ===================================================================================================================
   ■ コンテンツ
------------------------------------------------------------------------------------------------------------------- */
#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: 100px;
  line-height: 100px;
}
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);
}
/* 見出しリンクボタン */
.entry_title span.read_more_btn a,
.entry_title span.read_more_btn a:hover {
  background-image: url(../files/read_more_btn.png);
}
.entry_title span.read_more_btn a:hover {
  opacity: 0.8;
}
* .mid_entry_title {
  background-image: url(../files/entry_title_bg_w570.png);
  font-size: 20px;
}
* .mid_entry_title,
* .mid_entry_title a {
  color: var(--entry_title_bg_w570_color);
}

/* B-09、B-10など幅半分ブロックの見出し用 */
* .half_entry_title,
* .short_entry_title {
  background-image: url(../files/half_entry_title_bg.png);
}
* .half_entry_title,
* .half_entry_title a,
* .short_entry_title,
* .short_entry_title a {
  color: var(--half_entry_title_bg_color);
}

* .half_sub_entry_title,
.short_sub_entry_title {
  background-image: url(../files/half_sub_entry_title_bg.png);
}
* .half_sub_entry_title,
* .half_sub_entry_title a,
.short_sub_entry_title,
.short_sub_entry_title a {
  color: var(--half_sub_entry_title_bg_color);
}



/* B-03など小見出し用 */
* .sub_entry_title {
  background: url(../files/sub_entry_title_bg.png) no-repeat scroll left top transparent;
  color: var(--sub_entry_title_bg_color);
}
/*
* .sub_entry_title h4 {
  フォントサイズはこちら
}
*/
* .sub_entry_title a:link,
* .sub_entry_title a:visited,
* .sub_entry_title a:hover,
* .sub_entry_title a:active {
  color: var(--sub_entry_title_bg_color);
}
/* 小見出しリンクボタン */
.sub_entry_title span.read_more_btn a,
.sub_entry_title span.read_more_btn a:hover {
  background-image: url(../files/sub_read_more_btn.png);
}
.sub_entry_title span.read_more_btn a:hover {
  opacity: 0.8;
}
* .mid_sub_entry_title {
  background-image: url(../files/sub_entry_title_bg_w570.png);
  font-size: 20px;
}
* .mid_sub_entry_title,
* .mid_sub_entry_title a {
  color: var(--sub_entry_title_bg_w570_color);
}

/* C-01など3列表示インラインタイトル用 */
* .inline_title {
  background-image: url(../files/column3_title_bg.png);
}
* .inline_title,
* .inline_title a {
  color: var(--column3_title_bg_color);
}

/* クーポンの本文見出しなど、固定幅でないインラインタイトル用 */
.coupon_data .inline_title,
.c_04 .inline_title,
.i_01 .inline_title,
.j_01 .inline_title {
  padding: 10px;
  height: auto;
  border: 1px solid var(--table_border_color);
  border-radius: 5px;
  background: none var(--th_background_color);
  color: var(--th_character_color);
  text-align: left;
  font-size: 15px;
  line-height: 1.7;
}

/* 詳細画面の下部「コメント」見出し */
.indent_border {
  width: 685px;
  border-color: var(--link_color);
}


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

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


/*  テーブル
---------------------------------------------------------------------------------------------------- */
.table_area td.td_name,
.table_area td.td_value,
body.coupon .table_area td.td_name,
body.coupon .table_area td.td_value,
table.iqfm-table th,
table.iqfm-table td {
  border-color: var(--table_border_color);
  border-right: none;
  border-left: none;
  background: none transparent;
}
table.table_area td.td_name,
body.coupon table.table_area td.td_name,
.iqfm-table th {
  background: none transparent;
}
table.table_area td.td_value,
body.coupon table.table_area td.td_value,
.iqfm-table td,
.custom-wpcf7c-confirmed td,
input.wpcf7c-conf,
textarea.wpcf7c-conf {
  background: none transparent;
}
/* メール送信後メッセージボックスのボーダー（デフォルト：グリーン） */
div.wpcf7-mail-sent-ok {
  border-color: var(--border_color) !important;
}

/* Dメニュー下線 */
.td_cell {
  border-color: var(--border_color);
  vertical-align: top;
}

.table_area table tr td {
  border: solid 1px var(--table_border_color) !important;
  border-right: none !important;
  border-left: none !important;
  background: none transparent;
}



/*  ページ遷移ボタン（詳細ブロックやページ送りのナビ用）
---------------------------------------------------------------------------------------------------- */
.tablenav {
  padding: 1em 0;
}
a.page-numbers,
.tablenav .current,
.permalink_in a,
.pageback a,
.page_up a {
  border-style: solid;
  border-color: var(--link_color);
  background: none transparent;
  color: var(--link_color) !important;
}
/*.permalink_in a:link,
.permalink_in a:visited,
.pageback a:link,
.pageback a:visited {
}*/
.tablenav .next:link,
.tablenav .next:visited,
.tablenav .prev:link,
.tablenav .prev:visited {
  border: 1px solid var(--easys_standard_value007);
  background: none transparent;
}
.tablenav .next:hover,
.tablenav .next:active,
.tablenav .prev:hover,
.tablenav .prev:active {
  border-color: var(--link_color);
  background-color: var(--link_color);
}
.tablenav .current,
a.page-numbers:hover,
.permalink_in a:hover,
.permalink_in a:active,
.pageback a:hover,
.pageback a:active,
.page_up a:hover,
.page_up a:active {
  border-style: solid;
  border-color: var(--link_color);
  background: none var(--link_color);
  color: var(--easys_standard_value008) !important;
} 



/*  ブロック
---------------------------------------------------------------------------------------------------- */
/* 各ブロック点線 */
.border_margin,
.anchor_list ul li,
.cu_mail_block,
.blog_post,
.list_block .list_box {
  border-color: var(--border_color);
}


/* Cブロック */
.c_01,
.c_02,
.c_03,
.c_05,
.c_06 {
  display: inline-block;
  padding: 0 0 20px;
  width: 100%;
}
.c_04 {
  margin: 0 0 20px;
}


/* Dブロック */
.menu-list table {
  border-collapse: separate;
}


/* Gブロック */
.g_01 .sub_entry_title a,
.g_02 .sub_entry_title a {
  text-decoration: underline;
}
.g_01 .sub_entry_title a:hover,
.g_02 .sub_entry_title a:hover {
  text-decoration: none;
}


/* Kブロック */
.k_03 .date_area {
  font-weight: bold;
  font-size: 13px;
}
.k_03 .news_small_text {
  font-size: 12px;
  line-height: 1.7;
}


/* Z-D ブログRSS */
.z_d1 {
  margin: 0 0 20px;
}


/* Z-E リンクバナー */
.banner_box {
  text-align: center;
}
.banner_box img {
  max-width: 100%;
  width: auto;
}



/* Z-I スライドショー */
.z_j1 {
  margin: 0 0 15px;
}


/* Z_L お知らせブロック */
.Z_l1 .date_area {
  font-weight: bold;
  font-size: 13px;
}
.Z_l1 .news_small_text {
  font-size: 12px;
}


/* Z_M タブブロック */
.z_m1 .link_list {
  font-size: 13px;
  line-height: 1.5;
}
.z_m1 div.link_list {
  margin-bottom: 10px;
}
div.link_list a {
  border: 1px solid var(--link_color);
  background-color: transparent;
  color: var(--link_color);
}
div.link_list a:hover {
  border: 1px solid var(--link_color);
  background-color: var(--link_color);
  color: #ffffff;
}


.faq-title {
  background-color: var(--link_color);
  color: #ffffff;
  font-weight: normal;
}



/*  メールフォーム
---------------------------------------------------------------------------------------------------- */
.iqfm-table td input[type="text"]:not([size]) {
  width: 75%;
}
/* 必須項目 */
.iqfm-req_color {
  color: var(--required_color);
}
.iqfm-table button,
.iqfm-table input[type="reset"],
.iqfm-table input[type="button"],
.iqfm-table input[type="submit"] {
  line-height: 1.7;
}
.iqfm-table .post_data {
  margin: 0 0 30px;
}



/*  クーポンページ
---------------------------------------------------------------------------------------------------- */
/*body.coupon {
}*/
.coupon_print_block .print_header,
h1.print_page_title,
.coupon_box table tr td.coupon_data,
.coupon_box table tr td.coupon_meta_title,
.coupon_box table tr td.coupon_meta {
  border-color: var(--table_border_color);
}
/* 有効期限の部分 */
.coupon_box table tr td.coupon_meta_title {
  width: 8em;
  background-color: var(--th_background_color);
  color: var(--th_character_color);
}
.coupon_box table tr td.coupon_meta {
  background-color: var(--td_background_color);
  color: var(--td_character_color);
}
.e-04 .menu_area td {
  height: 3.5em;
}
.e-04 .menu_area .parent_title {
  height: auto;
  font-size: 120%;
}



/*  ブログ
---------------------------------------------------------------------------------------------------- */
#nav-below div {
  border-color: var(--easys_standard_value009);
}
#nav-below .nav-next {
  padding: 0 0 0 10px;
}

#blog_main .entry-title {
  padding: 15px 20px 15px 20px;
  height: auto;
  background-image: url(../files/blog_title.png);
  background-position: center bottom;
  line-height: 1.5;
}
#blog_main .entry-title,
#blog_main .entry-title a {
  color: var(--blog_title_color);
}

.img_size_thumb {
  overflow: hidden;
  width: 150px;
  height: 150px;
}


/*  地図
---------------------------------------------------------------------------------------------------- */
#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: "";
}


/*下記個人追記
---------------------------------------*/

/* メール投稿ブロック画像幅調整 */
.img_size_thumb {
  height:150px;
}

small {
  box-sizing:border-box;
}

.flow_arr {
  height:40px;
}

.grecaptcha-badge {
  visibility:hidden;
}


/*画面幅2000px以上の時
---------------------------------------*/
@media screen and (min-width: 2000px) {
  .main_header img.fixed {
    left:calc(50% - 1000px);
  }
  #float_top_btn {
    right:calc(50% - 980px);
  }
}


/*no_margin
--------------------------------------- */
/* 対象のマージンを消す */
.easys_content.no_margin {
  margin:0;
}

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

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


/*見出し
---------------------------------------*/
/* .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{
   font-family: '游明朝','Yu Mincho','YuMincho','Hiragino Mincho ProN','Hiragino','Mincho Pro','HGS明朝E','メイリオ',serif;
    font-family:'Yu Gothic', '游ゴシック', 'YuGothic', '游ゴシック体', 'ヒラギノ角ゴ Pro W3', 'メイリオ',sans-serif;
} */


/*ローディング調整
---------------------------------------*/

#progress {
  background-image: url(../files/loading_bg.jpg);
  background-repeat: repeat-y;
  background-position: center top;
  background-size: cover;
}

#progress > #progress_image {

}

#progress > #progress_bar {

}

#progress > #progress_text {

}


/*ホバーギミック共通
---------------------------------------------------------------------------------------------------- */

.hov_line {
  display:block;
  position:absolute!important;
  top:0;
  left:0;
  width:100%;
  height:100%;
}

.hov_line::before {
  content:"";
  position:absolute;
  bottom: 20px;
  left:0;
  width:100%;
  height:1px;
  background-color:#CCC;
}

.hov_line:after {
  content:"";
  position:absolute;
  bottom: 20px;
  right:0;
  width:0;
  height:1px;
  transition:width 0.3s ease;
  background-color:#222;
}
a:hover .hov_line:after {
  left:0;
  width:100%;
}


/*扉設定
---------------------------------------*/
#page_9 #branding_box,
#page_9 #main_teaser,
#page_9 #access,
#page_9 #footer_block,
#page_9 .main_header {
  display:none;
}

#page_9 #outer_block {
  padding:0;
}
#page_9 {
  position:relative;
  background: none transparent;
}


#page_9 #container_top {
  width:100%;
  height:100%;
}
#page_9 #main {
  display:block;
  position:relative;
  width:100%;
  height:100vh;
}



/*バナー＞扉（※）
vov62pysvnciwlc2deb1
--------------------------------------- */
#vov62pysvnciwlc2deb1 div {
  margin-bottom:0;
  padding-bottom:0;
}
#vov62pysvnciwlc2deb1 {
  position:relative;
  height:100vh;
}
#vov62pysvnciwlc2deb1 .easys_content_inner {
  width:100%;
  height:100%;
}
#vov62pysvnciwlc2deb1 *[class*="field_"] {
  position:relative;
  width:auto!important;
}

#vov62pysvnciwlc2deb1 .img_display ,
#vov62pysvnciwlc2deb1 .eyecatch {
  width:100%;
  height:100%;
}

#vov62pysvnciwlc2deb1 .img_display {
    background-image:url(../files/tobira_bg.png);
    background-repeat:no-repeat;
    background-position:center top;
    background-size:auto;
    display:flex;
    position:absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    width: 960px;
    height:570px;
    margin:auto;
    flex-wrap:wrap;
    padding-top: 115px;
    box-sizing: border-box;
    justify-content: space-between;
}

#vov62pysvnciwlc2deb1 .eyecatch  a {
  display:block;
  width:100%;
  height:100%;
}


#vov62pysvnciwlc2deb1 .eyecatch a:hover img {
  opacity:1;
}



/*セカンドメイン
lpjyfwi3p6botpz5xc9e
--------------------------------------- */
#lpjyfwi3p6botpz5xc9e {
  position:relative;
  height: 1050px;
  background: url(../files/secondmain_bg.png) no-repeat center top / cover;
}
#lpjyfwi3p6botpz5xc9e div {
  margin-bottom:0;
  padding-bottom:0;
}

#lpjyfwi3p6botpz5xc9e .easys_content_inner ,
#lpjyfwi3p6botpz5xc9e .img_display ,
#lpjyfwi3p6botpz5xc9e .field_1col ,
#lpjyfwi3p6botpz5xc9e .eyecatch {
  width:100%;
  height:100%;
}

#lpjyfwi3p6botpz5xc9e .eyecatch a {
  display:block;
  position:absolute;
  top: 865px;
  left:0;
  right: 0;
  margin: auto;
  z-index:10;
  width:560px;
  height:80px;
  overflow:hidden;
  border: solid 1px #ccc;
}


#lpjyfwi3p6botpz5xc9e .eyecatch a:hover img{
  opacity: 1;
}

#lpjyfwi3p6botpz5xc9e .hov_line::before,
#lpjyfwi3p6botpz5xc9e .hov_line::after{
bottom: 12px;
}

#lpjyfwi3p6botpz5xc9e .design_block.block1 {
  top:360px;
  left:calc(50% - 650px);
  width:433px;
  height: 470px;
  transform:translateY(100px);/* 下からフェードイン */
  background:url(../files/secondmain_img01.png) no-repeat center top;
}

#lpjyfwi3p6botpz5xc9e .design_block.block2 {
  top:360px;
  left:0;
  right: 0;
  margin: auto;
  width:433px;
  height: 470px;
  transform:translateY(100px);/* 下からフェードイン */
  transition-delay: 0.3s;
  background:url(../files/secondmain_img02.png) no-repeat center top;
}


#lpjyfwi3p6botpz5xc9e .design_block.block3 {
  top:360px;
  left:calc(50% + 215px);
  width:433px;
  height: 470px;
  transform:translateY(100px);/* 下からフェードイン */
  transition-delay: 0.6s;
  background:url(../files/secondmain_img03.png) no-repeat center top;
}

#lpjyfwi3p6botpz5xc9e .design_block.block4 {
  top: 95px;
  left:0;
  right: 0;
  margin: auto;
  width:560px;
  height: 220px;
  background:url(../files/secondmain_ttl.png) no-repeat center top;
}


/*バナー＞お問い合わせ（※top）
jfewkf8tegmqy1ui2uc5
--------------------------------------- */
#jfewkf8tegmqy1ui2uc5 div {
  margin-bottom:0;
  padding-bottom:0;
}
#jfewkf8tegmqy1ui2uc5 {
  position:relative;
  height: 740px;
}

/* transformがあれば初期値にする */
#jfewkf8tegmqy1ui2uc5 .easys_content_inner {
  position:relative;
  top:0;
  left:calc(50% - 1000px);
  width:2000px;
  height:100%;
  transform:none;
  -webkit-clip-path:inset(0);
          clip-path:inset(0);
}

#jfewkf8tegmqy1ui2uc5  a {
  display:block;
  position:absolute;
  top: 430px;
  left: 0;
  right: 0;
  margin: auto;
  width:260px;
  height:40px;
}

#jfewkf8tegmqy1ui2uc5 a:hover img{
  opacity: 1;
}

#jfewkf8tegmqy1ui2uc5 .easys_content_inner::before {
  content:" ";
  display:block;
  position:fixed;
  top:0;
  left:0;
  z-index:-100;
  width:100vw;
  height:100vh;
  pointer-events:none;
  background:url(../files/bnr_contact_para.jpg) no-repeat top center/cover;

  object-fit:cover;
}


#jfewkf8tegmqy1ui2uc5 .easys_content_inner::after{
content:' ';
display:block;
position:absolute;
top:0;
left:0;
z-index:1;
width:100%;
height:100%;
background: url(../files/bnr_contact_cover.png) no-repeat top center/cover;
pointer-events: none;
 }
#jfewkf8tegmqy1ui2uc5 .hov_line::before,
#jfewkf8tegmqy1ui2uc5 .hov_line::after{bottom: 0px;}




/*バナー＞免疫細胞治療/幹細胞治療/自費点滴/複合治療（※info）
g8vwrze0ixpv4vwhyduz
--------------------------------------- */
#g8vwrze0ixpv4vwhyduz div {
  margin-bottom:0;
  padding-bottom:0;
}
#g8vwrze0ixpv4vwhyduz {
  position:relative;
}

#g8vwrze0ixpv4vwhyduz .easys_content_inner {
  width:960px;
}


#g8vwrze0ixpv4vwhyduz *[class*="field_"] {
  width:470px!important;
  margin-bottom: 20px;
}

#g8vwrze0ixpv4vwhyduz .img_display ,
#g8vwrze0ixpv4vwhyduz .eyecatch {
  width:100%;
  height:100%;
}


#g8vwrze0ixpv4vwhyduz  a {
  display:block;
  position:relative;
  width:100%;
  height:100%;
  box-sizing:border-box;
  border:solid 1px #CCCCCC;
}

#g8vwrze0ixpv4vwhyduz a:hover img {
  opacity:1;
}


#g8vwrze0ixpv4vwhyduz .hov_line::before ,
#g8vwrze0ixpv4vwhyduz .hov_line::after {
  bottom:12px;
}


/*====================================================
ここからデザインブロック
===================================================== */
/* 親 */
#f2jidg8fj1a2pasip6s2 ,
#a40hussteh7czebj47bf ,
#rz7fn0svia0kjtr001e7 ,
#yygwan5mbc8zy4asj0hj ,
#siqo1soap8nt3g2rwehm ,
#nkw9o70k0uutin2jkzd9 {
  position:relative;
}
/* easys_content_inner前面表示設定 */
#f2jidg8fj1a2pasip6s2 .easys_content_inner ,
#a40hussteh7czebj47bf .easys_content_inner ,
#rz7fn0svia0kjtr001e7 .easys_content_inner ,
#yygwan5mbc8zy4asj0hj .easys_content_inner ,
#siqo1soap8nt3g2rwehm .easys_content_inner ,
#nkw9o70k0uutin2jkzd9 .easys_content_inner  {
  position:relative;
  z-index:100;
}
/* PC 背景付きブロックの記事画像 非表示  */
#f2jidg8fj1a2pasip6s2 .entry_post:first-of-type .eyecatch ,
#a40hussteh7czebj47bf .entry_post:first-of-type .eyecatch ,
#rz7fn0svia0kjtr001e7 .entry_post:first-of-type .eyecatch ,
#yygwan5mbc8zy4asj0hj .entry_post:first-of-type .eyecatch ,
#siqo1soap8nt3g2rwehm .entry_post:first-of-type .eyecatch ,
#nkw9o70k0uutin2jkzd9 .entry_post:first-of-type .eyecatch  {
  display:none;
}
/*  float 解除 */
#f2jidg8fj1a2pasip6s2 .entry_post:first-of-type .float_left ,
#f2jidg8fj1a2pasip6s2 .entry_post:first-of-type .float_right ,
#a40hussteh7czebj47bf .entry_post:first-of-type .float_left ,
#a40hussteh7czebj47bf .entry_post:first-of-type .float_right ,
#rz7fn0svia0kjtr001e7 .entry_post:first-of-type .float_left ,
#rz7fn0svia0kjtr001e7 .entry_post:first-of-type .float_right ,
#yygwan5mbc8zy4asj0hj .entry_post:first-of-type .float_left ,
#yygwan5mbc8zy4asj0hj .entry_post:first-of-type .float_right ,
#siqo1soap8nt3g2rwehm .entry_post:first-of-type .float_left ,
#siqo1soap8nt3g2rwehm .entry_post:first-of-type .float_right ,
#nkw9o70k0uutin2jkzd9 .entry_post:first-of-type .float_left ,
#nkw9o70k0uutin2jkzd9 .entry_post:first-of-type .float_right  {
  float:none;
}
.easys_content .sub_post .float_left {
  float:left !important;
}
.easys_content .sub_post .float_right {
  float:right !important;
}
/* ＝＝＝デザインブロックタイトル消去＝＝＝ */
/* #f2jidg8fj1a2pasip6s2 *[class*="title"] ,
#a40hussteh7czebj47bf *[class*="title"] ,
#rz7fn0svia0kjtr001e7 *[class*="title"] ,
#yygwan5mbc8zy4asj0hj *[class*="title"] ,
#siqo1soap8nt3g2rwehm *[class*="title"] ,
#nkw9o70k0uutin2jkzd9 *[class*="title"]  {
  display:none;
} */


#rz7fn0svia0kjtr001e7 *[class*="title"] ,
#yygwan5mbc8zy4asj0hj *[class*="title"] ,
#siqo1soap8nt3g2rwehm *[class*="title"] ,
#nkw9o70k0uutin2jkzd9 *[class*="title"]  {
  display:none;
}


#f2jidg8fj1a2pasip6s2 .post_data,
#a40hussteh7czebj47bf .post_data,
#rz7fn0svia0kjtr001e7 .post_data,
#yygwan5mbc8zy4asj0hj .post_data,
#siqo1soap8nt3g2rwehm .post_data,
#nkw9o70k0uutin2jkzd9 .post_data{
}


/* ＝＝＝デザインブロックボタン共通＝＝＝ */
#f2jidg8fj1a2pasip6s2 .main_btn ,
#a40hussteh7czebj47bf .main_btn ,
#rz7fn0svia0kjtr001e7 .main_btn ,
#yygwan5mbc8zy4asj0hj .main_btn ,
#siqo1soap8nt3g2rwehm .main_btn ,
#nkw9o70k0uutin2jkzd9 .main_btn  {
  display:block;
  position:absolute;
  top:0;
  left:0;
  z-index:999;
  margin:0;
  padding:0;
}
/* デザインブロックスクロールギミック共通 */
.design_block {
  position:absolute;
  top:0;
  left:calc(50% - 1000px);
  width:2000px;
  height:100%;
  transition:1s ease 0s;
  pointer-events:none;
  opacity:0;
  background-repeat:no-repeat;
  background-position:center top;
  background-size:auto;
}

.design_block.moved {
  transform:translate(0px, 0px)rotate3d(0, 0, 1, 0)!important;
  opacity:1;
  filter: blur(0px)!important;
  clip-path: inset(0) !important;
  -webkit-clip-path: inset(0) !important;
}
/*全体フェードイン　Dブロックは解除*/
.easys_content_inner:not(.nd_01 .easys_content_inner) {
  transition:all 1s ease 0s;
  transform:translate(0px, 100px);
  opacity:0;
}
.easys_content_inner.moved:not(.nd_01 .easys_content_inner.moved) {
  transform:translate(0px, 0px);
  opacity:1;
}

/*線表示
---------------------------------------*/
a .line {
  background-color: #222;
  position: absolute;
  transition: .3s;
}
a .line.top,
a .line.bottom {
  width: 0px;
  height: 1px;
}
a .line.right,
a .line.left {
  height: 0px;
  width: 1px;
}
a:hover .line.top,
a:hover .line.bottom {
  width: 100%;
}
a:hover .line.right,
a:hover .line.left {
  height: 100%;
}
a .line.top,
a .line.right { top: 0; }
a .line.bottom,
a .line.left { bottom: 0; }
a .line.top,
a .line.left {left: 0;}
a .line.right,
a .line.bottom {right: 0;}


/*共通アニメーション
---------------------------------------*/

.ttl_gimmick {
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(to right,#333,#333 30%,#e2d6c3 55%,#fff 70%,#fff 100%);
  background-position: right center;
  background-size: 300%;
  color: transparent !important;
  opacity: 1;
  font-size: 80px!important;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0!important;
  padding: 0!important;
  height: auto;
  width: auto!important;
  font-weight: 500!important;
  overflow: visible!important;
  line-height: initial;
}



.ttl_gimmick.moved{
  -webkit-animation: txtPika 1.2s ease-in-out forwards;
  animation: txtPika 1.2s ease-in-out forwards;
}

.ttl_gimmick:nth-child(2).moved{
    animation-delay: 0.6s;
    margin: 85px auto 0!important;
}

@-webkit-keyframes txtPika {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0 0;
  }
}

@keyframes txtPika {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0 0;
  }
}

.txt{
  /* color: #333333; */
}

.en_txt {
  font-family:"Cormorant", serif;
  font-size:75px;
  font-weight:500;
  font-style:normal;
  font-optical-sizing:auto;
  letter-spacing: 0.1em;
}
.jp_txt {
  font-family:"Shippori Mincho", serif;
  font-size:18px;
  font-weight:500;
  font-style:normal;
  animation-delay: 0.3s;
}


/*DB＞私たちができること
f2jidg8fj1a2pasip6s2
--------------------------------------- */
#f2jidg8fj1a2pasip6s2 {
  height: 1495px;
  background:url(../files/design01_bg.png) no-repeat center top;
}

#f2jidg8fj1a2pasip6s2 *[class*='title']{
  left: 0;
  right: 0;
  margin: auto;
  top: 432px;
}
#f2jidg8fj1a2pasip6s2 .sub_post *[class*='title']{
  display:none;
}

#f2jidg8fj1a2pasip6s2 .sub_post{
  transition:all 1s ease 0s;
  transform:translate(0px, 100px);
  opacity:0;
}
#f2jidg8fj1a2pasip6s2 .sub_post.moved {
  transform:translate(0px, 0px);
  opacity:1;
}

#f2jidg8fj1a2pasip6s2 .text_box {
  width:600px;
  margin:100px 0 0 0px;
}
#f2jidg8fj1a2pasip6s2 .post_data {
  text-align:left;
  display: none;
}
#f2jidg8fj1a2pasip6s2 .main_btn {
  top: 1050px;
  left:0;
}
#f2jidg8fj1a2pasip6s2 .main_btn a {
  display:block;
  width:960px;
  height:80px;
  padding:0;
  text-indent:-9999px;
  border:solid 1px #CCCCCC;
  border-radius:0;
  background:url(../files/design01_btn03.png) no-repeat center top;
}
#f2jidg8fj1a2pasip6s2 .main_btn a .hov_line {
  display:none;
}

#f2jidg8fj1a2pasip6s2 .sub_post {
  position:absolute;
  top: 895px;
  width: 460px;
}



#f2jidg8fj1a2pasip6s2 .sub_post_0 {
  left:0;
}
#f2jidg8fj1a2pasip6s2 .sub_post_1 {
  right: 0px;
}


#f2jidg8fj1a2pasip6s2 .sub_post a {
  width:460px;
  height: 60px;
  padding:0;
  background-color:transparent;
  box-sizing: border-box;
  border-radius: 0;
}


#f2jidg8fj1a2pasip6s .hov_line{
  bottom: 0;
}


#f2jidg8fj1a2pasip6s2 .sub_post_0 a{
  background-image: url(../files/design01_btn01.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100%;
}

#f2jidg8fj1a2pasip6s2 .sub_post_1 a{
  background-image: url(../files/design01_btn02.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100%;
}



#f2jidg8fj1a2pasip6s2 .design_block.block1 {
  top: 560px;
  left: calc(50% - 490px);
  width: 490px;
  height: 380px;
  transform:translateY(100px);/* 下からフェードイン */
  background:url(../files/design01_img01.png) no-repeat center top;
}
#f2jidg8fj1a2pasip6s2 .design_block.block2 {
  top: 560px;
  left: calc(50% - 0px);
  width: 490px;
  height: 380px;
  transform:translateY(100px);/* 下からフェードイン */
  background:url(../files/design01_img02.png) no-repeat center top;
}


/*DB＞専門医が、あなたを支えます
a40hussteh7czebj47bf
--------------------------------------- */
#a40hussteh7czebj47bf {
  height:1100px;
  background:url(../files/design02_bg.jpg) no-repeat center top;
}

#a40hussteh7czebj47bf .headline_index_box {
  position: relative;
  z-index: 100;
}

#a40hussteh7czebj47bf *[class*='title']{
  left: 0;
  margin: auto;
  top: 313px;
}
#a40hussteh7czebj47bf .en_txt {
    letter-spacing: -0.01em;
}

#a40hussteh7czebj47bf .text_box {
  width: 300px;
  margin: 450px 0 0 0px;
  position: relative;
  z-index: 100;
}
#a40hussteh7czebj47bf .post_data {
  text-align:left;
}
#a40hussteh7czebj47bf .main_btn {
  top: 750px;
  left:0;
}

#a40hussteh7czebj47bf .main_btn a {
  display:block;
  width: 300px;
  height: 50px;
  padding:0;
  text-indent:-9999px;
  border-radius:0;
  background:url(../files/design02_btn.png) no-repeat center top;
}
#a40hussteh7czebj47bf .hov_line::after,
#a40hussteh7czebj47bf .hov_line::before{
  bottom: 0px;
}

#a40hussteh7czebj47bf .easys_content_inner {
  z-index:1;
  width: 960px;
  height:100%;
  /* padding:0 470px; */
  box-sizing:border-box;
}
#a40hussteh7czebj47bf .entry_post {
  position:relative;
  height:100%;
}
.cover_img {
  position:absolute;
  top:0;
  left: -520px;
  z-index:10;
  width:2000px;
  height:100%;
  transition:1s ease 0s;
  pointer-events:none;
  background:url(../files/design02_img.png) no-repeat center top;
  background-repeat:no-repeat;
  background-position:center top;
  background-size:auto;
}


/*スリックスライダー
---------------------------------------*/
  #links_a40hussteh7czebj47bf {
  display:flex;
  position:absolute;
  top:0;
  left:0;
  z-index:-1;
  height:100%;
  min-width:2000px; /* widthはJqueryで変更になります */
  padding-top:260px;
  box-sizing:border-box;
  overflow:hidden;
  justify-content:flex-start;
  pointer-events:none;
}
#links_a40hussteh7czebj47bf .clear_float {
  display:none;
}
#links_a40hussteh7czebj47bf .a_3col {
  width:auto !important;
  min-width:100px;
  margin-right:0 !important;
  margin-bottom:0 !important;
  padding:0 !important;
}
#links_a40hussteh7czebj47bf .a_3col ,
#links_a40hussteh7czebj47bf .lightbox_item {
  height:100%;
}
#links_a40hussteh7czebj47bf img {
  width:auto;
  height:560px;
  max-width:inherit;
}

.slick-dots {
  position:absolute;
  top:821px;
  left:430px;
  z-index:100;
  text-align:center;
}
.slick-dots .dot {
  display:inline-block;
  width:30px;
  height:2px;
  margin-right:5px;
  cursor:pointer;
  transition:background-color 0.3s;
  background-color:#CCCCCC;
}
.slick-dots .dot.active {
  background-color:#BC9056;
}

/*インタビューデザインブロック共通
---------------------------------------*/

#content .interview {
  min-height:800px;
  padding:100px 0;
}

#content .interview .sub_post *[class*="title"] {
  display:flex;
  width:480px;
  height:50px;
  box-sizing:border-box;
  font-family:"Shippori Mincho", serif;
  font-size:23px;
  font-weight:500;
  font-style:normal;
  line-height:initial;
  align-items:center;
  justify-content:flex-start;
  color:#BC9056;
  background-image:url(../files/design03-06_ttl.png);
  background-repeat:no-repeat;
  background-position:center top;
  background-size:100%;
}

#content .interview .entry_post {
  display:flex;
  width:480px;
  padding-top:150px;
  flex-wrap:wrap;
margin-bottom: 10px;
}

#content .interview .sub_post {
  width:480px;
}
#content .interview .sub_post .post_data{
line-height: 1.8;  
}

.interview .design_block.block1 {
  top:100px;
  left:calc(50% - 480px);
  width:480px;
  height: 130px;
}

.interview #sticky {
  display:block;
  position: fixed;
  top:50%;
  left:calc(50% - 0px);
  z-index:-3;
  width:1000px;
  height:900px;
  visibility:hidden;
  transition:all 0.6s ease 0s;
  transform:translateY(-50%) translateX(0px);
  opacity:0;
}
.interview.scroll_in #sticky {
  visibility:visible;
  transform:translateY(-50%) translateX(0px);
  opacity:1;
}

/*DB>山原 研一
rz7fn0svia0kjtr001e7
--------------------------------------- */

#rz7fn0svia0kjtr001e7  .design_block.block1 {
  background:url(../files/design03_ttl.png) no-repeat center top;
}

#rz7fn0svia0kjtr001e7 #sticky {
  background:url(../files/design03_img.png) no-repeat center left;
}

/*DB>井石 智也
yygwan5mbc8zy4asj0hj
--------------------------------------- */
#yygwan5mbc8zy4asj0hj .entry_post {
  padding-left:480px;
}

#content #yygwan5mbc8zy4asj0hj #sticky {
  left:calc(50% - 520px);
}

#yygwan5mbc8zy4asj0hj .design_block.block1 {
  left:calc(50% - 0px);
  width:480px;
  height: 130px;
  background:url(../files/design04_ttl.png) no-repeat center top;
}

#yygwan5mbc8zy4asj0hj #sticky {
  background:url(../files/design04_img.png) no-repeat center left;
}

/*DB>辻野  吉昭
siqo1soap8nt3g2rwehm
--------------------------------------- */
#siqo1soap8nt3g2rwehm .design_block.block1 {
  height: 150px;
  background:url(../files/design05_ttl.png) no-repeat center top;
}

#siqo1soap8nt3g2rwehm #sticky {
  background:url(../files/design05_img.png) no-repeat center left;
}


/*DB＞林 周平
nkw9o70k0uutin2jkzd9
--------------------------------------- */
#nkw9o70k0uutin2jkzd9 .entry_post {
  padding-left:480px;
}
#content #nkw9o70k0uutin2jkzd9 #sticky {
  left:calc(50% - 520px);
}
#nkw9o70k0uutin2jkzd9 .design_block.block1 {
  left:calc(50% - 0px);
  height:110px;
  background:url(../files/design06_ttl.png) no-repeat center top;
}

#nkw9o70k0uutin2jkzd9 #sticky {
  background:url(../files/design06_img.png) no-repeat center left;
}


/*翻訳
---------------------------------------*/
#page_9 #glt-translate-trigger {
  display:none;
}

body #glt-translate-trigger {
  position:absolute !important;
  top:30px;
  left:initial;
  right:45px;
  z-index:998;
  width:120px;
  height:60px;
  padding:0;
  text-indent:-99999px;
  background:url(../files/btn_translate_off.png) no-repeat center center;
  box-shadow:none;
}


body #glt-translate-trigger:hover {
  opacity:1;
}

body #glt-translate-trigger::before {
  content:" ";
  display:block;
  position:absolute;
  top:0;
  left:0;
  z-index:1;
  width:100%;
  height:100%;
  transition:0.3s ease 0s;
  pointer-events:none;
  opacity:0;
  background:url(../files/btn_translate_on.png) no-repeat top center/100%;
}
body #glt-translate-trigger:hover::before {
  opacity:1;
}

body.fixed #glt-translate-trigger {
  position:fixed !important;
  top:0;
  transform:none!important;
}
body .tool-container.tool-top {
  position:absolute!important;
  top:110px !important;
  left:initial!important;
  right:20px!important;
  width:140px;
}
body.fixed .tool-container.tool-top {
  position:fixed!important;
  top:80px !important;
  left:initial!important;
}

body .tool-container.tool-top .arrow {
  top:-14px;
  bottom:initial;
  left:0!important;
  right:0!important;
  margin:auto;
}

@media screen and (max-width: 1300px) {
  body.fixed  #glt-translate-trigger {
    left:1135px;
    right:initial;
  }
  body.fixed .tool-container.tool-top {
    left:1110px!important;
  }
}

@media screen and (min-width: 2000px) {
  body.fixed  #glt-translate-trigger {
    right:calc(50% - 955px);
  }
  body .tool-container.tool-top {
  }
  body.fixed .tool-container.tool-top {
    right:calc(50% - 980px)!important;
  }
}



/*修正仮追記修正終わり次第削除予定
スリックスライダー スライダーJS停止中　20250619
---------------------------------------*/
/* #links_a40hussteh7czebj47bf {
padding-left: 517px;
}

#links_a40hussteh7czebj47bf > div:not(:nth-child(1)){
display: none;
} */



/*追加修正　インタビューページを折りたたむ
---------------------------------------*/

/* 質問タイトル全体 */
/* .pull_box .sub_post [class*="title"] {
  position: relative;
  cursor: pointer;
  font-weight: 400;
} */

/* プラスアイコン（十字）を擬似要素で追加 */
/* .pull_box .sub_post [class*="title"]::after {
  content: "+";
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  font-size: 1.5rem;
  transition: transform 0.3s ease, content 0.3s ease;
} */

/* 開いているときはマイナスに変化 */
/* .pull_box .sub_post [class*="title"].open::after {
  content: "−";
  transform: translateY(-50%) rotate(180deg);
} */



/*バナー＞アンカーリンク（※）
ggceejd9f8whw4f7iwdi
--------------------------------------- */
#ggceejd9f8whw4f7iwdi div {
  margin-bottom:0;
  padding-bottom:0;
}
#ggceejd9f8whw4f7iwdi {
  position:relative;
}

#ggceejd9f8whw4f7iwdi .easys_content_inner {
  width:1300px;
  box-sizing:border-box;
}


#ggceejd9f8whw4f7iwdi *[class*="field_"] {
  width:318px!important;
  margin:0;
}

#ggceejd9f8whw4f7iwdi .img_display {
  display:flex;
  justify-content:space-between;
}
#ggceejd9f8whw4f7iwdi .eyecatch {
  width:100%;
  height:100%;
}


#ggceejd9f8whw4f7iwdi  a {
  display:block;
  position:relative;
  width:100%;
  height:100%;
  box-sizing:border-box;
  border: solid 1px #ccc;
}


#ggceejd9f8whw4f7iwdi a img {
  position:relative;
  z-index:10;
}
#ggceejd9f8whw4f7iwdi a:hover img {
  opacity:1;
}

#ggceejd9f8whw4f7iwdi .hov_line::after,
#ggceejd9f8whw4f7iwdi .hov_line::before {
  bottom:0;
}


/*医師紹介ページテキストコピー禁止
---------------------------------------*/
#page_1017 .easys_content{
  user-select: none;            /* 標準 */
  -webkit-user-select: none;    /* iPhone Safari, Android Chrome */
  -moz-user-select: none;       /* Firefox */
  -ms-user-select: none;        /* 旧Edgeや古いIE */
}