body {
  margin: 0;
  padding: 0;
  /* font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif; */
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", "游ゴシック体", sans-serif, "Oswald", "Helvetica Neue", Arial;
  font-optical-sizing: auto;
  line-height: 1;
  color: #2b2b2b;
  font-size: 16px
}

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Noto+Sans+JP:wght@100..900&family=Oswald:wght@200..700&family=Outfit:wght@100..900&display=swap');

/* 
html{
    scroll-behavior: smooth;
} */


/* 共通 */

img {
  margin: 0;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: #1a1a1a;
  /* font-size: 16px; */
}

ul {
  list-style: none;
  padding: 0;
}

.l-inner {
  width: 94%;
  max-width: 1000px;
  height: auto;
  margin: 0 auto;
}

.bg-red {
  background-color: #b90f20;
  /* margin:0; */
}

.bg-black {
  background-color: #1a1a1a;
}


/* 画像レスポンシブ切り替え */

.img-pc {
  display: block;
}

.img-sp {
  display: none;
}

.br-sp {
  display: block;
}

/* SPサイズ用 */
@media screen and (max-width: 720px) {

  body {
    font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", "游ゴシック体", sans-serif, "Oswald", "Helvetica Neue", Arial;
  }

  .img-pc {
    display: none;
  }

  .img-sp {
    display: block;
  }

  .br-sp {
    display: none;
  }

  body {
    font-size: 14px
  }

}

/* ---------ヘッダー-----------------------------
  ------------------------ */

header {
  position: fixed;
  width: 100%;
  height: 70px;
  /* padding: 20px 60px;  */
  box-sizing: border-box;
  top: 0;
  left: 0;
  background-color: #1A1A1A;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
  z-index: 999;

}

.l-inner-head {
  width: 94%;

  height: auto;
  margin: 0 auto;
}

.header_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}


.header-logo-box {
  object-fit: cover;
  margin: auto 0;

}

.header-logo {
  width: 75%;
  /* margin-top: 30px; */
  margin-bottom: 10px;
}

.header_form-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #CB081A;
  width: 150px;
  height: 50px;
  margin-right: 20px;
}

.header_form-btn a {
  font-size: 0.96em;
  color: #fff;
  font-weight: bold;
  letter-spacing: 1.5px;
  padding-top: 3px;
}


/* ハンバーガーメニュー--------------
----------------------------------------- */
.hamburger-box {
  display: flex;
  align-items: center;
  /* margin: 0.8rem; */
  padding: 0 6px 0 15px;
  position: relative;
}

.line-list {
  display: block;
  transition: all 0.4s ease;
  position: relative;
  width: 40px;
  height: 40px;
  z-index: 300;
}

/* メニューの縦方向に並んだ3本線 */
.line-list span {
  display: block;
  width: 36px;
  height: 2.2px;
  background: #fff;
  position: absolute;
  left: 50%;
  /* 横方向の中央 */
  transform: translateX(-50%);
  /* 横方向で中央揃え */
  transition: all 0.5s ease;
}

/* 初期状態で3本線が重なるように */
.line-list span:nth-child(1) {
  top: 10px;
  /* 上部に配置 */
}

.line-list span:nth-child(2) {
  top: 24px;
  /* 中央の線 */
}

.line-list span:nth-child(3) {
  top: 38px;
  /* 下部に配置 */
}

.menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* margin-top: 6px; */
}

.menu-text {
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  margin-top: 4px;
  cursor: pointer;
  transition: color 0.3s ease;
}


/* ハンバーガーメニューが開くときに×にする */
.line-list.active span:nth-child(1) {
  top: 14px;
  transform: translateX(-50%) rotate(45deg);
  /* 回転して×の上部分 */
}

.line-list.active span:nth-child(2) {
  opacity: 0;
  /* 2番目の線を非表示に */
}

.line-list.active span:nth-child(3) {
  top: 14px;
  /* 3番目の線を中央に */
  transform: translateX(-50%) rotate(-45deg);
  /* 回転して×の下部分 */
}

