@charset "utf-8";

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


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


/* =================================================================================================================== */
/* PCカスタムプロパティ */
:root {
  --basic_background_color: #fff;
  --body_text_color: #2a2c78;
  --link_color: #a4884c;
  --border_color: #2a2c78;
  --table_border_color: none;
  --th_background_color: #efebf5;
  --td_background_color: #efebf5;
  --th_character_color: #2a2c78;
  --td_character_color: #2a2c78;
  --required_color: #a4884c;
  --top_h1_color: #fff;
  --header_navigation_color: #8585a1;
  --top_entry_title_color: #2a2c78;
  --entry_title_bg_color: #2a2c78;
  --blog_title_color: #2a2c78;
  --sub_entry_title_bg_color: #2a2c78;
  --entry_title_bg_w570_color: #2a2c78;
  --sub_entry_title_bg_w570_color: #2a2c78;
  --half_entry_title_bg_color: #2a2c78;
  --half_sub_entry_title_bg_color: #2a2c78;
  --column3_title_bg_color: #2a2c78;
  --widget_title_bg_color: #fff;
  --widget_list_bg_color: #2a2c78;
  --footnavi_color: #a09fb5;
  --address_color: #a09fb5;
  --copy_color: #a09fb5;
  --kdb_background_color: #e1dce9;
}
/* 置換以外 */
:root {
  --easys_min_width: 1300;/* EASYSの最小幅(単位なし) */
  --easys_max_width: 2000;/* EASYSの最大幅(単位なし) */
  --easys_top_main_h: 1040;/* トップメインのオリジナル高さ(単位なし) */
  --easys_naka_main_h: 820;/* 中ページメインのオリジナル高さ(単位なし) */
  --fixed_side_btn_bottom :150px; /* サイド固定ボタンの下端からの距離 */
  --fixed_side_btn_side: 0px; /* サイド固定ボタン、左右の距離 */
  --fixed_side_btn_width_full: 150px; /* サイド固定ボタンの全幅 */
  --fixed_side_btn_height: 35px; /* サイド固定ボタンの高さ */
  --fixed_side_btn_width_collapsed: 35px; /* サイド固定ボタンのホバー前の幅 */
  --fixed_side_btn_margin: 10px; /* サイド固定ボタンの間隔 */
  --easys_standard_value001: #ffffff;/* A～Cブロック記事内リンクボタン＞文字色 */
  --easys_standard_value002: rgba(133,133,161,0.8);/* プルダウンメニュー＞背景色 */
  --easys_standard_value003: #fff;/* プルダウンメニュー＞文字色 */
  --easys_standard_value004: #e7e4ed;/* プルダウンメニュー＞文字色(ホバー時) */
  --easys_standard_value005: #ffffff;/* カレンダーの本日＞文字色 */
  --easys_standard_value006: #ffffff;/* 大きな地図で見る＞文字色(ホバー時) */
  --easys_standard_value007: #ffffff;/* ページ遷移ボタン＞線色 */
  --easys_standard_value008: #ffffff;/* ページ遷移ボタン＞文字色 */
  --easys_standard_value009: #000000;/* ブログ＞ページング＞線色 */
  --font_size_10: 10px;
  --font_size_11: 11px;
  --font_size_12: 12px;
  --font_size_13: 13px;
  --font_size_14: 14px;
  --font_size_15: 15px;
  --font_size_16: 16px;
  --font_size_17: 17px;
  --font_size_18: 18px;
  --font_size_20: 20px;
  --font_size_23: 23px;
  --font_size_28: 28px;
}
/* 個人追加 */
:root {
  --header_h: 0;          /*brandingbox外ヘッダー高*/
  --easys_navi_h : 65px;  /*初期ナビ高*/
  --easys_fixed_h: 0px;  /*固定ナビ高*/
  --custom_padding: 100px; /*ブロック間余白*/
  --custom_fade: 100;   /*フェードイン範囲*/
  --custom_transition: .3s;   /*フェードの基本時間*/
}

/* =================================================================================================================== */


/* ===================================================================================================================
   ■ 全体
------------------------------------------------------------------------------------------------------------------- */
html {
  background: var(--basic_background_color);
  /* background: var(--basic_background_color) url("../files/html_bg.jpg") repeat-x center top; */

  scroll-padding-top: var(--easys_fixed_h);
  scroll-behavior: smooth;
}
body {
  background: none transparent no-repeat center top calc(var(--header_h) * 1px) / 100%;
  /* background: url(../files/body_bg.jpg) no-repeat center top calc(var(--header_h) * 1px) / 100%; */
  position: relative;/* 2000pxを超える画面の対策 */
  margin: 0 auto;
  min-width: calc(var(--easys_min_width)*1px);
  max-width: calc(var(--easys_max_width)*1px);
  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;
}
#main {
  overflow: clip;
}

a:link,
a:visited,
a:hover,
a:active {
  color: var(--link_color);
}

/* A～Cブロック記事内リンクボタン */
.main_btn a,
.sub_text_btn a {
  background-color: var(--link_color);
  color: var(--easys_standard_value001);
}


/* ===================================================================================================================
   ■ ヘッダー
------------------------------------------------------------------------------------------------------------------- */
#branding_box {
  background: none transparent;
  height: calc(var(--header_h) * 1px);
  padding: calc(var(--easys_naka_main_h) / var(--easys_max_width) * 100%) 0 0;
  position: relative;
  z-index: 500;
}
#page_6 #branding_box {
  background: url(../files/top_header_cover.png) no-repeat center bottom / 100%;
  padding-top: calc(var(--easys_top_main_h) / var(--easys_max_width) * 100%);
}


/*  H1テキスト
---------------------------------------------------------------------------------------------------- */
#site-description {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  text-align: center;
}
#site-description a {
  display: inline;
  color: var(--top_h1_color);
}


/*  サイトロゴ
---------------------------------------------------------------------------------------------------- */
/* ヘッダーのH1～グローバルナビの高さ調整 */
#header_information {
  height: auto;
  /* CSSレスポンシブ用
  position: absolute;
  top: 26%;
  left: 48%;
  z-index: 1;
  background: url("../files/branding_box_bg.png");
  transform-origin: top left;
  */
}
/* トップページのみ調整する時 */
#page_6 #header_information {
  height: auto;
  /* CSSレスポンシブ用
  top: 26%;
  */
}
#header_information .main_header {
  width : 395px;
  height: 80px;
  position: absolute;
  top : 40px;
  left: 0;
  background: url(../files/main_logo.png) no-repeat no-repeat left top;
  pointer-events: none;
  z-index: 700;
}
#header_information .main_header a {
  display: block;
  padding: 0;
  width: 100%;
  height: 100%;
  pointer-events: all;
}
#header_information .main_header a img {
  width: 100%;
  height: 100%;
}


/*  グローバルナビ
---------------------------------------------------------------------------------------------------- */
div#access .menu-item a {
  background: url(../files/topnavi.png) no-repeat left top;
  height: var(--easys_navi_h) !important;
  line-height: var(--easys_navi_h) !important;
  width: 430px !important;
  padding: 0;
}
div#access #menu-gnavi > li:nth-of-type(1) a { background-position-y: top !important;}
div#access #menu-gnavi > li:nth-of-type(2) a { background-position-y: calc(var(--easys_navi_h) * -1) !important;}
div#access #menu-gnavi > li:nth-of-type(3) a { background-position-y: calc(var(--easys_navi_h) * -2) !important;}
div#access #menu-gnavi > li:nth-of-type(4) a { background-position-y: calc(var(--easys_navi_h) * -3) !important;}
div#access #menu-gnavi > li:nth-of-type(5) a { background-position-y: calc(var(--easys_navi_h) * -4) !important;}
div#access #menu-gnavi > li:nth-of-type(6) a { background-position-y: calc(var(--easys_navi_h) * -5) !important;}
div#access #menu-gnavi > li:nth-of-type(7) a { background-position-y: bottom !important;}
div#access .menu-item a:hover { background-position-x: right;}


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

