body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  ;
  font-optical-sizing: auto;
  line-height: 1;
  color: #282322;
  font-weight: 500;
  font-size: 14px
}


@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400&display=swap');

/* 
html{
    scroll-behavior: smooth;
} */


/* 共通 */

img {
  margin: 0;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: #282322;
  font-size: 14px;
}

ul {
  list-style: none;
}

.l-inner {
  width: 94%;
  height: auto;
  margin: 0 auto;
}


/* ---------ヘッダー-----------------------------
  ------------------------ */

header {
  position: fixed;
  width: 100%;
  height: 70px;
  /* padding: 20px 60px;  */
  box-sizing: border-box;
  top: 0;
  left: 0;
  background-color: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
  z-index: 999;

}

.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; */
}

.header_form-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #594936;
  width: 240px;
  height: 70px;
}

.header_form-btn a {
  font-size: 0.96em;
  color: #fff;
  font-weight: bold;
  letter-spacing: 1.5px;
  padding-top: 3px;
}


/* ハンバーガーメニュー--------------
----------------------------------------- */
.hamburger-box {
  align-items: center;
  /* margin: 0.8rem; */
  padding: 0 6px 7px 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: #544C48;
  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: #544C48;
  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: #fff;
  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 #333;
  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 #aa9e97;
}

.menutxt_line:last-of-type {
  border-bottom: dotted 1px #aa9e97;
}

.parentList__item img {
  width: 75%;
  height: auto;
}

.parentList__item a {
  text-align: center;
}


/* メニューが横から開く */
.nav-open .global-nav {
  left: 0;
}

/* メニューが横から開いた時の背景 */
.nav-open .menu-bg {
  opacity: 0.8;
  visibility: visible;
}



/* ファーストビュー------------------------------
------------------------------------------------------------ */

.fv {
  height: 100vh;
  width: auto;
  position: relative;
}

.fv video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}




.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%;
}


/* メインコンテンツ------------------------------
------------------------------------------------- */


/* h3タイトル */

.title-box {
  text-align: center;
  font-weight: bold;
}

.tit-sub {
  display: inline-block;
  background-color: #FFAD1D;
  padding: 6px 20px;
  border-radius: 30px;
  font-size: 0.92em;
  color: #fff;
  letter-spacing: 1.3px;
}

.tit-main {
  margin: 0;
  font-size: 1.2em;
  letter-spacing: 1.1px;
}


/* 導入_セミナー案内 */

.info {
  background-color: #F7F5F2;
  padding: 10% 0;
}

.info_box-all {
  margin: 35px 0 20px;
}

.info_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 90%;
  height: 120px;
  margin: 20px auto 0;
  border: 1px solid #282322;
  border-left: 8px solid #282322;
  border-radius: 0 0 20px 0;
  background-color: #fff;
  text-align: center;
}

.info_box_name {
  width: 90%;
  margin: 0 auto;
  padding-bottom: 15px;
  border-bottom: 1px solid #282322;
  font-size: 1.1em;
  font-weight: 600;
}

.info_box_detail {
  margin: 0;
  padding-top: 20px;
  font-size: 0.95em;
  letter-spacing: 1.2px;
  font-weight: 500;
}


/* 装飾ライン */

.parts-line {
  display: block;
  width: 1px;
  height: 40px;
  background-color: #282322;
  margin: -20px auto 0;
}


/* MOVIE */

.movie {
  margin: 30px 0 50px;
}

.movie_box {
  width: 90%;
  margin: 30px auto;
}

.movie_box iframe {
  width: 100%;
  height: 200px;

}


/* ライズとは---------------------- */

.company {
  background: url(../image/new/gra_bg.jpg) center center / cover;
  padding: 15% 0 5%;
}

.tit-company-en {
  font-family: 'Josefin Sans';
  font-style: italic;
  color: #5B5655;
}

.title-company-box {
  width: 96%;
  margin: 0 auto;
  border-bottom: 1px solid #282322;
}

.tit-company {
  font-size: 3.4em;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 5px;
  margin-top: 30px;
}

.tit-company span {
  font-size: 1.2em;
  color: #fff;
  text-shadow: 1px 1px 0 #282322, -1px -1px 0 #282322,
    -1px 1px 0 #282322, 1px -1px 0 #282322,
    0px 1px 0 #282322, 0 -1px 0 #282322,
    -1px 0 0 #282322, 1px 0 0 #282322;
}

/* 紹介項目 */

.company_box {
  border-bottom: 1px solid #282322;
}

