@charset "UTF-8";

:root {
  --main-color: #2b6796;
  --sub-color: #e7161a;
}

#root {
  overflow: hidden;
}

body::-webkit-scrollbar {
  display: none;
}

/* 基本フォント: ゴシック */
body {
  font-family: 'Noto Sans JP', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background: #1a1a1a;
  color: #FFF;


  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* 画面端までの余白 */
  /*  --margin-for-device-side: -15px;*/
}

@media (min-width:768px) {
  :root {
    --margin-for-device-side: calc(345px - 50vw);
  }
}

@media (min-width:992px) {
  :root {
    --margin-for-device-side: calc(465px - 50vw);
  }
}

@media (min-width:1200px) {
  :root {
    --margin-for-device-side: calc(555px - 55vw);
  }
}

@media (min-width:1536px) {
  :root {
    --margin-for-device-side: calc(668px - 50vw);
  }
}

@media (min-width:1720px) {
  :root {
    --margin-for-device-side: calc(760px - 50vw);
  }
}


/* 管理画面の余白調整 */
.gjs-dashed #wrapper {
  padding-bottom: 150px;
}

@media (max-width:767px) {
  #chatbot-btn {
    bottom: 55px !important;
    z-index: 5;
  }
}

.mincho {
  font-family: 'Noto Serif JP', serif;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  letter-spacing: 0.075em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5;
}

a {
  color: inherit;
  transition: 0.3s;
}

a:hover {
  text-decoration: none;
  /*opacity: 0.7;*/
  /*color: inherit;*/
}

img {
  max-width: 100%;
  width: auto;
}

ul,
ol,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.img_fit {
  position: relative;
}

.img_fit:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.img_fit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover';
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
}

a.img_fit {
  display: block;
}

a .img.img_fit img {
  transition: 0.2s all;
}

a:hover .img.img_fit img {
  transform: scale(1.05);
}

/* 動画埋め込みのレスポンシブ対応 */
iframe {
  max-width: 100%;
}

.responsive_video {
  position: relative;
}

.responsive_video:before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.responsive_video video,
.responsive_video iframe,
.responsive_video object,
.responsive_video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.gjs-dashed .responsive_video:before {
  display: none;
}

.gjs-dashed .responsive_video [data-gjs-type="video"]:before {
  content: "";
  display: block;
  padding-top: 56.25%;
  pointer-events: none;
}


/* 指定デバイスのみで表示するclass */
@media (min-width:1720px) {
  .fw_nobr br {
    display: none !important;
  }
}

@media (min-width:1536px) {
  .lg_nobr br {
    display: none !important;
  }
}

@media (min-width:1200px) {
  .md:not(.pc) {
    display: none !important;
  }

  .tb:not(.pc) {
    display: none !important;
  }

  .sp:not(.pc) {
    display: none !important;
  }
}

@media (min-width:1024px) and (max-width:1199px) {
  .pc:not(.md) {
    display: none !important;
  }

  .tb:not(.md) {
    display: none !important;
  }

  .sp:not(.md) {
    display: none !important;
  }
}

@media (min-width:768px) and (max-width:1023px) {
  .pc:not(.tb) {
    display: none !important;
  }

  .md:not(.tb) {
    display: none !important;
  }

  .sp:not(.tb) {
    display: none !important;
  }
}

@media (max-width:767px) {
  .pc:not(.sp) {
    display: none !important;
  }

  .md:not(.sp) {
    display: none !important;
  }

  .tb:not(.sp) {
    display: none !important;
  }
}

/* 指定デバイスで改行を消す */
@media (min-width:1200px) {
  .pc_nobr br {
    display: none !important;
  }
}

@media (min-width:1024px) and (max-width:1199px) {
  .md_nobr br {
    display: none !important;
  }
}

@media (min-width:768px) and (max-width:1023px) {
  .tb_nobr br {
    display: none !important;
  }
}

@media (max-width:767px) {
  .sp_nobr br {
    display: none !important;
  }
}

/* 指定した行数での切り取り */
.txt_ellipsis_line1,
.txt_ellipsis_line2,
.txt_ellipsis_line3,
.txt_ellipsis_line4,
.txt_ellipsis_line5,
.txt_ellipsis_line6,
.txt_ellipsis_line7,
.txt_ellipsis_line8,
.txt_ellipsis_line9,
.txt_ellipsis_line10 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.txt_ellipsis_line1 {
  -webkit-line-clamp: 1;
}

.txt_ellipsis_line2 {
  -webkit-line-clamp: 2;
}

.txt_ellipsis_line3 {
  -webkit-line-clamp: 3;
}

.txt_ellipsis_line4 {
  -webkit-line-clamp: 4;
}

.txt_ellipsis_line5 {
  -webkit-line-clamp: 5;
}

/*******************************
*　ヘッダー
********************************/
.header {}

.body_home .header {
  display: none;
}

.body_home .header .hdr_logo {}

.hdr1 {
  display: flex;
  /*flex-wrap: wrap;*/
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
  background: #FFF;
}

/* ロゴ */
.hdr_logo {}

.hdr_logo img {
  width: 70px;
  ;
}

/* メニュー全般 */
.hdr_menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* TELボタン */
.hdr_tel {}

.hdr_tel_txt1 {
  font-size: 20px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
}

.hdr_tel_link {}

.hdr_tel_link p {}

.hdr_tel_link p:before {
  display: inline-block;
  content: "\f095";
  font-family: "fontAwesome";
  margin-right: 6px;
  -webkit-transform: rotate(15deg);
  transform: rotate(15deg);
  color: var(--main-color);
}


/* お問い合わせボタン */
.hdr_contact {
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.hdr_contact a {
  background: var(--main-color);
  color: #FFF;
  width: 185px;
  padding: 10px 5px;
  text-align: center;
  transition: 0.2s all;
}

.hdr_contact a.email p:before {
  content: "\f0e0";
  font-family: "fontAwesome";
  margin-right: 10px;
}

.hdr_contact a:hover {
  background: var(--sub-color);
  color: #FFF;
}

/* SNSボタン */
.hdr_sns {
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.hdr_sns a {
  width: 24px;
  transition: 0.2s all;
}

.hdr_sns a:hover {
  filter: brightness(1.1);
}

.hdr_sns a img {
  display: block;
}

.hdr_sns a+a {
  margin-left: 10px;
}


@media (min-width:375px) {}

@media (max-width:767px) {

  .hdr1 {
    justify-content: center;
  }

  /* お問い合わせボタン */
  .hdr_contact {
    display: none;
  }

  /* SNSボタン */
  .hdr_sns {
    margin-left: 20px;
  }

  .hdr_sns a img {
    height: 30px;
  }

  .hdr_contact_btn {
    display: none;
  }
}

@media (min-width:768px) {

  /* ヘッダー固定 */
  body {
    /* ヘッダーの高さに応じて */
  }

  .header {
    height: 0;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    transition: all .2s;
  }

  .hdr_outer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .hdr_contact_btn {
    width: 200px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #181818;
    font-size: 20px;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    line-height: 1;
    transition: all .2s;
  }

  .hdr_contact_btn:hover {
    background: #000000;
    color: #fff;
  }

  .hdr_menubtn {
    background: #000000;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
  }



  .hdr1 {
    padding: 0 15px 0;
  }

  /* ロゴ */
  .hdr_logo {
    display: block;
    transition: all .2s;
  }

  .hdr_logo img {
    transition: all .2s;
    width: auto;
  }

  /* ヘッダースリム */
  .header.slim {
    /*   background: #1a1a1a;*/
  }

  .header.slim .hdr_logo img {
    width: 91px;
  }

  /* TELボタン */
  .hdr_tel {}

  .hdr_tel_txt1 {
    font-size: 24px;
  }

  .hdr_tel_link p:before {
    margin-right: 6px;
  }


}

@media (min-width:1024px) {

  /* ロゴ */
  .hdr_logo img {
    width: 130px;
  }

  /* ヘッダースリム */
  .header.slim {}

  /* TELボタン */
  .hdr_tel {}

  .hdr_tel_txt1 {
    font-size: 26.5px;
  }

  .hdr_contact_btn {
    font-size: 26px;
  }
}

@media (min-width:1200px) {

  /* ロゴ */
  .hdr_logo {}

  .hdr_logo img {
    width: 130px;
  }

  /* ヘッダースリム */
  .header.slim {}

}


/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv {
  position: relative;
  z-index: 1;
  /*overflow: visible;*/

}

.mv_row {
  overflow: hidden;
  margin-left: -10px;
}

*+.mv_row {
  margin-top: 20px;
}

.mv_row.line1 {
  width: 100.8854%;
  width: 101.5%;
}

.mv_row.line1 img {
  width: 100.8854vw;
  width: 101.5vw;
}

.mv_row.line2 {
  width: 31.4583%;
}

.mv_row.line2 img {
  width: 31.4583vw;
}

.mv_row.line3 {
  width: 103.3333%;
  width: 101.5%;
}

.mv_row.line3 img {
  width: 103.3333vw;
  width: 101.5vw;
}

.mv_row img {
  padding: 0 10px
}

.mv_txt {
  position: relative;
  z-index: 1;
}

.mv_txt_inner {
  width: 300%;
  display: flex;
  position: relative;
  z-index: 1;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  transition: 0.3s all;
}

.mv_txt_inner.left {
  transform: translateX(-16.6666%);
}

.mv_txt_inner.right {
  transform: translateX(-83.3333%);
}

.mv_txt_inner.top {
  clip-path: polygon(0% 0%,
      /* 左上 */
      100% 0%,
      /* 右上 */
      100% 50%,
      /* 右下 */
      0% 50%
      /* 左下 */
    );
}

.mv_txt_inner.bottom {
  clip-path: polygon(0% 50%,
      /* 左上 */
      100% 50%,
      /* 右上 */
      100% 100%,
      /* 右下 */
      0% 100%
      /* 左下 */
    );
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
}

.mv_txt_fill {
  opacity: 0;
  position: absolute;
  z-index: 1;
  inset: 0;
  transition: 0.5s all;
}

.mv_txt_ol {
  opacity: 0;
  position: relative;
  z-index: 1;
  transition: 0.5s all;
}

.mv_txt_fill.on {
  opacity: 1;
}

.mv_txt_ol.on {
  opacity: 1;
}


.mv_txt,
.mv_catch {
  transition: 1.5s all;
}

.mv_txt.hidden,
.mv_catch.hidden {
  opacity: 0;
}

.mv_img {
  width: 36.875%;
  opacity: 0;
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%, 4%);
  transform: translate(-50%, 4%);
  transition: 1.5s all;
}

.mv_img.on {
  opacity: 1;
}

.mv_logo {
  width: 22%;
  opacity: 0;
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-71%, -83%);
  transform: translate(-71%, -83%);
  transition: 4.5s all;
}

.mv_logo.on {
  opacity: 1;
}

.mv_logo_inner {
  transition: 2s all;
}

.mv_logo_inner.zoom {
  /*transform: scale(2.6);*/
  transform: scale(4.5);
}

.mv_logo_inner.zoom2 {
  transform: scale(5.5);
}

.noTransition {
  transition: 0s all !important;
}

.mv_catch {
  width: 37.39%;
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 1%;
  -webkit-transform: translate(0, -33%);
  transform: translate(0, -33%);
}

/**/
.mv_logo {
  transition: opacity 3s, transform 1s, background-color 1s;
}


@media (max-width:767px) {

  .mv_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 58px);
  }

  .mv_wrap .mv {
    width: 100%;
  }

  /* スマホレイアウト */
  .mv {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  *+.mv_row {
    margin-top: 10px;
  }

  .mv_row {
    /*justify-content: center;*/
    margin-left: 0;
  }

  .mv_row img {
    display: block;
    /*padding: 0 0;*/
  }

  .mv_row.line1 {
    width: 105%;
    /*width: 103%;*/
    width: 100%;
    margin-top: 5px;
  }

  .mv_row.line1 img {
    width: 103vw;
    width: 100vw;
  }

  .mv_row.line2 {
    width: 45.333%;
    width: 100%;
  }

  .mv_row.line2 img {
    width: 45.333vw;
    width: 100vw;
  }

  .mv_row.line3_1 {
    width: 72.533%;
    /*width: 84.18%;*/
    margin-left: auto;
    margin-right: auto;
    margin-top: 71.333vw;
  }

  .mv_row.line3_1 img {
    width: 72.533vw;
    /*width: 84.18vw;*/
  }

  .mv_row.line3_2 {
    /*width: 98.933%;*/
    /*width: 103%;*/
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .mv_row.line3_2 img {
    /*width: 98.933vw;*/
    /*width: 103vw;*/
    width: 100vw;
  }

  .mv_catch {
    position: static;
    transform: none;
    width: 52.666%;
    width: 84.18%;
    width: 75%;
    margin: 20px auto 0;
    margin-top: 20px;
  }

  .mv_logo {
    width: 60%;
    bottom: 15%;
    bottom: 11%;
    -webkit-transform: translate(-50%, -83%);
    transform: translate(-50%, -83%);
  }

  .mv_logo_inner.zoom2 {
    transform: scale(2);
  }
}

@media (max-width:429px) {
  .mv_row.line3_1 {
    margin-top: 69.333vw;
  }
}

@media (max-width:414px) {
  .mv_row.line3_1 {
    margin-top: 74.333vw;
  }
}

@media (max-width:412px) {
  .mv_row.line3_1 {
    margin-top: 79.333vw;
  }
}

@media (max-width:389px) {

  .mv_logo {
    width: 50%;
    bottom: 10%;
  }

  .mv_catch {
    width: 60%;
  }

  .mv_row.line3_1 {
    margin-top: 44.333vw;
  }

  .mv_row.line1 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .mv_row.line1 img {
    width: 90vw;
  }

  .mv_row.line2 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .mv_row.line2 img {
    width: 90vw;
  }

}

@media (max-width:360px) {




  .mv_row.line3_1 {
    margin-top: 44.333vw;
  }

}

@media (min-width:768px) {

  .mv_logo.on.center {
    transform: translate(-50%, -83%);
  }

}

@media (min-width:768px) {

  /* MV */
  .mv {}


}

@media (min-width:1024px) {


  /* MV */
  .mv {}

  .mv_img {}


}

@media (min-width:1200px) {

  /* MV */
  .mv {}

  .mv_img {}

  .mv_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }

  .mv_wrap .mv {
    width: 100%;
  }


}


/*******************************
*　サイドバー
********************************/