/* カレントページのメニュー */
#access ul li.current_page_item > a,
#access ul li.current-menu-ancestor > a,
#access ul li.current-menu-item > a,
#access ul li.current-menu-parent > a {
  color: var(--easys_standard_value003);
}
#access ul li.current_page_item > a:hover,
#access ul li.current-menu-ancestor > a:hover,
#access ul li.current-menu-item > a:hover,
#access ul li.current-menu-parent > a:hover {
  color: var(--easys_standard_value004);
}

/* ハンバーガーメニュー */
#access {
  width: clamp(0px, 100%, calc(var(--easys_max_width)*1px));
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  overflow: hidden;
  pointer-events: none;
}
.opened #access a {
  pointer-events: all;
}
#access .menu-header {
  width: 430px;
  height: 100%;
  position: absolute;
  top: 0;
  right: -430px;
  transition: .5s;
  background: var(--header_navigation_color);
}
.opened #access .menu-header {
  right: 0;
}
#access #menu-gnavi {
  width: 430px;
  height: 390px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
#menuTrigger {
  background: none transparent;
  width: clamp(0px, 100%, calc(var(--easys_max_width)*1px));
  height: fit-content;
  position: fixed;
  top  : 60px;
  right: 0;
  left: 0;
  margin: auto;
  pointer-events: none;
  z-index: 900;
}
#menuTrigger button {
  background: url(../files/menu_btn.png) no-repeat right top;
  border: none;
  pointer-events: all;
  cursor: pointer;
  width : 145px;
  height: 45px;
  position: absolute;
  top: 0;
  right: 60px;
}

#menuTrigger span {
  display:inline-block;
  position:absolute;
  left:20px;
  width:20px;
  height:1px;
  box-sizing:border-box;
  transition:all 0.5s;
  border-radius:3px;
  pointer-events: none;
  z-index: 1;
  background-color:#fff;
}
#menuTrigger span:nth-of-type(1) {
  top:17px;
}
#menuTrigger span:nth-of-type(2) {
  top:22px;
  width: 10px;
}
#menuTrigger span:nth-of-type(3) {
  top:27px;
}
.opened #menuTrigger span:nth-of-type(1) {
  top: 22px;
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
}
.opened #menuTrigger span:nth-of-type(2) {
  width:0;
  opacity:0;
}
.opened #menuTrigger span:nth-of-type(3) {
  top: 22px;
  -webkit-transform: rotate(-30deg);
  transform: rotate(-30deg);
}


/* Gナビ上部固定(最大2000pxを維持) */
body.fixed #header_information {
  width: 100%;
  min-width: calc(var(--easys_min_width)*1px);
  max-width: calc(var(--easys_max_width)*1px);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  pointer-events: none;
  z-index: 700;
}
body.fixed #header_information .main_header {
  background-image: url(../files/main_logo_fixed.png);
  display: block;
  pointer-events: all;
  top: 40px;
}
/* body.fixed div#access {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  margin-inline: auto;
  padding: 0;
  background: var(--header_navigation_color);
  width: clamp(960px, 100%, calc(var(--easys_max_width)*1px));
  height: var(--easys_fixed_h);
} */


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


/* ===================================================================================================================
   ■ サイド
------------------------------------------------------------------------------------------------------------------- */
/* サイドナビ　タイトル */
.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 {
  background: url(../files/footer_bg.png) no-repeat center top;
  position: relative;
  height: 890px;
}
#footer_box {
  background: none transparent;
  /* background: url(../files/footer_box_bg.png) no-repeat center top; */
  height: 635px;
}


/*  フッターナビ
---------------------------------------------------------------------------------------------------- */
#footer_sitemap_block {
  padding: 213px 0 0;
  /*絶対値指定する時
  position: absolute;
  bottom: 50px;
  left: 50%;
  margin: 0;
  width: auto;
  transform: translateX(-50%);
  */
}
/* 中央以外 */
/*
#footer-widget-area .widget-area{
    position: absolute;
    top: 320px;
    left: calc(50% - 140px);
}
*/
#footer_sitemap_block #footer-widget-area {
  display: block;
  width: 100%;
  text-align: right;
}
#footer_sitemap_block #footer-widget-area .widget-area ul.menu {
  /* border-color: var(--footnavi_color); */
  border: none;
  width: 422px;
  height: 370px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-content: space-between;
  gap: 40px 0;
}
#footer_sitemap_block #footer-widget-area .widget-area .menu-item a {
  /* border-color: var(--footnavi_color); */
  border: none;
  box-sizing: border-box;
  color: var(--footnavi_color);
  font-size: 11px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0 0 5px 27px !important;
}
#footer_sitemap_block #footer-widget-area .widget-area .menu-item a:hover {
  background-color: transparent;
}
#footer_sitemap_block #footer-widget-area .widget-area .menu-item {
  margin-bottom: 0;
}
#menu-footer_navi > .menu-item > a {
  background: url(../files/footer_navi01.png) no-repeat left top;
  height: var(--footernavi_H);
  padding: 0 !important;
  position: relative;
  width: 180px;
  height: 50px;
}
#menu-footer_navi > .menu-item#menu-item-59 > a { background-image: url(../files/footer_navi01.png);}
#menu-footer_navi > .menu-item#menu-item-60 > a { background-image: url(../files/footer_navi02.png);}
#menu-footer_navi > .menu-item#menu-item-61 > a { background-image: url(../files/footer_navi03.png);}
#menu-footer_navi > .menu-item#menu-item-62 > a { background-image: url(../files/footer_navi04.png);}
#menu-footer_navi > .menu-item#menu-item-87 > a { background-image: url(../files/footer_navi05.png);}
#menu-footer_navi > .menu-item#menu-item-63 > a { background-image: url(../files/footer_navi06.png);}
#menu-footer_navi > .menu-item#menu-item-64 > a { background-image: url(../files/footer_navi07.png);}


/*  フッター情報
---------------------------------------------------------------------------------------------------- */
.footer_infomation {
  display: block;
  margin: 0 auto;
  width: 960px;
}
#footer_information .entry-post {
  margin: 0;
  position: absolute;

  /* width: 100%;
  text-align: center;
  top: 200px;
  left: 0; */

  /* width: 480px;
  text-align: left;
  top: 200px;
  left: calc(50% - 480px); */
}


/*  フッター住所
---------------------------------------------------------------------------------------------------- */
#footer_information .entry-post .post-data > p {
  color: var(--address_color);
  /*絶対値指定する時
  position: absolute;
  bottom: 110px;
  left: 50%;
  margin: 0;
  width: auto;
  transform: translateX(-50%);
  */
}


/*  フッターSNSボタン
---------------------------------------------------------------------------------------------------- */
#footer_sns_btn {
  margin: 0;
  position: absolute;
  top: -275px;
  left: 0;
}
#footer_sns_btn .footer_sns_inner {
  width: 250px;
  flex-direction: column;
}
#footer_sns_btn div a:hover {
  /* opacity: 0.8; */
}

