@charset "UTF-8";

/* --- Base --- */
* { margin: 0; 
	padding: 0;
	box-sizing: border-box;
}
html{
	scroll-padding-top:150px;
}
body {
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 1.8;
	color: #403c3a;
	background-image: url(image/kage.jpg);
}

.container { 
	max-width: 1100px; 
	margin: 0 auto; 
	padding: 0 20px;
}

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

a {
    text-decoration: none;
	color: #403c3a;
    transition: opacity 0.3s;
}

/* --- Header & Footer (既存踏襲) --- */
.header { background: #fff; 
	padding: 10px 0; 
	position: sticky; 
	top: 0; 
	z-index: 1000; 
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.header-inner { 
	display: flex;
	justify-content: space-between;
	align-items: center; 
	max-width: 1200px; 
	margin: 0 auto;
	padding: 0 20px; 
}

.logo img {
	max-width: 80px; 
}
.header_wrapper {
	display: flex; 
	align-items: center;
}
.nav ul { 
	display: flex;
	gap: 20px; 
	list-style: none; 
}
.nav a {
	color: #333;
	text-decoration: none;
	font-size: 0.9rem;
}

.header-contact {
	display: flex;
	align-items: center; 
	gap: 10px;
	margin-left: 20px; 
}
.tel-link { 
	background: #6d90a6;
	color: #fff; 
	padding: 10px 20px; 
	border-radius: 30px; 
	font-weight: bold;
}
.btn-line { 
	background: #00b900; 
	color: #fff;
	padding: 10px 20px;
	border-radius: 30px; 
	font-weight: bold;
	text-decoration: none; 
}

/* --- Common Decorated Title --- */
.decorated-title {
	text-align: center;
	margin-bottom: 60px;
	position: relative;
	padding-top: 40px;
}
.decorated-title::before {
    content: "";
	position: absolute;
	top: 0; left: 50%;
	transform: translateX(-50%);
    width: 60px; 
	height: 30px; 
	background: url('image/ray_decoration.png') no-repeat center/contain;
}
.section-title { 
	font-size: 2rem; 
	color: #6d90a6; 
	margin-bottom: 5px; 
	font-weight: bold;
}
.title-wave { 
	display: flex; 
	justify-content: center;
}
.title-wave img {
	width: 120px; 
	margin-top: 5px; 
}

/* --- Lower Hero --- */
.lower-hero {
    width: 100%;
}
.lower-hero-visual {
    position: relative; /* 子要素の基準点 */
    width: 90%;
    height: auto;     /* PC時の高さ（適宜調整） */
}

/* 背景画像の設定 */
.lower-hero-img {
	max-width: 100%;
	object-fit: cover;
	display: block;
	min-height: 100%;
	width: 100%;
}
.lower-hero-title-img{
	max-width: 100%;
	position: absolute;
    right: 0;
	bottom: 0;
	translate:95px -35%;
	
	
}
.ja-title {
	font-size: 2.5rem;
	color: #6d90a6; 
	position: relative;
	z-index: 2;
	font-weight: bold;
}
.en-title {
    position: absolute; 
	right: 0; 
	bottom: -20px;
	font-size: 7rem; 
    font-weight: 900; 
	color: #6d90a6; 
	opacity: 0.15; 
	z-index: 1;
}

/* --- Catchphrase Section --- */
.recruit-catch {
	padding: 80px 0;
	text-align: center;
}

.sub-catch {
	color: #6d90a6; 
	font-weight: bold;
	font-size:1.8rem; 
	text-align: left;
	margin-left: 50px;
	margin-bottom: -20px
}
.main-catch { 
	font-size: 4.5rem;
	color: #bf9e80; 
	font-weight: bold;
	margin-bottom: 30px; 
	letter-spacing: 0.1em;
}
.catch-text {
	max-width: 800px;
	margin: 0 auto; 
	line-height: 2; 
}

/* --- Card Grid Layout --- */
.card-grid {
	display: grid;
	gap: 30px; 
	margin-bottom: 80px; 
}
.card {
	padding: 40px;
	border-radius: 15px; 
	text-align: center; 
	transition: transform 0.3s ease; 
}
.card:hover { 
	transform: translateY(-10px); 
}

/* Blue Cards (求める人材) */
.blue-cards {
	grid-template-columns: 1fr 1fr;
}

.blue-cards .card { 
	background: #6d90a6;
	color: #fff; 
}
.card-icon img { width: 80px;
	margin-bottom: 20px; 
	filter: brightness(0) invert(1);
}

/* Beige Cards (強み) */
.beige-cards {
	grid-template-columns: repeat(3, 1fr);
}

.beige-cards .card { 
	background: #bf9e80; 
	color: #fff; 
	text-align: left;
}
.beige-cards h4 {
	font-size: 1.3rem; 
	margin-bottom: 15px; 
	border-bottom: 1px solid rgba(255,255,255,0.3);
	padding-bottom: 10px; 
}

/* --- Requirements Table --- */
.req-table {
	width: 100%; 
	max-width: 900px;
	margin: 0 auto 50px;
	border-collapse: collapse;
	background-color: #FFFFFF;
	
}
.req-table tr {
	border-bottom: 1px solid #ddd; 
}

.req-table th, .req-table td {
	padding: 25px 20px;
	text-align: left;
}
.req-table th {
	width: 250px; 
	font-weight: bold;
	background: #f9f9f9;
}

.btn-area { 
	text-align: center;
	margin-bottom: 80px; 
}
.btn-submit {
    display: inline-block;
	background: #6d90a6;
	color: #fff; 
	padding: 20px 80px;
    border-radius: 50px;
	font-weight: bold; 
	text-decoration: none; 
	font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(109,144,166,0.3);
}

.step-img{
		width: 50%;
		border-radius:20px;
		overflow: hidden
	}
	.step-img img {
    width: 100%;
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}/* --- Bottom Message (Slit Design) --- */
.bottom-message {
	overflow: hidden;
	padding: 100px 0;
}

.message-split {
    display: flex;
	align-items: stretch; 
	max-width: 1200px;
	margin: 0 auto;
	height: 450px;
}
.split-img {
    flex: 1;
	background: url('image/IMG_0062.jpeg') no-repeat center/cover;
}
.split-text {
    flex: 1; padding:55px 0 60px 40px;
	justify-content: center;
}
.en-sub {
	color: #6d90a6; 
	font-weight: 900; 
	font-size: 2.5rem; 
	opacity: 0.2; 
	line-height: 1;
	margin-bottom: 20px
 }

.split-text h3 { 
	font-size: 1.8rem;
	color: #333;
	margin: -10px 0 0px;
}



.footer {
	background-color: #f4f4f4;
	padding-top: 15px;
	padding-bottom: 120px; /* 余白は固定バー分確保 */
	position: relative;
}

.footer-content {
    justify-content: space-between;
}
.footer-info{
	text-align: center;
	margin-bottom: 20px
}
.footer-info img{
	max-width: 200px
}
.footer-nav ul {
	display: flex;
	gap: 10px;
	justify-content: center;
	list-style-type: none;
}
.footer-nav ul ul{
	display: block;
	border-left: 1px solid #000;
	padding-left: 5px;
	margin-left: 5px;
	white-space: nowrap;
}

.footer-fixed-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 1000;
}

