@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');

:root {
  --main-blue: #007BCE;
  --light-blue: #E6F2FA;
  --text-color: #333;
  --bg-color: #fff;
}
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text-color);
  background: var(--bg-color);
  margin: 0;
  line-height: 1.7;
}
b{
  color: var(--main-blue);
}
span{
  display: inline-block;
}
/* ===== ヘッダー ===== */
.site-header {
  color: #fff;
  text-align: center;
  padding-top: 0.5rem;
}
.header_logo{
  text-align: center;
	margin: 10px auto;
}
.site-title {
  margin: 0;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  padding: 0.4em;
  background: var(--main-blue);
}
@media screen and (min-width: 560px) {
	.header_logo {
		width: 560px;
		margin: 20px auto;
	}
}

/* ===== ファーストビュー ===== */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #a5e3ff 0%, #ffffff 50%, #a5e3ff 100%);
}
.hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 3; 
}
.catchcopy { 
  font-size: 2rem; 
  font-weight: 700; 
  color: var(--main-blue); 
  margin-bottom: 1rem; 
  text-align: left; 
}
.indent{
  text-indent: -20px;
}
.hero-text {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
  text-shadow: 2px 2px 6px rgba(255,255,255,0.8);
}
.hero-left { 
  width: 50%; 
}
.hero-right { 
  position: relative;
  width: 50%;           
  max-width: 550px;
  aspect-ratio: 4/3;
  overflow: hidden;
  margin: 20px 0;       
  border-radius: 20px;
}
.hero-right .slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
}
.hero-right .slide.show { 
  opacity: 1; 
}
.hero-right img { 
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* ===== 波アニメーション ===== */
.animated-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300%;
  height: 100%;
  transform: translateX(0);
  will-change: transform;
}

.wave1 path { fill: #00bcd421; }
.wave2 path { fill: #0099ff40; }
/* スマホ対応 */
@media (max-width:768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  .catchcopy { 
    font-size: 1.4rem; 
    text-align: center; 
  }
  .indent{
    text-indent: unset;
  }
  .hero-text { 
    font-size: 0.95rem; 
    text-align: left; 
    padding:1rem; 
    margin:0 auto; 
  }
  .hero-left { 
    width:100%; 
    order: 2;
    padding-bottom: 20px;
  }
  .hero-right { 
    order: 1;
    width:90%; 
    max-width:400px; 
    aspect-ratio:auto; 
    height:300px; 
    margin-bottom: 0px;
  }
  .animated-wave {
    width: 300%;
    height: 50%;
  }
}

/* ===== ポイント紹介 ===== */
.points {
  padding: 3rem 1rem;
}
.points-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 2rem 2rem; 
  max-width: 1000px;
  margin: 0 auto;
}
.point-box {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: #f9f9f9;
  border-radius: 10px;
  padding: 1rem;
  transition: box-shadow 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.point-text {
  flex: 1;
  text-align: left;
}
.point-text h3 {
  color: var(--main-blue);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.point-text p {
  font-size: 1rem;
  line-height: 1.6;
}
.point-image {
  flex: 0 0 100px;
}
.point-image img {
  width: 100%;
  object-fit: cover;
}
/* ===== スマホ対応 ===== */
@media (max-width: 768px) {
  .points-container {
    grid-template-columns: 1fr; 
  }
  .point-image {
    width: 80px;
    margin-bottom: 0.8rem;
  }
}

/* ===== 掲載企業一覧 ===== */
.companies {
  padding: 20px 0 40px;
  background: #f8f8f8;
  overflow: hidden;
}

.section-title {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  color: #007acc;
}

.company-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slide-track {
  display: flex;
  gap: 30px;
  width: max-content;
  will-change: transform;
}

.company-box {
  flex: 0 0 260px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.company-box img {
  max-width: 200px;
  max-height: 90px;
  object-fit: contain;
}


/* ===== 掲載企業詳細 ===== */
.company-details {
  padding: 3rem 1rem;
  background: #effdff;
}
.company-details-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}
.company-detail-box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.company-left {
  flex: 1;
  width: 40%;
}
.company-name {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.company-jobs {
   color: #555;
  line-height: 2;
}
.company-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 50%;
}
.workplace-image-wrapper {
  position: relative;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.workplace-image {
  width: 100%;
  height: auto;
  display: block;
}
.company-logo-overlay {
  position: absolute;
  bottom: 15px;
  left: 15px;
  max-width: 180px;
  max-height: 40px;
  background: rgb(255 255 255);
  padding: 10px;
  border-radius: 5px;
}
.btn-recruit {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #007BCE;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  width: -webkit-fill-available;
}
.btn-recruit:hover {
  background-color: #005fa3;
}
/* スマホ対応 */
@media (max-width:768px){
  .company-detail-box{
    flex-direction: column;
    align-items: flex-start;
  }
  .company-left {
    width: 100%;
  }
  .company-right{
    width: 100%;
  }
  .workplace-image-wrapper {
    width: 100%;
  }
  .company-logo-overlay{
    max-width: 50%;
    max-height: 40px;
  }
}

/* ===== 企業掲載問い合わせセクション ===== */
.inquiry-section {
  background: linear-gradient(180deg, #a5e3ff 0%, #E1F5FE 50%, #A5E3FF 100%);
  text-align: center;
  padding: 60px 20px;
  margin-top: 40px;
}

.inquiry-content {
  max-width: 800px;
  margin: 0 auto;
}

.inquiry-title {
  margin: 0 auto;
}

.inquiry-copy {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--main-blue);
  margin-bottom: 20px;
}

.inquiry-text {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 30px;
}

.inquiry-link {
  color: #005ea3;
  font-weight: 700;
  text-decoration: underline;
}
.inquiry-link:hover {
  color: #FF5722;
}

.inquiry-buttons {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  width: 80%;
  margin: 0 auto;
}

.inquiry-button {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* メインボタン */
.inquiry-button.main {
  background-color: #FF5722;
  color: #fff;
  width: 100%;
  font-size: 20px;
}
.inquiry-button.main:hover {
  background-color: #E64A19;
}

/* サブボタン */
.inquiry-button.sub {
  background-color: #fff;
  color: #005ea3;
  border-color: #005ea3;
  width: 42%;
  padding: 10px;
}
.inquiry-button.sub:hover {
  background-color: #E3F2FD;
}

/* スマホ対応 */
@media (max-width: 750px) {
  .inquiry-copy {
    font-size: 1.5rem;
  }
  .inquiry-text {
    font-size: 1rem;
  }
  .inquiry-button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 12px 0px;
  }
  .inquiry-button.sub {
    width: 100%;
  }
}

/* ===== フッター ===== */
footer {
	text-align: center;
	padding: 8px;
	margin: 60px auto 0 auto;
	font-size: 14px;
}
footer a {
	display: inline-block;
	color: #000;
	margin: 4px 8px;
}
footer #footerLink {
	padding: 5px 0;
}
footer #footerLink:after{
	content:".";display:block;height:0;clear:both;visibility:hidden;
}
footer #footerLink a {
}
@media screen and (min-width: 650px) {
	footer #footerLink a {
	}
}
footer small {
	display: block;
}
footer a {
	border-radius: 40px;
	background-color: #FFF;
	margin: 4px 8px;
	display: inline-block;
	padding: 0 8px;
	font-size: 14px;
}
#footerLink {
	margin-top: 90px;
}
.copyright {
	background-color: #FFF;
}