@charset "UTF-8";
/*
Theme Name: Earth Investigator
Theme URI: https://example.com/
Author: Nameless
Author URI: https://example.com/
Description: 説明文
Version: 1.0
*/
/* リセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* SCSSの変数 */
/* HTML, Bodyの基本設定 */
html,
body {
  width: 100%;
  height: 100%;
  background: #000;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
}

body > header {
  position: fixed;
  top: 0;
  height: 80px;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10;
  display: flex;
  align-items: center;
  font-size: 12px;
}
@media (max-width: 600px) {
  header {
    height: 60px;
  }
}
header h1.logo {
  margin: 0 20px 0 0;
  font-size: 18px;
  color: #ffffff;
  font-weight: normal;
  font-family: "Noto Sans JP", sans-serif;
  flex-shrink: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: flex-start;
  position: absolute;
  left: 30px;
  z-index: 99999;
}
@media (max-width: 600px) {
  header h1.logo {
    font-size: 16px;
  }
}
header h1.logo a {
  text-decoration: none;
  color: #fff;
  display: block;
  line-height: 0;
}
header h1.logo img {
  height: 40px;
  width: auto;
  display: block;
}
@media (max-width: 600px) {
  header h1.logo img {
    height: 28px;
  }
}
header nav {
  color: #fff;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 20px 0 30px;
  margin-left: auto;
}
header nav ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
header nav ul li {
  list-style: none;
  margin-right: 20px;
}
header nav ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
header nav ul li a:hover {
  color: #179B20;
}

/*ブログ一覧*/
/* 共通: セクション見出し */
.section_header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #333;
}
.section_header__title {
  font-size: 20px;
  letter-spacing: 0.15em;
  color: #fff;
  font-weight: bold;
}
.section_header__more {
  font-size: 13px;
  color: #ccc;
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}
.section_header__more:hover {
  color: #179B20;
}
.section_header__more i {
  margin-left: 6px;
  font-size: 11px;
  transition: transform 0.3s;
}
.section_header__more:hover i {
  transform: translateX(4px);
}

/* BLOG */
.blog_list {
  margin: 60px 20px 40px;
  padding: 0 20px;
}

/* PORTFOLIO */
.portfolio_list {
  margin: 60px 20px 40px;
  padding: 0 20px;
}
.portfolio_list .gallery_list {
  margin: 0;
  padding: 0;
}
.blog_list__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.blog_list__card {
  background: #111;
  border: 1px solid #222;
  border-radius: 5px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.blog_list__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.08);
  border-color: #333;
}
.blog_list__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.blog_list__thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #000;
}
.blog_list__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.blog_list__card:hover .blog_list__thumb img {
  transform: scale(1.05);
}
.blog_list__body {
  padding: 14px 14px 16px;
}
.blog_list__category {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #888;
  border: 1px solid #444;
  padding: 2px 8px;
  border-radius: 3px;
  margin-bottom: 10px;
}
.blog_list__post-title {
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 8px;
  font-weight: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog_list__date {
  font-size: 11px;
  color: #888;
  letter-spacing: 0.05em;
  font-family: Georgia, serif;
}
.blog_list__empty {
  color: #888;
  text-align: center;
  grid-column: 1 / -1;
}
@media (max-width: 900px) {
  .blog_list__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .blog_list__grid {
    grid-template-columns: 1fr;
  }
}

/* コンテンツエリア */
.gallery_list {
  width: 100%;
  margin: 0;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.gallery_list__card {
  flex: 1 1 calc((100% - 80px) / 5);
  max-width: calc((100% - 80px) / 5);
  min-width: 180px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 0px 5px rgba(255, 255, 255, 0.5);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background 0.3s, box-shadow 0.3s;
}
.gallery_list__card:hover {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0px 5px rgb(255, 255, 255);
}
.gallery_list__card a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: #666;
}
.gallery_list__card img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.gallery_list__card-body {
  padding: 10px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.gallery_list__card-title {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: bold;
}
.gallery_list__card-excerpt {
  font-size: 12px;
  line-height: 1.6;
  color: #333;
  flex: 1 1 auto;
}
.gallery_list__card-tags {
  font-size: 10px;
  margin-top: 8px;
}
.gallery_list__card-tags li {
  display: inline-block;
  margin-right: 5px;
}

.gallery_archive_title {
  font-size: 24px;
  color: #fff;
  text-align: center;
  margin-bottom: 16px;
}
.gallery_archive_lead {
  color: #aaa;
  text-align: center;
  font-size: 14px;
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto 30px;
  padding: 0 20px;
}

@media (max-width: 1200px) {
  .gallery_list__card {
    flex: 1 1 calc((100% - 60px) / 4);
    max-width: calc((100% - 60px) / 4);
  }
}
@media (max-width: 900px) {
  .gallery_list__card {
    flex: 1 1 calc((100% - 40px) / 3);
    max-width: calc((100% - 40px) / 3);
  }
  .portfolio_list .gallery_list__card:nth-child(n+10) {
    display: none;
  }
}
@media (max-width: 700px) {
  .gallery_list__card {
    flex: 1 1 calc((100% - 20px) / 2);
    max-width: calc((100% - 20px) / 2);
  }
  .portfolio_list .gallery_list__card:nth-child(n+7) {
    display: none;
  }
}
@media (max-width: 480px) {
  .gallery_list {
    gap: 12px;
  }
  .gallery_list__card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .portfolio_list .gallery_list__card:nth-child(n+4) {
    display: none;
  }
}
footer {
  padding: 20px;
  background: #000000;
}
footer #copyright {
  color: #fff;
  text-align: center;
  font-size: 12px;
  padding: 20px 0;
}
footer #sns {
  display: flex;
  justify-content: center;
  gap: 20px;
  list-style: none;
}
footer #sns i {
  font-size: 20px;
}
footer #sns a {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  transition: color 0.3s;
  /* &:hover { }  空のルールセット削除 */
}