.fixed-tel, .fixed-line {
    flex: 1;
    text-align: center;
    padding: 15px;
    color: #fff;
    font-weight: bold;
}

.fixed-tel { background-color: #6d90a6; }
.fixed-line { background-color: #00b900; }

.gotop {
    position: fixed;
    right: 20px;
    bottom: 65px;
    background: #6d90a6;
    color: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .header-contact {
		display: none; 
	}
  nav {
  position: fixed;
  top: 0;
  left: 100%  /* 0から変更  */;
  transition: 0.5s;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  padding-top: 100px;
  height: 100%;
  padding-bottom: 50px;
  overflow: auto;
}
	.menu-open nav {
		left: 0;}

	.nav-button {
  width: 70px;
  height: 50px;
  position: relative;
  z-index: 1;
}
	.nav-button span {
  width: 30px;
  height: 2px;
  background-color: #000000;
  position: absolute;
  left: 20px;
}
	.nav-button span:nth-child(1) {
	top: 12px;
}

.nav-button span:nth-child(2) {
	top: 24px;
}

.nav-button span:nth-child(3) {
	top: 36px;
}
.menu-open .nav-button span:nth-child(1) {
  top: 24px;
  transform: rotate(315deg);
}

.menu-open .nav-button span:nth-child(2) {
  width: 0;
  left: 50%;
}

.menu-open .nav-button span:nth-child(3) {
  top: 24px;
  transform: rotate(-315deg);
}
	.nav-button span {
	transition: 0.3s;
}
	.nav ul{
		flex-direction: column;
		align-items: center;
		gap:40px;
	}
	.nav a{
		font-size: 24px;
	}
	.header-inner {
/*        flex-direction: column;*/
        gap: 10px;
    }
	header .tel-link, header .btn-line{
		display: none;
	}
/*    .nav { display: none; } */

	
    .main-catch { 
		font-size: 1.8rem;
	}
	 .lower-hero {
    width: 100%;
}

.lower-hero-visual {
    position: relative; /* 子要素の基準点 */
    width: 90%;
    height: auto;     /* PC時の高さ（適宜調整） */
}

/* 背景画像の設定 */
.lower-hero-img {
	max-width: 100%;
	object-fit: cover;
	display: block;
	min-height: 100%;
	width: 100%;
}
.lower-hero-title-img{
	max-width: 100%;
	position: absolute;
    right: 0;
	bottom: 0;
	translate:95px -35%;
	
	
}
.lower-hero-content {
    position: absolute;
    right: 5%;         /* 右から5%の位置 */
    bottom: 15%;       /* 下から15%の位置 */
    text-align: right;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3); /* 視認性を高める影 */
    z-index: 10;
}

.lower-hero-sub {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0;
    line-height: 1.2;
}

.lower-hero-title {
    font-size: 5rem;    /* カンプに合わせた大きめのサイズ */
    font-weight: bold;
    line-height: 1;
    margin: 0;
    letter-spacing: 0.05em;
}
	.lower-hero-title-img{
		max-width: 50%;
		translate:20% -35%;
	}
	.sub-catch{
		font-size:18px;
		margin-bottom: auto;
		margin-left: 0
		}
	
	.main-catch{
	font-size: 7vw;
	font-weight: bold;
    text-align: left;
		letter-spacing: 0.01em
	}
	.catch-text{
	text-align: left;		
	}
    .blue-cards,.beige-cards { 
		grid-template-columns: 1fr; 
	}
	
    .req-table th, .req-table td { 
		display: block;
		width: 100%; 
		padding: 10px 20px;
	}
    .req-table th { 
		background: transparent;
		color: #6d90a6;
		padding-top: 20px; 
	}
    
    .message-split {
		flex-direction: column;
		height: auto; 
	}
    .split-img {
		height: 250px; 
		clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%); 
	}
	.step-img{
		width:100%;
		border-radius:20px;
		overflow: hidden
	}
	.step-img img {
    width: 100%;
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
    .split-text { 
		padding: 0 20px;
		text-align: center; 
	}
	.split-text br{
		display: none;
		
	}
    .footer {
	background-color: #f4f4f4;
	padding-top: 15px;
	padding-bottom: 120px; /* 余白は固定バー分確保 */
	position: relative;
}

.footer-content {
    justify-content: space-between;
}
.footer-info{
	text-align: center;
	margin-bottom: 20px
}
.footer-info img{
	max-width: 200px
}
    .footer-nav{
		display: flex;
		position: static;
		background-color: transparent;
		padding-top: 0;
	}
.footer-nav ul {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
}
.footer-nav ul ul{
	display: block;
	border-left: 1px solid #000;
	padding-left: 5px;
	margin-left: 5px;
	white-space: nowrap;
	}
                                                           

.footer-fixed-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 1000;
}
}
