@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

.green{
	
	background:#023a0f;
}



/* セクション全体 */
.unayu-sec {
  position: relative;
  padding: clamp(36px,6vw,72px) 20px;
  background: transparent; /* SWELL背景を活かす */
  border-top: 1px solid rgba(255,255,255,0.15);
  color: #fff;
}

/* bracket gold 見出し */
.uny-h {
  font-family:"Noto Serif JP","Yu Mincho","Hiragino Mincho ProN",serif;
  font-weight:700;
  font-size: clamp(22px,3.4vw,34px);
  letter-spacing:.08em;
  line-height:1.3;
  position:relative;
  margin:0 0 .8em;
}
.uny-h span {
  position: relative;
  z-index: 1;
}

/* bracket gold 本体 */
.uny-h--bracket.gold {
  text-align:center;
  padding:.4em 0;
  color:#fff;
  position:relative;
  overflow:hidden;
}
.uny-h--bracket.gold::before,
.uny-h--bracket.gold::after {
  content:"";
  position:absolute;
  top:50%;
  width:0; /* アニメ開始はゼロ */
  height:2px;
  transform:translateY(-50%);
  background: linear-gradient(90deg, transparent, #b59b5a, #f5e7b5);
  opacity:.95;
}

/* 左ライン */
.uny-h--bracket.gold::before {
  left:0;
  animation: unyLineLeft 5s ease-in-out infinite;
}
/* 右ライン */
.uny-h--bracket.gold::after {
  right:0;
  transform:translateY(-50%) scaleX(-1);
  animation: unyLineRight 5s ease-in-out infinite;
}

/* アニメーション */
@keyframes unyLineLeft {
  0% { width:0; opacity:0; }
  20%{ width:22%; opacity:1; }
  80%{ width:22%; opacity:1; }
  100%{ width:0; opacity:0; }
}
@keyframes unyLineRight {
  0% { width:0; opacity:0; }
  20%{ width:22%; opacity:1; }
  80%{ width:22%; opacity:1; }
  100%{ width:0; opacity:0; }
}

/* 本文テキスト */
.unayu-one__head p {
  line-height:2;
  font-size:15px;
  color:#eee;
  max-width:40em;
}

/* 写真（角丸なし・シャドウ） */
.unayu-one__ph {
  aspect-ratio:4/3;
  overflow:hidden;
  background:#111;
  border-radius:0;
  box-shadow:0 0 18px rgba(0,0,0,.6);
}
.unayu-one__ph img {
  width:100%; height:100%;
  object-fit:cover; display:block;
  transform:scale(1.02);
  transition:.4s;
}
.unayu-one__ph:hover img { transform:scale(1.05); }

/* レイアウト */
.unayu-one {
  max-width:1100px;
  margin:0 auto;
  display:grid;
  gap:24px;
  align-items:center;
  grid-template-columns:1.1fr .9fr;
}
@media (max-width:1024px){
  .unayu-one{ grid-template-columns:1fr; }
}







.menu {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: grid;
  gap: 1.2rem;
}

.item {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(181,155,90,.4); /* 金色系の仕切り線 */
}

.item-title {
  font-family: "Noto Serif JP","Yu Mincho",serif;
  font-weight: 700;
  font-size: clamp(1.2rem, 1rem + 1vw, 1.6rem);
  color: #fff;
  letter-spacing: .05em;
  display: inline-block;
  position: relative;
}

.item-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #b59b5a, transparent);
}

.sub {
  margin-top: .4rem;
}

.desc {
  font-size: .95rem;
  color: #ccc;
  line-height: 1.6;
}
