@charset "UTF-8";
/* ===============================================================
  PEACE GLOBAL - style.css (clean version)
================================================================== */

/* ------------------------------
  Reset / Base
------------------------------ */
html { scroll-behavior: smooth; }

* { margin: 0; padding: 0; box-sizing: border-box; }

:root{
  --ink: #222;
  --ink-nav: #3a2f2f;
  --bg: #faf5f0;
  --bg-soft: #f7f7f7;
  --header-bg: rgba(250,245,240,.85);
}

body{
  margin: 0;
  font-family: "Hiragino Sans","Noto Sans JP",sans-serif;
  line-height: 1.9;
  letter-spacing: 0.03em;
  color: var(--ink);
  background: var(--bg);
  /* 紙っぽい背景（必要なら残す） */
  background-image:
    linear-gradient(rgba(255,255,255,0.20) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.15) 1px, transparent 1px),
    radial-gradient(rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 100% 8px, 8px 100%, 4px 4px;
}

/* 固定ヘッダー分 */
body{ padding-top: 84px; }

p{
  text-align: justify;
  text-justify: inter-ideograph;
  word-break: break-word;
  line-height: 2;
  letter-spacing: 0.03em;
}

a{
  color: inherit;
  text-decoration: none;
  transition: opacity .2s ease;
}
a:hover{ opacity: .75; }

.container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ------------------------------
  Header
------------------------------ */
.header{
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 9999;
  background: var(--header-bg);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(60,45,45,.12);
}

.header-inner{
  height: 84px;
  display: flex;
  align-items: center;
  gap: 24px;
}

/* 左上ロゴ（ヘッダー内に置く） */
.site-logo{
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  opacity: .92;
}
.site-logo img{
  display: block;
  height: 25px;
  width: auto;
 
}

/* PC Navigation */
.pc-nav{ margin-left: auto; }
.pc-nav ul{
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
}
.pc-nav a{
  font-weight: 500;
  font-size: 15px;
  color: var(--ink-nav);
}

/* Hamburger */
.hamburger{
  margin-left: auto;
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}
.hamburger span{
  width: 28px;
  height: 3px;
  background: var(--ink-nav);
  border-radius: 3px;
  transition: .3s ease;
}
.hamburger.active span:nth-child(1){ transform: translateY(9px) rotate(45deg); }
.hamburger.active span:nth-child(2){ opacity: 0; }
.hamburger.active span:nth-child(3){ transform: translateY(-9px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav{
  display: none;
  background: #f5efe6;
  padding: 16px 0;
  border-bottom: 1px solid rgba(60,45,45,.10);
}
.mobile-nav ul{
  list-style: none;
  text-align: center;
}
.mobile-nav li{ padding: 12px 0; }
.mobile-nav a{
  color: var(--ink-nav);
  font-size: 16px;
}
.mobile-nav.show{ display: block; }

/* ------------------------------
  Sections / Titles
------------------------------ */
section{ padding: 100px 12%; }

.en-sub{
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  opacity: 0.65;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.section-title{
  border-bottom: 1px solid rgba(60,45,45,0.3);
  padding-bottom: 10px;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

/* ------------------------------
  HERO
------------------------------ */
.hero{
  width: 100%;
  min-height: calc(100vh - 84px);
  background-image: url('img/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #111;
  padding: 0 8%;
  position: relative;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.10);
  z-index: 0;
}
.hero-inner{
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
}

/* HEROマーク */
.hero-mark{
  display:block;
  width: clamp(64px, 10vw, 120px);
  margin: 0 auto 24px;
  opacity: .95;
}

.hero h1{
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.5;
}
.hero p{
  max-width: 700px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.9;
  opacity: .92;
  text-align: center;
}

.hero-statement{
  text-align: center;
  font-size: 12.5px;
  color: #111;
  margin-top: 40px;
  padding: 0 20px 20px;
  line-height: 1.7;
}

/* ------------------------------
  Thought block (思想背景)
------------------------------ */
.thought-block{
  padding: 120px 8%;
  background: linear-gradient(180deg, #1a1324, #0a0810);
  text-align: center;
  color: #f3f4f7;
}
.thought-card{
  max-width: 900px;
  margin: 0 auto;
  padding: 64px 36px;
  text-align: center;
}
.thought-ja{
  font-size: clamp(20px, 2.6vw, 32px);
  letter-spacing: .08em;
  margin-bottom: 18px;
}
.thought-en{
  font-size: 13px;
  letter-spacing: .22em;
  opacity: .65;
}

/* PC以上：左寄せにしたい場合 */
@media (min-width: 900px){
  .thought-card{
    margin-left: 0;
    margin-right: auto;
    text-align: left;
  }
}

/* ------------------------------
  Message section (代表挨拶)
------------------------------ */
.message-section{
  padding: 100px 12%;
  background: var(--bg-soft);
}
.message-section > .container{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}
.message-content{ flex: 0 0 60%; }
.message-photo{
  flex: 0 0 35%;
  opacity: .95;
  align-self: flex-end;
}
.message-photo img{
  max-width: 420px;
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
  filter: contrast(0.95);
}

/* ------------------------------
  Utilities
------------------------------ */
.white{ background:#fff; }
.gray{ background:#f7f7f7; }
.black{ background:#111; color:#fff; }
.light{ color:#fff; }

.cta-btn{
  display:inline-block;
  margin-top: 30px;
  padding: 14px 36px;
  background: #000;
  color: #fff;
  letter-spacing: .1em;
}

/* ------------------------------
  Footer
------------------------------ */
footer{
  background:#111;
  color:#fff;
  text-align:center;
  padding: 30px 0;
  font-size: 12px;
  letter-spacing: .1em;
}
footer p{ text-align:center; }

/* ------------------------------
  Responsive
------------------------------ */
@media (max-width: 1024px){
  section{ padding: 90px 6%; }
	
	
		.pc{display: block;}	
	.smh{display: none;}
	
}

@media (max-width: 900px){
  .pc-nav{ display:none; }
  .hamburger{ display:flex; }
}

@media (max-width: 768px){
  body{ padding-top: 72px; }
	
	
		.pc{display: none;}	
	.smh{display: block;}
	
  .header-inner{ height: 72px; }

  .site-logo img{ height: 18px; }

  section{ padding: 70px 5%; }

  .hero{ min-height: 80vh; padding: 0 6%; }
  .hero h1{ font-size: 26px; }
  .hero p{ font-size: 14px; }

  .message-section{ padding: 70px 6%; }
  .message-section > .container{
    flex-direction: column;
    gap: 28px;
  }
  .message-content, .message-photo{
    flex: 0 0 auto;
    width: 100%;
  }
  .message-photo img{
    margin: 0 auto;
    display: block;
  }
}

@media (max-width: 480px){
  section{ padding: 60px 4%; }
  .hero{ padding: 0 6%; }
  h1, h2{ font-size: 20px; line-height: 1.6; }
}


















/* ===== SP: thought section full-width ===== */
@media (max-width: 768px){

  .thought-block{
    padding: 80px 5%;   /* 左右余白をかなり減らす */
  }

  .thought-card{
    max-width: none;    /* 中央寄せ解除 */
    padding: 0;         /* 余計な箱感を消す */
    margin: 0;          /* フル幅 */
    text-align: center; /* スマホは中央の方が読みやすい */
  }
	
	
	
	
	
#education img { width: 100%;}	
	
	
	
	
}