/* メニューが開いたときの黒い半透明の背景 */
.menu-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background: rgba(0, 0, 0, 0.5);
  /* 半透明の背景 */
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s;
  cursor: pointer;
}

/* メニューが開くときの背景の表示 */
.nav-open .menu-bg {
  opacity: 1;
  visibility: visible;
}

/* ハンバーガーメニューが開いたときにメニューと背景が表示される */
.nav-open .line-list.active {
  transform: rotate(180deg);
  /* 回転アニメーション */
}

/* メニューが開いた状態での「MENU」の変更 */
.nav-open .menu-text {
  content: "CLOSE";
}


/* メニューの中身 */
.global-nav {
  position: fixed;
  left: -720px;
  top: 0;
  width: 70%;
  max-width: 400px;
  height: 100%;
  padding: 20px 2%;
  background: #1A1A1A;
  transition: all 0.8s;
  z-index: 200;
  overflow-y: auto;
  text-align: center;
}

.spNav {
  padding-bottom: 40px;
}

.parentList {
  flex-wrap: wrap;
  /* border-top: 1px solid #333; */
  width: 100%;
  padding: 0;
}

.parentList__item {
  border-bottom: 1px solid #fff;
  flex-basis: auto;
  font-size: 1em;
  /* width: 100%; */
  padding: 24px 5px;
  position: relative;
  font-weight: bold;
}

.parentList__item p {
  display: block;
  font-size: 13px;
  padding: 5px 0;
}

.menutxt_line {
  width: 100%;
  margin: 0 auto;
  border-top: dotted 1px #fff
}

.menutxt_line:last-of-type {
  border-bottom: dotted 1px #fff;
}

.parentList__item img {
  width: 75%;
  height: auto;
}

.parentList__item a {
  text-align: center;
  color: #fff;
}


/* メニューが横から開く */
.nav-open .global-nav {
  left: 0;
}

/* メニューが横から開いた時の背景 */
.nav-open .menu-bg {
  opacity: 0.8;
  visibility: visible;
}



/* ファーストビュー------------------------------
------------------------------------------------------------ */

.fv {
  /* height: 100vh; */
  width: auto;
  position: relative;
  background-color: #CB081A;
  margin-top: 70px;
}

/* .fv img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

.fv_img {
  width: 100%;

  height: auto;
  margin: 0 auto;
}


.fv-title {
  left: 50%;
  top: 65%;
  position: absolute;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);

  margin: 0;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 12px;
  color: #fff;
  writing-mode: vertical-rl;
  text-orientation: upright;
  line-height: 1.6;
  text-shadow: 0px 0px 7px rgba(72, 72, 72, 0.7);
  height: 80%;
}


/* SPサイズ用 */
@media screen and (max-width: 720px) {

  .header-logo {
    width: 98%;
  }

  .header_form-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #CB081A;
    width: 100px;
    height: 50px;
    margin-right: 6px;
  }

  .header_form-btn a {
    font-size: 0.86em;
  }


  .fv {
    /* height: 100vh; */
    width: auto;
    position: relative;
    background-color: #CB081A;
    margin-top: 30px;
  }

}


/* メインコンテンツ------------------------------
------------------------------------------------- */

/* 開催決定 */

.date {
  background: url(../img/bsk_bg.jpg) center center / cover;
  padding: 10% 0;
  color: #fff;
  position: relative;
}

.date-inner {
  max-width: 800px;
}

/* .bg-txt{
  position: absolute;
  top: 20%;
  left: 50%;
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  font-size: 12em;
  font-style: italic;
  opacity: 0.2;
} */

.bg-txt-deco {
  font-size: 20vw;
  font-weight: 500;
  font-family: "Oswald";
  font-style: italic;
  letter-spacing: 5px;
  margin: 0;
  z-index: 0;
  width: 100vw;
  text-align: center;
  margin: -10%;
  margin-left: calc(50% - 50vw);
  white-space: nowrap;
  opacity: 0.1;
}

