/* 
 * BELIEVES - モダンスタイルシート
 * 洗練されたデザインのためのCSS
 */

/* ===== 基本設定 ===== */
:root {
	--primary-color: #DAA520;      /* メインカラー */
	--primary-dark: #ADD8E6;       /* ホバー時などに使用 */
	--secondary-color: #f6f9fc;    /* 背景色など */
	--accent-color: ;       /* アクセントカラー */
	--dark-color: #1a1f36;         /* テキストの濃い色 */
	--text-color: #3c4257;         /* 主要テキスト色 */
	--text-light: #697386;         /* 二次的なテキスト色 */
	--white: #ffffff;              /* 白 */
	--black: #000000;              /* 黒 */
	--gray-light: #f0f4f8;         /* 薄いグレー */
	--gray: #d9e2ec;               /* グレー */
	--shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
	--radius-sm: 4px;
	--radius-md: 8px;
	--radius-lg: 16px;
	--spacing-xs: 0.25rem;
	--spacing-sm: 0.5rem;
	--spacing-md: 1rem;
	--spacing-lg: 2rem;
	--spacing-xl: 3rem;
	--container-width: 1200px;
	--transition: all 0.3s ease;
  
  textarea {
	resize: vertical;
	min-height: 120px;
  }
  
  ::placeholder {
	color: #a0aec0;
	opacity: 1;
  }
  
  .error {
	display: block;
	color: #e53e3e;
	font-size: 0.85rem;
	margin-top: var(--spacing-xs);
  }
  
  .form-actions {
	text-align: center;
	margin-top: var(--spacing-xl);
  }
  
  /* ===== フッター ===== */
  footer {
	background-color: var(--dark-color);
	color: var(--white);
	padding: var(--spacing-xl) 0;
  }
  
  .footer_inner {
	position: relative;
  }
  
  .footer-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: var(--spacing-lg);
	padding-bottom: var(--spacing-lg);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .f_logo_area a {
	display: flex;
	align-items: center;
	color: var(--white);
  }
  
  .f_logo {
	width: 150px;
	margin-right: var(--spacing-md);
  }
  
  .f_yago p {
	margin: 0;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.7);
  }
  
  .footer-nav ul {
	display: flex;
	flex-wrap: wrap;
	gap: var(--spacing-lg);
  }
  
  .footer-nav a {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
	transition: var(--transition);
  }
  
  .footer-nav a:hover {
	color: var(--white);
  }
  
  .social-links {
	display: flex;
	justify-content: center;
	gap: var(--spacing-md);
	margin-bottom: var(--spacing-lg);
  }
  
  .social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.1);
	color: var(--white);
	transition: var(--transition);
  }
  
  .social-icon:hover {
	background-color: var(--primary-color);
	transform: translateY(-3px);
  }
  
  .copy {
	text-align: center;
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.5);
  }
  
  /* ===== アニメーション ===== */
  @keyframes fadeIn {
	from {
	  opacity: 0;
	  transform: translateY(20px);
	}
	to {
	  opacity: 1;
	  transform: translateY(0);
	}
  }
  
  .card, .section-title, .about-content, .contact-content, .partner-content {
	animation: fadeIn 0.8s ease forwards;
  }
  
  .card:nth-child(1) { animation-delay: 0.1s; }
  .card:nth-child(2) { animation-delay: 0.3s; }
  .card:nth-child(3) { animation-delay: 0.5s; }
  
  /* ===== レスポンシブデザイン ===== */
  .mobile-only {
	display: none;
  }
  
  @media (max-width: 1024px) {
	.headline {
	  font-size: 3rem;
	}
	
	.subheadline {
	  font-size: 2rem;
	}
	
	.section-title {
	  font-size: 2.2rem;
	}
	
	.catch-copy {
	  font-size: 1.6rem;
	}
  }
  
  @media (max-width: 768px) {
	.mobile-only {
	  display: block;
	}
	
	.header_inner {
	  padding: 0 5%;
	}
	
	.main-nav {
	  position: fixed;
	  top: 0;
	  right: -100%;
	  width: 70%;
	  height: 100vh;
	  background-color: var(--white);
	  padding-top: 100px;
	  transition: right 0.3s ease;
	  box-shadow: var(--shadow-lg);
	  z-index: 999;
	}
	
	.main-nav.open {
	  right: 0;
	}
	
	.main-nav ul {
	  flex-direction: column;
	  align-items: center;
	}
	
	.main-nav a {
	  display: block;
	  padding: var(--spacing-md);
	  font-size: 1.1rem;
	}
	
	.headline {
	  font-size: 2.5rem;
	}
	
	.subheadline {
	  font-size: 1.8rem;
	}
	
	.main_txt {
	  width: 90%;
	  left: 50%;
	  transform: translate(-50%, -50%);
	  text-align: center;
	}
	
	.dual-section {
	  flex-direction: column;
	}
	
	.half-section {
	  flex: 1 1 100%;
	}
	
	.footer-top {
	  flex-direction: column;
	  gap: var(--spacing-lg);
	}
	
	.footer-nav ul {
	  justify-content: center;
	  gap: var(--spacing-md);
	}
  }
  
  @media (max-width: 576px) {
	.section {
	  padding: var(--spacing-lg) 0;
	}
	
	.headline {
	  font-size: 2rem;
	}
	
	.subheadline {
	  font-size: 1.5rem;
	}
	
	.section-title {
	  font-size: 1.8rem;
	}
	
	.catch-copy {
	  font-size: 1.3rem;
	}
	
	.concept {
	  font-size: 1rem;
	}
	
	.contact-form {
	  padding: var(--spacing-lg);
	}
  }
  
  /* ===== Vegasスライダーのカスタマイズ ===== */
  .vegas-overlay {
	opacity: 0.3;
	background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
  }
  
  .vegas-timer {
	top: auto;
	bottom: 0;
	height: 3px;
  }
  
  .vegas-timer-progress {
	background: var(--primary-color);
  }
  
  /* イメージがフェードインするアニメーション */
  .vegas-animation-kenburns {
	animation: kenburns ease-out;
  }
  
  @keyframes kenburns {
	0% {
	  transform: scale(1.1);
	}
	100% {
	  transform: scale(1);
	}
  }
  
  /* ===== 全体のスタイル ===== */
  * {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
  }
  
  html {
	scroll-behavior: smooth;
  }
  
  body {
	font-family: 'Noto Sans JP', sans-serif;
	color: var(--text-color);
	line-height: 1.7;
	background-color: var(--white);
	overflow-x: hidden;
  }
  
  img {
	max-width: 100%;
	height: auto;
  }
  
  a {
	color: var(--primary-color);
	text-decoration: none;
	transition: var(--transition);
  }
  
  a:hover {
	color: var(--primary-dark);
  }
  
  ul {
	list-style: none;
  }
  
  .container {
	max-width: var(--container-width);
	width: 90%;
	margin: 0 auto;
	padding: 0 var(--spacing-md);
  }
  
  .section {
	padding: var(--spacing-xl) 0;
	position: relative;
  }
  
  /* ===== ヘッダー ===== */
  header {
	position: relative;
	height: 100vh;
	min-height: 600px;
	background-size: cover;
	background-position: center;
	color: var(--white);
  }
  
  .header_inner {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 5%;
	height: 80px;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.95);
	box-shadow: var(--shadow-sm);
	transition: var(--transition);
  }
  
  .header_inner.scrolled {
	background: rgba(255, 255, 255, 0.98);
	box-shadow: var(--shadow-md);
  }
  
  .logo_area a {
	display: flex;
	align-items: center;
  }
  
  .logo {
	width: auto;
	height: 50px;
  }
  
  .main-nav ul {
	display: flex;
	gap: 1.5rem;
  }
  
  .main-nav a {
	color: var(--dark-color);
	font-weight: 500;
	font-size: 0.95rem;
	letter-spacing: 0.5px;
	padding: 0.5rem 0;
	position: relative;
  }
  
  .main-nav a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--primary-color);
	transition: var(--transition);
  }
  
  .main-nav a:hover::after {
	width: 100%;
  }
  
  /* ハンバーガーメニュー */
  #hamburger {
	display: none;
	cursor: pointer;
	width: 30px;
	height: 20px;
	position: relative;
	z-index: 1001;
  }
  
  .inner_line {
	display: block;
	position: absolute;
	width: 100%;
	height: 2px;
	background-color: var(--dark-color);
	transition: var(--transition);
  }
  
  #line1 {
	top: 0;
  }
  
  #line2 {
	top: 9px;
  }
  
  #line3 {
	bottom: 0;
  }
  
  .line_1 {
	transform: translateY(9px) rotate(45deg);
  }
  
  .line_2 {
	opacity: 0;
  }
  
  .line_3 {
	transform: translateY(-9px) rotate(-45deg);
  }
  
  /* メインビジュアルテキスト */
  .main_txt {
	position: absolute;
	top: 50%;
	left: 10%;
	transform: translateY(-50%);
	max-width: 600px;
	z-index: 10;
	padding-top: 15vh;
  }
  
  .headline {
	font-family: 'Archivo Black', sans-serif;
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: var(--spacing-sm);
	color: var(--white);
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }
  
  .subheadline {
	font-family: 'Archivo Black', sans-serif;
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: var(--spacing-lg);
	color: var(--white);
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }
  
  /* ===== ボタン ===== */
  .button {
	display: inline-block;
	padding: 0.8rem 2rem;
	border-radius: var(--radius-sm);
	font-weight: 600;
	font-size: 1rem;
	text-align: center;
	transition: var(--transition);
	cursor: pointer;
	border: none;
	outline: none;
  }
  
  .primary-button {
	background-color: var(--primary-color);
	color: var(--white);
	box-shadow: var(--shadow-md);
  }
  
  .primary-button:hover {
	background-color: var(--primary-dark);
	color: var(--white);
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
  }
  
  .light-button {
	background-color: var(--white);
	color: var(--primary-color);
	box-shadow: var(--shadow-md);
  }
  
  .light-button:hover {
	background-color: var(--gray-light);
	color: var(--primary-dark);
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
  }
  
  /* ===== セクションタイトル ===== */
  .section-title {
	font-family: 'Archivo Black', sans-serif;
	font-size: 2.5rem;
	color: var(--dark-color);
	text-align: center;
	margin-bottom: var(--spacing-lg);
	position: relative;
	padding-bottom: var(--spacing-md);
  }
  
  .section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background-color: var(--primary-color);
  }
  
  .section-title.light {
	color: var(--white);
  }
  
  .section-title.light::after {
	background-color: var(--white);
  }
  
  /* ===== About エリア ===== */
  #about_area {
	background-color: var(--white);
	position: relative;
	overflow: hidden;
  }
  
  .bg_title {
	position: absolute;
	width: 100%;
	text-align: center;
	top: 0;
	left: 0;
	z-index: 1;
	opacity: 0.05;
  }
  
  .bg_title p {
	font-family: 'Archivo Black', sans-serif;
	font-size: 12vw;
	font-weight: 900;
	color: var(--primary-color);
	line-height: 1;
	white-space: nowrap;
  }
  
  .about_inner {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: var(--spacing-xl) 0;
  }
  
  .catch-copy {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: var(--spacing-lg);
	line-height: 1.4;
  }
  
  .about-content {
	max-width: 800px;
	margin: 0 auto;
  }
  
  .concept {
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: var(--spacing-lg);
  }
  
  /* ===== Service エリア ===== */
  #service_area {
	background-color: var(--secondary-color);
	padding: var(--spacing-xl) 0;
  }
  
  .service_inner {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: var(--spacing-lg);
	margin-top: var(--spacing-xl);
  }
  
  .card {
	background-color: var(--white);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-md);
	overflow: hidden;
	transition: var(--transition);
  }
  
  .card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
  }
  
  .card-img {
	height: 200px;
	overflow: hidden;
  }
  
  .card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
  }
  
  .card:hover .card-img img {
	transform: scale(1.05);
  }
  
  .card-content {
	padding: var(--spacing-lg);
  }
  
  .card-title {
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--dark-color);
	margin-bottom: var(--spacing-md);
	position: relative;
	padding-bottom: var(--spacing-sm);
  }
  
  .card-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 2px;
	background-color: var(--primary-color);
  }
  
  .service_comment {
	padding: 0;
  }
  
  .service_comment li {
	position: relative;
	margin-bottom: var(--spacing-sm);
	padding-left: var(--spacing-md);
	font-size: 0.95rem;
	color: var(--text-light);
  }
  
  .service_comment li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.7em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: var(--primary-color);
  }
  
  /* ===== Partner & Contact エリア ===== */
  .dual-section {
	display: flex;
	flex-wrap: wrap;
  }
  
  .half-section {
	flex: 1 1 50%;
	padding: var(--spacing-xl) 0;
	min-height: 400px;
	display: flex;
	align-items: center;
  }
  
  .partner_area {
	background: url('../img/img15.png');
	background-size: cover;
	background-position: center;
	position: relative;
  }
  
  .partner_area::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* background-color: rgba(26, 31, 54, 0.8); */

  }
  
  .partner-content {
	position: relative;
	z-index: 2;
	text-align: center;
  }
  
  .partner-logos {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: var(--spacing-lg);
	margin-top: var(--spacing-lg);
  }
  
  .partner-logo {
	display: block;
	max-width: 200px;
	height: auto;
	transition: var(--transition);
  }
  
  .partner-logo:hover {
	transform: scale(1.05);
  }
  
  .contact_area {
	background: url('../img/img17.png');
	background-size: cover;
	background-position: center;
	position: relative;
	color: var(--white);
  }
  
  .contact_area::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: (0, 208, 176, 0.8);
  }
  
  .contact-content {
	position: relative;
	z-index: 2;
	text-align: center;
  }
  
  .contact-lead {
	font-size: 1.2rem;
	margin-bottom: var(--spacing-lg);
  }
  
  /* ===== コンタクトフォーム ===== */
  #contact-form {
	background-color: var(--gray-light);
	padding: var(--spacing-xl) 0;
  }
  
  .contact-form {
	max-width: 600px;
	margin: 0 auto;
	background-color: var(--white);
	padding: var(--spacing-xl);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-md);
  }
  
  .form-group {
	margin-bottom: var(--spacing-lg);
  }
  
  .form-group label {
	display: block;
	margin-bottom: var(--spacing-sm);
	color: var(--dark-color);
	font-weight: 500;
  }
  
  .required {
	color: #e53e3e;
	margin-left: var(--spacing-xs);
  }
  
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea {
	width: 100%;
	padding: 0.8rem;
	font-size: 1rem;
	border: 1px solid var(--gray);
	border-radius: var(--radius-sm);
	background-color: var(--white);
	transition: var(--transition);
  }
  
  input[type="text"]:focus,
  input[type="email"]:focus,
  input[type="tel"]:focus,
  textarea:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(45, 91, 255, 0.1);
  }

  /* ヒーロー画像エリアのサイズ調整 */
  #vegas {
    height: 66vh; /* 元のサイズの2/3程度に縮小 */
    min-height: 500px; /* 最小高さを設定して小さすぎないようにする */
  }

  /* モーダル関連のスタイル */
  .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .modal-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .modal-content {
    background-color: var(--white);
    border-radius: var(--radius-md);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    padding: var(--spacing-lg);
    position: relative;
    transform: translateY(-20px);
    transition: all 0.3s ease;
  }

  .modal-overlay.active .modal-content {
    transform: translateY(0);
  }

  .modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    background: none;
    border: none;
  }

  .modal-close:before, .modal-close:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    top: 50%;
    left: 0;
  }

  .modal-close:before {
    transform: rotate(45deg);
  }

  .modal-close:after {
    transform: rotate(-45deg);
  }

  .modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid var(--gray);
  }

  .confirm-item {
    margin-bottom: var(--spacing-md);
  }

  .confirm-label {
    font-weight: 600;
    display: block;
    margin-bottom: var(--spacing-xs);
    color: var(--text-light);
  }

  .confirm-value {
    font-size: 1.1rem;
  }

  .modal-actions {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
  }

  .thank-you-message {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
  }

  .thank-you-icon {
    text-align: center;
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
  }