#footer_sns_insta01 {
  margin-top: 57px;
  margin-bottom: 10px;
}
#footer_sns_ebe {
  margin-top: 72px;
}
#footer_sns_ebe a::after {
  background-image: url(../files/bnrmany_arr.png);
}


/*  コピーライト
---------------------------------------------------------------------------------------------------- */
#copyright {
  color: var(--copy_color);
  text-align: right;
  width: 960px;
  font-size: 14px;
}
/* 中央寄せの時 */
/*
#copyright {
  position: absolute;
  bottom: 0;
  left: 50%;
  margin: 0;
  transform: translateX(-50%);
}
*/
/* 中央以外 */
/*
#copyright {
    position: absolute;
    bottom: 0px;
    left: calc(50% - 100px);
}
*/

/*  サイドメニュー
---------------------------------------------------------------------------------------------------- */

/* スライドしない版 */
.fixed_side_btn {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: fit-content;
  margin-inline: auto;
  pointer-events: none;
  text-align: right;
  overflow: hidden;
  box-sizing: border-box;
  padding-right: 0px;
  gap: 13px;
  z-index:1000;
}
.fixed_side_btn > div {
  position: relative;
  width: fit-content;
  height: fit-content;
}

.fixed_side_btn .sponly {
  display: none;
}

.fixed_side_btn a {
  display: block;
  font-size: 0;
  height: var(--fixed_side_btn_height);
  width:var(--fixed_side_btn_width_full);
  overflow: visible !important;
  position: relative !important;
  pointer-events: all;
  text-indent: -109899px;
}
.fixed_side_btn a::after {
  background-image: url(../files/btn_arr.png);
  right: 13px;
}
.fixed_side_btn .btn_line a { width: 150px;}
.fixed_side_btn .weblog a   { width: 140px;}


/* .fixed_side_btn .instagram a { width: 120px;}
.fixed_side_btn .line      a { width: 95px;}
.fixed_side_btn .gaten     a { width: 120px;}
.fixed_side_btn .weblog      a { width: 80px;}
.fixed_side_btn .contact   a { width: 110px;}
.fixed_side_btn .map       a { width: 80px;} */


/* サイド固定ボタン：通常時は右端から185px隠れ、ホバーで全体表示 */
/* .fixed_side_btn {
  box-sizing: border-box;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  align-items: flex-end;
  position: fixed;
  bottom:var(--fixed_side_btn_bottom);
  right: 0;
  left: 0;
  margin-inline: auto;
  pointer-events: none;
  overflow: hidden;
  width: clamp(0px, 100%, calc(var(--easys_max_width)*1px));
  z-index:1000;
}
.fixed_side_btn div {
  position: relative;
  width:var(--fixed_side_btn_width_full);
  height:var(--fixed_side_btn_height);
  margin-bottom:var(--fixed_side_btn_margin);
  overflow:hidden;
  transition: var(--custom_transition);
  right: calc((var(--fixed_side_btn_width_full) - var(--fixed_side_btn_width_collapsed)) * -1);
}
.fixed_side_btn div a {
  display:block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-indent: -109899px;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  pointer-events: all;
  white-space: nowrap;
}
.fixed_side_btn div:hover {
  transition: .5s;
  right: 0;
} */

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

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

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

/* スマホのみのものを非表示 */
.fixed_side_btn .sponly {
  display: none;
}

/* 2000幅を超えた時 */
/* #wrapper {
  -webkit-clip-path:inset(0);
          clip-path:inset(0);
}
@media (min-width: 2000px) {
  .fixed_side_btn {
    left:calc(50% + 1000px - var(--fixed_side_btn_width_collapsed));
    width:var(--fixed_side_btn_width_collapsed);
  }
  .fixed_side_btn div {
    transform:translateX(0);
  }

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


/*  スクロールトップ
---------------------------------------------------------------------------------------------------- */
#float_top_btn {
  box-sizing: border-box;
  bottom: 20px;
  right: 0;
  left: 0;
  margin: auto;
  pointer-events: none;
  text-align: right;
  width: clamp(0px, 100%, 960px);
  height: var(--fixed_side_btn_height);
}
#float_top_btn::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  top: -13px;
  left: 0;
  right: 0;
  margin: auto;
  background-color: rgba(112,111,144,0.4);
}
#float_top_btn > a {
  position: absolute;
  right: 20px;
  bottom: 0;
  pointer-events: all;
  width: fit-content;
  height: fit-content;
  display: block;
}
/* .fixed_side_btn a:hover, */
#float_top_btn > a:hover img {
  opacity: 0.8;
}

#float_top_btn a {
  display: block;
}


/* ===================================================================================================================
   ■ コンテンツ
------------------------------------------------------------------------------------------------------------------- */
#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: 35px;
  line-height: 35px;
  padding-top: 40px;
}
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: var(--font_size_20);
}
* .mid_entry_title,
* .mid_entry_title a {
  color: var(--entry_title_bg_w570_color);
}

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

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

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

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

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

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


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

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


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

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


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

/*  flow矢印余白*/
.flow_arr {
  margin: 10px auto !important;
}

/* メール更新ブロック */
.nj_03 .cu_mail_block {
  padding-bottom: 20px;
}
.nj_03 .img_size_thumb {
  height: 100px;
}
.nj_03 .img_size_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 会社概要 */
#content [class*="nf_"] small + iframe {
  margin-top: 30px !important;
}

/* フェードのipad対応 */
.easys_content:not(.ni_01) div {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 背景と余白調整 */
.easys_content.no_margin { margin-bottom: 0 !important;}
.easys_content.no_margin + .easys_content:not(.no_margin) { margin-top: var(--custom_padding);}
.easys_content.no_margin.nk_01 { padding-bottom: 25px;}
.easys_content.no_margin.nk_01 [class*="title"] {  margin-bottom: 0;}
.shosai #outer_block { padding-top: 70px !important;}

/* テーマ余白調整 */
.easys_content,
.easys_content_inner > div:last-of-type {
  margin-bottom: 0 !important;
}
.easys_content.no_margin + .easys_content:not(.no_margin),
.easys_content:not(.no_margin):not(.nk_01) + .easys_content:not(.no_margin),
.easys_content:not(.no_margin) + .easys_content.no_margin {
  margin-top: var(--custom_padding);
}
#content > .easys_content:last-of-type:not(.no_margin) { margin-bottom: var(--custom_padding) !important;}


/*  扉ページのレイアウト
---------------------------------------------------------------------------------------------------- */
body#page_1098 {
  background: url(../files/bnrhalf_tobira_bg.jpg) no-repeat center center / cover;
  min-width: 960px;
}

/* 全消し */
#page_1098 #branding_box,
#page_1098 #footer_block {
  display: none;
}
#page_1098 #main_teaser,
#page_1098 #site-description,
#page_1098 #access,
#page_1098 #footer_block {
  display: none;
}

/* 上下中央 */
#page_1098,
#page_1098 #wrapper,
#page_1098 #outer_block,
#page_1098 #inner_block,
#page_1098 #main,
#page_1098 #container_top,
#page_1098 #content {
  box-sizing: border-box;
}
#page_1098 #wrapper {
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}


/*  全体にフェードインアニメーション
---------------------------------------------------------------------------------------------------- */
/* ※GSAPにて実装済（footer_pc.js） */
.easys_content_inner {
  position: relative;
  height: 100%;
}


/*  追加画像
---------------------------------------------------------------------------------------------------- */
.design_block {
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  transition: all 1.3s ease 0s;
}