/* 
.tit-date_box{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2% auto 4%;
}

.tit-date{
  display: inline-block;
  margin: 0 20px;
  font-size: 1.5em;
}

.tit-date_line{
  display: block;
  width: 80px;
  height: 1px;
  background-color: #fff;
} */


.head-border {
  display: flex;
  align-items: center;
  margin: 2% 0 4%;
  font-size: 1.5em;
  font-family: "Oswald", "Helvetica Neue", Arial;
}

.head-border:before,
.head-border:after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: #fff;
}

.head-border:before {
  margin-right: 1rem;
}

.head-border:after {
  margin-left: 1rem;
}


.date_box {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.date_box img {
  width: 48%;
  max-width: 300px;
}


/* 実業団紹介---------------- */

.about {
  padding-bottom: 10%;
  position: relative;
  z-index: 1;
}

.about-fea::after {
  /* content: url(../img/YRN_logo.png); */
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background-image: url(../img/YRN_logo.png);
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.2;
  /* color: #fff;
  position: relative; */
  z-index: -99;
}

.tit-box-about {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  font-weight: bold;
  color: #fff;
  padding: 10% 0 0;
}

.tit-box-about .tit-sub {
  font-size: 1em;
  margin: 0;
}

.tit-box-about .tit-main {
  font-size: 2.5em;
  margin: 20px 0 0;
  text-shadow: 1px 1px 8px #1a1a1a;
}

.about_logobox {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.about_logo_txt {
  margin: 15px 0 0;
}

.about_logo_mark {
  margin: 50px auto 40px;
}

.ctn_box_detail {
  font-size: 0.9em;
  font-weight: normal;
  color: #fff;
  letter-spacing: 1.5px;
  line-height: 1.8;
  margin-top: 20px;
  width: 50%;
  min-width: 400px;
  margin: 30px auto;
}

/* about */

/* 英語タイトル共通 */
.mar-headbor {
  margin: 5% auto;
  max-width: 1000px;
}

.head-border-en {
  display: flex;
  align-items: center;
  margin: 2% 0;
  font-size: 1.2em;
  font-weight: normal;
  letter-spacing: 1.5px;
  font-family: "Oswald", "Helvetica Neue", Arial;
  color: #fff;
}

.head-border-en:before,
.head-border-en:after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: #fff;
}

.head-border-en:before {
  margin-right: 1rem;
}

.head-border-en:after {
  margin-left: 1rem;
}


.about_fea-tit {
  text-align: center;
  color: #fff;
  font-size: 1.74em;
  margin: 20px 0 30px;
}

.about_fea-area {
  margin: 0;
}

.fea-area_box {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 5px auto;
}

.fea-area_box_txt {
  position: absolute;
  top: 50%;
  left: 60%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #2b2b2b;
  width: 100%;
  max-width: 440px;
  height: auto;
  margin: 0;
  padding: 0;
  z-index: 10;
  text-align: left;
}

.fea-area_box_txt h5 {
  font-size: 1.5em;
  margin: 0;
  line-height: 2;
}

.fea-area_box_txt p {
  font-size: 1em;
  line-height: 1.8;
  margin: 0;

}

.ctn_box_detail-w94 {
  width: 100%;
  max-width: 600px;
  margin-top: 20px 0;
}


/* 目標 */

.goal {
  background: url(../img/goal_bg.jpg) center center / cover;
  padding: 6% 0 10%;
  color: #fff;
}

.bg-txt-deco-btm {
  position: relative;
  font-size: 15vw;
  opacity: 0.2;
  z-index: 0;
}

.tri-box {
  position: absolute;
  left: 50%;
  z-index: 99;
  margin-top: -20px;
}

.triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-top: 7px solid #fff;
  border-bottom: 0;
  margin: 6px 0;
}


.goal_area {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 10;
}

