/*
Theme Name: MyTheme
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Description: Converted one-page site into a WordPress theme.
Version: 1.0
Text Domain: mytheme
*/

/* ベースリセット（必要最低限） */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  height: 100%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #FFF;

  scroll-snap-type: y mandatory;

  overflow-y: auto;
  overflow-x: hidden;
}




/* レイアウト共通 */
body,h2{
  margin:0;
}
/* h2{
  display:flex;
  justify-content: center;
  align-items: center;
  height:100%;
  padding:18rem 0;
  color:#fff;
  text-align:center;
} */
/*
バックグランドの画像固定*/


.parallax_content{
  min-height: 100vh;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  -webkit-overflow-scrolling: touch;
}
/* .parallax_content.background-1 {
  background-image: url(https://bigbois-official.sakura.ne.jp/takinishi3/wp-content/uploads/2025/11/gangwon-do-3804240_1920-1.jpg);
} */
 
.parallax_content.background-2 {
  background-image: url(https://luxida.jp/sorazine/wp-content/uploads/2025/01/L1001057-1-scaled-1.jpg);
  background-blend-mode: overlay;
}
.parallax_content.background-3 {
  background-image: url(https://luxida.jp/sorazine/wp-content/uploads/2025/12/DSC05954-2-scaled-1.jpg);
  background-color:rgba(117,83,37,0.5);
  background-blend-mode: multiply;
}
.parallax_content.background-4 {
  background-image: url(https://luxida.jp/sorazine/wp-content/uploads/2025/12/E_079587-2-scaled-1.jpg);
  background-size:cover;
  background-blend-mode: color-burn;
}
.parallax_content.background-5 {
  background-image: url(https://luxida.jp/sorazine/wp-content/uploads/2025/12/E_079837-scaled.jpg);
  background-size:cover;
  background-blend-mode: overlay;
}
.parallax_content.background-6 {
  background-image: url(https://luxida.jp/sorazine/wp-content/uploads/2025/12/L1001016-2-scaled-1.jpg);
  background-blend-mode: difference;
}
.parallax_content.background-7 {
  background-image: url(https://luxida.jp/sorazine/wp-content/uploads/2025/12/L1000756-2-scaled-1.jpg);
  background-color: rgba(117,83,37,0.5);
  background-size:cover;
  background-blend-mode: color-burn;
}
.parallax_content.background-8 {
  background-image: url(https://luxida.jp/sorazine/wp-content/uploads/2025/12/L1000981-2-scaled-1.jpg);
  background-blend-mode: color-burn;
}
.parallax_content.background-9 {
  background-image: url(https://luxida.jp/sorazine/wp-content/uploads/2025/12/DSC_2683-2-scaled-1.jpg);
  background-blend-mode: difference;
}
.parallax_content.background-10 {
  background-image: url(https://luxida.jp/sorazine/wp-content/uploads/2025/12/E_079779-2-scaled-1.jpg);
  background-blend-mode: darken;
}
.parallax_content.background-11 {
  background-image: url(https://luxida.jp/sorazine/wp-content/uploads/2025/12/L1001257-2-scaled-1.jpg);
  background-blend-mode: darken;
}

.container {
  width: 100%;
  max-width: 100%;
}

/* 基本のヘッダー（上固定） */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: transform 0.25s ease-out;
}

/* ↓これが付いたときに上に隠す */
.site-header--hide {
  transform: translateY(-100%);
}

/* 管理バーがあるログイン時のずれ対策（必要なら） */
.admin-bar .site-header {
  top: 32px;   /* PC / タブレット用（WP管理バー高さ） */
}

@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px; /* スマホ管理バー用 */
  }
}

/* ヘッダー高さ分、コンテンツを下げてかぶらないようにする */
.has-fixed-header {
  padding-top: 80px; /* ヘッダーの高さに合わせて調整 */
}

.area {
  scroll-snap-align: start;
  height: 100vh;
}

/* General Styling */
.area:nth-child(even) {
  background-color: #6B635B;
}
.area:nth-child(odd) {
  background-color: #6B635B;
}

.content-pickup {
    display: flex;
    gap: 32px;
    align-items: stretch;
}
.right-content, .left-content {
	flex:1.0;
}
.left-content {
	padding-top: 120px;
}
.section-inner {
    max-width: 1080px;
    margin: 0 auto;
    width: 100%;
	padding-top: 80px;
}
.section-inner-about {
    max-width: 1080px;
    margin: 0 auto;
    width: 100%;
	padding-top: 80px;
}
/* HEROスライダー */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

/* 画像の上に文字を重ねる */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.7)
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 6vw;
  color: #fff;
}

.hero-overlay h1 {
  font-size: 2.4rem;
  margin-bottom: 16px;
  position: absolute;
  bottom: 200px;
}

.hero-overlay p {
  font-size: 1.1rem;
  max-width: 520px;
  position: absolute;
  bottom: 150px;
}

/* スライダー操作ボタン */
.hero-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: none;
  font-size: 1rem;
  padding: 8px 12px;
  cursor: pointer;
  z-index: 10;
}

.hero-prev {
  left: 16px;
}

.hero-next {
  right: 16px;
}

.hero-control:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

/* ドットインジケータ */
.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 1px solid #fff;
  background-color: transparent;
  cursor: pointer;
}

.hero-dot.is-active {
  background-color: #fff;
}

/* ヒーロー下部のスクロールダウンリンク（ボタン風） */
.hero-scroll-link {
  position: absolute;
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 28px;
  font-size: 1rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid #fff;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  z-index: 50;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.hero-scroll-link:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateX(-50%) translateY(-3px);
}
/* Concept */
.site-intro-catch{
  writing-mode: vertical-rl;
	
}
.site-intro-text{
  writing-mode: vertical-rl;
  line-height: 3.0;
  margin: 0 auto;
/*   padding-top: 80px; */
  font-size: 1.0em;
}
/* Pickup Card */
.card {
    position: relative;
	width: 350px;
    height: auto;
    padding: 1rem;
    box-sizing: border-box;
    transform-style: preserve-3d;
    perspective: 1000px;
}


.flx-card {
  padding: 40px;
  margin-top: auto;
  margin-left: auto;
}
.photo-container05 {
  position: relative;
  display: block;
  margin-inline:auto;
  line-height: 0;
  background: white;
  padding: 20px;
  border: 1px solid #ccc;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.caption {
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 14px;
  color: #555;
  font-family: cursive;
}

.img05 {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.fukidashi-01-12 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
}
.fukidashi-01-12::before {
  content: "";
  width: 30px;
  height: 2px;
  transform: rotate(60deg);
  box-sizing: border-box;
  background-color: #FFF;
}
.fukidashi-01-12::after {
  content: "";
  width: 30px;
  height: 2px;
  transform: rotate(-60deg);
  box-sizing: border-box;
  background-color: #FFF;
}


.card-title {
    padding: 0.5rem 1rem;
    font-size: 1.5rem;
    font-weight: bold;
}

.card-description {
    margin: 1rem 0 4rem;
    line-height: 1.5;
}

.card-link {
    padding: 1rem;
    color: #fff;
    text-decoration: none;
    border: 2px solid #fff;
    transition: all .5s;
}

.card-link:hover {
    background-color: #fff;
    color: #333;
}
/* Pickup 吹き出し */
.fukidashi-01-05 {
  position: relative;
  width: fit-content;
  padding: 12px 16px;
  border-bottom: 2px solid #FFF;
}
.fukidashi-01-05::before {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -13px;
  width: 30px;
  height: 2px;
  transform: rotate(50deg);
  box-sizing: border-box;
  background-color: #FFF;
}
.fukidashi-01-05::after {
  content: "";
  position: absolute;
  right: -23px;
  bottom: -28px;
  width: 8px;
  height: 8px;
  box-sizing: border-box;
/*   border: 1px solid #ffffff;  */
/* ↑背景色と同じ色を指定 */
  border-radius: 50%;
  background-color: #FFF;
}
.fukidashi-01-05 p{
  font-size: 2em;
}
h1.photo-title {
  position: relative;
  padding: 8px 8px;
  font-family: 'Noto Sans JP', serif;
  font-size: 24px;
  letter-spacing: 0.1em;
  color: #333;
  font-weight: 700;
  display: block;
  box-sizing: border-box;
  max-width: 140px;
  text-align: center; 
  margin: 24px;
  margin-inline: auto;
}

.photo-title::before {
  content:'';
  position: absolute;
  left:0;
  width: 60px;
  height: 60px;
  display: inline-block;
  top: 0;
  rotate: 45deg;
  border-bottom: solid 3px #333;
  border-left: solid 3px #333;
}

.photo-title span::before, .photo-title span::after {
  content:'';
  position: absolute;
  background: #333;
  width: 40px;
  height: 2px;
  display: inline-block;
}

.photo-title span::before {
  left: 24px;
  top: 1px;
  rotate: 45deg;
}

.photo-title span::after {
  left: 24px; 
  bottom: 1px;
  rotate: -45deg;
}
@media (max-width: 768px) {
	.fukidashi-01-05 p{
	  font-size: 1em;
	}
	.fukidashi-01-05 {
	  padding: none;
	  padding-bottom: 8px;
	  margin-left: 20px;
	}
	.fukidashi-01-12 {
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  gap: 10px;
	  padding: 4px 4px;
	}
	.photo-container05 {
	  padding: 8px;
	  max-height: 200px;
	}
	.img05 {
	  max-height: 160px;
	}
	.hero-overlay h1 {
	  font-size: 1.5rem;
	  margin-bottom: 16px;
	  bottom: 200px;
	  position: unset;
	}

	.hero-overlay p {
	  font-size: 0.7rem;
	  max-width: 520px;
	  bottom: 150px;
	  position: unset;
	}
}
/* ================================
   You’ve Got This スライダー
================================ */
.yg-slider {
  position: relative;
  overflow: hidden;
}

/* Gmedia が出力した img をスライド扱い */
.yg-slider .yg-slide-img {
  display: none;
  transition: opacity 0.4s ease;
}

.yg-slider .yg-slide-img.is-active {
  display: block;
}

/* ドットナビ */
.yg-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
}

.yg-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid #999;
  background: #ccc;
  cursor: pointer;
}

.yg-dot.is-active {
  background: #333;
}

.yg-slider-wrapper {
  position: relative;
  text-align: right;
}

.yg-slider-main {
  width: 80%;
  height: auto;
}
.tape {
    position: relative;
    max-width: 560px;
/*     margin: 1.5em auto; */
	margin-top: -100px;
    padding: 2.5em 1.5em 1.5em;
    box-shadow: 0 2px 3px rgb(0 0 0 / 20%);
    background-color: #e0efff;
    color: #333333;
}

.tape span {
    position: absolute;
    top: -15px;
    transform: translateX(-.3em) rotate(-5deg);
    padding: .9em 4em;
    border-right: 2px dotted rgb(0 0 0 / 10%);
    border-left: 2px dotted rgb(0 0 0 / 10%);
    box-shadow: 0 0 5px rgb(0 0 0 / 20%);
    background-color: rgb(255 255 255 / 80%);
    font-weight: 600;
}

.tape p {
    margin: 0;
}


/* スマホでは縦並びにする */
@media (max-width: 768px) {
  .yg-layout {
    flex-direction: column;
  }

  .yg-slider-main {
    width: 70vw;
    height: auto;
  }

  .yg-slider {
    max-width: 100%;
    width: 100%;
  }

  .yg-text {
    text-align: left;
	margin: 120px 12px 12px;
  }
	.yg-slider-wrapper {
	  margin-top: 40px;
	}
	.tape {
	  padding: 1em;
	}
	.tape p {
	  padding-top: 8px;
      font-size: 12px;
	}
	.tape h3 {
		font-size: 1em;
	}
}
/* ==============================
   Beautiful Energy セクション
   ============================== */

.section-beautiful {
  background: radial-gradient(circle at top left, #ffe8b8 0, #ffb4b4 30%, #f66bbc 60%, #3a2758 100%);
  color: #fff;
}

/* 上部のラベル＆タイトル */
.be-header {
  max-width: 720px;
  margin-bottom: 32px;
}

.be-tag {
  display: inline-block;
  padding: 4px 12px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
}

.be-title {
  border-bottom: none; /* section-title の線は消す */
  font-size: 2rem;
  margin-bottom: 8px;
}

.be-lead {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* 左右レイアウト */
.be-content {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.be-text {
  flex: 1.3;
}

.be-photo {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* テキスト系 */
.be-company-name {
  font-size: 1.8rem;
  font-weight: 600;
  margin: -10px 0 20px 0;
}

.be-philosophy-label {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
  margin: -10px 0 20px 0;
}

.be-philosophy {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.7;
  margin: -20px 0 0 0;
}

.be-description {
  font-size: 0.95rem;
  line-height: 1.8;
  opacity: 0.95;
  margin-bottom: 20px;
}

/* リンクボタン風 */
.be-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 999px;
  background-color: #fff;
  color: #442151;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.be-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  background-color: #ffeefb;
}

.be-link-icon {
  font-size: 1rem;
}

/* 写真側 */
.be-photo-frame {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.25);
  position: relative;
}

.be-photo-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.2), transparent 60%);
  pointer-events: none;
}