/* サイドバー */
.sidebar {
  position: fixed;
  z-index: 2;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

/* バナー */
.sidebar_bn {
  display: block;
}

.sidebar_bn img {
  width: 40px;
  transition: 0.2s all;
}

.sidebar_bn:hover {}

.sidebar_bn:hover img {
  transform: scale(1.05);
  filter: brightness(1.05);
}


@media (min-width:768px) {

  /* サイドバー */
  .sidebar {
    top: 50%;
  }

  /* バナー */
  .sidebar_bn {}

  .sidebar_bn img {
    width: 60px;
  }


}

@media (min-width:1024px) {}

@media (min-width:1200px) {

  /* バナー */
  .sidebar_bn {}

  .sidebar_bn img {
    width: auto;
  }

}


/*******************************
*　下層ヘッダー
********************************/
.pg_header {
  margin-bottom: 100px;
  position: relative;

}

.pg_header_triangle {
  background-image: url(/system_panel/uploads/images/bg_red.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  aspect-ratio: 1920 / 260;
}

.pg_header_img {
  aspect-ratio: 1920 / 730;
  position: relative;
}

.pg_header_img img {
  width: 100%;
  -webkit-mask-image: url(/system_panel/uploads/images/pg_hdr_cli@.png);
  aspect-ratio: 1920 / 731;
  max-width: none;
  position: absolute;
  z-index: 1;
  top: 0;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
}

.pg_header_img:before {
  padding-top: 180px;
}

.pg_header_img:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}

.pg_header_text {
  text-align: center;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 4;
}

.pg_header_text_en {
  font-size: 60px;
  font-weight: 400;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.025em;
  line-height: 1;
  white-space: nowrap;
}

.pg_header_text_ja {}

/*流れるテキスト*/
.pg_inif_outer {
  width: 100%;
  position: absolute;
  bottom: -70px;
  bottom: -90px;
  z-index: 2;
}

.pg_inif_text {

  /*  font-size: clamp(3.125rem, 0.625rem + 12.5vw, 15.625rem);
    font-weight: 400;
    font-family: "Bebas Neue", sans-serif;
    line-height: 1;
     color: transparent;
    text-shadow: 1px 1px 0px #ffffff, -1px -1px 0px #ffffff;
    text-stroke: 1px #fff;*/

}

.pg_inif_text img {
  display: block;
  width: 550px;
}

@media (min-width:768px) {
  .pg_header {
    margin-bottom: 160px;
  }

  .pg_header_img {}

  .pg_header_img:before {
    padding-top: 400px;
  }

  .pg_header_img:after {}

  .pg_header_text {}

  .pg_header_text_en {
    font-size: 100px;
  }

  .pg_header_text_ja {}

  /*流れるテキスト*/
  .pg_inif_outer {
    bottom: -160px;
  }

  .pg_inif_text {}

  .pg_inif_text img {
    display: block;
    width: auto;
  }
}

@media (min-width:1024px) {
  .pg_header {
    margin-bottom: 240px;
  }

  .pg_header_img {}

  .pg_header_img:before {
    padding-top: 500px;
  }

  .pg_header_img:after {}

  .pg_header_text {}

  .pg_header_text_en {
    font-size: 160px;
  }

  .pg_header_text_ja {}

  /*流れるテキスト*/
  .pg_inif_outer {}

  .pg_inif_text {}
}

@media (min-width:1200px) {
  .pg_header_img:before {
    padding-top: 730px;
  }

  /*流れるテキスト*/
  .pg_inif_outer {
    bottom: -220px;
  }
}



/*******************************
*　フッター
********************************/

.footer {
  margin-top: 50px;
}

.ftr1 {
  border-top: 1px solid #7d7d7d;
  border-bottom: 1px solid #7d7d7d;
  padding: 30px 0;
  margin-bottom: 25px;
}

.ftr1>.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.ftr1_box1 {}

.ftr1_box2 {}

.ftr_logo {
  margin-bottom: 25px;
}

.ftr_name {
  font-weight: 500;
  letter-spacing: 0.075em;
  margin-bottom: 10px;
}

.ftr_addr {
  margin-bottom: 10px;
}


.ftr_contact {
  display: block;
  background: #ef7f1a;
  border-radius: 10px;
  color: #FFF;
  width: 255px;
  padding: 13px 5px;
  text-align: center;
}

.ftr_contact p:before {
  content: "\f0e0";
  font-family: "FontAwesome";
  margin-right: 10px;
}

.ftr_addr em {
  font-style: normal;
}

.ftr_copy {
  font-size: 14px;
  text-align: center;
  background: #fff;
  color: #181818;
  padding: 14px 0;
  margin-top: 40px;
}

.ftr_copy a:hover {
  color: #e60011;
}

/* 追尾スマホメニュー */
.footer_fix {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #7ecef4;
  /*z-index: 1000;*/
  z-index: 5;
  /* チャットボットがある場合 */
  flex-wrap: wrap;
  border-top: 1px solid #fff;
}

.footer_fix>a {
  font-size: 12px;
  text-align: center;
  display: block;
  padding: 10px 5px 5px;
  background: #1a1a1a;
  text-decoration: none;
  line-height: 1.2;
}

.footer_fix .footer_fix_item_1 {
  width: 38%;
  border-right: 1px solid #fff;
}

.footer_fix .footer_fix_item_1.recruit {
  background: #eeeeee;
  color: #024b93;
}

.footer_fix .footer_fix_item_2 {
  width: 24%;
  background: #1a1a1a;
}

.footer_fix>a i {
  font-size: 20px;
  margin-bottom: 8px;
}

.footer_fix .footer_fix_item_1.remorte i {
  margin-bottom: 0;
}

/* ページTOPに戻る */
.pagetop {
  display: none;
  position: fixed;
  z-index: 5;
  right: 10px;
  bottom: 60px;
  z-index: 3;
}

.pagetop a {
  display: block;
  font-size: 0;
  width: 42px;
  height: 42px;
  text-align: center;
  color: #d0cece;
}

.pagetop a i {
  font-size: 40px;
}


.ftr_contact_wrap {
  position: relative;
}

.ftr_contact_img {}

.ftr_contact_img:before {
  padding-top: 960px;
}

.ftr_contact_img:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.ftr_contact_inner {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
}

.ftr_contact_inner .sec_tt_en {
  font-size: clamp(2.5rem, 1.75rem + 3.75vw, 6.25rem);
}

.ftr_contact_inner .sec_tt_ja {
  font-size: 15px;
  margin-top: -0.5em;
}

.ftr_contact_inner .sec_tt_ja:before {
  display: block;
}

.ftr_contact_inner .content_desc {}

.ftr_contact_items {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}

.ftr_contact_item {
  width: 100%;
  position: relative;
}

.ftr_contact_item:nth-child(n+2) {
  margin-top: 30px;
}

.ftr_contact_item_inner {}

.ftr_contact_item_tt {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
}

.ftr_contact_item .read_more {
  margin-top: 10px;
}

.ftr_contact_item .read_more a {
  cursor: pointer;
}

.ftr_contact_item .read_more a:hover {
  transform: scale(1.05);
}

.ftr_contact_item .read_more.no1 a {
  background: #e60011;
}

/*.ftr_contact_item .read_more.no1 a:hover{
  background: #fff;
  color: #e60011;
}*/
.ftr_contact_item .read_more.no1 p:before {
  content: "";
  display: block;
  width: 18px;
  height: 16px;
  background-image: url(/system_panel/uploads/images/mail_wh.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 5px;
}

/*.ftr_contact_item .read_more.no1 a:hover p:before{
  background-image: url(/system_panel/uploads/images/mail_red.svg);
}*/
.ftr_contact_item .read_more.no2 a {
  background: #06c755;
}

.ftr_contact_item .read_more.no2 p:before {
  content: "";
  display: block;
  width: 30px;
  height: 24px;
  background-image: url(/system_panel/uploads/images/line.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 5px;
}

/*.ftr_contact_item .read_more.no2 a:hover{
  background: #fff;
  color: #06c755;;
}
.ftr_contact_item .read_more.no2 a:hover p:before{
  background-image: url();
}*/
.ftr_contact_item .read_more.no3 a {
  background: #e60011;
}

.ftr_contact_item .read_more.no3 p:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(/system_panel/uploads/images/shirts_wh.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 5px;
}

/*.ftr_contact_item .read_more.no3 a:hover{
  background: #fff;
  color: #e60011;
}
.ftr_contact_item .read_more.no3 a:hover p:before{
  background-image: url(/system_panel/uploads/images/shirts_red.svg);
}*/
.ftr_contact_item .read_more p {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ftr_contact_phone {
  text-align: center;
  margin-top: 40px;
}

.ftr_contact_phone1 {
  font-size: 40px;
  font-weight: 400;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.065em;
  line-height: 1;
  margin-top: 10px;
}

.ftr_contact_phone1 a:hover {
  color: #e60011;
}

.ftr_contact_phone2 {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;

}

/*スポンサー*/
.ftr_sponser_wrap {
  background: #737373;
  padding: 50px 0;
}

.ftr_sponser_items {
  display: flex;
  flex-wrap: wrap;
}

.ftr_sponser_item {
  width: 100%;
  ;
}

.ftr_sponser_item:nth-child(n+2) {
  margin-top: 16px;
}

.ftr_sponser_item_img {}

.ftr_sponser_item_img a {
  display: block;
}

.ftr_sponser_item_img a:hover {
  filter: brightness(1.5);
}

.ftr_1 {
  background: #e60011;
  padding: 50px 0 20px;
}

.ftr_1_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.ftr_1_box1 {
  width: 100%;
}

.ftr_logo {}

.ftr_add {
  font-size: 16px;
  font-weight: 500;
  line-height: 2.25em;
  margin-top: 19px;
}

.ftr_add a:hover {
  color: #1a1a1a;
}

.ftr_sns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 17px;
}

.ftr_sns_item {
  display: block;
}

.ftr_1_box2 {
  width: 100%;
}

.ftr_links_box {}

@media (min-width:375px) {}

@media (max-width:767px) {

  body {
    padding-bottom: 56px;
  }

  .footer_fix {
    display: flex;
  }

  .ftr_sponser_items {
    justify-content: space-between;
  }

  .ftr_sponser_item {
    width: 49%;
  }

  .ftr_sponser_item:nth-child(n+2) {
    margin-top: 0;
  }

  .ftr_sponser_item:nth-child(n+3) {
    margin-top: 10px;
  }

  .ftr_sponser_item img {
    display: block;
    width: 250px;
    margin: 0 auto;
  }

  .ftr_sns_item {
    margin: 0 10px;
  }

  .ftr_1_box {
    text-align: center;
  }

  .ftr_sns {
    justify-content: center;
  }

  .ftr_1_box2 {
    display: none;
  }

  .ftr_contact_inner .sec_tt_ja:before {
    min-width: 20px;
    margin-right: 5px;
  }

  .ftr_contact_inner .sec_tt_ja:after {
    min-width: 20px;
    margin-left: 5px;
  }

  .ftr_contact_item:after {
    content: "";
    display: block;
    width: 250px;
    height: 1px;
    background: #fff;
    position: absolute;
    bottom: -14%;
    left: 50%;
    transform: translateX(-50%);
  }

  .ftr_contact_item:last-child:after {
    display: none;
  }
}

@media (min-width:768px) {
  .footer {
    margin-top: 100px;
  }

  .ftr_copy {
    margin-top: 74px;
  }

  .ftr_contact_wrap {}

  .ftr_contact_img {}

  .ftr_contact_img:before {
    padding-top: 791px;
  }

  .ftr_contact_img:after {}

  .ftr_contact_inner {}

  .ftr_contact_inner .sec_tt_en {}

  .ftr_contact_inner .sec_tt_ja {
    font-size: 15px;
  }

  .ftr_contact_inner .sec_tt_ja:before {}

  .ftr_contact_inner .content_desc {
    margin-top: 40px;
  }

  .ftr_contact_items {
    justify-content: space-between;
    margin-top: 50px;
  }

  .ftr_contact_item {
    width: 31.53%;
    position: relative;
  }

  .ftr_contact_item:after {
    content: "";
    display: block;
    width: 1px;
    height: 140px;
    background: #fff;
    position: absolute;
    top: 50%;
    right: -5%;
    transform: translateY(-50%);
  }

  .ftr_contact_item:last-child:after {
    display: none;
  }

  .ftr_contact_item:nth-child(1) .ftr_contact_item_tt {
    text-align: left;
  }

  .ftr_contact_item:nth-child(3) .ftr_contact_item_tt {
    text-align: right
  }

  .ftr_contact_item:nth-child(n+2) {
    margin-top: 0;
  }

  .ftr_contact_item_inner {}

  .ftr_contact_item_tt {
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .ftr_contact_item .read_more {}

  .ftr_contact_item .read_more.no1 {
    justify-content: flex-start;
    padding-left: 0;
  }

  .ftr_contact_item .read_more.no2 {}

  .ftr_contact_item .read_more.no3 {
    justify-content: flex-end;
    padding-right: 0;
  }

  .ftr_contact_item .read_more.no1 a {}

  .ftr_contact_item .read_more.no2 a {}

  .ftr_contact_item .read_more.no3 a {}

  .ftr_contact_phone {
    margin-top: 55px;
  }

  .ftr_contact_phone1 {
    font-size: 50px;
  }

  .ftr_contact_phone2 {
    font-size: 18px;
  }

  .ftr_contact_item:nth-child(3) .ftr_contact_item_tt {
    text-align: center;
  }

  /*スポンサー*/
  .ftr_sponser_wrap {
    padding: 80px 0;
  }

  .ftr_sponser_items {
    margin-inline: -5px;
  }

  .ftr_sponser_item {
    width: 25%;
    padding-inline: 5px;
  }

  .ftr_sns_item:hover {
    filter: brightness(1.3);
  }

  .ftr_sponser_item:nth-child(n+2) {
    margin-top: 0;
  }

  .ftr_sponser_item:nth-child(n+5) {
    width: 16.666%;
    margin-top: 10px;
  }

  .ftr_sponser_item_img {}

  .ftr_1 {
    padding: 47px 0;
  }

  .ftr_1_box {}

  .ftr_1_box1 {
    width: 42.64%;
  }

  .ftr_logo {}

  .ftr_add {}

  .ftr_sns {}

  .ftr_sns_item {

    margin-right: 12px;
  }

  .ftr_1_box2 {
    width: 41.23%;
  }

  .ftr_links_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .ftr_links {}

  .ftr_link {
    font-size: 16px;
    font-weight: 500;
    line-height: 2.25em;
  }

  .ftr_link:hover {
    color: #1a1a1a;
  }
}

@media (min-width:1024px) {
  .footer {
    margin-top: 180px;
  }

  .ftr_contact_wrap {}

  .ftr_contact_img {}

  .ftr_contact_img:before {}

  .ftr_contact_img:after {}

  .ftr_contact_inner {}

  .ftr_contact_inner .sec_tt_en {}

  .ftr_contact_inner .sec_tt_ja:before {}

  .ftr_contact_inner .content_desc {
    margin-top: 40px;
  }

  .ftr_contact_items {
    margin-top: 70px;
  }

  .ftr_contact_item {}

  .ftr_contact_item:after {
    height: 148px;
    right: -3%;
    top: 44%;
  }

  .ftr_contact_item_inner {}

  .ftr_contact_item_tt {
    font-size: 20px;
  }

  .ftr_contact_item .read_more {}

  .ftr_contact_item .read_more.no1 a {}

  .ftr_contact_item .read_more.no2 a {}

  .ftr_contact_item .read_more.no3 a {}

  .ftr_contact_item .read_more.no1 {
    justify-content: flex-start;
    padding-left: 10px;
  }

  .ftr_contact_item .read_more.no2 {}

  .ftr_contact_item .read_more.no3 {
    justify-content: flex-end;
    padding-right: 30px;
  }

  .ftr_contact_phone {}

  .ftr_contact_phone1 {
    font-size: 60px;
  }

  .ftr_contact_phone2 {}

  /*スポンサー*/
  .ftr_sponser_wrap {
    padding: 149px 0 133px;
  }

  .ftr_sponser_items {
    margin-inline: -12px;
  }

  .ftr_sponser_item {
    padding-inline: 12px;
  }

  .ftr_sponser_item:nth-child(n+5) {
    margin-top: 31px;
  }

  .ftr_sponser_item_img {}

  .ftr_1 {}

  .ftr_1_box {}

  .ftr_1_box1 {
    width: 48.64%;
  }

  .ftr_logo {}

  .ftr_add {}

  .ftr_sns {}

  .ftr_sns_item {}

  .ftr_1_box2 {
    width: 34.23%;
  }

  .ftr_links_box {}

  .ftr_links {}

  .ftr_link {}
}

@media (min-width:1200px) {
  .ftr_contact_item:nth-child(3) .ftr_contact_item_tt {
    text-align: right;
  }

  .ftr_contact_item:nth-child(1) .ftr_contact_item_tt {
    justify-content: flex-start;
  }

  .ftr_contact_item:nth-child(3) .ftr_contact_item_tt {
    justify-content: flex-end;
  }
}


/*******************************
*　共通パーツ
********************************/
.gjs-dashed {
  background: #1a1a1a;
}

/* テーブル用 */
.table_rows {
  display: table;
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}

.table_rows_tr {
  display: table-row;
}

.table_rows_th,
.table_rows_td {
  display: table-cell;
  border: 1px solid #dcdcdc;
  vertical-align: middle;
  padding: 10px 15px;
  letter-spacing: 0.075em;
}

.table_rows_th {
  background-color: #eeeeee;
  vertical-align: top;
  border-right: 0;
}

.table_rows_td {
  background-color: #eeeeee;
  vertical-align: top;
  border-left: 0;
}

.table_rows_td_pad0 {
  padding: 0 !important;
}

/* テーブル入れ子 */
.table_rows .table_rows {}

.table_rows .table_rows>.table_rows_tr:first-child .table_rows_th,
.table_rows .table_rows>.table_rows_tr:first-child .table_rows_td {
  border-top: 0;
}

.table_rows .table_rows>.table_rows_tr:last-child .table_rows_th,
.table_rows .table_rows>.table_rows_tr:last-child .table_rows_td {
  border-bottom: 0;
}

.table_rows .table_rows>.table_rows_tr .table_rows_th:first-child,
.table_rows .table_rows>.table_rows_tr .table_rows_td:first-child {
  border-left: 0;
}

.table_rows .table_rows>.table_rows_tr .table_rows_th:last-child,
.table_rows .table_rows>.table_rows_tr .table_rows_td:last-child {
  border-right: 0;
}


/* ページネーション */
.webgene-pagination {
  width: 100%;
  margin: 50px 0 0;
  line-height: 1.85;
}

.webgene-pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

.webgene-pagination li {
  padding: 4px 13px;
  margin: 0 4px;
  border: 1px solid #e60011;
  background: #1a1a1a;
  font-weight: 500;
}

.webgene-pagination li.selected {
  border: 0;
  background: #e60011;
}

.webgene-pagination li.next a:after {
  content: "\f101";
  font-family: 'FontAwesome';
  font-weight: 900;
  display: inline-block;
  margin-left: 10px;
}

.webgene-pagination li.prev a:before {
  content: "\f100";
  font-family: 'FontAwesome';
  font-weight: 900;
  display: inline-block;
  margin-right: 10px;
}

/* アンカー */
.anchor {
  position: relative;
  top: -30px;
}

/* ボタン */
.read_more {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  margin-left: -5px;
  margin-right: -5px;
}

.read_more a {
  width: 240px;
  font-size: 16px;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  text-align: center;
  border: 1px solid transparent;
  background: #1a1a1a;
  /*border-radius: 27px;*/
  color: #FFF;
  padding: 16px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}

.read_more a p {
  letter-spacing: 0.05em;
  ;
}

.read_more a:after {
  display: none;
}

.read_more a:hover {
  color: #181818;
  background: #FFF;
}

.read_more a:hover:after {
  margin-right: -5px;
}

.read_more.wh a {
  background: #fff;
  color: #181818;
}

.read_more.wh a:hover {
  background: #1a1a1a;
  color: #fff;
}

.read_more.red a {
  background: #e60011;
}

.read_more.red a:hover {
  background: #fff;
  color: #e60011;
}


/* 見出し */
.tt2 {
  text-align: center;
  margin-bottom: 30px;
}

.tt2_en {
  font-size: 32px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  color: #565656;
}

.tt2_ja {
  font-size: 16px;
  font-weight: 500;
  margin-top: 5px;
}

.tt2_ja2 {
  font-size: 18px;
  font-weight: 500;
  margin-top: 15px;
}

.tt2_ja2 strong {
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}


/* セクション */
.section {
  padding-top: 50px;
  padding-bottom: 50px;
}

.section.sec1 {
  padding-top: 0;
}

.section:last-child {
  padding-bottom: 0;
}

.section.beige {
  background-color: #c3b9a9;
}

/*タイトル*/
.sec_tt {
  text-align: center;
}

.sec_tt_outer {
  display: inline-block;
}

.sec_tt_outer {
  text-align: center;
}

.sec_tt_en {
  /*  font-size: clamp(1.875rem, -0.25rem + 13.63vw, 12.5rem);*/
  font-size: clamp(2.938rem, 1.025rem + 9.56vw, 12.5rem);
  font-weight: 400;
  font-family: "Bebas Neue", sans-serif;
  line-height: 1;
  letter-spacing: 0.025em;
  color: #fff;
}

.sec_tt_ja {
  color: #fff;
  position: relative;
  z-index: 1;
  margin-top: -0.1rem;
}

.sec_tt_ja img {
  position: relative;
  z-index: 2;
}

.sec_tt_outer.left {
  text-align: left;
}

.sec_tt_outer.center .sec_tt_ja {
  max-width: 855px;
  margin-inline: auto;
}

.sec_tt_ja:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.sec_tt_ja_txt {
  display: inline-block;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.sec_tt_ja.bg_pr .sec_tt_ja_txt {
  background-image: url(/system_panel/uploads/images/bg_pr.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.sec_tt_ja.bg_bk .sec_tt_ja_txt {
  background: #1a1a1a;
}

.sec_tt_ja.left .sec_tt_ja_txt {
  padding-left: 0;
}


/*サブタイトル*/
.sec_sub_tt {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.38em;
  margin-top: 32px;
}

.sec_sub_tt p {
  letter-spacing: 0;
}

/*説明*/
.content_desc {
  font-size: 16px;
  font-weight: 500;
  line-height: 2.125em;
  text-align: justify;
  margin-top: 20px;
}


/* コンテナ */
.container.wide {}


@media (max-width:374px) {}

@media (min-width:375px) {}

@media (max-width:767px) {
  .pg_header_text_en {
    font-size: 36px;
  }

  /* スマホ用テーブル */
  .table_rows.resp {}

  .table_rows.resp,
  .table_rows.resp .table_rows_tr,
  .table_rows.resp .table_rows_th,
  .table_rows.resp .table_rows_td {
    display: block;
    width: 100%;
    border: 0;
  }

  .table_rows.resp {
    border: 1px solid #dcdcdc;
    border-top: 0;
  }

  .table_rows.resp .table_rows_th,
  .table_rows.resp .table_rows_td {
    border-top: 1px solid #dcdcdc;
  }

  .sec_tt_ja {
    font-size: 15px !important;
  }

  .sec_tt_ja:before {
    margin-right: 5px !important;
  }

  .sec_tt_ja:after {
    margin-left: 5px !important;
    min-width: 20px;
  }

  .about_vision_title_ja {
    font-size: 15px !important;
  }

  .about_vision_title_ja:after {
    margin-left: 5px !important;
  }
}

@media (min-width:768px) {

  .anchor {
    top: -100px;
  }

  /* ページネーション */
  .webgene-pagination {
    margin-top: 50px;
  }

  /* ボタン */
  .read_more {
    margin-top: 35px;
  }

  .read_more.center {
    justify-content: center;
  }

  .read_more.left {
    justify-content: flex-start;
  }

  .read_more.right {
    justify-content: flex-end;
  }

  .read_more a {
    width: 240px;
    font-size: 18px;
    padding: 27px 20px;
    margin: 5px 5px;
  }

  .read_more a:after {
    display: none;
  }

  .read_more a:hover:after {
    margin-right: -5px;
  }

  .read_more.top-category-items a {
    padding: 10px 20px;
  }

  /* 見出し */
  .tt2 {
    margin-bottom: 50px;
  }

  .tt2_en {
    font-size: 46px;
  }

  .tt2_ja {
    font-size: 16px;
    margin-top: 15px;
  }

  .tt2_ja2 {
    font-size: 24px;
    margin-top: 30px;
  }

  .tt2_ja2 strong {
    font-size: 18px;
  }

  /*タイトル*/
  .sec_tt_outer {}

  .sec_tt_en {
    letter-spacing: 0em;
  }

  .sec_tt_ja {
    margin-top: -1.1rem;
  }

  .sec_tt_ja_txt {
    font-size: 22px;
  }


  /*サブタイトル*/
  .sec_sub_tt {
    font-size: 24px;
  }

  /*説明*/
  .content_desc {}
}

@media (min-width:1024px) {

  /* ページネーション */
  .webgene-pagination {
    margin-top: 72px;
  }

  .posts_list .webgene-pagination {
    margin-top: 80px;
  }

  /* 見出し */
  /*.tt2{
    margin-bottom: 50px;
  }
  .tt2_en{
    font-size: 46px;
  }
  .tt2_ja{
    font-size: 16px;
    margin-top: 15px;
  }*/

  /*タイトル*/
  .sec_tt_outer {}

  .sec_tt_en {
    letter-spacing: 0.025em;
  }

  .sec_tt_ja {}

  .sec_tt_ja_txt {}


  /*サブタイトル*/
  .sec_sub_tt {
    font-size: 28px;
  }

  /*説明*/
  .content_desc {}

  .content_desc.center {
    text-align: center;
  }
}

@media (min-width:1200px) {}

@media (min-width:1366px) {

  /* コンテナ */
  .container.wide {
    /*max-width: calc(1600px + 100px);*/
    max-width: calc(1250px + 70px);
    padding-left: 35px;
    padding-right: 35px;
  }

  /*太文字（ピンク）*/
  .sec_lg_txt {}

  /*サブタイトル*/
  .sec_sub_title {}

  /*説明*/
  .content_desc {}
}

@media (min-width:1450px) {

  .container.wide {
    /*max-width: calc(1600px + 100px);*/
    max-width: calc(1370px + 80px);
    padding-left: 40px;
    padding-right: 40px;
  }

  /*サブタイトル*/
  .sec_sub_tt {
    font-size: 36px;
  }
}

@media (min-width:1700px) {
  .container.wide {
    max-width: calc(1520px + 100px);
    padding-left: 50px;
    padding-right: 50px;
  }
}


/*******************************
*　HOME
********************************/
/*セクション*/
.pg_home {}

.pg_home .section.sec1 {
  position: relative;
  padding: 80px 0;
}

.pg_home .section.sec1:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(/system_panel/uploads/images/bg1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.pg_home .section.sec2 {
  padding: 50px 0 50px;
}

.pg_home .section.sec3 {
  position: relative;
  padding: 70px 0;
}

.pg_home .section.sec3:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(/system_panel/uploads/images/bg2.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 1;
}

.pg_home .section.sec4 {
  padding: 60px 0;
}

.pg_home .section.sec5 {
  position: relative;
  z-index: 2;
}

.pg_home .section.sec6 {
  position: relative;
  padding: 50px 0;
}

.pg_home .section.sec7 {
  padding: 100px 0 0;
}

.pg_home .section.sec8 {}


/*背景*/
.sec_bg_pr {
  width: 1920px;
  ;
  aspect-ratio: 1920 / 1181;
  background-image: url(/system_panel/uploads/images/bg_naname.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -25%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

@media (max-width:767px) {}

@media (min-width:768px) {

  .pg_home .section.sec1 {
    padding: 100px 0;
  }

  .pg_home .section.sec2 {
    padding: 100px 0 110px;
  }

  .pg_home .section.sec3 {
    padding: 100px 0;
  }

  .pg_home .section.sec4 {
    padding: 100px 0;
  }

  .pg_home .section.sec5 {}

  .pg_home .section.sec6 {
    padding: 100px 0;
  }

  .pg_home .section.sec7 {
    padding: 150px 0 0;
  }

  .pg_home .section.sec8 {}

}

@media (min-width:1024px) {}

@media (min-width:1200px) {

  .pg_home .section.sec1 {
    padding: 200px 0;
  }

  .pg_home .section.sec2 {
    padding: 185px 0 200px;
  }

  .pg_home .section.sec3 {
    padding: 182px 0;
  }

  .pg_home .section.sec4 {
    padding: 150px 0 125px;
  }

  .pg_home .section.sec5 {}

  .pg_home .section.sec6 {
    padding: 100px 0;
  }

  .pg_home .section.sec7 {
    padding: 240px 0 20px;
  }

  .pg_home .section.sec8 {}

}


/*メイン*/
.home_contents1_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.home_contents1_box1 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  order: 2;
  margin-top: 40px;
}

.home_contents1_box1_img {
  width: 48%;
}

.home_contents1_box1_img:last-child {
  margin-top: 50px;
}

.home_contents1_box1_img:before {
  padding-top: 150%;
}

.home_contents1_wrap .sec_tt_en {
  text-align: left;
}

.home_contents1_wrap .sec_sub_tt {
  text-align: left;
}

.home_contents1_box2 {
  width: 100%;
  order: 1;
}

/*コース紹介*/
.home_contents2_wrap {}

.home_contents2_wrap .content_desc.center {}

/*コース紹介*/
.home_contents2_items {
  margin-top: 60px;
}

.home_contents2_item {
  position: relative;
}

.home_contents2_item:nth-child(n+2) {
  margin-top: 50px;
}

.home_contents2_item_img {
  /*  aspect-ratio: 1520 / 600;*/
  position: relative;
}

.tryangle {
  width: 38.48%;
  aspect-ratio: 1;
  background: #1a1a1a;
  position: absolute;
  bottom: -1px;
  z-index: 1;
}

.home_contents2_item:nth-child(odd) .tryangle {
  clip-path: polygon(0 101%, 113% 0, 100% 100%);
  right: 0;
}

.home_contents2_item:nth-child(even) .tryangle {
  clip-path: polygon(0 100%, 0 0, 100% 100%);
  left: 0;
}

.tryangle_txt {
  position: absolute;
  bottom: 0;
  z-index: 2;
}

.home_contents2_item:nth-child(odd) .tryangle_txt {
  right: -70px;
  bottom: -55px;
}

.home_contents2_item:nth-child(even) .tryangle_txt {
  left: 0;
}

.home_contents2_item:nth-child(1) .tryangle_txt {
  width: 57%;
}

.home_contents2_item:nth-child(2) .tryangle_txt {
  width: 34%;
}

.home_contents2_item:nth-child(3) .tryangle_txt {
  width: 42%;
}

/*.home_contents2_item_img img{
  width: 100%;
   
   aspect-ratio: 1520 / 600;
    max-width: none;
    position: absolute;
    z-index: 1;
    top: 0;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
}
.home_contents2_item:nth-child(odd) .home_contents2_item_img img{
   -webkit-mask-image: url(/system_panel/uploads/images/bg_right.png);
}
.home_contents2_item:nth-child(even) .home_contents2_item_img img{
   -webkit-mask-image: url(/system_panel/uploads/images/bg_left.png);
}*/
.home_contents2_item_img:before {
  padding-top: 600px;
}

.home_contents2_item_img:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.home_contents2_item_inner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.home_contents2_item:nth-child(odd) .home_contents2_item_inner {
  left: 0;
}

.home_contents2_item:nth-child(even) .home_contents2_item_inner {
  top: 50%;
  left: 54%;
  transform: translateY(-50%) translateX(-50%);
}

.home_contents2_item_tt {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
  color: #fff;
}

.home_contents2_item .content_desc {}

.home_contents2_item .read_more {}

.home_contents2_item_num {
  color: #fff;
  font-size: clamp(2.5rem, 0.5rem + 10vw, 12.5rem);
  font-weight: 400;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0;
  line-height: 1;
  position: absolute;
  top: -78px;
  z-index: 2;
}

.home_contents2_item:nth-child(odd) .home_contents2_item_num {
  left: 3.6%;
}

.home_contents2_item:nth-child(even) .home_contents2_item_num {
  right: 3.6%;
}

/*コーチ*/
.home_contents3_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.home_contents3_box1 {
  width: 100%;
}

.home_contents3_box1 .content_desc {}

.home_contents3_box1 .read_more {}

.home_contents3_box2 {
  width: 100%;
  margin-top: 30px
}

.home_contents3_box2 .webgene-blog {
  display: flex;
}

.home_contents3_box2 .webgene-item {}

.home_contents3_box2 .webgene-item a {}

.home_contents3_box2 .webgene-item a:hover {
  color: #1a1a1a;
}

.home_contents3_box2 .webgene-item .img {
  overflow: hidden;
}

.home_contents3_box2 .webgene-item .img:before {
  padding-top: 133.33%;
}

.home_contents3_box2 .webgene-item .box2 {
  margin-top: 16px;
}

.home_contents3_box2 .webgene-item .meta {
  display: flex;
  align-items: center;
}

.home_contents3_box2 .webgene-item .title {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
}

.home_contents3_box2 .webgene-item .category {
  display: inline-block;
  background: #1a1a1a;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.075em;
  text-align: center;
  padding: 0 10px;
}

.home_contents3_box2 .webgene-item .lisense {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
}

.slide_pagenation_right {
  display: flex;
  align-items: center;
}

.slide-prev {
  width: 60px;
  aspect-ratio: 1 / 1;
  background-image: url(/system_panel/uploads/images/left.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
}

.slide-next {
  width: 60px;
  aspect-ratio: 1 / 1;
  background-image: url(/system_panel/uploads/images/right.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
}

.swiper-button-disabled {
  /*display: none;*/
  display: block;
  opacity: 0.3;
  pointer-events: none;
}

/*試合結果*/
.home_contents4_box_outer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}

.home_contents4_box {
  width: 100%;
}

.home_contents4_box:nth-child(n+2) {
  margin-top: 50px;
  ;
}

.home_contents4_box .webgene-item .inner {}

.home_contents4_box .webgene-item .head {
  text-align: center;
  width: 100%;
  background: #ffffff;
  color: #181818;
  justify-content: center;
  padding: 8px 0 9px;
  margin-bottom: 0;
  min-height: 32px;
  font-weight: 500;
  margin-top: 18px;
}

.home_contents4_box.home .webgene-item .stadium {}

.home_contents4_box .webgene-item .score {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  min-height: 158px;
  width: 100%;
  min-height: 0;
  justify-content: space-between;
}



.home_contents4_box .webgene-item .score_box1 {
  width: 205px;
  justify-content: flex-start;
  text-align: center;
}

.home_contents4_box .webgene-item .team {
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.075em;
}

.home_contents4_box .webgene-item .score_box2 {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  width: 210px;
}

.home_contents4_box .webgene-item .point {
  font-size: 58px;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
}

.home_contents4_box .webgene-item .status {
  display: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 15px;
}

.home_contents4_box .webgene-item .status.on {
  display: block;
}

.home_contents4_box .webgene-item .status.end {
  background: #e60012;
  color: #FFF;
  font-size: 14px;
  padding: 0px 5px 2px;
}

.home_contents4_box .webgene-item .status.vs {}

.home_contents4_box .webgene-item .point {}

.home_contents4_box.home .webgene-item .score_box3 {
  width: 205px;
  text-align: center;
}

.home_contents4_box.home .webgene-item .date {}

.home_contents4_box .webgene-item .date {
  width: 100%;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.075em;
  font-family: "Oswald", sans-serif;
  text-align: center;
  margin-top: -10px;
}

.home_contents4_box_tt {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.075em;
}

/*スケジュール*/
.home_contents5_items {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}

.home_contents5_item {
  width: 100%;
}

.home_contents5_item:nth-child(n+2) {
  margin-top: 40px;
}

.home_contents5_item_inner {}

.home_contents5_item_tt {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.075em;
}

.home_contents5_item_cdr {
  margin-top: 16px;
}

.home_contents5_item_cdr iframe {
  width: 100%;
  border: none;
  height: 350px;
}

/*ぼしゅう概要*/
.home_contents6_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.home_contents6_box1 {
  width: 100%;
}

.home_contents6_box1 {}

.home_contents6_box1 .sec_tt_outer {
  text-align: left;
}

.home_contents6_box1 .sec_sub_tt {}

.home_contents6_box1 .content_desc {}

.home_contents6_box1 .read_more {}

.home_contents6_box2 {
  width: 100%;
  position: relative;
  margin-top: 40px;
}

.home_contents6_box2_img1 {
  width: 43.45%;
  position: absolute;
  left: 58.04%;
  top: 0;
}

.home_contents6_box2_img1 .img_fit:before {
  padding-top: 75%;
}

.home_contents6_box2_img2 {
  width: 80.95%;
  position: absolute;
  right: 0;
  top: 26.14%;
}

.home_contents6_box2_img2 .img_fit:before {
  padding-top: 64.7%;
}

.home_contents6_box2_img3 {
  width: 49.64%;
  margin-top: 62%;
}

.home_contents6_box2_img3 .img_fit:before {
  padding-top: 66.66%;
}

.clear_txt {
  width: 62.39%;
  position: absolute;
  left: 37.29%;
  bottom: 2%;
  z-index: 2;
}

/*新着*/
.home_contents7_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.home_contents7_box1 {
  width: 100%;
}

.home_contents7_box1 .sec_tt_en {
  font-size: clamp(2.5rem, 1.75rem + 3.75vw, 6.25rem);
}

.home_contents7_box1 .sec_tt_ja_txt {
  font-size: 15px;

}

.home_contents7_box1 .sec_tt_ja {
  margin-top: -0.5em;
}

.home_contents7_box1 .sec_tt_ja:before {
  display: none;
}

.home_contents7_box1 .read_more {}

.home_contents7_box2 {
  width: 100%;
  margin-top: 40px;
}

.home_contents7_box2 .webgene-blog {}

.home_contents7_box2 .webgene-item {}

.home_contents7_box2 .webgene-item a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-top: 1px solid #b9b9b9;
  padding: 25px 0;
}

.home_contents7_box2 .webgene-item a:hover {
  color: #787878
}

.home_contents7_box2 .webgene-item:last-child a {
  border-bottom: 1px solid #ffffff;
}

.home_contents7_box2 .webgene-item .date {
  width: 95px;
  font-size: 14px;
  font-weight: 400;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.075em;
}

.home_contents7_box2 .webgene-item .category {
  width: 125px;
  background: #e60011;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.075em;
}

.home_contents7_box2 .webgene-item .title {
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
  margin-top: 16px;
}

@media (max-width:374px) {}

@media (min-width:375px) {}

@media (max-width:767px) {
  .tryangle {
    width: 53.48%;
  }

  .tryangle_txt {}

  .home_contents2_item_inner {}

  .home_contents2_item:nth-child(odd) .tryangle {
    clip-path: polygon(0 101%, 116% 0, 100% 100%);
  }

  .home_contents2_item:nth-child(1) .tryangle_txt,
  .home_contents2_item:nth-child(3) .tryangle_txt {
    right: 0;

  }

  .home_contents2_item:nth-child(1) .tryangle_txt {
    width: 61%;
    bottom: -16px;
  }

  .home_contents2_item:nth-child(2) .tryangle_txt {
    width: 40%;
    bottom: 20px;
  }

  .home_contents2_item:nth-child(3) .tryangle_txt {
    width: 46%;
    bottom: 0;
  }

  .home_contents2_item_num {
    font-size: 76px;
    top: -32px;
  }

  .home_contents2_item_inner {
    left: 0;
    transform: translateY(-50%);
    padding: 0 16px;
  }

  .home_contents2_item:nth-child(even) .home_contents2_item_inner {
    left: 0;
    transform: translateY(-50%);
  }


  /*コーチ*/
  .home_contents3_wrap {
    justify-content: center;
  }

  .home_contents3_box2 {
    margin-bottom: 40px;
  }

  .slide-prev,
  .slide-next {
    margin-inline: 16px;
  }

  .slide_pagenation_right {
    justify-content: center;
    width: 100%;
  }

  /*試合結果*/
  .home_contents4_box .webgene-item .score {
    justify-content: center;
    margin: 30px 0 40px;
  }

  .home_contents4_box .webgene-item .sp-flex-direction {
    flex-direction: column;
  }


  .home_contents7_wrap .read_more {
    width: 100%;
  }

  .home_contents7_box1 .sec_tt_ja:before {
    display: none;
  }

  .home_contents3_box2 .webgene-item .category {
    margin-left: 10px;
  }
}

@media (min-width:768px) {

  /*メイン*/
  .home_contents1_wrap {}

  .home_contents1_box1 {
    margin-top: 30px;
  }

  .home_contents1_box1_img:before {}

  .home_contents1_box2 {}

  /*コース紹介*/
  .home_contents2_items {
    margin-top: 100px;
  }

  .home_contents2_item {}

  .home_contents2_item:nth-child(n+2) {
    margin-top: 80px;
  }

  .home_contents2_item_img {}

  .home_contents2_item_img:before {
    padding-top: 600px;
  }

  .home_contents2_item_inner {}

  .home_contents2_item:nth-child(odd) .home_contents2_item_inner {
    padding-left: 13.48%;
  }

  .home_contents2_item_tt {
    font-size: 36px;
  }

  .home_contents2_item .content_desc {
    margin-top: 40px;
  }

  .home_contents2_item .read_more {
    margin-top: 62px;
  }

  .home_contents2_item:nth-child(1) .tryangle_txt {
    width: 52%;
    right: -5%;
  }

  .home_contents2_item:nth-child(2) .tryangle_txt {
    width: 34%;
  }

  .home_contents2_item:nth-child(3) .tryangle_txt {
    width: 42%;
    right: 0;
  }

  .home_contents2_item_num {
    top: -30px;
  }

  /*コーチ*/
  .home_contents3_wrap {}

  .home_contents3_box1 {}

  .home_contents3_box1 .content_desc {
    margin-top: 30px;
  }

  .home_contents3_box1 .read_more {
    margin-top: 52px;
  }

  .home_contents3_box2 {
    margin-top: 50px;
    ;
  }

  .home_contents3_box2 .swiper {}

  .home_contents3_box2 .webgene-blog {}

  .home_contents3_box2 .swiper-slide {
    width: 345px;
  }

  .home_contents3_box2 .webgene-item {}

  .home_contents3_box2 .webgene-item a {}

  .home_contents3_box2 .webgene-item .img:before {}

  .home_contents3_box2 .webgene-item .box2 {
    margin-top: 22px;

  }

  .home_contents3_box2 .webgene-item .meta {}

  .home_contents3_box2 .webgene-item .title {
    font-size: 18px;
  }

  .home_contents3_box2 .webgene-item .category {
    margin-left: 20px;
  }

  .home_contents3_box2 .webgene-item .lisense {}

  .slide_pagenation_right {
    margin-top: 53px;
  }

  .slide-next {
    margin-left: 62px;
  }

  /*試合結果*/
  .home_contents4_box_outer {
    margin-top: 50px;
  }

  .home_contents4_box:nth-child(n+2) {
    margin-top: 60px;
  }

  .home_contents4_box .webgene-item .inner {
    display: flex;
    flex-wrap: wrap;
    background: #FFF;
    color: #181818;
    border: 1px solid #a3a3a3;
    background: none;
    border: 0;
    color: #FFF;
  }

  .home_contents4_box .webgene-item .head {
    justify-content: space-between;
    min-height: inherit;
    padding-left: 20px;
    padding-right: 20px;
  }

  .home_contents4_box.home .webgene-item .stadium {}

  .home_contents4_box .webgene-item .score {
    min-height: 0;
  }

  .home_contents4_box .webgene-item .score_box1 {
    width: 32.87%;
  }

  .home_contents4_box .webgene-item .team {}

  .home_contents4_box .webgene-item .score_box2 {
    width: 155px;
  }

  .home_contents4_box .webgene-item .point {
    font-size: 40px;
  }

  .home_contents4_box .webgene-item .status {
    font-size: 14px;
    margin: 0 15px;
  }

  .home_contents4_box .webgene-item .status.on {}

  .home_contents4_box .webgene-item .status.end {
    font-size: 14px;
    padding: 0px 5px 2px;
  }

  .home_contents4_box .webgene-item .status.vs {
    font-size: 40px;
  }

  .home_contents4_box .webgene-item .point {}

  .home_contents4_box .webgene-item .score_box3 {
    width: 32.87%;
  }

  .home_contents4_box.home .webgene-item .date {}

  .home_contents4_box_tt {
    font-size: 22px;
  }

  .home_contents4_box .webgene-item .date {
    font-size: 16px;
  }

  .home_contents4_wrap .read_more {
    margin-top: 50px;
  }

  /*スケジュール*/
  .home_contents5_items {
    margin-top: 44px;
  }

  .home_contents5_item {}

  .home_contents5_item_inner {}

  .home_contents5_item_tt {
    font-size: 22px;
  }

  .home_contents5_item_cdr {
    margin-top: 24px;
  }

  /*ぼしゅう概要*/
  .home_contents6_wrap {}

  .home_contents6_box1 {}

  .home_contents6_box1 {}

  .home_contents6_box1 .sec_sub_tt {}

  .home_contents6_box1 .content_desc {}

  .home_contents6_box1 .read_more {
    margin-top: 50px;
  }

  .home_contents6_box2 {
    margin-top: 50px;
  }

  .home_contents6_box2_img1 {}

  .home_contents6_box2_img2 {}

  .home_contents6_box2_img3 {}

  .clear_txt {
    bottom: 2%;
  }

  /*新着*/
  .home_contents7_wrap {}

  .home_contents7_box1 {
    width: 22.97%;
  }

  .home_contents7_box1 .sec_tt_ja {
    font-size: 15px;
  }

  .home_contents7_box1 .sec_tt_ja:before {
    margin-right: 10px;
  }

  .home_contents7_box1 .sec_tt_ja:after {
    margin-left: 10px;
  }

  .home_contents7_box1 .read_more {}

  .home_contents7_box2 {
    width: 68.46%;
    margin-top: 0;
  }

  .home_contents7_box2 .webgene-blog {}

  .home_contents7_box2 .webgene-item {}

  .home_contents7_box2 .webgene-item .date {}

  .home_contents7_box2 .webgene-item .category {}

  .home_contents7_box2 .webgene-item .title {
    width: calc(100% - 125px - 95px);
    padding-left: 20px;
    margin-top: 0;
  }
}

@media (min-width:1024px) {

  /*メイン*/
  .home_contents1_wrap {}

  .home_contents1_box1 {
    width: 41.11%;
    order: 1;
    margin-top: 0;
  }

  .home_contents1_box1_img:before {
    padding-top: 283.33%;
  }

  .home_contents1_box2 {
    width: 53.28%;
    margin-right: -16px;
    padding-top: 60px;
    order: 2;
  }

  .home_contents1_box2 .content_desc {
    margin-top: 46px;
  }

  .home_contents1_box2 .read_more {
    margin-top: 68px;
  }

  /*コース紹介*/
  .home_contents2_wrap {}

  .home_contents2_wrap .content_desc.center {
    margin-top: 43px;
  }


  /*コース紹介*/
  .home_contents2_items {
    margin-top: 150px;
  }

  .home_contents2_item {}

  .home_contents2_item:nth-child(n+2) {
    margin-top: 135px;
  }

  .home_contents2_item_img {}

  .home_contents2_item_img:before {
    padding-top: 600px;
  }

  .home_contents2_item_inner {}

  .home_contents2_item_tt {
    font-size: 42px;
  }

  .home_contents2_item .content_desc {}

  .home_contents2_item .read_more {}

  .home_contents2_item:nth-child(1) .tryangle_txt {
    width: 50%;
    right: -70px;
  }

  .home_contents2_item:nth-child(2) .tryangle_txt {
    width: 33%;
  }

  .home_contents2_item:nth-child(3) .tryangle_txt {
    width: 38%;
    right: -70px;
  }

  .home_contents2_item_num {
    top: -60px;
  }

  /*コーチ*/
  .home_contents3_wrap {}

  .home_contents3_box1 {
    width: 38.48%;
  }

  .home_contents3_box1 .content_desc {}

  .home_contents3_box1 .read_more {}

  .home_contents3_box2 {
    width: 65.23%;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-top: 23px;
    margin-top: 0;
  }

  .home_contents3_box2 .webgene-blog {}

  .home_contents3_box2 .webgene-item {}

  .home_contents3_box2 .swiper-slide {
    width: 250px;
  }

  .home_contents3_box2 .webgene-item a {}

  .home_contents3_box2 .webgene-item .img:before {}

  .home_contents3_box2 .webgene-item .box2 {}

  .home_contents3_box2 .webgene-item .meta {}

  .home_contents3_box2 .webgene-item .title {
    font-size: 20px;
  }

  .home_contents3_box2 .webgene-item .category {}

  .home_contents3_box2 .webgene-item .lisense {}

  /*試合結果*/
  .home_contents4_box_outer {
    margin-top: 63px;
  }

  .home_contents4_box {
    width: 48.02%;
  }

  .home_contents4_box:nth-child(n+2) {
    margin-top: 0;
  }

  .home_contents4_box .webgene-item .inner {}

  .home_contents4_box .webgene-item .head {
    min-height: inherit;
    padding-left: 65px;
    padding-right: 65px;
  }

  .home_contents4_box.home .webgene-item .stadium {}

  .home_contents4_box .webgene-item .score {
    min-height: 110px;
  }

  .home_contents4_box .webgene-item .score_box1 {}

  .home_contents4_box .webgene-item .team {
    font-size: 16px;
  }

  .home_contents4_box .webgene-item .score_box2 {
    width: 220px;
  }

  .home_contents4_box .webgene-item .point {
    font-size: 75px;
  }

  .home_contents4_box .webgene-item .status {
    font-size: 14px;
    margin: 0 28px;
  }

  .home_contents4_box .webgene-item .status.on {}

  .home_contents4_box .webgene-item .status.end {
    font-size: 14px;
    padding: 0px 10px 2px;
  }

  .home_contents4_box .webgene-item .status.vs {
    font-size: 40px;
  }

  .home_contents4_box .webgene-item .point {}

  .home_contents4_box.home .webgene-item .score_box3 {}

  .home_contents4_box .webgene-item .score_box1,
  .home_contents4_box .webgene-item .score_box3 {
    width: 22.87%;
  }

  .home_contents4_box.home .webgene-item .date {}

  .home_contents4_box_tt {
    font-size: 24px;
  }

  .home_contents4_wrap .read_more {
    margin-top: 70px;
  }

  /*スケジュール*/
  .home_contents5_items {
    margin-inline: -20px;
  }

  .home_contents5_item {
    width: 33.333%;
    padding-inline: 20px;
  }

  .home_contents5_item:nth-child(n+2) {
    margin-top: 0;
  }

  .home_contents5_item_inner {}

  .home_contents5_item_tt {
    font-size: 24px;
  }

  .home_contents5_item_cdr {}

  /*ぼしゅう概要*/
  .home_contents6_wrap {}

  .home_contents6_box1 {}

  .home_contents6_box1 {
    width: 44.73%;
  }

  .home_contents6_box1 .sec_sub_tt {
    margin-top: 41px;
  }

  .home_contents6_box1 .content_desc {
    padding-right: 22px;
    margin-top: 46px;
  }

  .home_contents6_box1 .read_more {
    margin-top: 86px;
  }

  .home_contents6_box2 {
    width: 55.26%;
    margin-top: 65px;
  }

  .home_contents6_box2_img1 {}

  .home_contents6_box2_img1 .img_fit {
    margin-right: var(--margin-for-device-side)
  }

  .home_contents6_box2_img2 {
    top: 16.14%;
  }

  .home_contents6_box2_img3 {}

  .clear_txt {
    bottom: 0;
  }

  /*新着*/
  .home_contents7_wrap {}

  .home_contents7_box1 {}

  .home_contents7_box1 .sec_tt_ja {
    font-size: 15px;
  }

  .home_contents7_box1 .sec_tt_ja:before {
    margin-right: 20px;
  }

  .home_contents7_box1 .sec_tt_ja:after {
    margin-left: 28px;
  }

  .home_contents7_box1 .read_more {}

  .home_contents7_box2 {
    padding-top: 10px;
  }

  .home_contents7_box2 .webgene-blog {}

  .home_contents7_box2 .webgene-item {}

  .home_contents7_box2 .webgene-item .date {}

  .home_contents7_box2 .webgene-item .category {}

  .home_contents7_box2 .webgene-item .title {}
}

@media (min-width:1200px) {
  .home_contents2_item:nth-child(1) .tryangle_txt {
    width: auto;
  }

  .home_contents2_item:nth-child(2) .tryangle_txt {
    width: auto;
  }

  .home_contents2_item:nth-child(3) .tryangle_txt {
    width: auto;
  }

  .home_contents2_item_num {
    top: -78px;
  }

  /*ぼしゅう概要*/
  .home_contents6_box2_img2 {
    top: 26.14%;
  }
}

@media (min-width:1366px) {
  .home_contents6_box2_img1 {
    left: 43.04%;
  }
}

@media (min-width:1450px) {
  .home_contents3_box2 {
    width: 60.23%;
  }

  .home_contents3_box2 .swiper-slide {
    width: 345px;
  }

  /*試合結果*/
  .home_contents4_box .webgene-item .score_box1,
  .home_contents4_box .webgene-item .score_box3 {
    width: 32.87%;
  }

  .home_contents6_box2_img1 {
    left: 55.04%;
  }
}

@media (min-width:1700px) {
  .home_contents3_box2 {
    width: 70.23%;
  }

  .clear_txt {
    bottom: -5%;
  }

  .home_contents6_box2_img1 {
    left: 58.04%;
  }
}





/*******************************
*　募集概要
********************************/

/* セクション設定 */
.pg_recruitmentOverview {}

.pg_recruitmentOverview .section.sec1 {}

.pg_recruitmentOverview .section.sec2 {
  position: relative;
}

.pg_recruitmentOverview .section.sec2 .sec_bg_pr {
  background-image: url(/system_panel/uploads/images/bg23.png);
  aspect-ratio: 1920 / 970;
  top: -2.5%;
}

.pg_recruitmentOverview .section.sec3 {
  position: relative;
  padding: 0;
}


@media (max-width:374px) {}

@media (min-width:375px) {}

@media (max-width:767px) {}

@media (min-width:768px) {

  /* セクション設定 */
  .pg_recruitmentOverview {}

  .pg_recruitmentOverview .section.sec1 {}

  .pg_recruitmentOverview .section.sec2 {}

  .pg_recruitmentOverview .section.sec2 .sec_bg_pr {
    background-image: url(/system_panel/uploads/images/bg23.png);
    aspect-ratio: 1920 / 970;
    top: -1%;
  }

  .pg_recruitmentOverview .section.sec4 {
    padding-top: 60px;
    padding-bottom: 0;
  }

}

@media (min-width:1024px) {
  .pg_recruitmentOverview .section.sec2 .sec_bg_pr {
    background-image: url(/system_panel/uploads/images/bg23.png);
    aspect-ratio: 1920 / 970;
    top: 1.5%;
  }

}

@media (min-width:1200px) {

  /* セクション設定 */
  .pg_recruitmentOverview {}

  .pg_recruitmentOverview .section.sec1 {}

  .pg_recruitmentOverview .section.sec2 {}

  .pg_recruitmentOverview .section.sec2 .sec_bg_pr {
    background-image: url(/system_panel/uploads/images/bg23.png);
    aspect-ratio: 1920 / 970;
    top: 2.5%;
  }

  .pg_recruitmentOverview .section.sec4 {
    padding-top: 80px;
    padding-bottom: 0;
  }



}

@media (min-width:1366px) {
  .pg_recruitmentOverview .section.sec2 .sec_bg_pr {
    background-image: url(/system_panel/uploads/images/bg23.png);
    aspect-ratio: 1920 / 970;
    top: 6.5%;
  }
}


/* メイン部分 */
.recruitmentOverview_content1_wrap {}

.page_hdr_tt {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
}

.recruitmentOverview_content1_wrap .content_desc {
  margin-top: 30px;
}

.page_scroll_items {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}

.page_scroll_item {
  width: 100%;
}

.page_scroll_item:nth-child(n+2) {
  margin-top: 16px;
}

.page_scroll_item_inner {
  display: block;
  border: 1px solid #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  padding: 18px 0 25px;
}

.page_scroll_item_inner:after {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  background-image: url(/system_panel/uploads/images/arr1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 10px auto 0;
}

.page_scroll_item_inner:hover {
  background: #fff;
  color: #181818;
}

/*スクール募集について*/
.recruitmentOverview_content2_wrap {
  position: relative;
  z-index: 3;
}

.recruitmentOverview_content2_wrap .page_hdr_tt {
  margin-top: 30px;
}

.recruitmentOverview_content2_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}

.recruitmentOverview_content2_box1 {
  width: 100%;
}

.recruitmentOverview_content2_box1_img:before {
  padding-top: 118.4%;
}

.recruitmentOverview_content2_box1_txt {
  width: 14.07%;
  aspect-ratio: 111 / 915;
  position: absolute;
  top: 50%;
  left: -5.76%;
  transform: translateY(-50%);
  z-index: 1;
}

.recruitmentOverview_content2_box2 {
  width: 100%;
  margin-top: 30px;
  ;
}

.recruitmentOverview_content2_box2_tt {
  font-size: 24px;
  font-weight: 900;
}

.recruitmentOverview_content4_wrap .recruitmentOverview_content2_box2_tt {
  text-align: center;
}

.recruitmentOverview_content2_box2_items {
  margin-top: 38px;
}

.recruitmentOverview_content2_box2_item {}

.recruitmentOverview_content2_box2_item:nth-child(n+2) {
  margin-top: 30px;
}

.recruitmentOverview_content2_box2_item_tt {
  font-size: 16px;
  font-weight: 700;
  border-bottom: 1px solid #fff;
  padding-bottom: 9px;
}

.recruitmentOverview_content2_box2_item_txt {
  font-size: 16px;
  font-weight: 500;
  line-height: 2.5em;
}

/*入会までの流れ*/
.pg_recruitmentOverview .section.sec3 .clear_txt {
  width: 10.41%;
  position: absolute;
  top: -10px;
  ;
  right: 0;
  left: auto;
  bottom: auto;
  z-index: 4;
}

.recruitmentOverview_content3_img_box {
  position: relative;
}

.recruitmentOverview_content3_img:before {
  padding-top: 1500px;
}

.recruitmentOverview_content3_img:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}

.recruitmentOverview_content3_top {
  width: 100%;
  aspect-ratio: 1920 / 240;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  background: #1a1a1a;
  position: absolute;
  top: -2px;
  left: 0;
  z-index: 1;
}

.recruitmentOverview_content3_btm {
  width: 100%;
  aspect-ratio: 1920 / 280;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  background: #1a1a1a;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.recruitmentOverview_content3_inner {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 3;
}

.recruitmentOverview_content3_inner .recruitmentOverview_content2_box2_tt {
  text-align: center;
}

.recruitmentOverview_content2_box2_tt {
  text-align: center;
}

.recruitmentOverview_content3_items {
  margin-top: 36px;
  position: relative;
}

.recruitmentOverview_content3_items:before {
  content: "";
  display: block;
  width: 1px;
  height: 85%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 2.9%;
}

.recruitmentOverview_content3_item {
  display: flex;
  justify-content: space-between;
}

.recruitmentOverview_content3_item:nth-child(n+2) {
  margin-top: 40px;
}

.recruitmentOverview_content3_item_left {
  width: 5.85%;
  position: relative;
  z-index: 1;
}

.recruitmentOverview_content3_item_num {
  background: #e60011;
  color: #fff;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  width: 100%;
  font-size: 28px;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5px;
}

.recruitmentOverview_content3_item_right {
  width: 91.44%;

}

.recruitmentOverview_content3_item_tt {
  font-size: 20px;
  font-weight: 700;

}

.recruitmentOverview_content3_item .content_desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 2.06em;
  margin-top: 24px;
}

.read_more.wide {
  position: relative;
  z-index: 5;
}

.read_more.wide a {
  background: #e60011;
  max-width: 500px;
  width: 100%;
  font-size: 18px;
  font-weight: 400;
  padding: 16px 0;
}

.read_more.wide a:hover {
  background: #fff;
  color: #e60011;
}

.read_more.wide a .ja {
  font-size: 15px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}

.recruitmentOverview_content3_inner .read_more {
  margin-top: 40px;
}

/*スポンサー募集について*/
.recruitmentOverview_content4_wrap .page_hdr_tt {
  margin-top: 36px;
}

.recruitmentOverview_content4_wrap .content_desc {
  margin-top: 32px;
}

.recruitmentOverview_content4_inner {
  margin-top: 75px;
}

.recruitmentOverview_content4_items {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}

.recruitmentOverview_content4_item {
  width: 100%;
}

.recruitmentOverview_content4_item:nth-child(n+2) {
  margin-top: 30px;
}

.recruitmentOverview_content4_item_inner {}

.recruitmentOverview_content4_item_tt {
  text-align: center;
  background-image: url(/system_panel/uploads/images/title_bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px;
}

.recruitmentOverview_content4_item_tt_txt {
  font-size: 20px;
  font-weight: 700;
}

.recruitmentOverview_content4_item_content {
  background: #fff;
  color: #181818;
  padding: 27px 27px 37px;
}

.recruitmentOverview_content4_item_desc {
  font-size: 16px;
  font-weight: 500;
  line-height: 2.125em;
}

.recruitmentOverview_content4_item_price {
  text-align: center;
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  font-family: "Oswald", sans-serif;
  margin-top: 26px;
}

.recruitmentOverview_content4_item_price p {
  letter-spacing: 0.025em;
}

.recruitmentOverview_content4_item_price em {
  font-size: 18px;
  font-weight: 900;
  font-style: normal;
}

.recruitmentOverview_content4_item_price strong {
  font-size: 22px;
  font-weight: 900;
}

.recruitmentOverview_content4_item_lists {
  margin-top: 26px;
}

.recruitmentOverview_content4_item_list {
  font-size: 16px;
  font-weight: 500;
  line-height: 2.125em;
  text-indent: -1.5em;
  padding-left: 1.5em;
}

.recruitmentOverview_content4_wrap .read_more {
  margin-top: 40px;
}


@media (max-width:767px) {
  .recruitmentOverview_content3_items:before {
    left: 6.5%;
    height: 82%;
  }

  .recruitmentOverview_content3_item_left {
    width: 12.85%;
  }

  .recruitmentOverview_content3_item_right {
    width: 82.44%;
  }
}

@media (min-width:768px) {
  .pg_recruitmentOverview .sec_tt_en {
    margin-inline: -60px;
  }

  /* メイン部分 */
  .read_more.wide a {
    background: #e60011;
    max-width: 400px;
    width: 100%;
  }

  .recruitmentOverview_content1_wrap {}

  .page_hdr_tt {
    font-size: 28px;
  }

  .recruitmentOverview_content1_wrap .content_desc {
    margin-top: 43px;
  }

  .page_scroll_items {
    justify-content: center;
    margin-top: 70px;
    margin-inline: -15px;
  }

  .page_scroll_item {
    max-width: 250px;
    width: 100%;
    margin: 0 15px;
  }

  .page_scroll_item:nth-child(n+2) {
    margin-top: 0;
  }

  .page_scroll_item_inner {
    font-size: 20px;
  }

  .page_scroll_item_inner:after {}

  /*スクール募集について*/
  .recruitmentOverview_content2_wrap {}

  .recruitmentOverview_content2_wrap .page_hdr_tt {
    margin-top: 66px;
  }

  .recruitmentOverview_content2_wrap .content_desc {
    margin-top: 42px;
  }

  .recruitmentOverview_content2_box {
    margin-top: 70px;
  }

  .recruitmentOverview_content2_box1 {}

  .recruitmentOverview_content2_box1_img:before {}

  .recruitmentOverview_content2_box1_txt {
    width: 15.07%;
    left: -5.76%;
  }

  .recruitmentOverview_content2_box2 {
    margin-top: 40px;
    ;
  }

  .recruitmentOverview_content2_box2_tt {
    font-size: 32px;
  }

  .recruitmentOverview_content2_box2_items {
    margin-top: 38px;
  }

  .recruitmentOverview_content2_box2_item {}

  .recruitmentOverview_content2_box2_item:nth-child(n+2) {
    margin-top: 55px;
  }

  .recruitmentOverview_content2_box2_item_tt {
    font-size: 18px;
  }

  .recruitmentOverview_content2_box2_item_txt {
    font-size: 18px;
  }

  /*入会までの流れ*/
  .pg_recruitmentOverview .section.sec3 .clear_txt {
    width: 10.41%;
    position: absolute;
    top: -2%;
  }

  .recruitmentOverview_content3_img_box {}

  .recruitmentOverview_content3_img:before {}

  .recruitmentOverview_content3_img:after {}

  .recruitmentOverview_content3_top {}

  .recruitmentOverview_content3_btm {}

  .recruitmentOverview_content3_inner {}

  .recruitmentOverview_content2_box2_tt {}

  .recruitmentOverview_content3_items {
    margin-top: 45px;
  }

  .recruitmentOverview_content3_item {}

  .recruitmentOverview_content3_item:nth-child(n+2) {
    margin-top: 67px;
  }

  .recruitmentOverview_content3_item_left {}

  .recruitmentOverview_content3_item_num {
    font-size: 24px;
  }

  .recruitmentOverview_content3_item_right {}

  .recruitmentOverview_content3_item_tt {
    font-size: 28px;
  }

  .recruitmentOverview_content3_item .content_desc {}

  .recruitmentOverview_content3_inner .read_more {
    margin-top: 85px;
  }

  /*スポンサー募集について*/
  .recruitmentOverview_content4_wrap .page_hdr_tt {
    margin-top: 60px;
  }

  .recruitmentOverview_content4_wrap .content_desc {
    margin-top: 45px;
  }

  .recruitmentOverview_content4_inner {
    margin-top: 75px;
  }

  .recruitmentOverview_content4_items {
    justify-content: center;
    margin-inline: -17.5px;
    margin-top: 60px;
  }

  .recruitmentOverview_content4_item {
    width: 50%;
    padding-inline: 17.5px;
  }

  .recruitmentOverview_content4_item:nth-child(n+2) {
    margin-top: 0;
  }

  .recruitmentOverview_content4_item:nth-child(n+3) {
    margin-top: 30px;
  }

  .recruitmentOverview_content4_item_inner {}

  .recruitmentOverview_content4_item_tt {}

  .recruitmentOverview_content4_item_tt_txt {
    font-size: 22px;
  }

  .recruitmentOverview_content4_item_content {}

  .recruitmentOverview_content4_item_desc {}

  .recruitmentOverview_content4_item_price {
    font-size: 50px;
  }

  .recruitmentOverview_content4_item_price em {
    font-size: 24px;
  }

  .recruitmentOverview_content4_item_price strong {
    font-size: 30px;
  }

  .recruitmentOverview_content4_item_lists {}

  .recruitmentOverview_content4_item_list {}

  .recruitmentOverview_content4_wrap .read_more {
    margin-top: 60px;
  }
}

@media (min-width:1024px) {

  /* メイン部分 */
  .read_more.wide a {
    background: #e60011;
    max-width: 500px;
    width: 100%;
  }

  .recruitmentOverview_content1_wrap {}

  .page_hdr_tt {
    font-size: 36px;
  }

  .recruitmentOverview_content1_wrap .content_desc {
    margin-top: 43px;
  }

  .page_scroll_items {
    margin-top: 90px;
  }

  .page_scroll_item {
    max-width: 440px;
  }

  .page_scroll_item_inner {
    font-size: 22px;
  }

  .page_scroll_item_inner:after {}

  /*スクール募集について*/
  .recruitmentOverview_content2_box {
    margin-top: 90px;
  }

  .recruitmentOverview_content2_box1 {
    width: 42.76%;
  }

  .recruitmentOverview_content2_box1_img:before {}

  .recruitmentOverview_content2_box1_txt {
    width: 17.07%;
    left: -10.76%;
  }

  .recruitmentOverview_content2_box2 {
    width: 50.98%;
    padding-top: 17px;
    margin-top: 0;
  }

  .recruitmentOverview_content2_box2_tt {
    text-align: left;
    font-size: 48px;
  }

  .recruitmentOverview_content2_box2_items {}

  .recruitmentOverview_content2_box2_item {}

  .recruitmentOverview_content2_box2_item_txt {}

  /*入会までの流れ*/
  .recruitmentOverview_content3_img_box {}

  .recruitmentOverview_content3_img:before {}

  .recruitmentOverview_content3_img:after {}

  .recruitmentOverview_content3_top {}

  .recruitmentOverview_content3_btm {}

  .recruitmentOverview_content3_inner {}

  .recruitmentOverview_content2_box2_tt {}

  .recruitmentOverview_content3_items {}

  .recruitmentOverview_content3_item {}

  .recruitmentOverview_content3_item_left {}

  .recruitmentOverview_content3_item_num {
    font-size: 36px;
  }

  .recruitmentOverview_content3_item_right {
    padding-top: 10px;
  }

  .recruitmentOverview_content3_item_tt {}

  .recruitmentOverview_content3_item .content_desc {}

  /*スポンサー募集について*/
  .recruitmentOverview_content4_inner {
    margin-top: 75px;
  }

  .recruitmentOverview_content4_items {
    justify-content: flex-start;
    margin-top: 70px;
  }

  .recruitmentOverview_content4_item {
    width: 33.333%;
  }

  .recruitmentOverview_content4_item:nth-child(n+3) {
    margin-top: 0;
  }

  .recruitmentOverview_content4_item_inner {}

  .recruitmentOverview_content4_item_tt {}

  .recruitmentOverview_content4_item_tt_txt {
    font-size: 22px;
  }

  .recruitmentOverview_content4_item_content {}

  .recruitmentOverview_content4_item_desc {}

  .recruitmentOverview_content4_item_price {
    font-size: 40px;
  }

  .recruitmentOverview_content4_item_price em {
    font-size: 20px;
  }

  .recruitmentOverview_content4_item_price strong {
    font-size: 26px;
  }

  .recruitmentOverview_content4_item_lists {}

  .recruitmentOverview_content4_item_list {}

  .recruitmentOverview_content4_wrap .read_more {
    margin-top: 74px;
  }
}

@media (min-width:1200px) {
  .page_scroll_item {
    max-width: 540px;
  }

  /*スポンサー募集について*/
  .recruitmentOverview_content4_item_tt_txt {
    font-size: 26px;
  }

  .recruitmentOverview_content4_item_price {
    font-size: 58px;
  }

  .recruitmentOverview_content4_item_price em {
    font-size: 24px;
  }

  .recruitmentOverview_content4_item_price strong {
    font-size: 30px;
  }
}

@media (min-width:1366px) {}

@media (min-width:1450px) {

  /*スポンサー募集について*/
  .recruitmentOverview_content4_item_price {
    font-size: 76px;
  }
}

@media (min-width:1700px) {}

/*******************************
*　試合結果
********************************/

/* セクション設定 */
.pg_result {}

.pg_result .section.sec1 {}

.pg_result .section.sec2 {}


@media (max-width:374px) {}

@media (min-width:375px) {}

@media (max-width:767px) {}

@media (min-width:768px) {

  /* セクション設定 */
  .pg_result {}

  .pg_result .section.sec1 {}

  .pg_result .section.sec2 {}

}

@media (min-width:1024px) {

  /* セクション設定 */
  .pg_result {}

  .pg_result .section.sec1 {}

  .pg_result .section.sec2 {}

}

@media (min-width:1200px) {}

/* メイン部分 */
.match_list.home_contents4_box {
  width: 100%;
  margin-top: 30px;
}

.match_list.home_contents4_box .webgene-item:nth-child(n+2) {
  margin-top: 50px;
}

.match_list.home_contents4_box .webgene-item .inner {
  display: block;
  width: 100%;
}

.match_list .box1 {
  display: flex;
  min-height: 60px;
}

.match_list .box1 .no {
  display: flex;
  align-items: center;
  width: calc(100% - 190px);
  background: #d9d9d9;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.075em;
  color: #1a1a1a;
  padding-left: 16px;
}

.match_list .box1 .type {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 190px;
  position: relative;
  font-size: 22px;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1;
}

.match_list .box1 .type:after {
  content: "";
  display: block;
  width: 18.42%;
  aspect-ratio: 35 / 60.5;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  background: #d9d9d9;
  position: absolute;
  right: -1px;
  top: 0;
}

.match_list .box1 .type.home {
  background: #666666;
}

.match_list .box1 .type.away {
  background: #e60011;
}

.match_list .box2 {
  background: #ffffff;
  padding-top: 20px;
  padding-bottom: 30px;
}

.match_list .box2 .head {
  background: none;
  margin-top: 0;
}

.match_list .box2 .date {
  text-align: left;
  font-size: 50px;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  color: #e60011;
}

.match_list .box2 .date span {
  font-size: 24px;
  color: #1a1a1a;
}

.match_list .box2 .date span.week {
  font-size: 15px;
  font-weight: 900;
  font-family: "Noto Sans JP", sans-serif;
  color: #e60011;
}

.match_list .box2 .stadium {
  text-align: left;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.075em;
}

.match_list .box2 .score {
  color: #1a1a1a;
  justify-content: center;
  align-items: flex-end;
  margin-top: 0;
}

.match_list .box2 .score_box1 {}

.match_list .box2 .score_box2 {}

.match_list .box2 .score_box3 {}

.match_list .box2 .team {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.075em;
}

.match_list .box2 .point {
  line-height: 1;
}

@media (max-width:767px) {

  .match_list .box2 .date,
  .match_list .box2 .stadium {
    text-align: center;
  }

  .match_list .box2 .score {
    margin-top: 20px;
  }

  .match_list .box2 .score_box1,
  .match_list .box2 .score_box3 {
    width: 100%;
  }

  .match_list .box2 .score_box2 {
    margin: 10px 0;
  }

  .match_list .box2 {
    padding-bottom: 10px;
  }

  .match_list .box1 .type {
    width: 150px;
  }

  .match_list .box1 .type:after {
    width: 34.7px;
  }

  .match_list .box1 .no {
    width: calc(100% - 150px);
  }
}

@media (min-width:768px) {

  /* メイン部分 */
  .match_list.home_contents4_box {}

  .match_list.home_contents4_box .webgene-item:nth-child(n+2) {
    margin-top: 60px;
  }

  .match_list .inner {}

  .match_list .box1 {}

  .match_list .box1 .no {
    font-size: 20px;
  }

  .match_list .box1 .type {
    font-size: 30px;
  }

  .match_list .box2 {
    padding-bottom: 40px;
  }

  .match_list .box2 .head {}

  .match_list .box2 .date {
    font-size: 50px;
  }

  .match_list .box2 .date span {
    font-size: 40px;
  }

  .match_list .box2 .date span.week {
    font-size: 18px;
    position: relative;
    top: -2px;
  }

  .match_list .box2 .stadium {
    font-size: 20px;
  }

  .match_list .box2 .score {
    margin-top: 0;
  }

  .match_list .box2 .score_box1 {
    width: 27.87%;
  }

  .match_list .box2 .score_box2 {
    width: 250px;
  }

  .match_list .box2 .score_box3 {
    width: 27.87%;
  }

  .match_list .box2 .team {
    font-size: 20px;
  }

  .match_list .box2 .point {
    font-size: 65px;
  }

  .match_list.home_contents4_box .webgene-item .status {
    font-weight: 500;
  }

  .match_list.home_contents4_box .webgene-item .status.end {
    padding: 2px 10px 3px;
  }
}

@media (min-width:1024px) {

  /* メイン部分 */
  .match_list.home_contents4_box {}

  .match_list .inner {}

  .match_list .box1 {}

  .match_list .box1 .no {
    font-size: 24px;
  }

  .match_list .box1 .type {
    font-size: 36px;
  }

  .match_list .box2 {
    padding-bottom: 52px;
  }

  .match_list.home_contents4_box .webgene-item .head {
    padding-left: 41px;
    padding-right: 41px;
  }

  .match_list .box2 .date {
    font-size: 72px;
  }

  .match_list .box2 .date span {
    font-size: 60px;
  }

  .match_list .box2 .stadium {}

  .match_list .box2 .score {
    margin-top: -70px;
  }

  .match_list .box2 .score_box1 {
    width: 32.87%;
  }

  .match_list .box2 .score_box2 {
    width: 250px;
  }

  .match_list .box2 .score_box3 {
    width: 32.87%;
  }

  .match_list .box2 .point {
    font-size: 100px;
  }

  .match_list.home_contents4_box .webgene-item .status {
    margin: 0 33px;
  }
}

@media (min-width:1200px) {}

@media (min-width:1366px) {}

@media (min-width:1450px) {}

@media (min-width:1700px) {}


/*******************************
*　スクール概要
********************************/

/* セクション設定 */
.pg_school {}

.pg_school .section.sec1 {}

.pg_school .section.sec2 {}


@media (max-width:374px) {}

@media (min-width:375px) {}

@media (max-width:767px) {}

@media (min-width:768px) {

  /* セクション設定 */
  .pg_school {}

  .pg_school .section.sec1 {
    padding-top: 70px;
  }

  .pg_school .section.sec2 {}

}

@media (min-width:1024px) {}

@media (min-width:1200px) {

  /* セクション設定 */
  .pg_school {}

  .pg_school .section.sec1 {}

  .pg_school .section.sec2 {}

}

/* メイン部分 */
/*テーブル*/
.school_tbl {}

.school_tbl .table_rows_th,
.school_tbl .table_rows_td {
  font-size: 16px;
  font-weight: 400;
  border: 1px solid #838383;
  color: #262626;
  padding: 19.5px 15px;
}

.school_tbl .table_rows_th {
  background: #e5e5e5;
}

.school_tbl .table_rows_td {
  background: #fff;
}

/*地図*/
.gmap {
  margin-top: 40px;
}

.access_map iframe {
  border: none;
  width: 100%;
  height: 250px;
}

/*ギャラリー*/
.company_gallery_items {
  display: flex;
  flex-wrap: wrap;
  margin-inline: -5px;
  margin-top: 47px;
}

.company_gallery_item {
  width: 50%;
  padding-inline: 5px;
}

.company_gallery_item:nth-child(n+3) {
  margin-top: 10px;
}

.company_gallery_item_img:before {
  padding-top: 71.42%;
}

@media (max-width:767px) {

  /*テーブル*/
  .school_tbl {}

  .school_tbl .table_rows_th,
  .school_tbl .table_rows_td {
    display: block;
    width: 100%;
    border-bottom: 0;
  }

  .school_tbl .table_rows_th {}

  .school_tbl .table_rows_td {}

  .school_tbl .table_rows_tr:last-child .table_rows_td {
    border-bottom: 1px solid #838383;
    ;
  }
}

@media (min-width:768px) {

  /*テーブル*/
  .school_tbl {}

  .school_tbl .table_rows_th,
  .school_tbl .table_rows_td {}

  .school_tbl .table_rows_th {
    width: 200px;
    border-right: 0;
  }

  .school_tbl .table_rows_td {
    border-left: 0;
    padding-left: 20px;
  }

  /*地図*/
  .gmap {
    margin-top: 50px;
  }

  .access_map iframe {
    height: 300px;
  }

  /*ギャラリー*/
  .company_gallery_items {
    margin-inline: -15px;
  }

  .company_gallery_item {
    width: 33.333%;
    padding-inline: 15px;
  }

  .company_gallery_item:nth-child(n+3) {
    margin-top: 0;
  }

  .company_gallery_item:nth-child(n+4) {
    margin-top: 30px;
  }

  .company_gallery_item_img:before {}
}

@media (min-width:1024px) {

  /*テーブル*/
  .school_tbl {}

  .school_tbl .table_rows_th,
  .school_tbl .table_rows_td {}

  .school_tbl .table_rows_th {
    width: 284px;
  }

  .school_tbl .table_rows_td {}

  /*地図*/
  .gmap {
    margin-top: 70px;
  }

  .access_map iframe {
    height: 400px;
  }

  /*ギャラリー*/
  .company_gallery_items {}

  .company_gallery_item {}

  .company_gallery_item_img:before {}

}

@media (min-width:1200px) {}

@media (min-width:1366px) {}

@media (min-width:1450px) {}

@media (min-width:1700px) {}






/*******************************
*　スタッフ
********************************/

/* セクション設定 */
.pg_staff {}

.pg_staff .section.sec1 {}

.pg_staff .section.sec2 {}


@media (max-width:374px) {}

@media (min-width:375px) {}

@media (max-width:767px) {}

@media (min-width:768px) {

  /* セクション設定 */
  .pg_staff {}

  .pg_staff .section.sec1 {}

  .pg_staff .section.sec2 {
    padding-top: 60px;
  }
}

@media (min-width:1024px) {}

@media (min-width:1200px) {

  /* セクション設定 */
  .pg_staff {}

  .pg_staff .section.sec1 {}

  .pg_staff .section.sec2 {}

}

/* メイン部分 */
.staff_content {}

.staff_content .webgene-blog {
  display: flex;
  flex-wrap: wrap;
}

.staff_content .webgene-item {
  width: 100%;
}

.staff_content .webgene-item:nth-child(n+2) {
  margin-top: 50px;
}

.staff_content .webgene-item a {}

.staff_content .webgene-item a:hover {
  color: #e60011;
}

.staff_content .webgene-item .img {
  overflow: hidden;
  margin-bottom: 11px;
}

.staff_content .webgene-item .img:before {
  padding-top: 125.53%;
}

.staff_content .webgene-item .content {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
  margin-right: 15px;
  color: #e60011;
}

.staff_content .webgene-item .content .position {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
  margin-right: 15px;
}

.style_popup_box2 .course,
.staff_content .webgene-item .course {
  color: #e60011;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
}

.style_popup_box2 .met,
.staff_content .webgene-item .met {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.style_popup_box2 .name_ja,
.staff_content .webgene-item .name_ja {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
  transition: all .2s;
}

.style_popup_box2 .name_en,
.staff_content .webgene-item .name_en {
  color: #e60011;
  font-size: 18px;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.025em;
  letter-spacing: 0.075em;
  line-height: 1;
  margin-left: 8px;
}

.pg_staff .section.sec2 .staff_content .webgene-item .name_ja {
  color: #fff;
}

.pg_staff .section.sec2 .staff_content .webgene-item a:hover .name_ja {
  color: #e60011;
}

/*ポップアップ中身*/
.staff_content .style_popup_box1 {}

.staff_content .style_popup_box2 {}

.style_popup_box2 .position {
  display: flex;
  align-items: center;
}

.style_popup_box2 .position .category {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
  margin-right: 15px;
}

.style_popup_box2 .item_tt {
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  border-left: 3px solid #e60011;
  padding-left: 10px;
}

.style_popup_box2 .style_popup_txt {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.875em;
  margin-top: 15px;
}

.style_popup_box2 .detail_items {
  margin-top: 30px;
}

.style_popup_box2 .detail_items .item {}

.style_popup_box2 .detail_items .item:nth-child(n+2) {
  margin-top: 15px;
}

@media (max-width:767px) {}

@media (min-width:768px) {

  /* メイン部分 */
  .staff_content {}

  .staff_content .webgene-blog {
    margin-inline: -27.5px;
  }

  .staff_content .webgene-item {
    width: 50%;
    padding-inline: 27.5px;
  }

  .staff_content .webgene-item:nth-child(n+2) {
    margin-top: 0;
  }

  .staff_content .webgene-item:nth-child(n+3) {
    margin-top: 60px;
  }

  .staff_content .webgene-item a {}

  .staff_content .webgene-item .img:before {}

  .staff_content .webgene-item .content {}

  .style_popup_box2 .course,
  .staff_content .webgene-item .course {
    font-size: 18px;
  }

  .staff_content .webgene-item .met {}

  .style_popup_box2 .name_ja,
  .staff_content .webgene-item .name_ja {
    font-size: 30px;
  }

  .style_popup_box2 .name_en,
  .staff_content .webgene-item .name_en {
    font-size: 20px;
  }

  /*ポップアップ中身*/
  .staff_content .style_popup_box1 {
    order: 1;
  }

  .staff_content .style_popup_box2 {
    order: 2;

  }

  .style_popup_box2 .position .category {
    font-size: 20px;
  }

  .style_popup_box2 .item_tt {
    font-size: 18px;
  }

  .style_popup_box2 .style_popup_txt {}

  .style_popup_box2 .detail_items {
    margin-top: 40px;
  }

  .style_popup_box2 .detail_items .item:nth-child(n+2) {
    margin-top: 30px;
  }

  .staff_content .webgene-item .content .position {
    font-size: 20px;
  }
}

@media (min-width:1024px) {

  /* メイン部分 */
  .staff_content {}

  .staff_content .webgene-blog {}

  .staff_content .webgene-item {}

  .staff_content .webgene-item a {}

  .staff_content .webgene-item .img:before {}

  .staff_content .webgene-item .content {}

  .style_popup_box2 .course,
  .staff_content .webgene-item .course {
    font-size: 20px;
  }

  .staff_content .webgene-item .met {}

  .style_popup_box2 .name_ja,
  .staff_content .webgene-item .name_ja {
    font-size: 26px;
  }

  .style_popup_box2 .name_en,
  .staff_content .webgene-item .name_en {
    font-size: 24px;
  }

  .style_popup_box2 .item_tt {
    font-size: 20px;
  }

  .style_popup_box2 .style_popup_txt {}
}

@media (min-width:1200px) {
  .staff_content .webgene-item {
    width: 33.33%;
  }

  .staff_content .webgene-item:nth-child(n+3) {
    margin-top: 0;
  }

  .staff_content .webgene-item:nth-child(n+4) {
    margin-top: 95px;
  }

}

@media (min-width:1366px) {}

@media (min-width:1450px) {

  .style_popup_box2 .name_ja,
  .staff_content .webgene-item .name_ja {
    font-size: 36px;
  }
}

@media (min-width:1700px) {}


/* ポップアップ */
.style_popup {
  width: 95vw;
  max-height: 90vh;
  overflow: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #1a1a1a;
  color: #ffffff;
  padding: 30px 30px;
}

.style_popup_box1 {
  width: 100%;
}

.style_popup_box2 {
  width: 100%;
  margin-top: 20px;

}

.style_popup_imgs {}

.style_popup_imgs .img.img_fit:before {
  padding-top: 139.24%;
}

.style_popup_title {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  border-bottom: 1px solid;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.style_popup_txt {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  text-align: justify;
}

.style_popup_imgs_wrap {
  position: relative;
  z-index: 1;
}

.popup_slider_btn_prev,
.popup_slider_btn_next {
  font-size: 20px;
  position: absolute;
  z-index: 1;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.popup_slider_btn_prev {
  left: -1.2em;
}

.popup_slider_btn_next {
  right: -1.2em;
}

.lity-container {
  position: relative;
}

.lity-close {
  position: absolute;
}


@media (min-width:768px) {

  /* ポップアップ */
  .style_popup {
    width: 700px;
    padding: 100px 50px;
  }

  .style_popup_box1 {
    width: 48.17%;
    order: 2;
  }

  .style_popup_box2 {
    width: 48.78%;
    margin-top: 0;
    order: 1;
    padding-top: 24px;
  }

  .style_popup_imgs {}

  .style_popup_title {
    font-size: 18px;
    padding-bottom: 18px;
    margin-bottom: 15px;
  }

  .style_popup_txt {
    font-size: 16px;
  }

  .popup_slider_btn_prev {
    left: -2em;
  }

  .popup_slider_btn_next {
    right: -2em;
  }

}

@media (min-width:1024px) {

  /* 一覧 */


  /* ポップアップ */
  .style_popup {
    width: 920px;
  }

}

@media (min-width:1200px) {


  /* ポップアップ */
  .style_popup {
    padding: 100px 50px;
    width: 920px;
  }

}

/*******************************
*　
********************************/

/* セクション設定 */
.pg_xxx {}

.pg_xxx .section.sec1 {}

.pg_xxx .section.sec2 {}


@media (max-width:374px) {}

@media (min-width:375px) {}

@media (max-width:767px) {}

@media (min-width:768px) {

  .pg_xxx {}

  .pg_xxx .section.sec1 {}

  .pg_xxx .section.sec2 {}

}

@media (min-width:1024px) {}

@media (min-width:1200px) {}

/* メイン部分 */

@media (max-width:767px) {}

@media (min-width:768px) {}

@media (min-width:1024px) {}

@media (min-width:1200px) {}

@media (min-width:1366px) {}

@media (min-width:1450px) {}

@media (min-width:1700px) {}



/*******************************
*　記事一覧(2カラム)
********************************/
.pg_news {
  padding-top: 30px;
}

.posts_layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;

}

.posts_layout_box1 {
  width: 100%;
}

.posts_layout_box2 {
  width: 100%;
  margin-top: 50px;
}

.select_wrap {
  position: relative;
  z-index: 1;
}

.select_wrap:after {
  content: "\f078";
  content: "\f107";
  font-family: "FontAwesome";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.select_wrap select {
  width: 100%;
  padding: 10px 10px;
  /*height: 40px;*/
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.posts_category_sp {
  margin-bottom: 30px;
}

/* リスト */
.posts_list {}

.posts_list .webgene-item {
  display: flex;
  align-items: center;
  border-bottom: 1px dotted;
  padding-bottom: 10px;
}

.posts_list .webgene-item+.webgene-item {
  margin-top: 10px;
}

.posts_list .webgene-item .date {
  width: 95px;
  letter-spacing: 0.1em;
}

.posts_list .webgene-item .category {
  width: auto;
  font-size: 0.75em;
}

.posts_list .webgene-item .category span {
  display: block;
  background: #0069ba;
  color: #FFF;
  padding: 3px 5px;
  text-align: center;
}

.posts_list .webgene-item .title {
  width: 100%;
  letter-spacing: 0.075em;
}

.posts_list .webgene-item .title a {}

.news_list.home_contents7_box2 {
  width: 100%;
}

.news_list.home_contents7_box2 .webgene-item:nth-last-child(2) a {
  border-bottom: 1px solid #b9b9b9;
}

.news_list.home_contents7_box2 .webgene-item a {
  position: relative;
}

.news_list.home_contents7_box2 .webgene-item a:after {
  content: "";
  display: block;
  width: 40px;
  aspect-ratio: 1 / 1;
  background-image: url(/system_panel/uploads/images/circle.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  transition: all .2s;
}

.news_list.home_contents7_box2 .webgene-item .category {
  padding: 2px;
}


/* サイド */
.posts_side_wrap {}

.posts_side_wrap+.posts_side_wrap {
  margin-top: 30px;
}

.posts_side_title {
  background: #e60011;
  color: #FFF;
  padding: 12px 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 20px;
}

.posts_cat_item {
  padding-left: 0;
}

.posts_cat_item+.posts_cat_item {
  margin-top: 13px;
}

.posts_cat_item a {
  display: block;
  position: relative;
  padding-left: 32px;
  line-height: 1.5;
}

.posts_cat_item a:hover {
  color: #787878;
}

.posts_cat_item a:before {
  content: "■";
  position: absolute;
  left: 0;
  color: #e60011;
}

/* 詳細 */
.posts_detail {
  border: none;
  border-bottom: 1px solid #cdcdcd;
  padding: 0 0 30px;
}

.posts_detail .webgene-item {}

.posts_detail .meta {
  display: flex;
  align-items: center;
  border-bottom: none;
  padding-bottom: 5px;
  margin-bottom: 15px;
}

.posts_detail .meta .category {
  width: 125px;
  background: #e60011;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.075em;
  padding: 2px;
}

.posts_detail .meta .category span {
  display: inline-block;
  background: #0069ba;
  border-radius: 5px;
  color: #FFF;
  min-width: 150px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 2px 5px;
  line-height: 1.2;
}

.posts_detail .meta .date {
  width: 100px;
  font-weight: 400;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.075em;
}

.posts_detail .title {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.075em;
  border-bottom: 1px solid #cdcdcd;
  ;
  padding-bottom: 10px;
}

.posts_detail .post_content {
  line-height: 1.875;
  letter-spacing: 0.065em;
  text-align: justify;
  word-break: break-all;
}

.posts_detail .thumb {
  margin-bottom: 10px;
}

.posts_back_list {}

.posts_back_list a {
  display: block;
  width: 255px;
  max-width: 100%;
  margin: 30px auto 0;
  background: #f3f2f2;
  padding: 4px;
  border-radius: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
}

.posts_back_list a p {
  border: 2px dashed #0069b6;
  border-radius: 10px;
  padding: 10px 6px;
}

.posts_back_list a p:after {
  content: "\f105";
  font-family: "FontAwesome";
  margin-left: 18px;
}

/* PDFリンク */
.post_pdf {
  text-align: left;
}

.post_pdf a {
  display: inline-block;
  margin-top: 30px;
  border-bottom: 1px solid;
  transition: 0.2s all;
}

.post_pdf a[href=""] {
  display: none;
}

.post_pdf a:hover {
  border-bottom: 0;
}

.post_pdf a:before {
  /*
  * f054 > (大)
  * f105 > (小)
  */
  content: "\f105";
  font-family: "FontAwesome";
  margin-right: 5px;
}


/* 動画 */
.post_video {}

.post_video .responsive_video {
  margin-top: 15px;
}

.post_video .responsive_video:empty {
  display: none;
}

/* コピー用 */
@media (max-width:374px) {}

@media (min-width:375px) {}

@media (max-width:767px) {
  .posts_list .webgene-item {
    flex-wrap: wrap;
  }

  .posts_list .webgene-item .title {
    margin-top: 5px;
  }

  .posts_list .webgene-item .category {
    max-width: calc(100% - 95px);
    line-height: 1.2;
  }

  .news_list.home_contents7_box2 .webgene-item a:after {
    width: 30px;
    right: 0;
  }

  .news_list.home_contents7_box2 .webgene-item .title {
    width: 98%;
    margin-top: 23px;
  }
}

@media (min-width:768px) {

  .pg_news {
    padding-top: 50px;
  }

  .posts_layout_box1 {
    width: 74.32%;
  }

  .posts_layout_box2 {
    width: 22.97%;
    margin-top: 0;
    padding-top: 10px;
  }

  .posts_category_sp {
    display: none;
  }

  /* リスト */
  .posts_list {}

  .posts_list .webgene-item {
    padding-bottom: 20px;
  }

  .posts_list .webgene-item+.webgene-item {
    margin-top: 20px;
  }

  .posts_list .webgene-item .date {
    width: 90px;
    font-size: 14px;
    letter-spacing: 0.075em;
  }

  .posts_list .webgene-item .category {
    width: 160px;
  }

  .posts_list .webgene-item .category span {}

  .posts_list .webgene-item .title {
    width: calc(100% - 100px - 150px - 15px);
    margin-left: 15px;
  }

  .posts_list .webgene-item .title a {}

  .posts_side_wrap+.posts_side_wrap {
    margin-top: 132px;
  }

  .news_list.home_contents7_box2 .webgene-item a {
    padding: 28px 0;
  }

  .news_list.home_contents7_box2 .webgene-item a:hover:after {
    right: 15px;
  }

  .news_list.home_contents7_box2 .webgene-item .date {
    font-size: 16px;
    width: 120px;
  }

  .news_list.home_contents7_box2 .webgene-item .title {
    width: calc(100% - 120px - 125px - 80px);
  }

  /* 詳細 */
  .posts_detail {
    padding: 0 0 72px;
  }

  .posts_detail .webgene-item {}

  .posts_detail .meta {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 12px;
  }

  .posts_detail .meta .category {
    width: 125px;
    background: #e60011;
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.075em;
  }

  .posts_detail .meta .category span {
    font-size: 13px;
    padding: 2px 5px;
  }

  .posts_detail .meta .date {
    width: 111px;
    font-size: 18px;
    font-weight: 400;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.075em;
  }

  .posts_detail .title {
    width: 100%;
    font-size: 18px;
    padding-bottom: 10px;
  }

  .posts_detail .post_content {
    padding: 0;
  }

  .posts_detail .thumb {
    margin-bottom: 20px;
  }

  .posts_layout .read_more.wide {
    margin-top: 94px;
  }

  .posts_layout .read_more.wide a {
    padding: 26px 0;
  }

  .body_newsDetail .posts_layout_box2 {
    padding-top: 0;
  }

}

@media (min-width:1024px) {

  /* リスト */
  .posts_list {}

  .posts_list .webgene-item {}

  .posts_list .webgene-item+.webgene-item {}

  .posts_list .webgene-item .date {
    width: 120px;
    font-size: 16px;
  }

  .posts_list .webgene-item .category {
    width: 160px;
  }

  .posts_list .webgene-item .category span {}

  .posts_list .webgene-item .title {
    width: calc(100% - 120px - 160px - 25px);
    margin-left: 25px;
  }

  .posts_list .webgene-item .title a {}

  .news_list.home_contents7_box2 .webgene-item .title {
    padding-left: 39px;
  }

}

@media (min-width:1200px) {

  .pg_news {
    padding-top: 100px;
  }

}



/*******************************
*　ギャラリー（サムネ横ver）
********************************/
.pg_xxx {}

.pg_xxx .section.sec1 {
  padding-top: 0;
  padding-bottom: 0;
}

/* スライド */
.gallery_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.gallery_box1 {
  width: 100%;
}

.gallery_box2 {
  width: 100%;
  margin-top: 15px;
}

/* メイン */
.gallery_main {}

.gallery_main .img {
  background: #EEE;
}

.gallery_main .img.img_fit:before {
  padding-top: 75.34%;
}

.gallery_main .img.img_fit img {
  object-fit: contain;
  object-position: center;
}

/* サムネ */
.gallery_thumb {}

.gallery_thumb .img {
  width: 100%;
  background: #EEE;
  overflow: hidden;
}

.gallery_thumb .img.img_fit:before {
  padding-top: 76.47%;
}

.gallery_thumb .img.img_fit img {}


/* 詳細 */
.gallery_detail {}

.gallery_detail .meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #e5e5e5;
  margin-top: 20px;
  margin-bottom: 15px;
  padding-bottom: 10px;

}

.gallery_detail .meta .title {
  font-size: 18px;
  line-height: 1.5;
}

.gallery_detail .meta .price {
  font-size: 18px;
  line-height: 1.5;
  margin-left: auto;
}

.gallery_detail .post_content {
  font-size: 16px;
  line-height: 2;
  text-align: justify;
  word-break: break-all;
}

.gallery_detail .read_more {
  margin-top: 50px;
}


/* コピー用 */
@media (max-width:374px) {}

@media (min-width:375px) {}

@media (max-width:767px) {}

@media (min-width:768px) {
  .pg_xxx {}

  .pg_xxx .section.sec1 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .pg_xxx .section.sec2 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .pg_xxx .section.sec3 {
    padding-top: 0;
    padding-bottom: 0;
  }

  /* 詳細 */
  .gallery_wrap {}

  .gallery_box1 {
    width: 65.76%;
  }

  .gallery_box2 {
    width: 31.53%;
    margin-top: 0;

    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
  }

  /* サムネ */
  .gallery_thumb {
    width: 100%;
    height: 100%;
  }

  .gallery_thumb .swiper-slide {
    overflow: hidden;
  }

  .gallery_thumb .img {
    height: 100%;
  }

  .gallery_thumb .img.img_fit:before {}

  /* 詳細 */
  .gallery_detail {
    width: 65.76%;
    margin-top: 30px;
  }

  .gallery_detail .meta {
    margin-top: 10px;
    margin-bottom: 15px;
    padding-bottom: 10px;
  }

  .gallery_detail .meta .title {
    font-size: 18px;
  }

  .gallery_detail .meta .price {
    font-size: 18px;
  }

  .gallery_detail .post_content {
    font-size: 16px;
    line-height: 2;
  }

  .gallery_detail .read_more {
    margin-top: 50px;
  }
}

@media (min-width:1024px) {

  /* 詳細 */
  .gallery_detail {
    width: 65.76%;
    margin-top: 30px;
  }

  .gallery_detail .meta {
    margin-top: 10px;
    margin-bottom: 15px;
    padding-bottom: 10px;
  }

  .gallery_detail .meta .title {
    font-size: 20px;
  }

  .gallery_detail .meta .price {
    font-size: 20px;
  }

  .gallery_detail .post_content {
    font-size: 16px;
    line-height: 2;
  }

  .gallery_detail .read_more {
    margin-top: 50px;
  }

}

@media (min-width:1200px) {}





/*******************************
*　お問い合わせ
********************************/



.contact_info_wrap {
  background: #EEE;
  color: #FFF;
  padding: 30px 25px 20px;
  margin-bottom: 45px;
}

.contact_info_tt {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-align: center;
  margin-bottom: 15px;
  color: #111;
}

.contact_info_box {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background: #FFF;
  color: #181818;
  padding: 25px 10px 25px 30px;
}

.contact_info_tel {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact_info_tel_icon {
  background: #b1c274;
  color: #FFF;
  border-radius: 5px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  padding: 6px 16px;
  margin-right: 20px;
}

.contact_info_tel_link {
  font-size: 44px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
}

.contact_info_txt {
  font-weight: 700;
  margin-left: 0;
  letter-spacing: 0.16em;
}

.privacy_item_box {
  color: #181818;
  padding: 30px 53px 30px 24px;
  height: 397px;
  overflow: auto;
  background: #fff;
  border: 1px solid #dbdbdb;
  margin-top: 68px;
}

@media (max-width:1023px) {

  .contact_info_box {
    flex-wrap: wrap;
  }

  .contact_info_tel {
    width: 100%;
  }

  .contact_info_tt {
    font-size: 18px;
  }

  .contact_info_tel_link {
    font-size: 30px;
  }
}

@media (max-width:767px) {

  .contact_info_wrap {
    margin-bottom: 50px;
    padding: 15px 10px;
  }

  .contact_info_box {
    padding: 20px 10px;
  }

  .contact_info_tt {
    font-size: 16px;
  }

  .contact_info_tel_icon {
    font-size: 14px;
    margin-right: 5px;
  }

  .contact_info_tel_link {
    font-size: 24px;
  }

  .contact_info_txt {
    margin-left: 0;
    margin-top: 5px;
    font-size: 10px;
  }

  .contact_info_box {
    flex-wrap: wrap;
  }

  .contact_info_tel {
    width: 100%;
  }

  .privacy_item_box {
    padding: 30px 10px;
  }
}


.contact_tt {
  font-size: 26px;
  text-align: center;
  margin-bottom: 25px;
  letter-spacing: 0.16em;
}

.contact_tt.privacy {
  font-family: "Noto Sans JP";
  font-weight: 500;
}

/* フォーム */
.pg_contact .formTbl {
  border: 1px solid #ababab;
  background: #ffffff;
  color: #2c2c2c;
}

.pg_contact .form.formWrap {
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}

.pg_contact .formRow+.formRow {
  border-top: 1px solid #ababab;
}

.pg_contact .formTh {
  padding: 15px 15px 14px 20px;
  background: #e5e5e5;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.pg_contact .formTh label {
  margin: 0;
}

.d-inline-block.requiredText {
  font-size: 13px;
  padding: 2px 12px;
  margin-top: 3px;
  float: right;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: #b80000;
  color: #ffffff;
}

.d-inline-block.requiredText.nini {
  background: #fff;
  border: 1px solid #b80000;
  color: #b80000;
}

.pg_contact .formTd {
  font-size: 15px;
  font-weight: 500;
  padding: 10px 16px;
}

.pg_contact .formTd.d-center {
  display: flex;
  align-items: center;
}

.pg_contact .formTd input[type="text"],
.pg_contact .formTd input[type="tel"],
.pg_contact .formTd input[type="email"] {
  max-width: 461px;
  height: 39px;
  width: 100%;
  font-size: 15px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.16em;
}

.pg_contact .formTd select {
  border-radius: 0;
}

.pg_contact .formTd input[name="zip1"] {
  max-width: 120px;
}

.pg_contact .formTd input[name="zip2"] {
  max-width: 150px;
}

.pg_contact .formTd select[name="pref"] {
  max-width: 225px;
  width: 100%;
  font-size: 16px;
  padding: 7px 10px;
  border: 1px solid #d6d8d8;
}

.pg_contact .formTd input[name="city"] {
  max-width: 425px;
}

.pg_contact .formTd .addArea+.addArea {
  margin-top: 8px;
}

.pg_contact .formTd .addArea .labelText02 {
  width: 75px;
}

.pg_contact .formTd textarea {
  width: 100%;
  height: 280px;
  font-size: 15px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.16em;
}

.pg_contact .formWrap .text-center {
  padding-top: 63px;
}

.pg_contact input[name="privacy"] {
  margin-right: 7px;
}

.pg_contact .privacyLabel {
  font-size: 17px;
  display: inline;
}

.pg_contact .privacyLabel a {
  color: #e60011;
}

.pg_contact .formBtn.formSend {

  display: block;
  max-width: 500px;
  width: 100%;
  font-size: 18px;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  text-align: center;
  border: 1px solid transparent;
  background: #e60011;
  /* border-radius: 27px; */
  color: #FFF;
  padding: 27px 20px;
  margin: 47px auto 0;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  letter-spacing: 0.05em;
}

.pg_contact .formBtn.formSend:hover {
  background: #fff;
  color: #e60011;
}

.pg_contact label {
  display: inline-block;
  margin-bottom: 0;
}

.radioArea {
  padding: 0;
}

.radioArea .d-inline-block .label {
  font-size: 16px;
  margin-left: 9px;
  letter-spacing: 0.08em;
}

.radioArea .d-inline-block {
  margin-right: 31px;
}

.radioArea .d-inline-block:last-child {
  margin-right: 0;
}

label.label.zipcode_i {
  padding: 5px;
  background: #cccccc;
  margin: 0;
  display: inline-block;
  border: 1px solid #d6d8d8;
  border-right: 0;
  vertical-align: top;
  line-height: 1.8em;
}

.pg_contact .section.sec1 {
  padding: 0 0 0;
}

@media only screen and (min-width: 1024px) {
  .pg_contact .formTh {
    -ms-flex: 0 0 28%;
    -webkit-box-flex: 0;
    -webkit-flex: 28%;
    flex: 0 0 28%;
    max-width: 28%;
  }

  .pg_contact .formTd {
    -ms-flex: 0 0 72%;
    -webkit-box-flex: 0;
    -webkit-flex: 72;
    flex: 0 0 72%;
    max-width: 72%;
  }
}


/* プライバシー */
.pg_contact .section.sec2 {
  padding: 150px 0 20px;
}

.pg_contact .section.sec2 .contact_tt {
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-bottom: 43px;
  padding-left: 10px;
}

.privacy_item {
  margin-top: 27px;
}

.privacy_ttl {
  font-size: 18px;
  font-weight: 500;
  padding: 8px 15px;
  margin-bottom: 12px;
  border-left: 6px solid #e60011;
  letter-spacing: 0.04em;
}

.privacy_txt {
  letter-spacing: 0.04em;
  line-height: 1.875;
  text-align: justify;
}

.privacy_txt p {
  letter-spacing: 0.04em;
}

.privacy_txt_type1 {
  text-indent: -1.5em;
  padding-left: 1.5em;
}

.privacy_txt_type1_b {
  text-indent: -1em;
  padding-left: 1em;
}

.privacy_txt_type1_c {
  text-indent: -3em;
  padding-left: 3em;
}

.privacy_txt_type2 {}

.privacy_txt_type2 p {
  text-indent: -1em;
  padding-left: 1em;
}

.privacy_txt ol li {
  padding-left: 1.6em;
  text-indent: -1.6em;
}

.privacy_txt ul li {
  padding-left: 1em;
  text-indent: -1em;
}

.contact_tt.privacy {
  margin-bottom: 58px;
}

.contact_tt.privacy br {
  display: none;
}

.pg_contact .d-inline {
  display: inline-block !important;
}

.pg_contact .d-inline-block {
  vertical-align: middle;
}

.pg_contact .d-inline-block.nini {}


@media only screen and (max-width: 1023px) {
  .radioArea {
    padding: 0 5px;
  }

  .radioArea .d-inline-block .label {
    margin-left: 11px;
  }


  .privacy_ttl {
    font-size: 18px;
  }

}

/*LINEバナー*/
.contact_hdr {}

.contact_hdr_box {
  position: relative;
}

.contact_hdr_img:before {
  padding-top: 600px;
}

.contact_hdr_img:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.contact_hdr_inner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
  padding: 30px 16px;
}

.contact_hdr_box1 {
  width: 100%;
  order: 2;
  margin-top: 30px;
}

.contact_hdr_box1_img {}

.contact_hdr_box2 {
  width: 100%;
  text-align: center;
  order: 1;
}

.contact_hdr_box2_sub_tt {

  font-size: 17px;
  font-weight: 700;
}

.contact_hdr_box2_sub_tt p {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact_hdr_box2_sub_tt p:before {
  content: "\\";
  margin-right: 27px;
}

.contact_hdr_box2_sub_tt p:after {
  content: "/";
  margin-left: 28px;
}

.contact_hdr_box2_tt {
  font-size: 28px;
  font-weight: 900;
}

.contact_hdr_box2 .content_desc {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875em;
  margin-top: 5px;
}

.contact_hdr_box2 .read_more {
  margin-top: 14px;
}

.contact_hdr_box2 .read_more.gr a {
  width: 350px;
  background: #06c755;
  font-size: 16px;
  font-weight: 700;
  padding: 0;
}

.contact_hdr_box2 .read_more.gr a img {
  transition: all .2s;
}

.contact_hdr_box2 .read_more.gr a:hover img {
  transform: scale(1.04);
}

.contact_hdr_box2 .read_more.gr p {
  position: relative;
}

.contact_hdr_box2 .read_more.gr p:after {}

@media only screen and (max-width: 767px) {
  .contact_info {
    padding: 18px 15px 10px;
  }

  .contact_info_txt_1 br {
    display: block;
  }

  .contact_info_txt_2 {
    padding: 0 6px 0 10px;
    margin-right: 10px;
  }

  .contact_tt {
    margin-bottom: 25px;
    font-size: 18px;
  }

  .pg_contact .formTh {
    padding: 5px 10px;
  }

  .pg_contact .formTd {
    font-size: 13px;
    padding: 10px;
  }

  .pg_contact .formTd input[name="zip1"] {
    width: 80px;
  }

  .pg_contact .formTd input[name="zip2"] {
    width: 100px;
  }

  .pg_contact .formTd select[name="pref"] {
    width: 155px;
  }

  .pg_contact .formTd input[type="text"]::placeholder,
  .pg_contact .formTd input[type="tel"]::placeholder,
  .pg_contact .formTd input[type="email"]::placeholder {
    font-size: 14px;
    letter-spacing: 0.01em;
  }

  .pg_contact .formWrap .text-center {
    padding-top: 25px;
  }

  .pg_contact .privacyLabel {
    font-size: 15px;
  }

  .privacyformError {
    margin-top: -40px !important;
  }

  .contact_tt.privacy br {
    display: block;
  }

  .contact_tt.privacy {
    margin-bottom: 0;
  }

  .privacy_item {
    margin-top: 26px;
  }

  .contact_info_txt_1 {
    margin-bottom: 10px;
    padding-left: 0;
  }

  .pg_contact .d-inline {
    display: block !important;
  }

  .pg_contact .formTd .addArea .labelText02 {
    display: block;
  }

  label.label.zipcode_i {
    padding: 7px 4px;
  }

  a.contact_info_txt_3 {
    width: 200px;
    margin: 10px 0;
  }

  .radioArea .d-inline-block {
    margin-right: 10px;
  }

  .pg_contact .section.sec2 .contact_tt {
    font-size: 19px;
    margin-bottom: 20px;
  }


  .pg_contact .section.sec1 {
    padding: 0 0 25px;
  }

  .contact_info_bg {
    padding: 18px 10px;
  }

  .pg_contact .section.sec2 {
    padding: 65px 0 30px;
  }

  .privacy_ttl {
    font-size: 18px;
    padding-left: 10px;
  }

  /*LINEバナー*/
  .contact_hdr_box1_img {
    text-align: center;
  }
}

@media (min-width:768px) {

  /*LINEバナー*/
  .contact_hdr {}

  .contact_hdr_box {}

  .contact_hdr_img:before {
    padding-top: 400px;
  }

  .contact_hdr_inner {
    padding: 30px 20px;
  }

  .contact_hdr_box1 {
    width: 23.97%;
    order: 1;
    margin-top: 0;
  }

  .contact_hdr_box1_img {}

  .contact_hdr_box2 {
    width: 70.91%;
    order: 2;
  }

  .contact_hdr_box2_sub_tt {
    font-size: 20px;
  }

  .contact_hdr_box2_tt {
    font-size: 40px;
  }

  .contact_hdr_box2 .content_desc {}

  .contact_hdr_box2 .read_more {}

  .contact_hdr_box2 .read_more.gr a {
    font-size: 18px;
  }

}

@media (min-width:1024px) {

  /*LINEバナー*/
  .contact_hdr {}

  .contact_hdr_box {}

  .contact_hdr_img:before {
    padding-top: 320px;
  }

  .contact_hdr_inner {
    padding: 30px 65px;
  }

  .contact_hdr_box1 {
    padding-top: 21px;
  }

  .contact_hdr_box1_img {}

  .contact_hdr_box2 {}

  .contact_hdr_box2_sub_tt {
    font-size: 24px;
  }

  .contact_hdr_box2_tt {
    font-size: 50px;
  }

  .contact_hdr_box2 .content_desc {}

  .contact_hdr_box2 .read_more {}

  .contact_hdr_box2 .read_more.gr a {
    font-size: 20px;
  }

  .thanks_text {
    text-align: center;
  }

}

@media (min-width:1200px) {
  .contact_hdr_box2_tt {
    font-size: 64px;
  }

}

/*******************************
*　お問い合わせ送信完了
********************************/
.pg_thanks .link_3 {
  margin-top: 50px;
}

.thanks_text {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

@media only screen and (max-width: 767px) {
  .thanks_text {
    /*display: block;*/
    letter-spacing: -0.08em;
  }
}


/*******************************
*　
********************************/
.pg_xxx {}

.pg_xxx .section.sec1 {}

.pg_xxx .section.sec2 {}

.pg_xxx .section.sec3 {}

.pg_xxx .section.sec4 {}

.pg_xxx .section.sec5 {}


@media (max-width:374px) {}

@media (min-width:375px) {}

@media (max-width:767px) {}

@media (min-width:768px) {
  .pg_xxx {}

  .pg_xxx .section.sec1 {}

  .pg_xxx .section.sec2 {}

  .pg_xxx .section.sec3 {}

  .pg_xxx .section.sec4 {}

  .pg_xxx .section.sec5 {}


}

@media (min-width:1024px) {}

@media (min-width:1200px) {}


#chatbot-btn.hide {
  display: none !important;
}

@keyframes shakeX {
  0% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-4px);
  }

  40% {
    transform: translateX(4px);
  }

  60% {
    transform: translateX(-4px);
  }

  80% {
    transform: translateX(4px);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes shakeY {
  0% {
    transform: translateY(0);
  }

  20% {
    transform: translateY(-4px);
  }

  40% {
    transform: translateY(4px);
  }

  60% {
    transform: translateY(-4px);
  }

  80% {
    transform: translateY(4px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes shakeDiagonal {
  0% {
    transform: translate(0, 0);
  }

  20% {
    transform: translate(-4px, -4px);
  }

  40% {
    transform: translate(4px, 4px);
  }

  60% {
    transform: translate(-4px, -4px);
  }

  80% {
    transform: translate(4px, 4px);
  }

  100% {
    transform: translate(0, 0);
  }
}

.shakeX {
  animation: shakeX 0.3s ease-in-out;
}

.shakeY {
  animation: shakeY 0.3s ease-in-out;
}

.shakeDiagonal {
  animation: shakeDiagonal 0.3s ease-in-out;
}