.goal_tit {
  display: block;
  background-color: #1a1a1a;
  padding: 10px 20px;
  font-size: 1.4em;
  color: #fff;
  letter-spacing: 1.3px;
  width: 94%;
  max-width: 550px;
  text-align: center;
  margin: 0 0 5px;
}

.goal_box {
  display: block;
  background-color: #ffffffcc;
  padding: 20px;
  width: 94%;
  max-width: 550px;
}

.goal_box ul {
  max-width: 480px;
  margin: 0 auto;
}

.goal_box_txt {
  color: #CB081A;
  font-weight: 700;
  font-size: 1.4em;
  margin: 10px auto;
}

.goal_box_txt:before {
  content: "";
  display: inline-block;
  width: 35px;
  height: 35px;
  background-image: url(../img/pt_check.png);
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
  padding-right: 10px;
}

.goal_box .ctn_box_detail {
  color: #2b2b2b;
}

/* ディレクター紹介--------------- */

.coach {
  position: relative;
  padding-bottom: 6%;
  z-index: 1;
}

.head-border-tit {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 6% 0 0;
  font-size: 1.74em;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #fff;
}

.head-border-tit:before,
.head-border-tit:after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: #CB081A;
}

.coach_pro {
  width: 100%;
  max-width: 300px;
  margin: 5% auto 4%;
  color: #fff;
  text-align: center;
}

.coach_pro_name {
  font-size: 1.5em;
  font-weight: 500;
  margin-bottom: 8px;
}

.coach_pro_name-en {
  font-size: 12px;
}

.bg-naname {
  position: relative;
  width: 100%;
  height: auto;
  padding: 20px 0 5%;
  z-index: 1;
}

.naname-black::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  margin: 0 calc(50% - 50vw);
  z-index: -10;
  transform: skewY(-7deg);
  z-index: -12;
  background: url(../img/director.jpg) center center / cover;
  background-repeat: no-repeat;

}

.hc-black::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  margin: 0 calc(50% - 50vw);
  z-index: -10;
  transform: skewY(-7deg);
  z-index: -12;
  background: url(../img/headcoach.jpg) center center / cover;
  background-repeat: no-repeat;
}



.history_box {
  display: block;
  background-color: #333;
  padding: 8px;
  width: 94%;
  max-width: 550px;
  position: relative;
  z-index: 5;
  margin: 0 auto;
}

.history_box-in {
  display: block;
  border: 1px solid #fff;
  padding: 10px;
}

.history_box p {
  color: #fff;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
}

.history_list {
  max-width: 480px;
  margin: 0 auto;
}

.history_list li {
  color: #fff;
  font-weight: normal;
  font-size: 1em;
  line-height: 1.5;
  margin-bottom: 10px;
}

/* ライズについて----------------------- */

.col-bl {
  color: #2b2b2b;
}



.bg-naname-rise {
  display: block;
  padding-bottom: 10%;
  width: 100%;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
}

.rise_flex {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rise-logo {
  max-width: 500px;
  margin: 5% auto 0;
  text-align: center;
}

.rise_name {
  color: #2b2b2b;
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 0;
}

.rise_name::before {
  content: "";
  display: inline-block;
  width: 35px;
  height: 35px;
  background-image: url(../img/RC_logo_mark.png);
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
  padding-right: 10px;
}

.rise_logo-txt {
  width: 110px;
  margin-top: 10px;
}

.rise-logo a {
  display: inline-block;
  background-color: #CB081A;
  color: #fff;
  padding: 12px 40px;
  margin-top: 30px;
}

.rise_img {
  margin-top: -10%;
  width: 100%;
}

.bg-naname-rise2 {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: -15%;
  padding: 20px 0 5%;
  z-index: 10;
}

.bg-naname-rise2::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #CB081A;
  margin: 0 calc(50% - 50vw);
  z-index: -10;
  transform: skewY(-7deg);

}

.rise_rinen-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rise_rinen {
  display: inline-block;
  text-align: center;
  color: #fff;
  font-size: 1.74em;
  line-height: 1.8;
  position: relative;
  margin: 0px auto 30px;
  padding: 15px 100px;
}