.company_txt-box {
  display: block;
  background-color: #ffffffaa;
  margin: 15px auto;
  padding: 15px 20px 10px;
  font-weight: bold;
}

.company_box_name {
  font-size: 1.6em;
  letter-spacing: 1.2px;
  display: flex;
  align-items: center;
  margin: 16px 0;
}

.company_box_name::before {
  content: '';
  display: block;
  width: 15px;
  height: 5px;
  background-color: #FFAD1D;
  margin-right: 10px;
}

.company_box_detail {
  font-size: 0.86em;
  font-weight: 500;
  letter-spacing: 1.5px;
  line-height: 1.8;
  margin-top: 20px;
}

.normal-txt {
  width: 94%;
  margin: 0 auto;
  padding: 30px 0;
  border-bottom: 1px solid #282322;
}


/* 部署紹介---------------------- */

.jobs {
  padding: 8% 0;
}


.jobs_gru {
  display: flex;
  justify-content: space-between;
}

.jobs_gru_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 140px;
  font-weight: bold;
  font-size: 0.80em;
}

.jobs_gru_box p {
  margin-bottom: 0;
}

.jobs_gru_box-left {
  margin-top: 40px;
}

/* 矢印 */
.jobs_gru_arrow {
  width: 60%;
  margin-top: 90px;
}

.jobs_gru_arrow-last {
  width: 60%;
  margin-top: 40px;
}

/* 2列目以降 */

.jobs_gru-btm {
  margin-top: -30px;
}


/* その他 */

.jobs_gru-other {
  justify-content: flex-start;
  margin-top: 30px;
}

.jobs_gru_box-other {
  width: 40%;
  margin-right: 20px;
  max-width: 140px;
}


/* モーダル表示用-------------- */

.modal_wrap input {
  display: none;
}

.modal_overlay {
  display: flex;
  justify-content: center;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.5s, transform 0s 0.5s;
  transform: scale(0);
}

.modal_trigger {
  position: absolute;
  width: 100%;
  height: 100%;
}

.modal_content {
  align-self: center;
  width: 90%;
  max-width: 500px;
  padding: 10px 10px 22px;
  box-sizing: border-box;
  background: #F7F5F2;
  line-height: 1.4em;
  transform: scale(0.5) rotateX(-90deg);
  /* transform: scale(0.5) rotateX(-270deg); */
  transition: 0.5s;
  border-radius: 20px;
}

.close_button {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 12%;
  aspect-ratio: 1 / 1;
  margin-bottom: -5.15625%;
  background: #fff;
  border-radius: 100%;
  border: 1px solid #383033;
  transform: translateX(-50%);
}

.close_button .line {
  position: relative;
  width: 43.75%;
  aspect-ratio: 1 / 1;
  transform: rotate(45deg);
}

.close_button .line::before {
  display: block;
  background: #383033;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  transform: translateY(-50%);
}

.close_button .line::after {
  display: block;
  background: #383033;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1.5px;
  height: 100%;
  transform: translateX(-50%);
}

.modal_wrap input:checked~.modal_overlay {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s;
}

.modal_wrap input:checked~.modal_overlay .modal_content {
  transform: scale(1) rotateX(0deg);
}



.modal_content img {
  border-radius: 10px;
}

.jobs_modal_name {
  font-size: 1.2em;
  font-weight: bold;
  border-bottom: 1px solid #282322;
  padding: 10px 0;
}

.jobs_modal_txt {
  padding: 10px 5px;
  font-size: 0.8em;
  text-align: left;
  font-weight: bold;
}





/* モーダル表示用ここまで-------------- */


/* こんな方におすすめ--------------------------- 
------------- ------------- ------------- -------------  */

.reccommend {
  background-color: #F7F5F2;
  margin: 5% 0;
  padding: 15% 0 15%;
}


.title-rec-box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 5%;
  border-bottom: 1px solid #282322;
}


.tit-rec-en {
  font-family: "Josefin Sans", "Noto Sans JP";
  color: #FFAD1D;
  font-size: 0.86em;
  font-weight: 400;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  margin: 0 0px 0 15px;
}

.tit-rec {
  font-size: 1.4em;
  line-height: 1.5;
  letter-spacing: 1.5px;
  writing-mode: vertical-rl;
  text-orientation: upright;
  margin: 0 15px 0 0;
}

.title-rec-box img {
  width: 65%;
}

.rec_txtbox {
  padding: 20px 0;
  border-bottom: 1px solid #282322;
}

.rec_txtbox p {
  margin: 10px 0 0;
  font-size: 1em;
  letter-spacing: 1.2px;
}