/* スライダー全体 */
.slider-container {
  position: relative;
  width: 100vw; /* ビューポート幅にフィット */
  height: 100vh; /* ビューポート高さにフィット */
  overflow: hidden;
  background-color: #000; /* 背景色（任意） */
  z-index: 1;
}
.slider-container .slider {
  position: relative;
  width: 100%;
  height: 100%;
}
.slider-container .slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0; /* 初期状態は非表示 */
  transition: opacity 1s ease-in-out; /* フェードアニメーション */
  z-index: 0;
}
.slider-container .slider .slide.active {
  opacity: 1; /* 表示 */
  z-index: 1; /* 一番上に表示 */
}
.slider-container .slider .slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* 画像をフィットさせる */
  display: block;
}
.slider-container .slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 10; /* ボタンをスライダーの上に配置 */
}
.slider-container .slider-controls button {
  background-color: transparent;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0;
}
.pagination ul {
  display: flex;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.pagination ul li {
  display: inline-block;
}
.pagination ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  border-radius: 4px;
  color: #fff;
  background: transparent;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  border: 1px solid #444;
  margin: 0 2px;
  cursor: pointer;
}
.pagination ul li a.active {
  background: #fff;
  color: #000;
  border-color: #000;
  font-weight: bold;
  cursor: default;
}
.pagination ul li a:hover:not(.active):not(.disabled) {
  background: #fff;
  color: #000;
  border-color: #000;
}
.pagination ul li a.disabled {
  color: #888;
  background: #222;
  border-color: #222;
  cursor: not-allowed;
  pointer-events: none;
}

.pagenavi {
  text-align: center;
  margin: 40px 0; /* 上下に余白を持たせるのもおすすめ */
}
.pagenavi ul {
  display: inline-flex; /* 横並び＋中央配置 */
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 20px; /* li間の隙間 */
}
.pagenavi li a {
  display: inline-block;
  padding: 8px 16px;
  color: #ededed;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s;
}
.pagenavi li a:hover {
  color: #179B20;
}

/*single*/
#single {
  width: 1100px;
  margin: 100px auto 0;
  background: #D9D9D9;
  border-radius: 10px;
  padding: 20px 0;
  /*記事執筆用*/
}
@media (max-width: 600px) {
  #single {
    margin-top: 100px !important;
  }
}
#single .title {
  margin: 30px 0;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