/*  共通ギミック
---------------------------------------------------------------------------------------------------- */
/* ホバーでarr画像が回転（クラス名付与済） */
.arr_btn {
  position: relative;
}
.arr_btn::after {
  content: "";
  width: 11px;
  height: 11px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  background: url(../files/design01_btn_arr.png) no-repeat center center / 100%;
  transition: var(--custom_transition);
  z-index: 20;
}
.arr_btn:hover::after {
  transform: rotate(-90deg);
}

/* ON画像 */
#qsowcy0k241aux851606 [class*="_btn"] a::before,
#h74abkm08hi0m5ngshts [class*="_btn"] a::before,
#omlsdho52730qx9wupta a::before,
#abzjz9wfkaiyb3jkmxnl a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
  transition: var(--custom_transition);
  opacity: 0;
  z-index: 10;
}
#qsowcy0k241aux851606 [class*="_btn"] a:hover::before,
#h74abkm08hi0m5ngshts [class*="_btn"] a:hover::before,
#omlsdho52730qx9wupta a:hover::before,
#abzjz9wfkaiyb3jkmxnl a:hover::before {
  opacity: 1;
}

/* 画像が縮小されながら表示 */
.zoomIn {
  opacity: 1;
  overflow: hidden;
}
.zoomIn::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
  transition: 2s;
  transform: scale(1.2);
  opacity: 0;
}
.zoomIn.moved::before {
  transform: none;
  opacity: 1;
}

/* circleギミック */
.decoration .circle {
  position: fixed;
  top: calc(50% - 150px);
  left: calc(50% - 150px);
  width: 300px;
  height: 300px;
  border-radius: 45% 55% 54% 46%;
  mix-blend-mode: multiply;
  background-color: #cecece;
  opacity: 0;
  z-index: -1;
}
.decoration .circle.circle-01 {
  background-color: #d9a637;
}
.decoration .circle.circle-02 {
  background-color: #84bbff;
}
.decoration .circle.circle-03 {
  background-color: #908edd;
}
.decoration .circle.circle-04 {
  background-color: #84bbff;
  display: none;
}
.design01-circle {
  position: absolute;
  left: calc(50% - 375px);
  top: calc(50% - 375px);
  width: 750px;
  height: 750px;
  border-radius: 52% 48% 46% 54%;
  border: 1px solid rgba(64, 63, 107, 0.1);
  z-index: -1;
}

.design02-background {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  z-index: -1;
  -webkit-transition: -webkit-clip-path 1.2s ease-in-out;
  transition: clip-path 1.2s ease-in-out;
  -webkit-clip-path: circle(0 at 50% 50%);
  clip-path: circle(0 at 50% 50%);
  background-color: #efebf5;
}
.design02-background.design02-background-after {
  -webkit-clip-path: circle(150vmax at 50% 50%);
  clip-path: circle(150vmax at 50% 50%);
}

/* 2段階イン 別途クラス付与済 */
.clipIn {
  position: relative;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path:         inset(0 100% 0 0);
  opacity: 1 !important;
  transition: .6s;
}
.clipIn.moved {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path:         inset(0 0 0 0);
}
.clipIn::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #eeebf4;
  transition: .6s;
}
.clipIn.moved::after {
  transform: translateX(100%);
  transition-delay: .6s;
}


/*  セカンドメイン、バナー、コンテンツ画像、パララックス
---------------------------------------------------------------------------------------------------- */
/* 共通 */
#omlsdho52730qx9wupta,
#xfksy7k9q0e6e1ue8x4q,
#abzjz9wfkaiyb3jkmxnl,
#gkm2sq8eip7rjzonkzc2,
#sv2qlv5rgweqyd02gi3o {
  margin-bottom: var(--custom_padding);
  position: relative;
}
#omlsdho52730qx9wupta div,
#xfksy7k9q0e6e1ue8x4q div,
#abzjz9wfkaiyb3jkmxnl div,
#gkm2sq8eip7rjzonkzc2 div,
#sv2qlv5rgweqyd02gi3o div {
  margin-bottom: 0;
  padding-bottom: 0;
}
#omlsdho52730qx9wupta img,
#xfksy7k9q0e6e1ue8x4q img,
#abzjz9wfkaiyb3jkmxnl img,
#gkm2sq8eip7rjzonkzc2 img,
#sv2qlv5rgweqyd02gi3o img {
  position: relative;
}
#omlsdho52730qx9wupta .design_block,
#xfksy7k9q0e6e1ue8x4q .design_block,
#abzjz9wfkaiyb3jkmxnl .design_block,
#gkm2sq8eip7rjzonkzc2 .design_block,
#sv2qlv5rgweqyd02gi3o .design_block {
  opacity: 0;
}
#omlsdho52730qx9wupta .design_block[class*="block"].moved,
#xfksy7k9q0e6e1ue8x4q .design_block[class*="block"].moved,
#abzjz9wfkaiyb3jkmxnl .design_block[class*="block"].moved,
#gkm2sq8eip7rjzonkzc2 .design_block[class*="block"].moved,
#sv2qlv5rgweqyd02gi3o .design_block[class*="block"].moved {
  margin: 0px;
  opacity: 1;
  transform: none;
  -webkit-clip-path: inset(0 0 0 0);
  clip-path:         inset(0 0 0 0);
  filter: none;
}

/* リンク共通 */
#omlsdho52730qx9wupta a,
#xfksy7k9q0e6e1ue8x4q a,
#abzjz9wfkaiyb3jkmxnl a {
  display: block;
  position: relative;
}
#omlsdho52730qx9wupta a:hover img,
#xfksy7k9q0e6e1ue8x4q a:hover img,
#abzjz9wfkaiyb3jkmxnl a:hover img {
  opacity: 1;
}

/* 扉 */
#omlsdho52730qx9wupta .easys_content_inner {
  width: calc(1490 / var(--easys_max_width) * 100%);
}
#omlsdho52730qx9wupta [class*="field_"] {
  height: 100%;
  margin: 0;
  position: relative;
  width: calc(620 / 1490 * 100%) !important;
}
#omlsdho52730qx9wupta .eyecatch {
  width: 100%;
}
#omlsdho52730qx9wupta [class*="field_"] .arr_btn::after {
  width: calc(15 / 620 * 100%);
  height: calc(15 / 370 * 100%);
  margin: 0;
  top: initial;
  bottom: 10%;
  right: 0;
}
#omlsdho52730qx9wupta [class*="field_"]:nth-of-type(1) .arr_btn::after {
  background-image: url(../files/bnrhalf_tobira01_arr.png);
}
#omlsdho52730qx9wupta [class*="field_"]:nth-of-type(2) .arr_btn::after {
  background-image: url(../files/bnrhalf_tobira02_arr.png);
}
#omlsdho52730qx9wupta [class*="field_"]:nth-of-type(1) a::before {
  background-image: url(../files/bnrhalf_tobira01_on.png);
}
#omlsdho52730qx9wupta [class*="field_"]:nth-of-type(2) a::before {
  background-image: url(../files/bnrhalf_tobira02_on.png);
}