.be-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.be-photo-caption {
  font-size: 0.8rem;
  opacity: 0.9;
  margin-top: 8px;
  text-align: center;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .be-text {
	margin: 0 20px 0 20px;
  }
  .be-content {
    flex-direction: column;
  }

  .be-header {
    display: none;
  }

  .section-beautiful {
    padding-top: 96px; /* ヘッダー分余裕を少し多めに */
  }

  .be-title {
    font-size: 1.6rem;
  }

  .be-photo-frame {
    max-width: 100%;
	height: 200px;
  }
	.be-company-name {
	  font-size: 1.2rem;
	  font-weight: 600;
	  margin: -10px 0 20px 0;
	}
	.be-philosophy-label {
	  display: none;
	}
	.be-description {
	  font-size: 0.8rem;
	}
	.be-photo {
	  margin: 0 20px;
	}
}
/* ==============================
   Local / Region セクション
   ============================== */

/* 共通 */
.section-local {
  padding: 60px 0;
}

.local-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  padding-top: 80px;
}

.local-title {
  font-size: 2rem;
  margin-bottom: 0.5em;
}

.local-lead {
  margin-top: 3em;
/*   margin-bottom: 2em; */
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ------------------------------
   モバイル（デフォルト）：横スクロール
   ------------------------------ */

.local-slider {
  overflow-x: auto;
  padding: 0 20px 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  white-space: normal;
}

.local-card {
  flex: 0 0 80vw;
  max-width: 400px;
  min-width: 260px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  opacity: 0.9;
}

/* カード内スライダー部分の高さをある程度固定 */
.local-card-slider {
  flex: 1;
  min-height: 320px;
}

.local-card-slide {
  display: none;
}
.local-card-slide.is-active {
  display: block;
}

/* サムネ */
.local-thumb {
  position: relative;
  display: block;
  margin-bottom: 12px;
  border-radius: 12px;
  overflow: hidden;
}
.local-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* 再生アイコン */
.local-play-icon {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 14px;
  line-height: 1;
  padding: 6px 8px;
  border-radius: 999px;
}

/* バッジ */
.local-badge {
  display: inline-block;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  margin-bottom: 8px;
  font-weight: 600;
}
.local-badge-youtube { background: #ff0000; color: #fff; }
.local-badge-note    { background: #00c4cc; color: #fff; }

/* タイトル・本文 */
.local-card-title {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 8px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.local-card-text {
  font-size: 0.86rem;
  color: #555;
  line-height: 1.8;
  white-space: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

/* カード内ナビゲーション */
.local-card-slider-nav {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.local-card-prev,
.local-card-next {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: none;
  background: #f3f3f3;
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.local-card-counter {
  font-size: 0.8rem;
  color: #666;
}

/* PC（768px以上） */
@media (min-width: 768px) {
  .local-slider {
    display: flex;
    gap: 24px;
    padding: 0 0 12px;
    white-space: normal;
    justify-content: center;
  }

  .local-card {
    display: flex;
    flex-direction: column;
    width: 360px;
    margin-right: 0;
  }
}

.wrap {
  scroll-snap-type: x mandatory;
  white-space: nowrap;
  overflow-x: auto;
  margin: 0 auto;
  padding: 30px 0;
  /*スクロールバー非表示（IE・Edge）*/
  -ms-overflow-style: none;
  /*スクロールバー非表示（Firefox）*/
  scrollbar-width: none;
}
.wrap::-webkit-scrollbar{
  display:none;
}

@media not all and (min-width: 840px){
  .wrap {
    width: 100%;
  }
}

.item {
  scroll-snap-align: center;
  display: inline-block;
  margin: 0 8px;
  white-space: normal;
  background-color: #f4f4f4;
  box-shadow: 0 0 5px rgba(0,0,0,.3);
  border-radius: 20px;
  overflow: hidden;
}

@media not all and (min-width: 568px){
/*   .item {
    width: 90%;
  } */
	.local-lead {
	  font-size: 0.8em;
	  margin-bottom: 0;
	}
	  .local-slider {
		padding: 0;
	  }
	.local-card-slider {
	  min-height: 300px;
	}
	.local-card-text {
	  font-size: 0.8rem;
	}
}

/* ==============================
   Articles / Columns セクション
   ============================== */

.section-articles {
  background-color: #f5f5f7;
  color: #222;
}

.articles-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.articles-header {
  margin-bottom: 24px;
}

.articles-title {
  border-bottom: none;
  font-size: 2rem;
  margin-bottom: 8px;
}

.articles-lead {
  margin-top: 3em;
  font-size: 0.8em;
  line-height: 1.9;
  opacity: 0.85;
}
.articles-desc {
	display: flex;
	justify-content: space-between;
}
.pop-news {
    position: relative;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid #359bf0;
    background-color: #73b7ef;
    color: #FFF;
    font-weight: bold;
    font-size: 18px;
}

.pop-news:before {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: 3px solid #FFF;
    content: "";
}

.pop-news:after {
    position: absolute;
    bottom: -31px;
    left: 50px;
    transform: skew(-25deg);
    height: 25px;
    width: 15px;
    border-right: 3px solid #333;
    background-color: #fff;
    content: "";
}

.pop-news p {
    line-height: 1.5;
    color: #FFF;
}

/* ピックアップ記事（カード） */
.articles-featured {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.post-card {
  flex: 1 1 280px;
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 16px rgba(15, 18, 35, 0.08);
  min-height: 350px;
  min-width: 300px;
  max-width: 320px;
}

.post-card-thumb {
  display: block;
  width: 100%;
  overflow: hidden;
}

.post-card-thumb img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.post-card:hover .post-card-thumb img {
  transform: scale(1.04);
}

.post-card-body {
  padding: 14px 16px 18px;
}

.post-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  margin-bottom: 6px;
}

.post-card-category {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background-color: #f1f0ff;
  color: #4b40a3;
}

.post-card-date {
  color: #888;
}

.post-card-title {
  font-size: 1rem;
  margin-bottom: 6px;
  color: #555;
}

.post-card-title a {
  color: inherit;
  text-decoration: none;
}

.post-card-title a:hover {
  text-decoration: underline;
}

.post-card-excerpt {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #555;
}

/* 記事一覧部分 */
.articles-list-wrapper {
  margin-top: 8px;
}

.articles-list-heading {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.articles-list {
  list-style: none;
  border-top: 1px solid #ddd;
}

.articles-list-item {
  border-bottom: 1px solid #e0e0e0;
}

.articles-list-item a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 4px;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.15s ease;
}

.articles-list-item a:hover {
  background-color: #eceff1;
  color: #666;
}

.articles-list-meta {
  font-size: 0.78rem;
  color: #777;
  display: flex;
  gap: 8px;
  align-items: center;
}

.articles-list-category {
  padding: 1px 8px;
  border-radius: 999px;
  border: 1px solid #ccc;
}

.articles-list-title-text {
  font-size: 0.92rem;
  line-height: 1.7;
}

/* 「すべてを見る」リンク */
.articles-list-more {
  margin-top: 10px;
  text-align: right;
  color: #FFF;
}

.articles-more-link {
  font-size: 0.88rem;
  text-decoration: none;
  color: #FFF;
  border-bottom: 1px solid transparent;
}

.articles-more-link:hover {
  border-bottom-color: currentColor;
}
.newcontents {
	display: flex;
}
.newcontents-news {
	flex: 2;
}
.newcontents-photo {
	flex: 1;
	margin-left: 80px;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .articles-featured {
    flex-direction: column;
  }

  .post-card-thumb img {
    height: 200px;
  }

  .articles-title {
    font-size: 1.7rem;
  }
	.articles-list-item a {
	  padding: 4px 2px;
	}
	
	.newcontents {
		display: block;
	}
	.news-inner {
		padding: 0 20px;
	}
	.newcontents-photo {
		flex: 1;
		margin-left: 0;
	}
	.pop-news {
		font-size: 10px;
		height: 60px;
	}
}

/* ==============================
   U-turn Success Story セクション
   ============================== */

.section-success {
  background: radial-gradient(circle at top left, #fff4de 0, #ffe3f2 35%, #f4f0ff 70%, #f7f7f7 100%);
  color: #222;
}

.success-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.success-header {
  margin-bottom: 28px;
}

.success-tag {
  display: inline-block;
  padding: 4px 12px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(140, 116, 255, 0.4);
  color: #6a52c6;
  margin-bottom: 8px;
}

.success-title {
  border-bottom: none;
  font-size: 2rem;
  margin-bottom: 8px;
}

.success-lead {
  font-size: 0.96rem;
  line-height: 1.9;
  opacity: 0.85;
}

/* レイアウト */
.success-body {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

/* 左側：ストーリー */
.success-story {
  flex: 1.4;
}

.success-quote {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 16px;
  position: relative;
  padding-left: 16px;
}

.success-quote::before {
  content: "“";
  position: absolute;
  left: 0;
  top: -8px;
  font-size: 2.4rem;
  color: rgba(0, 0, 0, 0.15);
}

.success-text {
  font-size: 0.85rem;
  line-height: 1.9;
  opacity: 0.9;
  margin-bottom: 10px;
}

/* インタビューリンク（ボタン風） */
.success-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 8px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: #4b3bbd;
  background-color: #fff;
  box-shadow: 0 6px 16px rgba(15, 18, 35, 0.15);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background-color 0.12s ease;
}

.success-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(15, 18, 35, 0.2);
  background-color: #f5f1ff;
}

.success-link-icon {
  font-size: 1rem;
}

/* 右側：プロフィールカード */
.success-profile {
  flex: 1;
  display: flex;
  align-items: center;
}

.success-profile-card {
  width: 80%;
  background-color: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  padding: 16px 16px 18px;
  box-shadow:
    0 10px 28px rgba(15, 18, 35, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.success-profile-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 6px;
}

.success-profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.success-profile-body {
  font-size: 0.9rem;
}

.success-profile-name {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 2px;
  color: #666;
}

.success-profile-role {
  font-size: 0.82rem;
  color: #666;
  margin-bottom: 8px;
}

/* Before / After */
.success-profile-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  margin-bottom: 10px;
}

.success-profile-meta dt {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #999;
}

.success-profile-meta dd {
  font-size: 0.86rem;
  margin: 0;
  color: #666;
}

/* タグ */
.success-profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.success-tag-chip {
  font-size: 0.75rem;
  padding: 3px 9px;
  border-radius: 999px;
  background-color: #f2f1ff;
  color: #4b3bbd;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .success-body {
    flex-direction: column;
  }

  .success-title {
    font-size: 1.1rem;
  }

  .success-profile-card {
    max-width: 360px;
	max-height: 350px;
    margin: 0 auto;
  }
	.success-lead {
	  font-size: 0.7rem;
	}
	.success-quote {
	  font-size: 0.8rem;
	  padding-left: 0;
	  margin-bottom: 0;
	}
	.success-text {
	  display: none;
	}
	.success-link {
	  padding: 4px 12px;
	  font-size: 0.8rem;
	  font-weight: 500;
	}
	.success-header {
	  margin-bottom: 16px;
	}
}

/* 小さな画面用の改行制御 */
.sp-only {
  display: none;
}

@media (max-width: 768px) {
  .sp-only {
    display: inline;
  }
}

/* ==============================
   Creator / Staff セクション（背景帯なし）
   ============================== */

.section-creator {
  background: #f8f8f8;
  color: #333;
  text-align: center;
  padding: 120px 16px;
  scroll-snap-align: start;
}

/* .creator-inner {
  max-width: 720px;
  margin: 0 auto;
} */

.creator-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.creator-lead {
  font-size: 0.95rem;
  line-height: 1.9;
  opacity: 0.8;
  margin-top: 40px;
  margin-bottom: 40px;
}

/* ★ ビューポート部分（横いっぱい） */
.creator-marquee {
  width: 100vw;            /* ブラウザ幅ぴったり */
  overflow: hidden;        /* 画面外に出た分は見せない */
  position: relative;
  margin-left: calc(50% - 50vw); /* ★ セクション内でも画面いっぱいに広げるマジック */
}

/* ★ 横並びで流れていく帯（動かすのは JS） */
.creator-list {
  display: flex;
  gap: 40px;               /* アイテム同士の隙間調整 */
  width: max-content;      /* 中身のサイズぶん広がる */
  align-items: center;
}

/* 各要素を横並び */
.creator-item {
  flex-shrink: 0;          /* 画像が圧縮されないように */
  text-align: center;
}

/* ★ 写真の丸枠を倍くらいに */
.creator-photo {
  width: 320px;     /* ★ 画像サイズUP */
  height: 160px;
  margin: 0 auto 16px;
/*   border-radius: 50%; */
  overflow: hidden;
/*   box-shadow: 0 6px 18px rgba(0,0,0,0.18); */
/*   background: #fff; */
}

/* 写真 */
.creator-photo img {
  width: 310px;            /* お好みで調整 */
  height: auto;
  border-radius: 50%;
}

/* テキスト調整（大きい画像に負けないように） */
.creator-role {
  font-size: 1rem;
  opacity: 0.7;
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}

.creator-name {
  font-size: 1.2rem;
  font-weight: 600;
/*   color: #1a1a1a; */
}

/* スマホでは少し縮める */
@media (max-width: 768px) {
  .creator-item {
    flex: 0 0 150px;
  }

  .creator-photo {
    width: 120px;
    height: 100px;
  }

  .creator-name {
    font-size: 1.0rem;
  }
	
	.creator-photo img {
	  width: 120px;
	}
	.creator-role {
	  font-size: 0.8rem;
	}
	.creator-lead {
	  font-size: 0.8rem;
	}
}

/* ==============================
   Events セクション
   ============================== */

.section-events {
  background-color: #ffffff;
  color: #222;
}

.events-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.events-header {
  margin-bottom: 24px;
}

.events-title {
  border-bottom: none;
  font-size: 2rem;
  margin-bottom: 8px;
}

.events-lead {
  font-size: 0.96rem;
  line-height: 1.9;
  opacity: 0.85;
  margin-top: 40px;
}

/* ピックアップイベント */
.events-featured {
  margin-top: 24px;
  margin-bottom: 24px;
}

.event-highlight {
  display: flex;
  gap: 24px;
  align-items: stretch;
  background-color: #f7f7fb;
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 6px 16px rgba(15, 18, 35, 0.06);
}

/* 日付バッジ */
.event-highlight-date {
  width: 80px;
  min-width: 80px;
  border-radius: 14px;
  background: linear-gradient(160deg, #4b40a3, #ff7a9c);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
  text-align: center;
}

.event-date-month {
  font-size: 0.8rem;
  opacity: 0.9;
}

.event-date-day {
  font-size: 1.9rem;
  line-height: 1.1;
  font-weight: 700;
}

.event-date-week {
  font-size: 0.8rem;
  opacity: 0.9;
}

/* 本文側 */
.event-highlight-body {
  flex: 1;
}

.event-highlight-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  font-size: 0.8rem;
  margin-bottom: 6px;
}

.event-highlight-label {
  padding: 3px 10px;
  border-radius: 999px;
  background-color: #fff;
  color: #4b40a3;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-highlight-place {
  color: #666;
}

.event-highlight-title {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: #555;
}

.event-highlight-title a {
  color: inherit;
  text-decoration: none;
}

.event-highlight-title a:hover {
  text-decoration: underline;
}

.event-highlight-text {
  font-size: 0.92rem;
  line-height: 1.8;
  opacity: 0.95;
  margin-bottom: 6px;
}

.event-highlight-info {
  font-size: 0.82rem;
  color: #555;
  margin-bottom: 10px;
}

/* 詳細リンク */
.event-highlight-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  color: #4b40a3;
  border-bottom: 1px solid transparent;
}

.event-highlight-link:hover {
  border-bottom-color: currentColor;
}

.event-highlight-link-icon {
  font-size: 1rem;
}

/* イベント一覧 */
.events-list-wrapper {
  margin-top: 8px;
}

.events-list-heading {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.events-list {
  list-style: none;
  border-top: 1px solid #ddd;
}

.events-list-item {
  border-bottom: 1px solid #e0e0e0;
}

.events-list-item a {
  display: grid;
  grid-template-columns: 110px 1fr 90px;
  gap: 8px;
  align-items: center;
  padding: 8px 4px;
  text-decoration: none;
  color: inherit;
  font-size: 0.88rem;
  transition: background-color 0.12s ease;
}

.events-list-item a:hover {
  background-color: #f3f5f7;
  color: #666;
}

.events-list-date time {
/*   color: #FFF; */
  font-size: 0.82rem;
}

.events-list-date time:hover {
  color: #555;
  font-size: 0.82rem;
}

.events-list-title {
  line-height: 1.6;
  font-size: 0.7em;
}

.events-list-type {
  font-size: 0.78rem;
  justify-self: end;
  padding: 2px 10px;
  border-radius: 999px;
  border: 1px solid #bbb;
}

/* 「すべてのイベントを見る」 */
.events-list-more {
  margin-top: 10px;
  text-align: right;
}

.events-more-link {
  font-size: 0.86rem;
  text-decoration: none;
  color: #FFF;
  border-bottom: 1px solid transparent;
}

.events-more-link:hover {
  border-bottom-color: currentColor;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .event-highlight {
    flex-direction: column;
  }

  .event-highlight-date {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
  }

  .events-list-item a {
    grid-template-columns: 100px 1fr;
    grid-template-rows: auto auto;
  }

  .events-list-type {
    display: none;
  }

  .events-title {
    font-size: 1.7rem;
  }
	.events-inner {
	  padding: 0 20px;
	}
	.events-lead {
	  display: none;
	}
	.events-featured {
	  margin-top: 40px;
	}
	.event-highlight-meta {
	  display: none;
	}
	.event-highlight-title {
	  font-size: 0.85rem;
	}
	.event-highlight-link {
	  font-size: 0.7rem;
	}
	.events-list-heading {
	  font-size: 0.9rem;
	}
}
/* ==============================
   Nakasorachi Towns セクション
   ============================== */

.section-nakasorachi {
  background: #ffffff;
  color: #222;
}

.nakasorachi-inner {
  max-width: 980px;
  margin: 0 auto;
}

.nakasorachi-header {
  text-align: center;
  margin-bottom: 24px;
}

.nakasorachi-title {
  border-bottom: none;
  font-size: 2rem;
  margin-bottom: 8px;
}

.nakasorachi-lead {
  font-size: 0.96rem;
  line-height: 1.9;
  opacity: 0.85;
}

/* スライダー全体 */
.nakasorachi-slider {
  position: relative;
  margin-top: 8px;
  padding: 24px 16px 32px;
  border-radius: 20px;
  background: linear-gradient(135deg, #f8f3ff, #f0f9ff);
  box-shadow: 0 8px 20px rgba(15, 18, 35, 0.08);
}

/* スライド本体 */
.ns-slides-wrapper {
  position: relative;
  overflow: hidden;
  min-height: 220px;
}

.ns-slide {
  position: absolute;
  inset: 0;
  display: flex;
  gap: 24px;
  align-items: center;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  justify-content: center;
  width: 80%;         /* 画面幅の 80% くらいに絞る */
  margin: 0 auto;     /* その 80% を左右中央に配置 */
}


.ns-slide.is-active {
  opacity: 1;
  transform: translateX(0);
}

.ns-sign {
  flex: 0 0 120px;
  max-width: 220px;
}

.ns-sign img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.ns-body {
  flex: 1;
}

.ns-town-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #555;
}

.ns-town-tagline {
  font-size: 0.95rem;
  color: #5b4bb0;
  margin-bottom: 10px;
}

.ns-town-text {
  font-size: 0.9rem;
  line-height: 1.8;
  opacity: 0.9;
  color: #555;
}

/* コントロール矢印 */
.ns-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(255, 255, 255, 0.9);
  width: 32px;
  height: 32px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(15, 18, 35, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.ns-prev {
  left: 8px;
}

.ns-next {
  right: 8px;
}

/* ドット */
.ns-dots {
/*   margin-top: 20px; */
  text-align: center;
}

.ns-dot {
  width: 10px;
  height: 10px;
  margin: 0 3px;
  border-radius: 999px;
  border: 1px solid #5b4bb0;
  background-color: transparent;
  cursor: pointer;
}

.ns-dot.is-active {
  background-color: #5b4bb0;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .ns-slide {
    flex-direction: column;
    align-items: flex-start;
  }
	
  .ns-body {
    flex: 0;
  }

  .ns-sign {
/*     width: 160px; */
/*     flex: 0 0 auto; */
	display: none;
  }

  .nakasorachi-title {
    font-size: 1.6rem;
  }
	.nakasorachi-header {
	  padding-top: 80px;
	}
	.nakasorachi-lead {
	  font-size: 0.7rem;
	}
	.ns-town-name {
	  font-size: 1.3rem;
	  font-weight: 600;
	  margin-bottom: 4px;
	  color: #555;
	}
	.ns-town-text {
	  color: #555;
	  font-size: 0.8rem;
	}
	.nakasorachi-slider {
	  padding: 8px 12px 4px;
	}
}

/* ヘッダー内の表示モード切替 */
.view-mode {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  color: #555;
  margin-left: 16px;
}

.view-mode select {
  font-size: 0.8rem;
  padding: 2px 6px;
}
.company-list{
	text-align: center;
}

/* スマホではナビの下に出すなど調整したければここで */
@media (max-width: 768px) {
  .view-mode {
    font-size: 0.75rem;
  }
  .site-intro-text {
	line-height: 2.0;
    font-size: 0.7em;
    text-align: center;
    writing-mode: unset;
  }
	.section-inner  {
		padding: 40px 20px 0 20px;	
	}
	.section-inner-about  {
	  display: grid;
	  place-items: center; /* 上下左右センター */
	  height: 90vh;
	}
	.company-list{
		font-size: 0.7rem;
	}
}

.site-footer {
	text-align: center;
}

.toolbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;

  /* ツールバー自体の色をしっかり付ける */
  background-color: #555; /* 好きな色に */

  /* iPhone のホームインジケータ分の余白も塗る */
  padding-bottom: env(safe-area-inset-bottom);
}