#single .tag {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
#single .tag li {
  display: inline-block;
  margin-right: 10px;
  font-size: 12px;
  color: #666;
  background: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1);
  transition: color 0.3s, background 0.3s;
}
#single .tag li a {
  text-decoration: none;
  color: #2c2c2c;
  transition: color 0.3s;
}
#single .tag li:hover {
  background: #666;
  color: #fff;
}
#single .tag li:hover a {
  color: #fff;
}
#single .mainPic {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
#single .cameraset {
  background: #fff;
  border: 1px solid #E5E7EB;
  margin: 20px 20px 10px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 30px;
  color: #666;
}
@media (max-width: 600px) {
  #single .cameraset {
    font-size: 14px;
  }
}
#single .cameraset h3 {
  margin-bottom: 20px;
}
#single .cameraset li {
  border-radius: 10px;
  display: flex;
  gap: 10px;
  padding: 20px;
  background: #fff;
  border: 1px solid #ededed;
}
#single .cameraset li + li {
  margin-top: 10px;
}
#single .cameraset li i {
  margin-right: 10px;
}
#single .cameraset li h4 {
  display: inline-block;
  width: 100px;
}
#single .map {
  position: relative;
  margin: 20px 20px 10px;
  padding: 30px;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  color: #666;
  cursor: pointer;
}
#single .map.is-active {
  cursor: default;
}
#single .map h3 {
  margin-bottom: 20px;
}
#single .map iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  margin: 0;
  pointer-events: none;
  filter: grayscale(100%) contrast(120%);
}
#single .map.is-active iframe {
  pointer-events: auto;
}
#single .map::before {
  content: "クリックで地図を操作";
  position: absolute;
  top: 75px;
  left: 30px;
  right: 30px;
  bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.1em;
  z-index: 2;
  transition: opacity 0.3s ease;
}
#single .map.is-active::before {
  opacity: 0;
  pointer-events: none;
}
#single .single_content {
  padding: 20px;
}
#single .single_content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #333;
}
#single h2 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
#single ul {
  padding-left: 20px;
  margin-bottom: 20px;
}
#single ul li {
  list-style: disc;
  line-height: 1.6;
}
@media (max-width: 600px) {
  #single {
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .blog {
    margin-top: 60px;
  }
}

/* archive */
.archive_tag {
  margin-top: 100px;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  /* i selector removed because it was empty */
}

/* blog */
.blog {
  /* h3{} 空のルールセット削除 */
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.blog__content {
  padding: 20px;
}
.blog__content h2 {
  font-size: 20px;
  font-weight: bold;
  margin: 30px auto 20px;
  position: relative;
  padding-left: 0;
  padding-top: 15px;
}
.blog__content h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 5px;
  background: #000;
  border-radius: 2.5px;
  display: block;
}
.blog .mainPic {
  padding: 50px;
  background: #111;
}

.blog_archive_wrapper {
  background: #191919 !important;
  padding: 20px 20px !important;
}
.blog_archive_wrapper .title {
  color: #fff;
  margin: 10px 0 30px 0 !important;
}

.blog_archive {
  display: flex;
  align-items: stretch;
  gap: 30px;
  padding: 20px;
  background-color: #ccc;
  border-radius: 10px;
  margin-bottom: 20px;
}
.blog_archive:last-child {
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .blog_archive {
    width: 100%;
    overflow: hidden;
    display: block;
  }
}
.blog_archive__image {
  flex: 0 0 auto;
}
@media (max-width: 600px) {
  .blog_archive__image {
    width: 100%;
  }
}
.blog_archive__image img {
  width: 360px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: 0.3s;
  background: #000;
}
@media (max-width: 600px) {
  .blog_archive__image img {
    width: 100%;
  }
}
.blog_archive__image img:hover {
  opacity: 0.8;
}
.blog_archive__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog_archive__title {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 0 10px;
}
@media (max-width: 600px) {
  .blog_archive__title {
    margin-top: 20px;
  }
}
.blog_archive__title a {
  color: #000;
  text-decoration: none;
}
.blog_archive p {
  font-size: 16px;
  line-height: 1.6;
  margin: 10px 0;
}
.blog_archive__bottom {
  margin-top: auto;
}
.blog_archive__meta {
  list-style: none;
  padding: 0 !important;
  margin: 15px 0;
  font-size: 0.95rem;
}
.blog_archive__meta li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog_archive__meta li a {
  color: #333;
  text-decoration: none;
  transition: 0.3s;
}
.blog_archive__meta li a:hover {
  color: #179B20;
}
.blog_archive__meta li i {
  width: 16px;
}
.blog_archive__readmore {
  text-align: right;
  font-weight: bold;
}
.blog_archive__readmore a {
  text-decoration: none;
  color: #000;
}