/* 体操/サッカー/陸上競技/アクロバット */
#xfksy7k9q0e6e1ue8x4q .easys_content_inner {
  width: 100%;
}
#xfksy7k9q0e6e1ue8x4q .easys_content_inner div {
  position: static;
}
#xfksy7k9q0e6e1ue8x4q [class*="field_"] {
  height: 100%;
  margin: 0;
  width: calc( 100% / 4 ) !important;
}
#xfksy7k9q0e6e1ue8x4q [class*="field_"] a img {
  position: relative;
  z-index: 30;
}
#xfksy7k9q0e6e1ue8x4q [class*="field_"]::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
  transition: -webkit-clip-path 1s, clip-path 1s, transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), z-index 0s linear 1s;
}
#xfksy7k9q0e6e1ue8x4q [class*="field_"]:nth-of-type(1)::before {
  background-image: url(../files/bnrmany01_bg.jpg);
  -webkit-clip-path: inset(0 75% 0 0);
  clip-path:         inset(0 75% 0 0);
}
#xfksy7k9q0e6e1ue8x4q [class*="field_"]:nth-of-type(2)::before {
  background-image: url(../files/bnrmany02_bg.jpg);
  -webkit-clip-path: inset(0 50% 0 25%);
  clip-path:         inset(0 50% 0 25%);
}
#xfksy7k9q0e6e1ue8x4q [class*="field_"]:nth-of-type(3)::before {
  background-image: url(../files/bnrmany03_bg.jpg);
  -webkit-clip-path: inset(0 25% 0 50%);
  clip-path:         inset(0 25% 0 50%);
}
#xfksy7k9q0e6e1ue8x4q [class*="field_"]:nth-of-type(4)::before {
  background-image: url(../files/bnrmany04_bg.jpg);
  -webkit-clip-path: inset(0 0 0 75%);
  clip-path:         inset(0 0 0 75%);
}
#xfksy7k9q0e6e1ue8x4q [class*="field_"].active::before {
  transform:scale(1.1);
  -webkit-clip-path: inset(0);
  clip-path:inset(0);
  z-index: 10;
  transition-delay: 0s, 0s, 0s, 0s;
}
#xfksy7k9q0e6e1ue8x4q [class*="field_"] .arr_btn::after {
  background-image: url(../files/bnrmany_arr.png);
  width: calc(15 / 500 * 100%);
  height: calc(15 / 480 * 100%);
  top: calc(300 / 480 * 100%);
  bottom: initial;
  right: 0;
  left: 0;
  z-index: 40;
}
#xfksy7k9q0e6e1ue8x4q .eyecatch {
  width: 100%;
}

/* 公式LINE/しん先生insta/クラブinsta */
#abzjz9wfkaiyb3jkmxnl {
  background: #403f6b url(../files/bnrmany_bg.jpg) no-repeat center center;
  padding-top: 148px;
  padding-bottom: 105px;
}
#abzjz9wfkaiyb3jkmxnl [class*="field_"] {
  margin: 0;
  width: fit-content !important;
}
#abzjz9wfkaiyb3jkmxnl [class*="field_"].float_left {
  margin-right: 7px;
}
#abzjz9wfkaiyb3jkmxnl .eyecatch {
  width: 100% !important;
}
#abzjz9wfkaiyb3jkmxnl .eyecatch img {
  width: auto;
}
#abzjz9wfkaiyb3jkmxnl [class*="field_"] .arr_btn::after {
  background-image: url(../files/bnrmany_arr.png);
  width: 11px;
  height: 11px;
  top: initial;
  bottom: 5px;
  right: 5px;
  left: initial;
}
#abzjz9wfkaiyb3jkmxnl [class*="field_"]:nth-of-type(1) a::before {
  background-image: url(../files/bnrmany05_on.png);
}
#abzjz9wfkaiyb3jkmxnl [class*="field_"]:nth-of-type(2) a::before {
  background-image: url(../files/bnrmany06_on.png);
}
#abzjz9wfkaiyb3jkmxnl [class*="field_"]:nth-of-type(3) a::before {
  background-image: url(../files/bnrmany07_on.png);
}
.sfWrap_txg56gwo344lya7uk93f + #abzjz9wfkaiyb3jkmxnl {
  background-position: center top;
  padding-top: 38px;
  padding-bottom: 210px;
}

/* 画像＞苦手を「楽しい！」に変える3つの強み */
#gkm2sq8eip7rjzonkzc2 .easys_content_inner {
  margin-inline: 0;
  position: relative;
  left: 50%;
  transform: translateX(-50%) !important;
  width: fit-content;
}
#gkm2sq8eip7rjzonkzc2 [class*="field_"] {
  margin: 0;
  width: fit-content !important;
}
#gkm2sq8eip7rjzonkzc2 .eyecatch {
  width: 100% !important;
}
#gkm2sq8eip7rjzonkzc2 .eyecatch img {
  width: auto;
}

/* 動画＞イメージ */
#sv2qlv5rgweqyd02gi3o .easys_content_inner {
  top: 0;
  opacity: 1;
  overflow: hidden;
  width: 100%;
}
#sv2qlv5rgweqyd02gi3o #html_video01 {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-clip-path: inset(0 0 0 0);
  clip-path:         inset(0 0 0 0);
  z-index: 0;
}
#sv2qlv5rgweqyd02gi3o #html_video01 video {
  width: clamp(calc(var(--easys_min_width)*1px), 100%, calc(var(--easys_max_width)*1px));
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  object-fit: cover;
  z-index: 0;
}
#sv2qlv5rgweqyd02gi3o #html_catch01 {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: fit-content;
  z-index: 1;
}


