@charset "UTF-8";

/* 共通部分
------------------------------- */
html {
    font-size: 100%;
    scroll-behavior: smooth; /* スムーズに上に戻る */
}
body{
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
    line-height: 1.7;
    color: #432;
}

a {
    text-decoration: none;
    color: #E57C9A;
}
img {
    max-width: 100%;
    height: auto;
}
* {
    box-sizing: border-box;
}

/* HEADER
------------------------------- */
.wrapper {
    max-width: 1100px;
    margin: 0 auto;
}
nav {
    display: flex;
}

/* ハンバーガー基本（PCでは非表示） */
#toggle {
    display: none;
    width: 30px;
    cursor: pointer;
}

#toggle span {
    display: block;
    height: 3px;
    background: #fff;
    margin: 6px 0;
}

.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    font-size: 20px;
    text-transform: uppercase;
    margin: 15px auto;
    list-style: none;
    vertical-align: middle;
}
.main-nav li {
    margin-left: 30px;
}
.main-nav a {
    color: #FFFFFF; /* メニューの文字色 */
}
.main-nav a:hover {
    color: #E57C9A; /* マウスオーバー時の色 */
}
.nav-icon {
    display: flex;
}
.nav-icon img {
    margin-right: 20px;
    vertical-align: middle;
}
.page-header {
    position: fixed;
    height: 70px;
    width: 100%;
    background-color: #6F8F8B;
    display: flex; /* 横並び */
    justify-content: flex-end;/*右寄せで配置*/
    z-index: 1000; /* 表示順 */
}
header a.current {
    color: #E57C9A;
}
/* HOME
------------------------------- */
.home-content {
    padding-top: 70px;
    max-width: 1090px;
    width: 100%;
}

/* メイン画像 */
.logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width:100%;
    max-width: 100%;
    height: auto;
}

/* main-wrapper
------------------------------- */
.main-wrapper {
    max-width: 1090px;
    flex: 1;
    margin: 0 auto;
}
.container {
    width: 100%;
    padding: 50px 0; 
    border-bottom: 1px solid #eee;
    margin: 0 auto 20px;
}

.container:last-of-type {
    border-bottom: none;
}

.heading {
	  padding: 0 30px 0 0;
}
.heading h2 {
    margin-bottom: 8px;
    letter-spacing: 0.05em;
    font-size: 20px;
    color: #6F8F8B;
    text-align: left;
    font-weight:bold;
}
.text {
    display: block;
	  text-align: left;
   	margin-left:30px;
    margin-right: 30px;
    line-height: 1.8;
  }

.text p {
    margin-bottom: 10px;
}

.text h3 {
    margin-top: 20px;
    margin-bottom: 3px;
}

.text h4 {
    margin-top: 15px;
    margin-bottom: 3px;
}

.text ol {
    padding-left: 20px;
    margin-top: 10px;
}

.text ol li {
    margin-bottom: 6px;
}

.text ul {
    padding-left: 20px;
}

iframe {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}
.newslist img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

.concept {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
}

.activity-log h2 {
    scroll-margin-top: 70px; /* ヘッダーの高さに合わせる */
}

.order h2 {
    scroll-margin-top: 70px; /* ヘッダーの高さに合わせる */
}

.year-nav {
    margin: 10px 0;
}