.rise_rinen::before,
.rise_rinen::after {
  position: absolute;
  width: 50px;
  height: 50px;
  content: '';
}

.rise_rinen::before {
  border-left: solid 2px;
  border-top: solid 2px;
  top: 0;
  left: 0;
}

.rise_rinen::after {
  border-right: solid 2px;
  border-bottom: solid 2px;
  bottom: 0;
  right: 0;
}

.ctn_box_detail-rinen {
  font-size: 0.9em;
  font-weight: normal;
  color: #fff;
  letter-spacing: 1.5px;
  line-height: 1.8;
  margin-top: 20px;
  margin: 0 auto;
}

/* ポイント */


.rise_point {
  display: flex;
  flex-wrap: wrap;
  max-width: 800px;
  gap: 10px;
  justify-content: center;
  margin: 5% auto 0;
  padding-bottom: 5%;
}

.rise_point_box {
  border-left: 10px solid red;
  padding: 20px;
  width: 45%;
  max-width: 350px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;

  border: 1px solid #2b2b2b;
  background: linear-gradient(135deg, #2b2b2b 0 10px, transparent 10px);
  background-color: #fff;

  display: flex;
  flex-direction: column;
  align-items: center;
}


.rise_point_box h5 {
  display: inline-block;
  color: #2b2b2b;
  border-bottom: 3px solid #2b2b2b;
  padding: 0 10px 7px;
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 1.2em;
  text-align: center;
}

.rise_point_box p {
  color: #2b2b2b;
  font-size: 1em;
  line-height: 1.6;
}

/* 待遇ーーーーーーーーーーーーーーーーー */

.ad {
  background: url(../img/aboutrc_2.jpg)center bottom / cover;
  margin-top: -20%;
}

.ad_area {
  padding: 20% 0 10%;
}


.rec-table {
  width: 90%;
  margin: 0% auto;
}

/* 表の設定 */

table {
  border-collapse: collapse;
  border: solid 1px #474747;
  background-color: #fff;
}


table th,
table td {
  border: solid 1px #474747;
  font-size: 16px;
  line-height: 1.5;
}

table th {
  background-color: #282828;
  color: #ffffff;
  padding: 10px;
  width: 22%;
  height: 100px;
  border-bottom: solid 1px #fff;
}

table tr:last-child th {
  border-bottom: none;
}

table td {
  padding: 20px 30px;
  width: 70%;
}

table td strong {
  font-size: 1.12em;
  padding-top: 10px;
  padding-bottom: 10px;
}


/* 概要ーーーーーーーーーーーーーーーーー */

.try_img {
  margin: 4% 0 0;
  padding-top: 2%;
  background-color: #b90f20;
}

.try_img img {
  margin: 0 auto 0;
  width: 45%;
}

.try-about_bg {
  padding: 5% 0;
}

table td .beta {
  display: inline-block;
  background-color: #282322;
  margin-bottom: 6px;
  padding: 2px 15px 4px;
  color: #fff;
  font-weight: 500;
}

table td .beta-red {
  background-color: #CB081A;
}



/* SPサイズ用 */
@media screen and (max-width: 720px) {

  .body {
    overflow: hidden;
  }

  /* 開催決定 */

  .bg-txt-deco {
    font-size: 17vw;
    letter-spacing: 3px;
    width: 100vw;
    overflow: hidden;
  }

  .head-border {
    font-size: 1.2em;
  }

  .date_box {
    justify-content: space-evenly;
  }

  .date_box img {
    width: 45%;
  }

  /* 実業団紹介---------------- */

  .tit-box-about {
    padding: 20% 0 0;
  }

  .tit-box-about .tit-sub {
    font-size: 1em;
    margin: 0;
  }

  .tit-box-about .tit-main {
    font-size: 2em;
    margin: 20px 0 0;
    text-shadow: 1px 1px 8px #1a1a1a;
  }

  .about_logobox {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }

  .ctn_box_detail {
    font-size: 0.9em;
    width: 94%;
    min-width: unset;
    margin: 15px auto 0;
  }

  /* about */

  .mar-headbor {
    margin: 15% auto 10%;
    max-width: 1000px;
  }

  .head-border-en {
    margin: 2% 0 4%;
    font-size: 0.8em;
  }


  .about_fea-tit {
    text-align: center;
    color: #fff;
    font-size: 1.5em;
    margin: 20px 0 30px;
  }

  .fea-area_box {
    position: relative;
    width: 94%;
    max-width: unset;
    margin: 5px auto;
    background-color: #fff;
    padding-bottom: 55px;
  }

  .fea-area_box_txt {
    position: absolute;
    top: 55%;
    left: 50%;

    width: 90%;
    max-width: unset;
    height: auto;
    margin: 0;
    padding: 0 10px;
    z-index: 10;
    text-align: left;
  }

  .fea-area_box_txt h5 {
    font-size: 1.4em;
    margin: 0;
    text-align: center;
  }

  .fea-area_box_txt p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .ctn_box_detail-w94 {
    margin: 10px auto;
  }

  /* 目標 */

  .goal {
    padding: 15% 0;
  }

  .goal_tit {
    padding: 10px 20px;
    font-size: 1.2em;
    width: 90%;
    max-width: 550px;
    margin: 0 0 5px;
  }

  .goal_box {
    padding: 20px 20px 5px;
    width: 90%;
    max-width: 500px;
  }

  .goal_box ul {
    max-width: 480px;
    margin: 0 auto;
  }

  .goal_box_txt {
    font-size: 1.2em;
  }

  .goal_box_txt:before {
    width: 25px;
    height: 25px;
    padding-right: 5px;
  }

  /* ディレクター紹介--------------- */

  .coach {
    padding-bottom: 12%;
  }

  .head-border-tit {
    padding: 15% 0;
    font-size: 1.4em;
  }

  .coach_pro {
    margin-bottom: 10%;
  }

  .coach_pro img {
    width: 80%;
  }

  /* ライズについて */

  .bg-naname-rise {
    display: block;
    padding-bottom: 30%;
    width: 100%;
    background-color: #fff;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  }

  .rise_img {
    margin-top: -20%;
  }

  .bg-naname-rise2 {
    margin-top: -8%;
    padding: 40px 0 5%;
  }


  .rise_rinen {
    font-size: 1.4em;
    line-height: 1.8;
    margin: 0px auto 30px;
    padding: 15px 30px;
  }

  .ctn_box_detail-rinen {
    font-size: 0.9em;
  }

  .rise_point {
    max-width: unset;
    gap: 10px;
    margin: 8% auto 0;
    padding-bottom: 10%;
  }

  .rise_point_box {
    padding: 10px 20px;
    width: 85%;
    max-width: unset;
  }

  .rise_point_box h5 {
    padding: 0 20px 7px;
    margin-top: 10px;
    margin-bottom: 5px;
    /* font-size: 1.2em;
    text-align: center; */
  }

  /* .rise_point_box p {
    color: #2b2b2b;
    font-size: 1em;
    line-height: 1.6;
  } */

  /* 表の設定 --------------*/

  .try_img {
    padding-top: 0;
  }

  table {
    border: solid 0.5px #474747;
  }

  .table td {
    border: none;
  }


  .rec-text-box,
  table th,
  table td {
    border-bottom: none;
    display: block;
    font-size: 16px;
    line-height: 1.8;
  }

  .rec-table {
    width: 100%;
    margin: 0% auto;
  }

  table th {
    width: auto;
    height: auto;
    border: none;
  }

  table td {
    width: auto;
    margin: 0 auto;
    text-align: left;
  }

  table td strong {
    font-size: 1.05em;
  }

  /* 概要 */

  .try-about_bg {
    padding: 5% 0 15%;
    margin-top: -6%;
  }


}


/* 連絡方法 ---------------------*/

.con-box {
  padding: 5% 0 8%;
  background: url(../img/form.jpg)center center / cover;
}

.con-title {
  font-size: 1.4em;
  letter-spacing: 2px;
  font-weight: 700;
  text-align: center;
  margin: 5% 0 4%;
}

.con-img-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.con-img-flex {
  /* padding: 0 30px;
  width: 40%;
  max-width: 90px; */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  background-color: #CB081A;
  width: 30%;
  margin: 6px;
  padding: 10px 10px;
}

.con-img-flex img {
  width: 30px;
  height: 30px;
  margin-right: 5px;
}

.con-img-flex p {
  color: #fff;
  font-weight: 700;
  font-size: 1.1em;
  padding-bottom: 3px;
}



/* 応募フォーム */

.entry-box {
  background-color: #2b2b2b;
  width: 100%;
  padding: 14% 0 1%;
  margin-top: -7%;
}

.entry-title .tit-sub {
  background-color: #fff;
  color: #FFAD1D;
}

.entry-title h3 {
  color: #fff;
  font-size: 1.3em;
}


/* 応募フォーム本体 */

.entry-form {
  background-color: #fff;
  max-width: 90%;
  padding: 10px 30px 30px;
  margin: 5% auto 5%;
}

.Form-Item {
  padding-top: 20px;
  padding-bottom: 20px;
  width: 100%;
  max-width: 500px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
}


.Form-Item-Label {
  width: 100%;
  max-width: 248px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 18px;
  max-width: inherit;
  display: inline-flex;
  align-items: center;
  font-size: 15px;
}


.Form-Item-Label.isMsg {
  margin-top: 0
}

.Form-Item-Label-Required {
  margin-right: 8px;
  padding: 4px 0;
  width: 32px;
  display: inline-block;
  text-align: center;
  background: #CB081A;
  color: #fff;
  font-size: 10px;
}

.Form-Item-Label-nini {
  margin-right: 8px;
  padding: 4px 0;
  width: 32px;
  display: inline-block;
  text-align: center;
  background: #555;
  color: #fff;
  font-size: 10px;
}


.Form-Item-Input {
  padding-left: 1em;
  padding-right: 1em;
  height: 40px;
  flex: 1;
  width: 100%;
  max-width: 500px;
  background: #eaedf2;
  font-size: 1em;
  flex: inherit;
}

.Form-Item-Textarea {
  border-radius: 6px;
  padding-left: 1em;
  padding-right: 1em;
  height: 200px;
  flex: 1;
  width: 100%;
  max-width: 500px;
  background: #eaedf2;
  font-size: 1em;
  flex: inherit;
}

.Form-Btn {
  margin: 24px auto 0;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 180px;
  display: block;
  letter-spacing: 0.05em;
  background: #CB081A;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
}

.gra-year {
  margin: 0 5px 0 15px;
}

.Form-Item-left {
  justify-content: flex-start;
}

.radio-other {
  margin-top: 10px;
}

.others_text {
  margin-left: 5px;
}


/* フッター */

footer {
  padding: 30px 0;
  background-color: #282322;
}

.footer_text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

small {
  color: #fff;
  text-align: center;
}


/* spサイズ用 */
@media screen and (max-width: 720px) {
  .con-img-box {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .con-img-flex {
    width: 55%;
    margin: 6px 0;
    padding: 5px 10px;
  }

}

/* TOPへ戻る */

#page_top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 3%;
  bottom: 2%;
  background: #4F4746;
  opacity: 0.8;
  border-radius: 50%;
  z-index: 9999;
}

#page_top a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}

#page_top a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f102";
  font-size: 23px;
  color: #fff;
  position: absolute;
  width: 20px;
  height: 20px;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.fade-in {
  transition: 1s ease-in-out;
  transform: translateY(50px);
  opacity: 0;
}

.fade-in.on {
  transform: translateY(0);
  opacity: 1.0;
}