.lazy-fade {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.lazy-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

#loader {
  position: fixed;
  inset: 0;
  background: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

#loader.hide {
  opacity: 0;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
  width: 500px;
}

.loader-logo {
  margin-bottom: 40px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loader-bar {
  width: 100%;
  height: 3px;
  background: #e0e0e0;
  border-radius: 1.5px;
  overflow: hidden;
  margin-bottom: 10px;
}

.loader-bar__inner {
  width: 0%;
  height: 100%;
  background: linear-gradient(to right, #000, #179B20);
  transition: width 0.3s ease;
}

.loader-percent {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ffffff;
}

.mt40 {
  margin-top: 40px;
}

.mt100 {
  margin-top: 100px;
}

@media (max-width: 600px) {
  #main-nav {
    display: none;
  }
}

.sp-nav_wrapper {
  display: none;
}
@media (max-width: 600px) {
  .sp-nav_wrapper {
    display: block;
  }
}

#sp-nav ul {
  display: block;
  width: 100%;
}
#sp-nav ul li {
  line-height: 3;
  text-align: center;
}

/* ハンバーガーボタンのスタイル */
.hamburger {
  position: fixed;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 25px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 20;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #333;
  margin: 5px 0;
  transition: 0.4s;
}

/* バツ印に変化するスタイル */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* メニューのスタイル */
#sp-nav {
  position: fixed;
  top: -100%; /* 初期状態でメニューを画面の外に */
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: #000000;
  padding: 20px;
  box-sizing: border-box;
  z-index: 5;
  transition: top 0.3s ease; /* スライドアニメーション */
}

/* メニューが表示される時 */
#sp-nav.open {
  top: 0; /* メニューが表示される位置 */
}

/* ============================================
   About ページ(page-about.php)
============================================ */
.about-page {
  background: #000;
  min-height: 100vh;
  padding: 140px 20px 80px;
  color: #ccc;
}
.about-page__inner {
  max-width: 800px;
  margin: 0 auto;
}
.about-page__hero {
  text-align: center;
  padding-bottom: 60px;
  margin-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.about-page__hero-label {
  font-size: 11px;
  letter-spacing: 0.4em;
  color: #888;
  margin-bottom: 16px;
}
.about-page__handle {
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 14px;
  font-family: Georgia, "Noto Sans JP", serif;
}
.about-page__tagline {
  font-size: 13px;
  letter-spacing: 0.25em;
  color: #888;
}
.about-page__section {
  margin-bottom: 70px;
}
.about-page__section:last-child {
  margin-bottom: 0;
}
.about-page__intro p {
  line-height: 1.9;
  margin-bottom: 18px;
  font-size: 15px;
  color: #ccc;
}
.about-page__intro p:last-child {
  margin-bottom: 0;
}

/* 撮影機材一覧 */
.about-page__equipment {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.about-page__equipment-group-title {
  font-size: 12px;
  letter-spacing: 0.25em;
  color: #888;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.about-page__equipment-group-title i {
  color: #179B20;
  margin-right: 10px;
  font-size: 11px;
}
.about-page__equipment-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-page__equipment-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.about-page__equipment-list li:last-child {
  border-bottom: none;
}
.about-page__equipment-name {
  color: #fff;
  font-size: 14px;
}
.about-page__equipment-note {
  color: #888;
  font-size: 12px;
  text-align: right;
  letter-spacing: 0.05em;
}

/* キャリア年表 */
.about-page__timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.about-page__timeline::before {
  content: "";
  position: absolute;
  left: 109px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}
.about-page__timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 36px;
  padding-bottom: 36px;
  position: relative;
}
.about-page__timeline-item:last-child {
  padding-bottom: 0;
}
.about-page__timeline-item::before {
  content: "";
  position: absolute;
  left: 105px;
  top: 6px;
  width: 9px;
  height: 9px;
  background: #179B20;
  border-radius: 50%;
  border: 2px solid #000;
  z-index: 1;
}
.about-page__timeline-year {
  font-family: Georgia, serif;
  font-size: 17px;
  color: #888;
  letter-spacing: 0.05em;
  text-align: right;
  padding-top: 2px;
}
.about-page__timeline-title {
  font-size: 16px;
  color: #fff;
  margin-bottom: 6px;
  font-weight: bold;
}
.about-page__timeline-desc {
  font-size: 13px;
  line-height: 1.7;
  color: #aaa;
}

/* レスポンシブ */
@media (max-width: 600px) {
  .about-page {
    padding: 100px 16px 50px;
  }
  .about-page__handle {
    font-size: 26px;
  }
  .about-page__tagline {
    font-size: 11px;
  }
  .about-page__timeline::before {
    left: 4px;
  }
  .about-page__timeline-item {
    grid-template-columns: 1fr;
    gap: 6px;
    padding-left: 24px;
    padding-bottom: 28px;
  }
  .about-page__timeline-item::before {
    left: 0;
    top: 6px;
  }
  .about-page__timeline-year {
    text-align: left;
    font-size: 14px;
  }
  .about-page__equipment-list li {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 10px 0;
  }
  .about-page__equipment-note {
    text-align: left;
  }
}

/* ============================================
   Contact ページ(page-contact.php)
============================================ */
.contact-page {
  position: relative;
  min-height: 100vh;
  padding: 120px 20px 80px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-page__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.7));
  z-index: 0;
}
.contact-page__form-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  padding: 50px 45px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  color: #fff;
}
.contact-page__title {
  font-size: 28px;
  letter-spacing: 0.2em;
  text-align: center;
  margin-bottom: 35px;
  color: #fff;
  font-weight: bold;
}