.year-nav ul {
    display: flex;
    flex-wrap: wrap;   /* ← 折り返し可能 */
    gap: 16px 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.year-nav a {
    text-decoration: none;
    color: #333;
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid #ccc;
    border-radius: 20px;
}
.year-nav a:hover {
    background-color: #E57C9A;  /* 背景色 */
    color: #fff;               /* 文字色 */
    border-color: #E57C9A;     /* ボーダーも変えたい場合 */
    transition: 0.3s;          /* なめらかに色が変わる */
}
.log { /* 活動履歴部分 */
    margin-bottom: 5px;
    margin-left: 5%;
    width: 90%;
    background: #70A69B;
	  text-align: left;
  }
.log-img { /* 企画バナー等 */
    background: #70A69B;
    color: #fff;
    margin: 0 auto;
    max-width: 500px;
    padding: 10px 10px 0px 10px;
   	text-align: left;
    vertical-align:middle;
}
.log-img img {
    display: block;
    margin: 0 auto;
}

.log-text a:hover h3,
.log-text a:hover small {
  color: #E57C9A;
}
.log-img iframe {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

.log-text small {
    margin-left: 5%;
    color: #fff;
    text-align: left;
}
.log-text h3 {
    margin-left: 5%;
    color: #fff;
    text-align: left;
    font-weight:bold;
}
.log-text p { /* 企画詳細等 */
    background: #70A69B;
    color: #fff;
    text-align: left;
    margin-left: 7%;
    padding: 0 30px 10px 0;
  }


/* グリッド
------------------------------- */
.grid {
    margin-left: 5%;
    width: 90%;
    display: grid;
    gap: 5px;
    grid-template-columns: 1fr 1fr 1fr;
}
.item {
    background: #70A69B;
    color: #fff;
    padding: 10px;
    text-align: center;
    display: block;        /* flexではなく通常フロー */
    height: 260px;             /* ボックス高さ固定 */
    box-sizing: border-box;
    position: relative;    /* 絶対配置の基準 */
}

/* イラストやバナーを中央に */
.item img {
    max-width: 100%;
    height: auto;
    position: absolute;
    top: 50%;              /* ボックス中央に配置 */
    left: 50%;
    transform: translate(-50%, -50%); /* 完全中央 */
    margin-bottom: 0;       /* 不要 */
}
/* タイトルは下に固定 */
.item p {
    position: absolute;
    bottom: 5px;          /* ボックス下端から余白 */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;            /* 折り返し対応 */
    margin: 0;
    line-height: 1.2;      /* 行間を詰める */
    font-size: 1rem;
    text-align: center;
    word-break: break-word;
}
.item a {
    color: #FFFFFF; /* メニューの文字色 */
}
.item a:hover {
    color: #E57C9A; /* マウスオーバー時の色 */
}


/* メールフォーム
------------------------------- */

.mail { 
    margin-bottom: 5px;
    margin-left: 5%;
    width: 90%;
	text-align: left;
  }
.mail-img { 
    max-width: 500px;
    padding: 10px 10px 0px 10px;
   	text-align: left;
    vertical-align:middle;
}
.mail-img iframe {
    display: block;
    max-width: 100%;
}

/* top_xyz
------------------------------- */
.container_xyz {
    width: 100%;
    padding: 0; 
    margin: 0 auto 0;
}
.heading_xyz {
	padding: 0 30px 0 0;
}
.heading_xyz h2 {
    margin-bottom: 8px;
    letter-spacing: 0.05em;
    font-size: 20px;
    color: #6F8F8B;
    text-align: left;
    font-weight:bold;
}
.text_xyz {
    display: block;
	  text-align: left;
   	margin-left:30px;
    margin-right: 30px;
    line-height: 1.8;
  }


/* xyz
------------------------------- */
.xyz {
  margin-top:80px;
	padding: 40px 30px 0 30px;
	font-size: 80%;
	text-align: left;
	width: 100%;
    color:#666666;
	line-height:1.5em;
}

.xyz a {
    color:#666666;
}
.xyz img {
    display: inline-block;
	text-align: left;
   	margin-left:30px;
    border:1px solid #666666;
}
.xyz h3 {
    margin-top: 5px;
    margin-bottom:5px;
    font-size: 14px;
    font-weight:bold;
}
.right {
	text-align: right;
}


/* フッター
------------------------------- */
footer {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;        /* 垂直中央 */
    justify-content: center;    /* 水平中央 */
    background-color: #6F8F8B;
    color: #ffffff;
    text-align: center;
    z-index: 1000;
}
@media (min-width: 1001px) {

  footer {
    position: fixed;
    bottom: 0;
    left: 0;
    height: 60px;
  }

  body {
    padding-bottom: 60px; /* フッター高さ分 */
  }

}

/* ページTOPに戻る
------------------------------- */
.pagetop{
    position: fixed;
    right: 15px;
    bottom: 70px;
    z-index: 2000
}
.pagetop a{
    display: block;
    font-size: 0;
    width: 50px;
    height: 50px;
    text-align: center;
	background-color: #6F8F8B;
    border-radius: 50%;
    line-height: 50px;
    box-shadow: 0 4px 6px rgb(0 0 0 / 30%);
}
.pagetop a i{
    font-size: 20px;
    color:#fff;
    line-height: 50px;
}

/* オーディオファイルがヘッダーを乗り越えてくるのを回避 */
audio {
  position: relative;
  z-index: 1;
}

/* ABOUT コンテンツに交互に背景色 */
.about-page .container:nth-of-type(even) {
  background-color: #fafafa;
}

/* ABOUT金額目安 */
.note {
  font-size: 0.6em;
  font-weight: normal;
  color: #888;
  margin-left: 10px;
}

/* ABOUT金額表テーブル */
.price-table {
  width: 60%;
  margin: 8px auto 20px;   /* ← 中央配置 */
  border-collapse: collapse;
  table-layout: fixed;     /* 列幅固定 */
  margin-top: 8px;
  margin-bottom: 20px;
}

.price-table th,
.price-table td {
  border: 1px solid #ccc;
  padding: 8px;
  text-align: left;
}

/* 列幅を固定 */
.price-table th:first-child,
.price-table td:first-child {
  width: 70%;
}

.price-table th {
  background-color: #f5f5f5;
}

.price-table td:last-child {
  text-align: right;
  white-space: nowrap;
}

.price-table td:last-child {
  font-weight: 600;
  color: #333;
}

/* テーブル行ホバー */
.price-table tr {
  transition: background-color 0.2s ease;
}

.price-table tr:hover td {
  background-color: #f9f9f9;
}

/* ABOUT折りたたみ（details） */
details {
  margin-top: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px 14px;
  background-color: #fafafa;
}

details summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

details summary::-webkit-details-marker {
  display: none;
}

/* 擬似矢印 */
details summary::before {
  content: "＋";
  margin-right: 8px;
  font-weight: bold;
  color: #666;
}

details[open] summary::before {
  content: "−";
}

details {
  overflow: hidden;
}

details[open] summary ~ * {
  animation: fadeIn 0.25s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* タブレット向けレイアウト */
@media screen and (max-width: 1000px) { /* 1000px以下 */
	h1 {
		font-size: 3.6rem;/* 36px*/
	}
    h2 {
		font-size: 2.4rem;/* 24px*/
	}
	footer {
        clear:both;
		position: static;
		}
}

/* スマホ向けレイアウト */
@media all and (max-width: 670px) {
    body{
		line-height: 2;
	}
    h1{
		font-size: 2.4rem;/* 24px*/
	}
    h2 {
		font-size: 2rem;/* 20px*/
	}
    /* ヘッダー */
    .page-header {
        position: relative;
        height: 70px;
        display: flex;
        justify-content: space-between;
        align-items: center;   /* ヘッダー内縦中央 */
        padding: 0 20px;
    }
    nav {
        display: flex;
        align-items: center;  /* nav内も縦中央 */
        width: 100%;
    }

  /* ハンバーガー */
  #toggle {
    display: block;       /* ここで表示 */
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
    z-index: 1001; /* ヘッダーより上 */
  }
  #toggle span {
    position: absolute;
    width: 100%;
    height: 3px;
    background: #fff;
    left: 0;
    transition: 0.3s ease;
  }
  #toggle span:nth-child(1) { top: 0; }
  #toggle span:nth-child(2) { top: 10px; }
  #toggle span:nth-child(3) { top: 20px; }

  /* ×アニメーション */
  #toggle.open span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
  #toggle.open span:nth-child(2) { opacity: 0; }
  #toggle.open span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

  /* ナビ全体 */
  #navi {
    position: absolute;
    top: 0;  /* ヘッダー分下げない */
    left: 0;
    width: 100%;
    background-color: #6F8F8B;
    display: flex;
    flex-direction: column;
    padding: 0 !important;    /* 上下余白削除 */
    margin: 0 !important;     /* margin削除 */
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
    z-index: 1000;
  }

  /* 開いたとき */
  #navi.open {
    max-height: 500px;  /* 必要に応じて高さ調整 */
  }

  /* main-navリセット */
  .main-nav {
    margin: 0;
    padding: 0;
    gap: 0;
    flex-direction: column;
  }

  /* aタグの下線を消す */
  #navi a {
    text-decoration: none; /* 下線を消す */
    color: #fff;
    display: block;
    padding: 0;           /* 上下余白が残らないように */
  }

  /* liの調整 */
  #navi li {
    list-style: none;     /* デフォルト点を消す */
    margin: 0 !important;   /* 上下マージン削除 */
    padding: 0;  /* 上下余白は個別で調整 */
    border-bottom: none;
  }

  /* aタグの調整 */
  .main-nav a {
    display: block;
    padding: 10px 0;           /* 適宜高さ調整 */
    text-decoration: none !important; /* 下線消す */
    color: #fff;
  }

  /* ナビ */
  .main-nav {
    margin: 0;
    padding: 0;
    gap: 0;
    flex-direction: column;
    font-size: 18px;
  }

  .main-nav li {
    margin-left: 0;
  }


  /* アイコン */
  .nav-icon {
    justify-content: center;
  }

  .nav-icon img {
    margin-right: 12px;
  }    .wrapper {
        padding: 0 20px;
    }
    .main-wrapper {
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 5px;
	}
	.heading {
        padding-right: 15px;
        padding-left: 15px;
    }
	.text {
        margin-left: 15px;
        margin-right: 15px;
    }
	.xyz {
        margin-left: 15px;
        margin-right: 15px;
    }
	.song {
        margin-left: 15px;
        margin-right: 15px;
    }
    .log {
        margin-left: 15px;
        margin-right: 15px;
}
	footer {
        font-size: small;
    }
}