@charset 'UTF-8';

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  font-family: "Noto Sans JP", sans-serif;
  font-size:16px;
  line-height: 32px;
  color:#3e3e3e;
}

a{
    text-decoration: none;
}

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

h1{
    font-weight:normal;
}
h2{
    font-weight:normal;
}
h3{
    font-weight:normal;
}
h4{
    font-weight:normal;
}

/* テキスト選択時の背景色と文字色の変更 */
::selection {
  background-color: #ea5532;
  color: #fff;
}
/* IEとEdge */
::-moz-selection {
  background-color: #ea5532;
  color: #fff;
}

/*
設定
================================================ */

/* 間隔調整*/
.space-150px{
  margin-top:150px;
}
.space-200px{
  margin-top:200px;
}

.space-300px{
  margin-top:300px;
}

/* 文字間詰め*/
.harf{
  letter-spacing:-15px;    
  }

/* 強調 赤点 */
.emphasis-dot-red{
  display: inline-block;
  position: relative;
}

.emphasis-dot-red::before{
  position: absolute;
  top: 50%;
  right: -50%;
  transform: translate(0, -50%);
  color: #ea5532;
  font-size: 1em;
  content: "・";
}

/*
背景設定
================================================ */


/*
ヘッダー
================================================ */

header{
    width:100%;
}

/*ロゴ */
.header-logo{
  position: absolute;
  top:20px;
  left:20px;
  z-index: 1;
}

.header-logo img{
    width:250px;
}
@media (max-width:900px){
  .header-logo{
    top:2%;
  }
}

/*RRロゴ */
.RR-home{
  position:fixed;
  top:35%;
  z-index: 1;
 }

 @media (max-width:900px){
  .RR-home{
  left:-10px;
  }
}

 .RR-home h1{
   font-family: "Roboto", sans-serif;
   font-weight: 600;
   font-size: 13px;
   letter-spacing: 1px;
   writing-mode: vertical-rl; 
   transform: rotate(-180deg);
 }

 .RR-home a{
  color:#3e3e3e;
}

.RR-home a:hover{
  color: #ea5532;
}

/* ハンバーガー */
.hamburger-container {
  position: relative;
  z-index: 3;
}

.hamburger {
  cursor: pointer;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: #333 solid 2px;
  background-color: #fff;
  border-radius: 50%;
  position: fixed;
  top: 45px;
  right: 30px;
  transition: transform 0.3s ease;
}

.hamburger:hover{
  background-color: #ea5532;
}

.bar-wrap{
  position: absolute;
  top:27px;
  right:13px;
}

.bar-wrap .bar {
  width: 28px;
  height: 2px;
  background-color: #333;
  margin: 6px 0;
  transition: all 0.3s ease;
}

.hamburger.open {
  border: 1px solid #333;
}

.hamburger.open .bar {
  background-color: #333;
}

.hamburger.open .bar:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.hamburger.open .bar:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

.menu-text {
  position: absolute;
  top: 5px;
  right: 14px;
  font-family: "Roboto", sans-serif;
  font-size: 10px;
  color: #333;
  transition: color 0.3s ease, opacity 0.3s ease;
  cursor: pointer; /* 追加 */
}

.hamburger.open .menu-text {
  color: #333;
}

.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  overflow: hidden;
  opacity: 0;
  transition: right 0.3s ease, opacity 0.3s ease;
  z-index: 2;
}

.menu-overlay.show {
  display: block;
  right: 0;
  opacity: 1;
}

.hamburger-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  transition: right 0.3s ease;
}

.hamburger-menu.show {
  right: 0;
}

.hamburger-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.RR-home-ham {/*RRロゴ  ハンバーガーリスト用*/
position: absolute;
top: 200px;
left: 35%;
z-index: 1;
}

@media (max-width:1200px){
  .RR-home-ham {
    left: 25%;
  }
  }

@media (max-width:700px){
  .RR-home-ham {
    left: 10%;
  }
  }

.RR-home-ham p {
 font-family: "Roboto", sans-serif;
 font-weight: 600;
 font-size: 13px;
 letter-spacing: 1px;
 writing-mode: vertical-rl;
 transform: rotate(-180deg);
}

.RR-home-ham a {
color: #a9a9a9;
}

