@charset "utf-8";

/* CSS Document */
* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	word-break: normal;
	word-wrap: break-word;
}

body {
	font-family: Noto Sans JP, Outfit;
  background-color: #fff;
	color: #404040;
	font-size: 16px;
  line-height: 1.5;
  padding-top: 72px; /* ヘッダー高さ分の余白を確保 */
}

img {
	vertical-align: bottom;
	margin: 0;
	padding: 0;
	border: 0;
	max-width: 100%;
	object-fit: contain;
}

.clearfix:before,
.clearfix:after {
	display: table;
	content: " ";
}

.clearfix:after {
	clear: both;
}

ul li {
	list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0px;
}

.fixedcontainer {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0px;
}

a {
	color: inherit;
  text-decoration: none;
}


.flex {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.wrapper {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 15px;
}

.outfit-regular {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.noto-sans-jp-regular {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}



/* ヘッダー */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px; /* 固定高さ（必要なら調整してください） */
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 0px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* ロゴや装飾画像の位置調整 */
.yagish_logo {
  max-width: 180px;
}

/* 企業向けボタン等 */


.header_businessLink {
  position: absolute;
  right: 20px;
  bottom: 8px;
  background-color: #00A585;
  border-radius: 8px;
  padding: 5px 20px;
  cursor: pointer;
  display: flex;
  gap: 8px;
  align-items: center;
  height: 55px;
}

.header_businessLink_icon{
  width: 35px;
  height: 35px;
  color: #fff;
}

.header_businessLink p{
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}

.external_icon{
  width: 16px;
  height: 16px;
  color: #fff;
}

.header_businessLink:hover{
  background-color: #10d5ae;
}



/* ===== メインビジュアル（調整） ===== */
.mv {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 30px;
}

.mv-inner {
  position: relative;
  width: 100%;
  min-height: 660px;
  max-height: 1100px;
}

.mv-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* PC用背景画像（img 要素）を全面カバー */
.mv-background .pc_mv {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* SP用画像はデフォルト非表示（幅が小さいと切り替える） */
.mv-background .sp_mv {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.yagish_record {
  position: absolute;
  left: 20px;
  bottom: 32%;
  z-index: 1;
  max-width: 350px;
}

/* オーバーレイ（テキストやボタン）を画像上に重ねる */
.mv-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* 中の操作する要素だけ pointer-events を有効化 */
.mv-overlay > * {
  pointer-events: auto;
}

/* ビッグキャッチの位置 */
.mv_text_1 {
  position: absolute;
  left: 20px;
  bottom: 5%;
  z-index: 3;
  max-width: 720px;
}

.mv_text_1 h2 {
  font-size: 35px;
  background: rgba(255,134,54,0.8);
  display: inline-block;
  padding: 6px 12px;
  color: #fff;
  border-radius: 4px;
}

.mv_text_1 h1 {
  font-size: 45px;
  margin-top: 4px;
  background: rgba(255,255,255,0.6);
  display: inline-block;
  padding: 8px 12px;
  color: #FF8636;
  border-radius: 4px;
}

/* 左下の説明テキスト */

.mv_text_2{
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 20px;
}

.mv_text_2_top{
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 12px;
}

.mv_text_2_bottom{
  font-size: 16px;
  line-height: 1.5;
}




/* 履歴書を作成するだけでオファーが届く */
.wait{
  width: 100%;
  max-width: 980px;
  display: flex;
  margin: 0 auto;
  align-items: start;
  padding: 20px;
}

.wait_text_wrapper{
  text-align: left;
  max-width: 550px;
  width: 100%;
}

.en_text{
  font-family: outfit;
  font-size: 60px;
  line-height: 1.0;
}

.wait .en_text{
  color: #00A585;
  font-weight: bold;
  inline-size: max-content;
  margin-bottom: 50px;
  max-width: fit-content;
}

.wait h3{
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 24px;
}

.box_p{
  background-color: #FF8636;
  color: #fff;
  padding: 5px 10px;
  inline-size: fit-content;
  font-weight: bold;
  margin-bottom: 10px;
  border-radius: 4px;
  font-size: 16px;
}

.wait_p{
  font-size: 18px;
  margin-top: 16px;
}

.red_p{
  color: #E60040;
  font-size: 16px;
  font-weight: bold;
}

.wait_text2{
  margin-top: 32px;
  font-size: 18px;
  margin-left: 16px;
}

.check_text{
  font-weight: bold;
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.wait_img{
  max-width: 370px;
  margin-left: auto;
}

.wait_img_sp{
  display: none;
}




/* どんな企業が登録しているのか */
.yagioffer_record{
  max-width: 110px;
}

.category{
  margin: 0 auto;
  text-align: center;
  padding: 20px;
  background-color: #e5f9e4;
}

.category_title{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.category_title h3{
  font-weight: bold;
  font-size: 20px;
}

.occupation_pc{
  max-width: 750px;
  margin-top: 24px;
}

.occupation_sp{
  display: none;
}



/* CTA */
.cta{
  background-color: #FFF9EE;
  margin: 0 auto;
  padding: 30px 10px;
  text-align: center;
}

.cta_text{
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.cta_text h3{
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 8px;
}

.cta_text p{
  font-size: 18px;
  margin-bottom: 24px;
}

.cta_button{
  margin: 0 auto;
  display: block;
}

.buttons{
  display: flex;
  justify-content: center;
  gap: 8px;
}

.btn{
  display: block;
}

.btn-shinsotsu{
  background-color: #00A585;
  color: #fff;
  padding: 15px 60px;
  border-radius: 50px;
  font-size: 20px;
}

.btn-chuto{
  background-color: #FF8636;
  color: #fff;
  padding: 15px 60px;
  border-radius: 50px;
  font-size: 20px;
}

.btn-arubaito{
  background-color: #80CA2C;
  color: #fff;
  padding: 15px 60px;
  border-radius: 50px;
  font-size: 20px;
}

.btn-shinsotsu:hover{
  box-shadow: 0px 0px 10px #007e65;
}

.btn-chuto:hover{
  box-shadow: 0px 0px 10px #ee7523;
}

.btn-arubaito:hover{
  box-shadow: 0px 0px 10px #74c814;
}

.btn-shinsotsu:active{
  box-shadow: 0 0;
}

.btn-chuto:active{
  box-shadow: 0 0;
}

.btn-arubaito:active{
  box-shadow: 0 0;
}



.note{
  font-size: 14px;
  margin-top: 20px;
  color: #666;
}



/* 仕組み */
.structure{
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 60px 10px;
  display: flex;
  gap: 16px;
}

.structure_text{
  text-align: left;
}

.structure_text h3{
  font-weight: bold;
  margin-bottom: 16px;
  font-size: 20px;
}

.structure_text .en_text{
  color: #00A585;
  font-weight: bold;
  inline-size: max-content;
  max-width: fit-content;
  margin-bottom: 16px;
}

.color_p{
  color: #F78412;
  font-size: 18px;
  font-weight: bold;
  margin: 8px 0;
}

.resume_content{
  background-color: #FFF9EE;
  padding: 20px;
  margin: 20px 0;
}

.resume_content_text1{
  font-weight: bold;
}

.structure_img{
  width: 100%;
  max-width: 400px;
}




/* ポイント */
.point{
  background-color: #EAF9F6;
}

.point_wrapper{
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 20px;
  justify-content: center; /* 横方向中央寄せ */
  align-items: center;
}


.point_title{
  font-family: Outfit;
  font-weight: bold;
  font-size: 60px;
}


.point_content{
  margin: 30px 0;
  justify-content: space-between;
  text-align: left;
  gap: 20px;
}

.point .en_text{
  color: #05A286;
  font-weight: bold;
  font-size: 40px;
}

.point_pc{
  width: 100%;
}

.point_sp{
  display: none;
}

.pc_flow{
  width: 100%;
}

.sp_flow{
  display: none;
}

.point_img{
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.pmark{
  max-width: 100px;
}

.point_text p{
  margin-bottom: 16px;
}

.mock_yagioffer_sp{
  display: none;
}


/* インタビュー */
.interview{
	background-color: #E8F7FB;
  padding: 50px 0;
}

.interview_contents_wrapper{
		width: 100%;
		padding: 0 15px;
		align-items: center;
		text-align: center;
}

.interview_contents_wrapper h4{
	font-size: 40px;
	color: #57C4E1;
  font-family: outfit;
  font-size: 60px;
}

.interview_contents_wrapper h3{
	font-size: 20px;
	margin-bottom: 24px;
}

.interview_PC{
	max-width: 750px;
	width: 100%;
}

.interview_SP{
	display: none;
}



/* youtube */
.youtube{
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 50px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* 垂直方向中央寄せ */
  min-height: calc(100vh - 72px); /* ヘッダー分を差し引いた高さで中央表示 */
  text-align: center;
}

.youtube .en_text{
  color: #00A585;
  margin: 0;
  font-weight: bold;
  margin-bottom: 8px;
}

.youtube_text{
  margin-bottom: 16px;
}

.youtube_video{
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding-top: 56.25%; /* 16:9 アスペクト比 */
}

.youtube_video iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}




/* FAQ */
.faq{
  margin-bottom: 50px;
}

.faq-container {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 50px 10px;
}

/* タイトル部分 */
.faq-container .en_text{
  color: #00A585;
  font-weight: bold;
  margin-bottom: 8px;
  text-align: center;
}

.faq-container h3 {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  color: #00A585;
}

.faq-container .subtitle {
  font-size: 18px;
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

/* 罫線（区切り線） */
.divider {
  border: none;
  height: 1px;
  background-color: #00A585;
  margin: 20px 0;
  opacity: 0.8;
}


.faq-item {
  padding: 10px 0;
}

.faq-item .question {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin: 0 0 10px 0;
}

.faq-item .answer {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}


.button-group {
  text-align: center;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: background-color 0.3s;
  min-width: 200px;
}


.faq_button {
  color: #00A585;
  border: 2px solid #00A585;
  background-color: #ffffff;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 18px;
}

.faq_button:hover {
  background-color: #00A585;
  color: #ffffff;
}


.howto_button {
  color: #EA5548;
  border: 2px solid #EA5548;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 18px;
}

.howto_button:hover {
  background-color: #EA5548;
  color: #ffffff;
}







/* ===== メディアクエリ ===== */
@media only screen and (max-width: 767px) {

  /* MV */
  .mv-background .pc_mv {
    display: none;
  }
  
  .mv-background .sp_mv {
    display: block;
  }
  
  .yagish_record {
    max-width: 300px;
    left: 20px;
    top:4%;
  }
  
  .mv_text_1 {
    left: 20px;
    max-width: 90%;
  }
  
  .mv_text_1 h2 {
    font-size: 25px;
    padding: 4px 8px;
  }
  
  .mv_text_1 h1 {
    font-size: 32px;
    padding: 6px 8px;
  }
  
  .mv_text_2 {
    width: 100%;
    max-width: 650px;
    padding: 20px;
  }
  
  /* 待つだけ */

  .wait{
    flex-direction: column;
    gap: 30px;
    width: 100%;
    max-width: 650px;
    padding: 20px 20px 0 20px;
    margin-bottom: 0px;
  }
  
  .wait_img{
    display: none;
  }

  .wait_img_sp{
    display: block;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
  }

  .wait .en_text{
    margin-bottom: 10px;
  }

  .wait h3 {
    margin-bottom: 0px;
  }
  .wait_p{
    margin-top: 8px;
  }
  .wait_text2{
    margin-top: 16px;
    font-size: 16px;
    margin-left: 0;
  }


  /* どんな企業が登録しているのか */

  .category{
    padding: 30px 10px;
    background-color: #e5f9e4;
  }

  .category_title{
    flex-direction: column-reverse;
  }

  .yagioffer_record{
    max-width: 180px;
  }

  .occupation_pc{
    display: none;
  }
  
  .occupation_sp{
    display: block;
    width: 100%;
    max-width: 450px;
    margin-top: 24px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* CTA */
  .cta{
    padding: 30px 20px;
  }

  .cta_text h3{
    font-size: 20px;
  }
  
  .cta_text p{
    font-size: 16px;
  }

  .cta_button{
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .buttons{
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }


  /* 仕組み */
  .structure{
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    display: block;
    width: 100%;
    margin: 0 auto;
    max-width: 550px;
  }

  .structure_text{
    margin-bottom: 30px;
    width: 100%;
    max-width: 550px;
  }

  .structure_text .en_text{
    font-size: 60px;
    margin-bottom: 12px;
  }

  .structure_text h2{
    font-size: 25px;
  }

  .structure_text p{
    font-size: 16px;
  }

  .resume_content_text1{
    font-size: 18px;
  }

  .resume_content_text2{
    font-size: 16px;
  }

  .structure_img{
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }


  /* ポイント */
  .point_contents{
    gap: 40px;
    display: flex;
    flex-direction: column;
    align-items: center; /* 全体を中央配置 */
    width: 100%;
    box-sizing: border-box;
  }

  .point_wrapper{
    max-width: 550px;
  }

  .point_content{
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
    margin: 0 auto;
    margin-top: 20px;
  }

  
  .point_text h3{
    font-size: 20px;
    margin-top: 8px;
  }

  .point_pc{
    display: none;
  }
  
  .point_sp{
    display: block;
  }
  
  .pc_flow{
    display: none;
  }
  
  .sp_flow{
    display: block;
  }

  .point_img{
    width: 100%;
  }
  
  .interview_PC{
    display: none;
  }
  
  .interview_SP{
    display: block;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }

  .faq-container{
    max-width: 550px;
  }

  .button-group{
    flex-direction: column;
    gap: 16px;
  }

  .mock_yagioffer{
    display: none;
  }

  .mock_yagioffer_sp{
    display: block;
  } 

}


/* メディアクエリ スマホ550px以下 */
@media only screen and (max-width: 550px) {
  .yagish_logo {
  max-width: 100px;
  }

  .header_businessLink {
    height: 45px;
    padding: 5px 10px;
  }

  .header_businessLink_icon{
    width: 25px;
    height: 25px;
  }

  .header_businessLink p{
    font-size: 12px;
  }

  .header_businessLink {
    height: 45px;
    padding: 5px 10px;
  }
  .header_businessLink_icon{
    width: 25px;
    height: 25px;
  }
  .header_businessLink p{
    font-size: 12px;
  }

  .mv_text_1 h2 {
    font-size: 24px;
  }

  .mv_text_1 h1 {
    font-size: 30px;
  }

  .wait_text2{
    font-size: 16px;
    margin-left: 0;
    bottom: 1%;
  }

  .cta_button{
    width: 100%;
  }
  .btn-shinsotsu, .btn-chuto, .btn-arubaito{
    padding: 12px 0;
    font-size: 18px;
  }
} 