/*  デザインブロック
---------------------------------------------------------------------------------------------------- */
/* 共通レイアウト（記事ブロック） */
#qsowcy0k241aux851606,
#h74abkm08hi0m5ngshts,
#txg56gwo344lya7uk93f,
#phugk96ax9cd5r7fk7vp,
#bt5lwcxekjqsm60tjfa4,
#e0ylco170ws5onmtk312,
#mh4udaph11000zyydroz,
#rwc0wzqgsxan3sh1g5kk {
  background-repeat: no-repeat;
  background-position: center top;
  margin-bottom: var(--custom_padding);
  position: relative;
}
#qsowcy0k241aux851606 .easys_content_inner,
#h74abkm08hi0m5ngshts .easys_content_inner,
#txg56gwo344lya7uk93f .easys_content_inner,
#phugk96ax9cd5r7fk7vp .easys_content_inner,
#bt5lwcxekjqsm60tjfa4 .easys_content_inner,
#e0ylco170ws5onmtk312 .easys_content_inner,
#mh4udaph11000zyydroz .easys_content_inner,
#rwc0wzqgsxan3sh1g5kk .easys_content_inner {
  opacity: 1;
  top: 0px;
}
#qsowcy0k241aux851606 .post_margin,
#h74abkm08hi0m5ngshts .post_margin,
#txg56gwo344lya7uk93f .post_margin,
#phugk96ax9cd5r7fk7vp .post_margin,
#bt5lwcxekjqsm60tjfa4 .post_margin,
#e0ylco170ws5onmtk312 .post_margin,
#mh4udaph11000zyydroz .post_margin,
#rwc0wzqgsxan3sh1g5kk .post_margin {
  margin: 0;
}
#qsowcy0k241aux851606 .entry_post,
#h74abkm08hi0m5ngshts .entry_post,
#txg56gwo344lya7uk93f .entry_post,
#phugk96ax9cd5r7fk7vp .entry_post,
#bt5lwcxekjqsm60tjfa4 .entry_post,
#e0ylco170ws5onmtk312 .entry_post,
#mh4udaph11000zyydroz .entry_post,
#rwc0wzqgsxan3sh1g5kk .entry_post {
  box-sizing: border-box;
}
#qsowcy0k241aux851606 .entry_post > [class*="title"],
#h74abkm08hi0m5ngshts .entry_post > [class*="title"],
#txg56gwo344lya7uk93f .entry_post > [class*="title"],
#phugk96ax9cd5r7fk7vp .entry_post > [class*="title"],
#bt5lwcxekjqsm60tjfa4 .entry_post > [class*="title"],
#e0ylco170ws5onmtk312 .entry_post > [class*="title"],
#mh4udaph11000zyydroz .entry_post > [class*="title"],
#rwc0wzqgsxan3sh1g5kk .entry_post > [class*="title"] {
  display: none;
}
#qsowcy0k241aux851606 .text_box,
#h74abkm08hi0m5ngshts .text_box,
#txg56gwo344lya7uk93f .text_box,
#phugk96ax9cd5r7fk7vp .text_box,
#bt5lwcxekjqsm60tjfa4 .text_box,
#e0ylco170ws5onmtk312 .text_box,
#mh4udaph11000zyydroz .text_box,
#rwc0wzqgsxan3sh1g5kk .text_box {
  float: none !important;
  height: auto;
  overflow: visible;
  width: 100%;
  margin: 0;
}
#qsowcy0k241aux851606 .post_data,
#h74abkm08hi0m5ngshts .post_data,
#txg56gwo344lya7uk93f .post_data,
#phugk96ax9cd5r7fk7vp .post_data,
#bt5lwcxekjqsm60tjfa4 .post_data,
#e0ylco170ws5onmtk312 .post_data,
#mh4udaph11000zyydroz .post_data,
#rwc0wzqgsxan3sh1g5kk .post_data {
  display: block;
  float: none !important;
  margin: 0;
  overflow: visible;
}
_::-webkit-full-page-media, _:future, :root #qsowcy0k241aux851606 .post_data p,
_::-webkit-full-page-media, _:future, :root #h74abkm08hi0m5ngshts .post_data p,
_::-webkit-full-page-media, _:future, :root #txg56gwo344lya7uk93f .post_data p,
_::-webkit-full-page-media, _:future, :root #phugk96ax9cd5r7fk7vp .post_data p,
_::-webkit-full-page-media, _:future, :root #bt5lwcxekjqsm60tjfa4 .post_data p,
_::-webkit-full-page-media, _:future, :root #e0ylco170ws5onmtk312 .post_data p,
_::-webkit-full-page-media, _:future, :root #mh4udaph11000zyydroz .post_data p,
_::-webkit-full-page-media, _:future, :root #rwc0wzqgsxan3sh1g5kk .post_data p {
  line-height: 2;
  letter-spacing: -1px;
}
#qsowcy0k241aux851606 .design_block,
#h74abkm08hi0m5ngshts .design_block,
#txg56gwo344lya7uk93f .design_block,
#phugk96ax9cd5r7fk7vp .design_block,
#bt5lwcxekjqsm60tjfa4 .design_block,
#e0ylco170ws5onmtk312 .design_block,
#mh4udaph11000zyydroz .design_block,
#rwc0wzqgsxan3sh1g5kk .design_block {
  opacity: 0;
}
#qsowcy0k241aux851606 .design_block[class*="block"].moved,
#h74abkm08hi0m5ngshts .design_block[class*="block"].moved,
#txg56gwo344lya7uk93f .design_block[class*="block"].moved,
#phugk96ax9cd5r7fk7vp .design_block[class*="block"].moved,
#bt5lwcxekjqsm60tjfa4 .design_block[class*="block"].moved,
#e0ylco170ws5onmtk312 .design_block[class*="block"].moved,
#mh4udaph11000zyydroz .design_block[class*="block"].moved,
#rwc0wzqgsxan3sh1g5kk .design_block[class*="block"].moved {
  margin: 0px;
  opacity: 1;
  transform: none;
  -webkit-clip-path: inset(0 0 0 0);
  clip-path:         inset(0 0 0 0);
  -webkit-filter: none;
  -moz-filter:    none;
  -ms-filter:     none;
  -o-filter:      none;
  filter:         none;
}

/* 共通ボタン-ブロック内リンク */
/* ※遷移先でのボタン非表示処理はfooter_common.jsで行っています※ */
#qsowcy0k241aux851606 [class*="_btn"],
#h74abkm08hi0m5ngshts [class*="_btn"] {
  margin: 40px 0 0;
  padding: 0;
  width: fit-content;
  height: fit-content;
}
#qsowcy0k241aux851606 [class*="_btn"] a,
#h74abkm08hi0m5ngshts [class*="_btn"] a {
  background: url(../files/design01_btn_off.png) no-repeat center top;
  font-size: 0;
  display: block;
  padding: 0;
  position: relative;
  text-indent: -9999px;
  width: 290px;
  height: 45px;
}
#qsowcy0k241aux851606 [class*="_btn"] .arr_btn::after,
#h74abkm08hi0m5ngshts [class*="_btn"] .arr_btn::after {
  background: url(../files/design01_btn_arr.png) no-repeat center top;
  width: 15px;
  height: 15px;
  right: 20px;
}
#qsowcy0k241aux851606 [class*="_btn"] a::before,
#h74abkm08hi0m5ngshts [class*="_btn"] a::before {
  background: url(../files/design01_btn_on.png) no-repeat center top;
}

/* 出来る事を増やし、自信が持てるスポーツクラブ */
#qsowcy0k241aux851606 {
  --sf-base-h: 1405;
  height: 1405px;
}
#qsowcy0k241aux851606 .entry_post {
  padding: 910px 0 0;
}
#qsowcy0k241aux851606 .post_data {
  text-align: center;
}
#qsowcy0k241aux851606 [class*="_btn"] {
  margin-inline: auto;
}
#qsowcy0k241aux851606 > .design_block.block1 {
  width: 1660px;
  height: 410px;
  top: 263px;
  left: calc(50% - 830px);
}
#qsowcy0k241aux851606 > .design_block.block1::before {
  background-image: url(../files/design01_img01.png);
}
#qsowcy0k241aux851606 > .design_block.block2,
#qsowcy0k241aux851606 > .design_block.block3,
#qsowcy0k241aux851606 > .design_block.block4 {
  -webkit-filter: blur(15px);
  -moz-filter:    blur(15px);
  -ms-filter:     blur(15px);
  -o-filter:      blur(15px);
  filter:         blur(15px);
}
#qsowcy0k241aux851606 > .design_block.block2 {
  background-image: url(../files/design01_ttl01.png);
  width: 330px;
  height: 40px;
  top: 776px;
  left: calc(50% - 386px);
}
#qsowcy0k241aux851606 > .design_block.block3 {
  background-image: url(../files/design01_ttl02.png);
  width: 350px;
  height: 40px;
  top: 774px;
  left: calc(50% + 58px);
}
#qsowcy0k241aux851606 > .design_block.block4 {
  background-image: url(../files/design01_ttl03.png);
  width: 75px;
  height: 75px;
  top: 766px;
  left: calc(50% - 38px);
}
#qsowcy0k241aux851606 > .design_block.block5 {
  background-image: url(../files/design01_ttl04.png);
  width: 430px;
  height: 45px;
  top: 840px;
  left: calc(50% - 215px);
  transition-delay: .3s;
}
#qsowcy0k241aux851606 > .design_block.block6 {
  background-image: url(../files/design01_img02.png);
  width: 285px;
  height: 320px;
  top: 575px;
  left: calc(50% + 428px);
  transform: translateY(calc(var(--custom_fade) * -1px));
}
#qsowcy0k241aux851606 > .design_block.block7 {
  background-image: url(../files/design01_img03.png);
  width: 260px;
  height: 260px;
  top: 1016px;
  left: calc(50% - 772px);
  transform: translateY(calc(var(--custom_fade) * 1px));
}