.RR-home-ham a:hover {
  color: #ea5532;
}

.hamburger-list {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  padding: 15px;
  background: none;
  border-radius: 8px;
  margin: 10px 0;
}

.hamburger-list a {
font-size: 16px;
color: #fff;
}

.hamburger-list a:hover {
color: #ea5532;
}

.hamburger-list:nth-child(1) { transition-delay: 0.1s; }
.hamburger-list:nth-child(2) { transition-delay: 0.2s; }
.hamburger-list:nth-child(3) { transition-delay: 0.3s; }
.hamburger-list:nth-child(4) { transition-delay: 0.4s; }
.hamburger-list:nth-child(5) { transition-delay: 0.5s; }
.hamburger-list:nth-child(6) { transition-delay: 0.6s; }
.hamburger-list:nth-child(7) { transition-delay: 0.7s; }
.hamburger-list:nth-child(8) { transition-delay: 0.8s; }
.hamburger-list:nth-child(9) { transition-delay: 0.9s; }

.menu.show .hamburger-list {
  opacity: 1;
  transform: translateX(0);
}


/*検索 */
.search_btn-container {
  position: relative;
  z-index: 2;
}

.search {
  cursor: pointer;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: #333 solid 2px;
  background-color: #fff;
  border-radius: 50%;
  position: fixed;
  top: 45px;
  right: 100px;
  transition: transform 0.3s ease;
}

.search:hover {
  background-color: #ea5532;
}

.search_menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  overflow: hidden;
  opacity: 0;
  transition: right 0.3s ease, opacity 0.3s ease;
  z-index: 2;
}

.close_icon {
  cursor: pointer;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: #fff solid 1px;
  border-radius: 50%;
  position: fixed;
  top: 45px;
  right: 100px;
  transition: transform 0.3s ease;
}

.close_icon:hover {
  background-color: #ea5532;
}

.search_menu-overlay.show {
  display: block;
  right: 0;
  opacity: 1;
}

.search_icon_circle, .search_icon_line {
  fill: none;
  stroke: #3e3e3e;
  stroke-miterlimit: 10;
  stroke-width: 16px;
}

/*
フッター
================================================ */
.footer {
  width: 100%;
  background: #3e3e3e;
  position: relative;
  bottom: 0;
}

.footer a {
  font-size: 15px;
  line-height: 32px;
  color: #fff;
  text-decoration: none;
}

.footer a:hover {
  color: #000;
}

.footer-wrap {
  display: flex;
  width: 80%;
  margin: 0 auto;
  margin-top: 150px;
  padding: 100px 0;
  box-sizing: border-box;
}

.footer-logo-area {
  flex: 0 0 40%; /* 固定幅40% */
  display: flex;
  flex-direction: column;
  justify-content:first baseline;
}

.footer-logo-area p{
  font-family: "Poiret One", sans-serif;
  font-size: 80px;
  line-height: 80px;
  font-weight:bold;
  color: #ea5532;
  margin-top: 0px;
  margin-bottom:30px;
}

@media (max-width:960px){
  .footer-logo-area p{
    font-size: 58px;
  }
  }

.footer-contents-container {
  flex: 0 0 60%; /* 固定幅60% */
  display: flex;
  justify-content: space-between;
}

.footer-contents-area {
  flex: 1 1 auto; /* コンテンツの幅に合わせて自動調整 */
  margin-right: 20px; /* 各エリアの間隔 */
  display: flex;
  flex-direction: column;
  justify-content:first baseline;
}

.footer-contents-area:last-child {
  margin-right: 0; /* 最後のエリアの右側の間隔を削除 */
}

.footer-logo {
  width: 250px;
  display: inline-block;
}

@media (max-width:960px){
  .footer-logo {
    margin: 0 auto;
  }
  }