/* CF7 ラッパー */
.contact-page .wpcf7 {
  margin: 0;
}
.contact-page .wpcf7-form p {
  margin-bottom: 18px;
}
.contact-page .wpcf7-form p:last-of-type {
  margin-bottom: 0;
  margin-top: 30px;
}
.contact-page .wpcf7-form label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.85);
}
.contact-page .wpcf7-form-control-wrap {
  display: block;
  margin-top: 8px;
}

/* 入力フィールド */
.contact-page input[type="text"],
.contact-page input[type="email"],
.contact-page textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  line-height: 1.5;
  transition: border-color 0.3s, background 0.3s;
  box-sizing: border-box;
}
.contact-page input[type="text"]::placeholder,
.contact-page input[type="email"]::placeholder,
.contact-page textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.contact-page input[type="text"]:focus,
.contact-page input[type="email"]:focus,
.contact-page textarea:focus {
  outline: none;
  border-color: #179B20;
  background: rgba(255, 255, 255, 0.1);
}
.contact-page textarea {
  min-height: 140px;
  resize: vertical;
}

/* 送信ボタン */
.contact-page input[type="submit"] {
  display: block;
  width: 100%;
  padding: 14px;
  background: #179B20;
  border: none;
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}
.contact-page input[type="submit"]:hover {
  background: #1ec02b;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(23, 155, 32, 0.4);
}
.contact-page input[type="submit"]:active {
  transform: translateY(0);
}

/* CF7 バリデーション・レスポンス */
.contact-page .wpcf7-not-valid-tip {
  color: #ff8080;
  font-size: 12px;
  margin-top: 6px;
  display: block;
}
.contact-page .wpcf7-response-output {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 16px;
  border-radius: 4px;
  margin: 20px 0 0;
  font-size: 13px;
}
.contact-page .wpcf7-spinner {
  filter: brightness(0) invert(1);
}

/* レスポンシブ */
@media (max-width: 600px) {
  .contact-page {
    padding: 90px 16px 40px;
    background-attachment: scroll;
  }
  .contact-page__form-wrap {
    padding: 35px 24px;
  }
  .contact-page__title {
    font-size: 22px;
    margin-bottom: 25px;
  }
}
/*# sourceMappingURL=style.css.map */