/* 子ども達の成長を支えるコーチ達 */
#h74abkm08hi0m5ngshts {
  /* background-color: #efebf5; */
  height: 1275px;
}
#h74abkm08hi0m5ngshts .entry_post {
  padding: 713px 520px 0 0;
}
#h74abkm08hi0m5ngshts [class*="_btn"] a {
  background-image: url(../files/design02_btn_off.png);
  width: 310px;
}
#h74abkm08hi0m5ngshts [class*="_btn"] a::before {
  background-image: url(../files/design02_btn_on.png);
}
#h74abkm08hi0m5ngshts > .design_block.block1 {
  width: 784px;
  height: 330px;
  top: 199px;
  left: calc(50% - 638px);
}
#h74abkm08hi0m5ngshts > .design_block.block1::before {
  background-image: url(../files/design02_img01.png);
}
#h74abkm08hi0m5ngshts > .design_block.block2 {
  width: 850px;
  height: 330px;
  top: 200px;
  left: calc(50% + 150px);
}
#h74abkm08hi0m5ngshts > .design_block.block2::before {
  background-image: url(../files/design02_img02.jpg);
}
#h74abkm08hi0m5ngshts > .design_block.block3 {
  width: 850px;
  height: 540px;
  top: 532px;
  left: calc(50% + 150px);
}
#h74abkm08hi0m5ngshts > .design_block.block3::before {
  background-image: url(../files/design02_img03.jpg);
}
#h74abkm08hi0m5ngshts > .design_block.block4 {
  background-image: url(../files/design02_ttl01.png);
  width: 310px;
  height: 85px;
  top: 598px;
  left: calc(50% - 480px);
  -webkit-filter: blur(15px);
  -moz-filter:    blur(15px);
  -ms-filter:     blur(15px);
  -o-filter:      blur(15px);
  filter:         blur(15px);
}
#h74abkm08hi0m5ngshts > .design_block.block5 {
  background-image: url(../files/design02_ttl02.png);
  width: 75px;
  height: 210px;
  top: 472px;
  left: calc(50% - 39px);
  opacity: 1;
  -webkit-clip-path: inset(0 0 100% 0);
  clip-path:         inset(0 0 100% 0);
}

/* 実際の活動を体験してみませんか？ */
#txg56gwo344lya7uk93f {
  background: #403f6b url(../files/design03_bg.jpg) no-repeat left top;
  height: 835px;
}
.sfWrap_txg56gwo344lya7uk93f {
  background-color: #403f6b;
}
#txg56gwo344lya7uk93f .easys_content_inner {
  position: absolute;
  left: 0;
  right: 0;
  margin-inline: auto;
}
#txg56gwo344lya7uk93f .entry_post {
  padding: 483px 520px 0 0;
}
#txg56gwo344lya7uk93f .post_data {
  color: #fff;
}
#txg56gwo344lya7uk93f .design_block.block1 {
  width: 550px;
  height: 835px;
  top: 0px;
  left: calc(50% - 0px);
  opacity: 1;
}
#txg56gwo344lya7uk93f .design_block.block1 span {
  background-repeat: no-repeat;
  background-position: center center;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
#txg56gwo344lya7uk93f .design_block.block1 span:nth-of-type(1) {
  background-image: url(../files/design03_img01.png);
}
#txg56gwo344lya7uk93f .design_block.block1 span:nth-of-type(2) {
  background-image: url(../files/design03_img02.png);
}
#txg56gwo344lya7uk93f .design_block.block1 span:nth-of-type(3) {
  background-image: url(../files/design03_img03.png);
}
#txg56gwo344lya7uk93f > .design_block.block2 {
  background-image: url(../files/design03_ttl.png);
  width: 345px;
  height: 130px;
  top: 334px;
  left: calc(50% - 480px);
  -webkit-filter: blur(15px);
  -moz-filter:    blur(15px);
  -ms-filter:     blur(15px);
  -o-filter:      blur(15px);
  filter:         blur(15px);
}
#txg56gwo344lya7uk93f > .design_block.block3 {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}
#txg56gwo344lya7uk93f > .design_block.block3 span {
  background-repeat: no-repeat;
  background-position: center center;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
#txg56gwo344lya7uk93f > .design_block.block4 {
  background-image: url(../files/design03_img04.png);
  width: 265px;
  height: 300px;
  top: 166px;
  left: calc(50% - 757px);
  transform: translateY(calc(var(--custom_fade) * -1px));
}
#txg56gwo344lya7uk93f .clipIn::after {
  background-color: #605f85;
}

/* 体操 */
#phugk96ax9cd5r7fk7vp {
  height: 1100px;
}
#phugk96ax9cd5r7fk7vp .entry_post {
  padding: 687px 400px 0 0;
}
#phugk96ax9cd5r7fk7vp > .design_block.block1 {
  width: 1300px;
  height: 420px;
  top: 95px;
  left: calc(50% - 650px);
}
#phugk96ax9cd5r7fk7vp > .design_block.block1::before {
  background-image: url(../files/design04_img01.png);
}
#phugk96ax9cd5r7fk7vp > .design_block.block2 {
  width: 499px;
  height: 365px;
  top: 520px;
  left: calc(50% + 150px);
}
#phugk96ax9cd5r7fk7vp > .design_block.block2::before {
  background-image: url(../files/design04_img02.jpg);
}
#phugk96ax9cd5r7fk7vp > .design_block.block3 {
  background-image: url(../files/design04_ttl01.png);
  width: 410px;
  height: 90px;
  top: 566px;
  left: calc(50% - 480px);
  -webkit-filter: blur(15px);
  -moz-filter:    blur(15px);
  -ms-filter:     blur(15px);
  -o-filter:      blur(15px);
  filter:         blur(15px);
}
#phugk96ax9cd5r7fk7vp > .design_block.block4 {
  background-image: url(../files/design04_ttl02.png);
  width: 75px;
  height: 210px;
  top: 446px;
  left: calc(50% - 0px);
  opacity: 1;
  -webkit-clip-path: inset(0 0 100% 0);
  clip-path:         inset(0 0 100% 0);
}
#phugk96ax9cd5r7fk7vp > .design_block.block5 {
  background-image: url(../files/design04_img03.png);
  width: 480px;
  height: 340px;
  top: 730px;
  left: calc(50% - 0px);
  transform: translateY(calc(var(--custom_fade) * -1px));
}