.footer-title{
  font-family: "Poiret One", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

hr {
  height: 1px;
  border: 0;
  border-top: 1px solid #e5e7eb;
}

.copyright {
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 0px;
  font-size: 15px;
  color: #fff;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 1200px) {
  .footer-wrap {
    flex-direction: column;
    align-items: center;
  }

  .footer-logo-area {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }

  .footer-contents-container {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .footer-contents-area {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }

  .footer-contents-area:last-child {
    margin-bottom: 0;
  }
}

/*
スクロール
================================================ */

/* ダウン */
.scroll-down {
  position: absolute;
  right: 47%;
  top:10%;
  font-size: 14px;
  writing-mode: vertical-rl;
  z-index: 1;
}
@media (max-width: 900px) {
  .scroll-down {
    top:100px;
  }
}

.scroll-down::before {
  animation: scroll-down 2s infinite;
  background-color:#696969;
  bottom: -115px;
  content: "";
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}

@keyframes scroll-down {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

/* アップ */
.scroll-up {
  position: fixed;
  right: 5px;
  bottom:10px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.scroll-up::before {
  animation: scroll-up 2s infinite;
  background-color:#696969;
  bottom: -115px;
  content: "";
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}

.scroll-up a{
  font-size: 14px;
  color:#696969;
}

/* 線のアニメーション */
@keyframes scroll-up {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}


/*
トップページ
================================================ */

/*背景画像*/

.RR-bk-img {
  background-image: url(https://regional-recruitment.works/images/tokamai-memurows.png);
  height:100vh;
  background-size:cover;
  position: relative;
}

.RR-bk-img::after {
  content: '';
  background-color: rgba(0,0,0,.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height:calc(100vh + 230px);
}
@media (max-width: 900px) {
.RR-bk-img::after {
  height:100vh;
}
}

/*メインタイトル */

.top-maintitle{
  position: relative;
  top:0px;
  margin-bottom:230px;
}

.top-maintitle-container{
  margin: 160px 0px 120px 120px;
  position: absolute;
  top:0;
}

@media (max-width: 900px) {
  .top-maintitle-container{
    margin: 200px 0px 80px 30px;
  }
  .top-maintitle{
    margin-bottom:0px;
  }
}

.top-maintitle-container p{
  color:#fff;
}

.top-maintitle-container p:nth-child(1){
  font-family: "Roboto", sans-serif;
  font-size: 150px;
  font-weight: 800;
  line-height: 140px;
}
.top-maintitle-container p:nth-child(2){
  font-family: "Noto Sans JP", sans-serif;
  font-size: 48px;
  font-weight: 800;
  margin-top:30px;
}
.top-maintitle-container p:nth-child(3){
  max-width: 45%;
  font-size: 15px;
  margin-top:80px;
}

@media (max-width: 900px) {
  .top-maintitle-container p:nth-child(1){
    font-size: 120px;
    line-height: 105px;
    max-width: 100%;
  }
}

@media (max-width: 700px) {
  .top-maintitle-container{
    margin: 160px 0px 120px 40px;
  }
  .top-maintitle-container p:nth-child(1){
    font-size: 80px;
    line-height: 80px;
  }
  .top-maintitle-container p:nth-child(2){
    font-family: "Noto Sans JP", sans-serif;
    font-size: 28px;
    font-weight: 800;
    margin-top:0px;
  }
  .top-maintitle-container p:nth-child(3){
    max-width: 90%;
    line-height: 26px;
    margin-top:0px;
  }
}

@media (max-width: 500px) {
  .top-maintitle-container:nth-child(1){
    font-size: 48px;
    line-height: 52px;
  }
}


/*ニュース*/


.news-container{
  padding-top:120px;
  margin-left:120px;
  margin-bottom: 200px;
}


@media (max-width: 900px) {
  .news-container{
    margin-left: 30px;
    margin-bottom:80px;
  }
}

.news-title p:nth-child(1){
  font-family: "Roboto", sans-serif;
  font-size: 42px;
  font-weight: 800;
  margin-bottom:10px;
}

.news-title p:nth-child(2){
  font-weight: 800;
}

@media (max-width: 700px) {
  .top-maintitle-container p{
    font-size: 72px;
    line-height: 88px;
  }
}

.news-contents a{
  color:#3e3e3e;
  font-size: 16px;
  font-weight: 800;
}

.news-contents a:hover {
  color: #ea5532;
}

.news-contents a:hover .arrow-icon {
  border-color: #ea5532;
}

.arrow-icon {
  box-sizing: border-box;
  display: inline-block;
  position: relative;
  width: 15px;
  height: 15px;
  border-style: solid;
  border-width: 3px 3px 0 0;
  border-color: black;  
  transform: rotate(45deg);
  margin-left:20px;
  animation: move-arrow 2.5s infinite;
}

@keyframes move-arrow {
  0% { transform: translateX(0) rotate(45deg); }
  50% { transform: translateX(8px) rotate(45deg); }
  100% { transform: translateX(0) rotate(45deg); }
}

/*ピックアップ*/
.pickup-container{
  display: flex;
  align-items:stretch; 
  flex-direction: row;
  flex-wrap: no-wrap;
  align-content: center;
  width: 100%;
}

@media (max-width: 1100px) {
  .pickup-container{
    display: block;
    width: 100%;
  }
}

.pickup-imgarea{
  width: 50%;
  padding-right:20px;
}

@media (max-width: 1100px) {
  .pickup-imgarea{
    width: 100%;
    margin: 0 auto;
    padding-right:0px;
    margin-bottom:100px;
  }
}

.pickup-imgarea img{
  width: 100%;
  border-radius:5px;
}

.pickup-textarea{
  width: 40%;
  max-width: 600px;
  padding-left:20px;
  padding-right:20px;
}

@media (max-width: 1100px) {
  .pickup-textarea{
    width: 90%;
    margin: 0 auto;
    padding: 0;
  }
}

@media (max-width: 500px) {
  .pickup-textarea{
    width: 90%;
    margin: 0 auto;
    margin-left:40px;
  }
}

.pickup-textarea p:nth-child(1){
  font-size: 62px;
  font-weight: 800;
  margin-top:20px;
}
.pickup-textarea p:nth-child(2){
  font-size: 15px;
  line-height: 22px;
  font-weight: 800;
  margin-bottom: 80px;
  margin-top:60px;
}

@media (max-width: 900px) {
  .pickup-textarea p:nth-child(3){
    font-size: 16px;
  }
}

@media (max-width: 500px) {
  .pickup-textarea p:nth-child(1){
    margin-top:-40px;
    font-size: 48px;
  }
  .pickup-textarea p:nth-child(3){
    margin-bottom:20px;
  }
}

.forpage-btn{
  margin: 0 auto;
}

.forpage-btn a{
  font-size: 18px;
  font-weight: 800;
  padding:20px 80px;
  background-color: #fff;
  border: #333 3px solid;
  border-radius: 40px;
  color:#333;
}

.forpage-btn a:hover{
  font-weight: 800;
  padding:20px 80px;
  background-color: #333;
  border: #333 3px solid;
  border-radius: 40px;
  color:#fff;
}


/*セクション説明文 */

.top-section-container{
  margin: 200px 0px 120px 120px;
}

.top-section-container p:nth-child(1){
  font-family: "Roboto", sans-serif;
  font-size: 150px;
  font-weight: 800;
  line-height: 140px;
  width: 100%;
  max-width: 60%;
}
.top-section-container p:nth-child(2){
  font-family: "Noto Sans JP", sans-serif;
  font-size: 48px;
  font-weight: 800;
  margin-top:60px;
}
.top-section-container p:nth-child(3){
  max-width: 500px;
  font-size: 15px;
  margin-top:30px;
}
.top-section-container p:nth-child(4){
  margin-top:80px;
}


@media (max-width: 900px) {
  .top-section-container{
    margin: 100px 30px 80px 30px;
  }
  .top-section-container p:nth-child(1){
    font-size: 120px;
    line-height: 105px;
    max-width: 100%;
  }
  .top-section-container p:nth-child(2){
    margin-top:30px;
  }
  .top-section-container p:nth-child(3){
    line-height: 26px;
  }
}

@media (max-width: 700px) {
  .top-section-container p:nth-child(1){
    font-size: 100px;
    line-height: 90px;
  }
  .top-section-container p:nth-child(2){
    margin-top:10px;
    font-size: 28px;
  }
}

@media (max-width: 500px) {
  .top-section-container p:nth-child(1){
    font-size: 85px;
    line-height: 75px;
  }
}

/*
録画ビデオ
================================================ */

.rv_1003_p{
  margin-top: 100px;
  font-size: 48px;
  text-align: center;
}

@media (max-width: 900px) {
  .rv_1003_p{
    font-size: 24px;
    margin-bottom:-100px;
  }
}


.rv_1003{
  display: flex;
  justify-content: center; /* 水平中央寄せ */
  align-items: center; /* 垂直中央寄せ (オプション) */
  height: 100vh; /* 高さを100%にして垂直中央寄せ */
  margin: 0; /* デフォルトのマージンをリセット */
}

video {
  width: 100%;
  max-width: 1000px;
}

/*
運営
================================================ */


.menber-shokai-wrap{
  width:40%;
  display: grid;
  grid-template-columns: 2fr 5fr;
  grid-template-rows:;
  gap: 20px;   
  border-bottom:dotted 1px #595959;
  top:100px;
  text-align: left;
  padding-left:50px;
  padding-right:0px;
  padding-bottom:40px;
  margin:0 auto;
  justify-content: center;
  align-items:flex-start;
}

@media screen and (max-width: 1200px) {
.menber-shokai-wrap{
  width: 95%;
  grid-template-columns: 1fr 4fr;
  padding-left:3%;
  padding-right:2%;
     }
   }

.menber-shokai-p-m{
   font-size:16px;
   line-height: 24px;
   margin-top:40px;
}

@media screen and (max-width: 960px) {
.menber-shokai-p-m{
   font-size:14px;
   line-height: 22px;
}
   }

.company-p-b{
   font-size:68px;
   line-height: 68px;
   color:#696969;
   font-weight: lighter;
   margin-top:150px;
   margin-left:50px;
   text-align: left;
}


@media screen and (max-width: 960px) {
.company-p-b{
   font-size:48px;
   margin-top:100px;
   margin-left:20px;
   }
}

.company-s{
 font-size:15px;
 color:#696969;
   font-weight: lighter;
   text-align: left;
   margin-left:60px;
   margin-top:-80px;
}

@media screen and (max-width: 960px) {
.company-s{
   margin-left:30px;
   margin-top:-50px;
   }
}

.company-p-s{
   font-size:24px;
   line-height:50px;
   color:#696969;
   margin-top:50px;
   margin-bottom:30px;
   text-align: center;
}

@media screen and (max-width: 960px) {
.company-p-s{
   font-size:16px;
   line-height:35px; 
   margin-top:0px;
   margin-left:20px;
   }
}

.debriefing-img{
 width:900px;
 display: flex;
 margin:0 auto;
}

@media screen and (max-width: 960px) {
 .debriefing-img{
   width:100%;
     }
 }

.debriefing-title{
 margin-top:150px;
font-size: 38px;
text-align: center;
 }

 @media screen and (max-width: 960px) {
   .debriefing-title{
     margin-top:30px;
   font-size: 28px;
     }
 }

 .debriefing-p-b{
   font-size:58px;
   line-height: 150px;
   color:#696969;
   font-weight: lighter;
   margin-top:50px;
   margin-left:50px;
   text-align: left;
}


@media screen and (max-width: 960px) {
 .debriefing-p-b{
   font-size:38px;
   margin-top:35px;
   margin-left:20px;
   }
}

.debriefing-s{
 font-size:15px;
 color:#696969;
   font-weight: lighter;
   text-align: left;
   margin-left:60px;
   margin-top:-100px;
}

@media screen and (max-width: 960px) {
.debriefing-s{
   margin-left:30px;
   margin-top:-90px;
   }
}

/*
タイトルライン
================================================ */
.title-border {
  display: flex;
  align-items: center;
  margin-top:-10px;
  margin-bottom:40px;
}

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

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

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

.title-border-w {
  display: flex;
  align-items: center;
  margin-top:-10px;
  margin-bottom:40px;
  color:#ffffff;
}

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

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

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

/*
お問い合わせ　固定バナー
================================================ */
.fixed_btn-otoiawase{
  position: fixed;
  display: flex;
  right:18px;
  bottom:250px;
  z-index: 200;
}
@media screen and (max-width: 960px) {
.fixed_btn-otoiawase{
  bottom:360px;
}    
}
.fixed_btn-oubo a:hover {
transform: translate3d(0.2rem, 0.2rem, 0);
opacity: 1;
transition: all 0.2s;
}
.ouboimg{
  width:70px;    
}