.rec_txtbox span {
  font-family: "Josefin Sans", "Noto Sans JP";
  color: #FFAD1D;
}


/* 働く魅力--------------------------- 
------------- ------------- ------------- -------------  */

.tit-point {
  display: block;
  background-color: #FFAD1D;
  margin-top: -10%;
  padding: 10% 0 13%;
  border-radius: 15px 15px 0 0;
}

.tit-point-en {
  font-weight: 400;
  font-style: italic;
  font-size: 0.86em;
}

.tit-point-main {
  color: #fff;
  font-size: 1.3em;
}


.point-img-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 5% 0;
}

.point-img {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  width: calc(92% / 2);
  height: 160px;
  border: 1px solid #4F4746;
  border-radius: 10px;
  margin: 8px 5px;
}

.point-img img {
  width: 80%;
  max-width: 120px;
}

.point-img p {
  font-size: 0.94em;
  font-weight: 500;
  color: #4F4746;
  line-height: 1.5;
  margin: 0 0 10px;
}

/* access---------------------- */

.access {
  margin-top: 15%;
}

.access_box {
  width: 90%;
  margin: 30px auto;
}

.access_box img {
  border-radius: 15px;

}

.access_box p {
  line-height: 1.8;
  padding: 15px 0;
}

.normal-txt-none {
  border: none;
}

/* セミナー案内---------------------- */

.seminar {
  background: url(../image/new/gra_bg.jpg) center center / cover;
  padding: 15% 0 10%;
}


.semi-box {
  display: block;
  border: 1px solid #FFAD1D;
  border-radius: 20px;
  background-color: #fff;
  padding: 15% 2% 10%;
}

.semi-box h3 {
  color: #FFAD1D;
  text-align: center;
  font-size: 1.34em;
  line-height: 1.8;
}

.semi-box p {
  line-height: 1.8;
  font-size: 1em;
  border: none;
}


/* 連絡方法 ---------------------*/

.con-box {
  margin-top: 15%;
}

.con-title {
  font-size: 1.1em;
  letter-spacing: 2px;
  text-align: center;
  margin: 5% 0 10%;
}

.con-img-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.con-img-flex {
  padding: 0 30px;
  width: 40%;
  max-width: 90px;
}


/* 応募フォーム */

.entry-box {
  background-color: #FFAD1D;
  width: 100%;
  margin: 12% 0 0;
  padding: 10% 0 1%;
  border-radius: 20px 20px 0 0;
}

.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: 10% auto 5%;
}

.Form-Item {
  padding-top: 20px;
  padding-bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}


.Form-Item-Label {
  width: 100%;
  max-width: 248px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 18px;
  max-width: inherit;
  display: flex;
  align-items: center;
  font-size: 15px;
}


.Form-Item-Label.isMsg {
  margin-top: 0
}

.Form-Item-Label-Required {
  border-radius: 4px;
  margin-right: 8px;
  padding: 4px 0;
  width: 32px;
  display: inline-block;
  text-align: center;
  background: #FFAD1D;
  color: #fff;
  font-size: 10px;
}


.Form-Item-Input {
  border-radius: 6px;
  padding-left: 1em;
  padding-right: 1em;
  height: 40px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  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: 410px;
  background: #eaedf2;
  font-size: 1em;
  flex: inherit;
}

.Form-Btn {
  border-radius: 6px;
  margin: 24px auto 0;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 180px;
  display: block;
  letter-spacing: 0.05em;
  background: #FFAD1D;
  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;
}


/* pcサイズ用 */
@media screen and (min-width: 500px) {

  html {
    background-color: #fcf9ea;
  }

  body {
    width: 420px;
    margin: 0 auto;
    max-width: 450px;
    border-right: 2px solid #443e3c;
    border-left: 2px solid #443e3c;
    background-color: #fff;
  }

  /* ヘッダー */
  .header_wrap {
    max-width: 420px;
    margin: 0 auto;
    justify-content: center;
    /* border-right:2px solid #443e3c ;
      border-left:2px solid #443e3c ; */
  }

  /* メニューの中身 */
  .global-nav {
    position: fixed;
    left: -1920px;
    top: 0;
    width: 100%;
    max-width: 500px;
    height: 100%;
    padding: 40px 2%;
  }

  /* ---- */
  .modal_content {
    width: 90%;
    max-width: 420px;
  }

  .slider .slick-slide {
    transform: scale(0.95);
    transition: all .5s;
    opacity: 0.5;
    width: 400px;
  }
}

/* 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;
}