/* サッカー */
#bt5lwcxekjqsm60tjfa4 {
  background-color: rgba(114,97,168,0.1);
  height: 990px;
}
#bt5lwcxekjqsm60tjfa4 .entry_post {
  padding: 477px 0 0 525px;
}
#bt5lwcxekjqsm60tjfa4 > .design_block.block1 {
  width: 675px;
  height: 350px;
  top: 200px;
  left: calc(50% - 703px);
}
#bt5lwcxekjqsm60tjfa4 > .design_block.block1::before {
  background-image: url(../files/design05_img01.jpg);
}
#bt5lwcxekjqsm60tjfa4 > .design_block.block2 {
  width: 400px;
  height: 240px;
  top: 555px;
  left: calc(50% - 703px);
}
#bt5lwcxekjqsm60tjfa4 > .design_block.block2::before {
  background-image: url(../files/design05_img02.jpg);
}
#bt5lwcxekjqsm60tjfa4 > .design_block.block3 {
  width: 270px;
  height: 240px;
  top: 555px;
  left: calc(50% - 300px);
}
#bt5lwcxekjqsm60tjfa4 > .design_block.block3::before {
  background-image: url(../files/design05_img03.jpg);
}
#bt5lwcxekjqsm60tjfa4 > .design_block.block4 {
  background-image: url(../files/design05_ttl01.png);
  width: 280px;
  height: 90px;
  top: 353px;
  left: calc(50% + 45px);
  -webkit-filter: blur(15px);
  -moz-filter:    blur(15px);
  -ms-filter:     blur(15px);
  -o-filter:      blur(15px);
  filter:         blur(15px);
}
#bt5lwcxekjqsm60tjfa4 > .design_block.block5 {
  background-image: url(../files/design05_ttl02.png);
  width: 75px;
  height: 225px;
  top: 218px;
  left: calc(50% + 392px);
  opacity: 1;
  -webkit-clip-path: inset(0 0 100% 0);
  clip-path:         inset(0 0 100% 0);
}
#bt5lwcxekjqsm60tjfa4 > .design_block.block6 {
  background-image: url(../files/design05_img04.png);
  width: 220px;
  height: 255px;
  top: 0px;
  left: calc(50% - 703px);
  transform: translateY(calc(var(--custom_fade) * -1px));
}
#bt5lwcxekjqsm60tjfa4 > .design_block.block7 {
  background-image: url(../files/design05_img05.png);
  width: 410px;
  height: 470px;
  top: 453px;
  left: calc(50% + 435px);
  transform: translateX(calc(var(--custom_fade) * 1px));
  pointer-events: none;
}

/* 陸上競技 */
#e0ylco170ws5onmtk312 {
  height: 1025px;
}
#e0ylco170ws5onmtk312 .entry_post {
  padding: 697px 0 0 0;
}
#e0ylco170ws5onmtk312 > .design_block.block1 {
  width: 830px;
  height: 340px;
  top: 197px;
  left: calc(50% - 703px);
}
#e0ylco170ws5onmtk312 > .design_block.block1::before {
  background-image: url(../files/design06_img01.jpg);
}
#e0ylco170ws5onmtk312 > .design_block.block2 {
  width: 580px;
  height: 410px;
  top: 127px;
  left: calc(50% + 131px);
}
#e0ylco170ws5onmtk312 > .design_block.block2::before {
  background-image: url(../files/design06_img02.png);
}
#e0ylco170ws5onmtk312 > .design_block.block3 {
  background-image: url(../files/design06_ttl01.png);
  width: 340px;
  height: 85px;
  top: 580px;
  left: calc(50% - 480px);
  -webkit-filter: blur(15px);
  -moz-filter:    blur(15px);
  -ms-filter:     blur(15px);
  -o-filter:      blur(15px);
  filter:         blur(15px);
}
#e0ylco170ws5onmtk312 > .design_block.block4 {
  background-image: url(../files/design06_ttl02.png);
  width: 75px;
  height: 210px;
  top: 454px;
  left: calc(50% - 90px);
  opacity: 1;
  -webkit-clip-path: inset(0 0 100% 0);
  clip-path:         inset(0 0 100% 0);
}
#e0ylco170ws5onmtk312 > .design_block.block5 {
  background-image: url(../files/design06_img03.png);
  width: 245px;
  height: 230px;
  top: 90px;
  left: calc(50% - 630px);
  transform: translateY(calc(var(--custom_fade) * -1px));
}
#e0ylco170ws5onmtk312 > .design_block.block6 {
  background-image: url(../files/design06_img04.png);
  width: 480px;
  height: 190px;
  top: 468px;
  left: calc(50% + 170px);
  transform: translateY(calc(var(--custom_fade) * 1px));
}

/* アクロバット */
#mh4udaph11000zyydroz {
  background-color: rgba(114,97,168,0.1);
  height: 1185px;
}
#mh4udaph11000zyydroz .entry_post {
  padding: 738px 0 0 450px;
}
#mh4udaph11000zyydroz > .design_block.block1 {
  width: 580px;
  height: 415px;
  top: 115px;
  left: calc(50% - 703px);
}
#mh4udaph11000zyydroz > .design_block.block1::before {
  background-image: url(../files/design07_img01.png);
}
#mh4udaph11000zyydroz > .design_block.block2 {
  width: 830px;
  height: 330px;
  top: 200px;
  left: calc(50% - 120px);
}
#mh4udaph11000zyydroz > .design_block.block2::before {
  background-image: url(../files/design07_img02.jpg);
}
#mh4udaph11000zyydroz > .design_block.block3 {
  width: 580px;
  height: 435px;
  top: 535px;
  left: calc(50% - 703px);
}
#mh4udaph11000zyydroz > .design_block.block3::before {
  background-image: url(../files/design07_img03.jpg);
}
#mh4udaph11000zyydroz > .design_block.block4 {
  background-image: url(../files/design07_ttl01.png);
  width: 405px;
  height: 85px;
  top: 620px;
  left: calc(50% - 37px);
  -webkit-filter: blur(15px);
  -moz-filter:    blur(15px);
  -ms-filter:     blur(15px);
  -o-filter:      blur(15px);
  filter:         blur(15px);
}
#mh4udaph11000zyydroz > .design_block.block5 {
  background-image: url(../files/design07_ttl02.png);
  width: 75px;
  height: 245px;
  top: 460px;
  left: calc(50% + 405px);
  opacity: 1;
  -webkit-clip-path: inset(0 0 100% 0);
  clip-path:         inset(0 0 100% 0);
}
#mh4udaph11000zyydroz > .design_block.block6 {
  background-image: url(../files/design07_img04.png);
  width: 180px;
  height: 460px;
  top: 478px;
  left: calc(50% + 534px);
  transform: translateY(calc(var(--custom_fade) * 1px));
}


/* 代表挨拶 */
#rwc0wzqgsxan3sh1g5kk {
  height: 1410px;
}
#rwc0wzqgsxan3sh1g5kk .entry_post {
  padding: 466px 460px 0 0;
}
#rwc0wzqgsxan3sh1g5kk > .design_block.block1 {
  width: 450px;
  height: 610px;
  top: 200px;
  left: calc(50% + 98px);
}
#rwc0wzqgsxan3sh1g5kk > .design_block.block1::before {
  background-image: url(../files/design08_img01.jpg);
}
#rwc0wzqgsxan3sh1g5kk > .design_block.block2 {
  width: 100%;
  height: 480px;
  bottom: 0px;
  left: 0;
  opacity: 1;
  overflow: hidden;
}
#rwc0wzqgsxan3sh1g5kk > .design_block.block2::before {
  content: "";
  width: calc(1920 * 4px);
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  animation: anime-bg 60s linear 0s infinite;
  background: url(../files/design08_img02.png) repeat-x left top / auto 100%;
}
@keyframes anime-bg {
  0%   { transform: translateX(0%); }
  100% { transform: translateX(-25%);}
}
#rwc0wzqgsxan3sh1g5kk > .design_block.block3 {
  background-image: url(../files/design08_ttl01.png);
  width: 345px;
  height: 100px;
  top: 335px;
  left: calc(50% - 480px);
  -webkit-filter: blur(15px);
  -moz-filter:    blur(15px);
  -ms-filter:     blur(15px);
  -o-filter:      blur(15px);
  filter:         blur(15px);
}
#rwc0wzqgsxan3sh1g5kk + .easys_content,
#rwc0wzqgsxan3sh1g5kk + .easys_content.sp_01 + .easys_content {
  margin-top: 0 !important;
}
