/*
Theme Name: kawai
Author: WF
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');


body {
	background-color: #fff;
    margin: 0;
    padding: 0;
    width: 100%;
  font-family: 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', 'MS PMincho', serif;
    font-weight: 300;
    color: #333;
    letter-spacing: 0.06em;
    

}

a:link,
a:visited {
    text-decoration: none; /* アンダーラインを消す */
}

a {
    transition: opacity 0.3s; /* 0.3秒かけて透明度が変わる */
}

a:hover {
	opacity: .6;
}

.center {
	text-align: center;
}


/* sns */

.spotify {
	color: #1DB954;
}

.youtube {
	color: #FF0000;
}

.apple {
	color: #A2AAAD;
}

.bandcamp {
	color: #629aa9;
}


/* header menu */

.sp-menu {
display: none
}

header {
	border-bottom: solid 1px #f2f2f2;
}



header .fixbar {
width: 100%;
  }

header.fixed .fixbar {
  position: fixed;
  margin: 0 auto; 
   z-index: 4;
     }
     

nav ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap; /* スマホ対応用 */
}

.logo {
	margin: 0 20px 0;
}
nav li {

  position: relative;
  display: flex;
  align-items: center;
}

nav li a {
  padding: 10px 15px;
  font-size: 16px;
  font-weight: normal;
  display: block;
  color: #333;
  font-family: "Noto Serif JP", serif;
    font-weight: 700;
  text-decoration: none;
}



li h1 a {
    font-size: 18px;
    padding: 0;
}

nav li:after {
  position: absolute;
  content: '';
  bottom: 0;
  width: 0px;
  left: 50%;
  background-color: #ccc;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  text-decoration: none;
}

nav li:hover:after {
  width: 100%;
  left: 0;
}

nav li a:hover {
opacity: 0.6;
text-decoration: none;
color: #261971;
}

li.sns a {
	font-size: 1.5rem;
	padding: 10px 7px;
}

a.en  {
	background: #F5B0C4;
	color: #fff;
	border-radius: 3px;
	padding: 10px 15px ;
	position: absolute;
    top: 40px;
    right: 50px;
}

ul,li {
	margin: 0;
	padding: 0;
	list-style: none;
}


     
 /* .fixbar */
 
header.fixed .fixbar { 
		background: rgba(255,255,255,0.8);
		width: 100%;
		top: 0px;
		border-bottom: solid 1px #f2f2f2;
			}
	
	header.fixed .fixbar .nav > li > a {
		font-size: 15px;
    padding: 15px  !important;
}


/* section */

.top {
	width: 100%;
	  height: 100vh;
	  position: relative;
	      overflow: hidden;
}

.background-image {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  background-image: url('../images/main_wide.jpg');
  background-repeat: no-repeat;
  background-position: center top;
  background-attachment: fixed;
  background-size: cover;
}


.main-top {
	position: relative;
}

.top-logo {
    position: absolute;
    bottom: 300px;
    right: 100px;
}
.top-logo img {
	width: 500px;
}

section {
	width: 100%;
	margin: 0 auto ;
}

.profile-text {
	position: relative;
}

section h2,
.profile-text h2 {
	font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-style: normal;
	text-align: center;
    font-size: 50px;
    color: #7A5B3E;
    position: relative;
    margin-bottom: 20px;
   line-height: 100%;
}

section h2 ::before,
.profile-text h2 ::before {
    content: '';
    display: inline-block;
    width: 80px;
    height: 2px;
    background: #C0A877;
    margin-right: 16px;
    vertical-align: middle;
}
section h2 ::after,
.profile-text h2 :after {
    content: '';
    display: inline-block;
    width: 80px;
    height: 2px;
    background: #C0A877;
    margin-left: 16px;
    vertical-align: middle;
}

section h2 span,
.profile-text h2 span{
	display: block;
		font-size: .8rem;
		font-family: 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', 'MS PMincho', serif;
}



 .news-top {
            display: flex;
            flex-direction: column;
            width: 1100px;
            margin: 0 auto 100px;
        }
        
  .news-item {
            display: flex;
            padding: 15px 0;
            border-bottom: 1px solid  #e5e5e5;
        }
        
        .label {
            flex: 0 0 130px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(
  135deg,
  #A4845A 0%,  /* 明るめ */
  #7A5B3E 50%, /* ベース */
  #3D2913 100% /* さらに深いブラウン */
);
            border-radius: 50px;
            padding: 8px 20px;
            font-weight: 600;
            font-size: 14px;
            color: #fff;
            text-align: center;
            margin-right: 50px;
        }
        
        .date {
            flex: 0 0 150px;
            display: flex;
            align-items: center;
            font-size: 18px;
            font-weight: 500;
            color:  #444;
            margin-right: 20px;
        }
        
        .content {
            flex: 1;
            display: flex;
            align-items: center;
            font-size: 16px;
            line-height: 1.5;
        }
        
        a.news-item {
	        color: #222;
        }
        
      .news-button {
    display: block;
    background: #000;
    color: #fff;
    padding: 14px 40px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    margin: 40px auto 0;
    width: fit-content;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.news-button:hover {
    background-color: #7A5B3E;
    color: #fff;
}

/* 記事の pre next */

ul.page-single {
    text-align: center;
        margin-bottom: 40px;
    display: flex;
    justify-content: space-around;
}
}
   
     /* Video Slider */
     
     .video-content{
    width: 100%;
    padding-bottom: 50px;
}


.video-slider {
	width: 100%;
	overflow: hidden;
}

.video-slider .slick-slide {
    width: 800px; /* å„ã‚¹ãƒ©ã‚¤ãƒ‰ã®å¹…ã‚’800pxã«è¨­å®š */
  display: flex;
    justify-content: center; /* Flexboxã‚’ä½¿ã£ã¦ä¸­å¤®æƒãˆ */
    align-items: center;
    height: 100%; /* å¿…è¦ã«å¿œã˜ã¦é«˜ã•èª¿æ•´ */
    margin: 0 20px;
}

/* ãƒ¬ã‚¹ãƒãƒ³ã‚·ãƒ–å¯¾å¿œ */
@media (max-width: 840px) {
    .video-slider .slick-slide {
        width: 100%; /* ç”»é¢å¹…ãŒ840pxä»¥ä¸‹ã®å ´åˆã¯ã€å¹…ã‚’100%ã«èª¿æ•´ */
        height: auto;
    }
}

.slick-slide img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.video-slider .slick-slide a {
  position: relative;
  display: block;
  text-decoration: none;
}
 
.video-slider .slick-slide a:before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 10px solid #f2f2f2;
  width: 100px;
  height:100px;
}
 
.video-slider .slick-slide a:after {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  border-style: solid;
  border-color: transparent transparent transparent #f2f2f2;
  border-width: 15px 0 15px 25px;
}

lity-iframe .lity-container, .lity-youtube .lity-container, .lity-vimeo .lity-container, .lity-facebookvideo .lity-container, .lity-googlemaps .lity-container {
    width: 100%;
    max-width: 1200px;
}
.action {
	display: block;
	margin: 100px auto;
	width: 100%;
	text-align: center;
}
.action a {
	display: inline-block;
	padding: 5px 10px;
	background: #f30;
	color: #fff;
	text-decoration: none;
}
.action a:hover {
	background: #000;
}
.lity-close {
	font-size: 55px !important;
	width: 55px !important;
	height: 55px !important;
	z-index: 9999999999999999999;
}   

/* disco */

.disco-category {
	   display: flex;
	   justify-content: center;
	   margin: 30px auto;
}

.disco-category li a {
	color: #333;
    padding: 0 10px;
    border-radius: 20px;
    padding: 5px 10px;
    border: solid 1px #333;
    display: inline-block;
    font-size: 12px;
    margin: 0 10px;
}

.disco-list {
    display: flex;
    flex-wrap: wrap;
      width: 1100px;
    gap: 20px;
    margin: 0 auto 100px;
    }

.disco-list li {
    width: 32%;
    text-align: center;
}

.disco-list li a {
	color: #333;
}
.disco-list li img {
	width: 100%;
	height: auto;
}


.disco-list li h3 {
    font-size: 15px;
    line-height: 160%;
    margin: 0;
    padding: 10px 0 5px;
    font-weight: normal;
}

.disco-list li span {
    border-radius: 15px;
    padding: 5px 10px;
    border: solid 1px #ddd;
    display: inline-block;
    margin-bottom: 10px;
    font-size: 10px;
}

.disco-list li p {
    line-height: 180%;
    font-size: 10px;
    margin: 0;
}

.mailmagazine {
	width: 500px;
	margin: 0 auto 80px;
}

.mailmagazine img {
	width: 100%;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* profile */


.container {
  display: flex;
   flex-direction: row;
}

.profile-text {
  width: 50%;
  padding: 40px;
  background-color: #fdfdfd;
}

.profile-text h2 {
  margin-bottom: 20px;
}

.profile-text h3 {
  font-size: 22px;
  margin-top: 10px;
}
.profile-text h3 span {
	font-size: 14px;
	margin-left: 20px;
}

.profile-text p {
  margin-top: 16px;
  line-height: 1.8;
}

.profile-image {
  width: 50%;
  position: relative;
  background-color: #fff;
  display: flex;
  align-items:  flex-start;
  justify-content: center;
}

.profile-image img {
  width: 100% !important;
  max-height: 100%;
  object-fit: cover;
}

/* schedul */

.schedule-list-page {
	width: 1100px;
	margin: 0 auto;
	}

.schedule-list li {
	margin: 0 auto 40px;
	padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	position: relative;
	overflow: hidden;
}

.schedule-list li a {
	color:#7A5B3E;
}

.schedule-list time {
	padding: 10px;
	color: #fff;
	background: #7A5B3E;
	position: absolute;
	top: 0;
	left: 0;
}

.schedule-list h2 {
	text-align: left;
	font-size: 1.3rem;
	padding:  30px 0 20px;
}

.schedule-list h3 {
    font-size: 1.3rem;
    padding: 30px 0 20px;
}

	dl {
    margin: 20px auto 0;
    padding: 0 ;
    font-size: 15px;
    line-height: 180%;
}
 dt {
    width: 150px;
    float: left;
}

dd {
    margin-left: 150px;
    padding: 0 0 5px 20px;
    border-left: 1px solid #f2f2f2;
    margin-bottom: 20px;
}

.past {
	float: right;
	margin-bottom: 30px;
	margin-right: 100px;
}

.schedule-content {
	display: flex;
	justify-content: space-between;
}

.sc-top {
	margin: 0 auto;
    padding: 0;
        width: 85%;
}

dl {

    line-height: 180%;
}

.sc-top dt {
	float: left;
    margin-right: 20px;
    width: inherit;
    font-weight: bold;
}

.sc-top dd {
	font-size: 1.4rem;
	padding: inherit;
	margin: inherit;
	font-weight: bold;
}

span.month-day,
span.time {
    font-size: 1.4rem;
}

.sc-top h3 {
    font-size: 1.5rem;
    padding: inherit;
}

.sc-flyer {
	float: right;
	width: 15%;
	margin-left: 30px;
}

.sc-flyer img {
	width: 150px;
	height: auto;
}

.sc-flyer img {
  transition: transform 0.3s ease; /* アニメーションの設定 */
  display: block;
  width: 100%; /* 必要に応じて調整 */
  height: auto;
}

.sc-flyer:hover img {
  transform: scale(1.05); /* 1.05倍に拡大 */
}


/* from ikuko */

.from-ikuko {
	width: 800px;
	margin: 0 auto;
	}

/* off shot */

.offshot-title {
	text-align: center;
	width: 50%;
	line-height: 180%;
	margin: 0 auto 50px !important;
}
.site-main--offshot {
  max-width: min(1200px, 92vw);
  margin: 48px auto;
  padding: 0 8px;
}
.offshot-header { margin-bottom: 24px; }
.offshot-title {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 8px;
}
.offshot-excerpt { color: #666; }


/* === Grid for .offshot-content (2列固定) === */
.offshot-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 常に2列 */
  gap: 16px;
  line-height: 0; /* 画像下の余白防止 */
  width: 1200px;
}

.offshot-content {
  column-count: 2;
  column-gap: 16px;
}

.offshot-content img {
  display: block;
  margin-bottom: 16px;
  width: 100%;
  height: auto;
}


.offshot-content > p {
  margin: 0;
}

..offshot-content img {
  display: block;
  margin-bottom: 16px;
  width: 100%;
  height: auto;
}

.offshot-text{ 
	width: 500px;
	margin:12px auto 20px; 
	line-height:1.9; 
	font-size:15px; 
	color:#333;
	 }
	 
	 nav.offshot-post-nav {
    text-align: center;
}

/* news */

li, ol, ul {
    list-style: none;
}

.news-list {
	width: 100%;
  list-style-type: none; /* リストマーカーを非表示にする */
  padding: 0; /* パディングをリセットする */
}


.news-list li:first-of-type {
    border-top: 1px solid #ddd;
}
.news-list li {
    border-bottom: 1px solid #ddd;
}

.news-list li h2 {
	 font-size: 16px;
}

.news-list article {
    align-items: baseline;
    display: flex;
    padding: 25px 0;
    }

.date {
	flex: 0 0 7.5em;
    font-size: 1rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
	
	.news-list {
	width: auto;
	padding: 0 20px;
	}	
	
	.news-list li {
		font-size: 14px;
		padding: 15px 0;
	}
	
	.news-list li h2 {
    font-size: 14px;
    margin: 0;
}
.date {
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
    }
	
	.news-list article {
		display: inherit;
	}
	}
	
/* news single page */

.news-single {
	margin: 100px auto;
}

.news-single h1 {
	font-weight: bold;
	font-size: 
	1.4rem;
}

.news-single .date {
	color: #999;
	margin-bottom: 10px;
}

.news-single p {
	line-height: 1.8;
	font-size: 15px;
	text-align:justify;
}

@media (max-width: 768px) {
	
	.news-single {
		margin: 100px 20px;
	}
	.news-single p {
	font-size: 14px;
	}
	}
	
/* company */

.company {
	width: 800px;
	margin: 0 auto;
}

.company dl:first-child {
	  border-top: solid 1px #ddd;
	  padding-top: 30px;
}

.company dl {
    border-bottom: solid 1px #ddd;
    font-size: 14px;
    margin-bottom: 30px;
    padding-bottom: 30px;
}


.company dt {
    float: left;
    font-weight: bold;
}

.company dd {
    margin: 0 0px 0 150px;
}

/* single page */
.single-page {
	width: 1100px;
	margin: 0 auto;
}

/* link */

a.past {
	color: #7A5B3E;
	font-weight: bold;
	text-decoration: underline;
}

/* contact page */

	.space {
		height: 20px;
		width: 100%;
		overflow: hidden;
	}

.contact-form {
  width: 800px;
  margin: 0 auto;
}

label {
  display: block;
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 15px;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  font-size: 1em;
  border: 1px solid #ccc;
  box-sizing: border-box;
  margin-top: 5px;
}

.checkbox-container {
  margin: 20px 0;
}

.checkbox-label {
  font-size: 0.95em;
}

.note {
  font-size: 0.8em;
  margin-top: 5px;
}

.wpcf7-submit {
  background-color: #7A5B3E;
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 1.1em;
  cursor: pointer;
  display: block;
  margin: 30px auto 0;
  transition: background-color 0.3s;
}

button[type="submit"]:hover {
  background-color: #800;
}

.contact-foot {
	padding: 20px;
	background: #f2f2f2;
	border-radius: 5px;
	font-size: 15px;
	color: #333;
	line-height: 150%;
	margin: 50px auto 50px;
}


/* contact */



.form {
	background: #fff;
	padding: 20px 40px;
	color: #333;
	border-radius: 20px;
	margin: 0 auto;
	width: 600px;
}

.form dl {

	margin-bottom: 20px;
}

.form dt,
.form label {
	line-height: 46px;
}

.form dt {
	font-size: 14px;
}
.form dd {
	margin: 0;
}

.input-lg {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px;
}


.form-control {
    display: block;
    width: 96%;
    height: auto;
    padding: 2%;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #f8f8f8;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.form-control-one {
	display:  inline-block;
    width: 25%;
    height: auto;
    padding: 2%;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #f8f8f8;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.input-two {
	width: 49%;
	height: 46px;
}

.input-one {

	height: 20px;
}

.input-radio {
	margin-right: 20px;
}

.input-file {
	padding-top: 10px;
	margin-bottom: 10px;
}

dd.two_colum {
	display: flex;
	justify-content: space-between;
}

.screen-reader-response {
	margin: auto;
		text-align: center;
		width: 80%;
	}
	.wpcf7-validation-errors {
		text-align: center;
		color: red;
	}

span.wpcf7-list-item-label {
    margin-right: 20px;
}

.select-box select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.select-box select {
	width: 100%;
	padding: 10px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 1px solid #999;
	background: #f8f8f8;
	background: url("../images/select-arrow.png") right 50% no-repeat, -webkit-linear-gradient(top, #fff 0%,#f8f8f8 100%);
	background: url("../images/select-arrow.png") right 50% no-repeat, linear-gradient(to bottom, #fff 0%,#f8f8f8 100%);
	background-size: 20px, 100%;
}

.flex-center {
	text-align: center;
}

.final-bottom {
    flex: auto;
    margin: 30px auto;
    width: 260px;
}

.btn-radius {
    width: 260px;
    height: 50px;
    border-radius: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    line-height: 1;
    border: 1px solid #CCC;
    background: #ff644b;
    font-weight: bold;
    color: #FFF;
    font-size: 16px;
}


    
/* form */

small {
	display: inline-block;
    margin: 0 0 15px;
}

.form p {
	font-size: 14px;
}





/* footer */

footer {
	width: 100%;
	margin: 0 auto;
	background: #000;
	overflow: hidden;
}


.foot-bottom {
	width: 100%;
	padding: 40px 0 5px;
	text-align: center;
}
.sns-bottom {
	list-style: none;
    padding: 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.sns-bottom li a {
    font-size: 1.8rem;
    padding: 10px;
    color: #fff;
}

.copy-txt {
	text-align: center;
	font-size: 10px;
	color: #fff;
}

.copy {
	text-align: center;
	font-size: 12px;
	color: #fff;
}

.single-page p {
	line-height: 180%;
}


/* pagenation */

.navigation.pagination {
  margin: 32px 0;
  text-align: center;
}

.navigation.pagination .nav-links {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

/* SR-only（テーマに無ければ有効化） */
.navigation.pagination .screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ボタン共通 */
.navigation.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
  transition: color .2s ease, border-color .2s ease, transform .15s ease, background .2s ease;
}

/* ホバー（リンクのみ） */
.navigation.pagination a.page-numbers:hover {
  border-color: #7A5B3E;
  color: #7A5B3E;
  transform: translateY(-1px);
}

/* 現在ページ */
.navigation.pagination .page-numbers.current,
.navigation.pagination .page-numbers[aria-current="page"] {
  background: #7A5B3E;
  color: #fff;
  border-color: #7A5B3E;
  pointer-events: none;
  font-weight: 700;
}

/* フォーカス可視化 */
.navigation.pagination .page-numbers:focus-visible {
  outline: 2px solid #7A5B3E;
  outline-offset: 2px;
}

/* 省略記号 */
.navigation.pagination .page-numbers.dots {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  min-width: auto;
  padding: 0 4px;
}

/* 前後矢印 */
.navigation.pagination .prev.page-numbers::before { content: "‹"; margin-right: .35em; }
.navigation.pagination .next.page-numbers::after  { content: "›"; margin-left:  .35em; }

/* モバイル最適化 */
@media (max-width: 480px) {
  .navigation.pagination .page-numbers {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    font-size: 13px;
  }
  .navigation.pagination .nav-links { gap: 6px; }
}


/* ============ SP (≤768px) ============ */
@media (max-width: 768px) {

  /* -------- Layout / spacing -------- */
  .single-page { width: auto; margin: 0 20px; }
  main, .main-top { margin-top: 60px; }

  /* mail magazine */
  .mailmagazine { width: auto; margin: 0 20px 40px; padding: 0; }
  .mailmagazine img { width: 100%; height: auto; }

  /* hide desktop-only */
  .fixbar, .logo { display: none; }

  /* -------- Header / sp menu -------- */
  header { padding: 0; width: 100%; z-index: 9; }
  .sp-menu {
    display: block;              /* inherit → 明示 */
    position: fixed;
    width: 100%;
    z-index: 9;
  }
  .header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 60px;
  }

  .menu-icon {
    position: relative;
   right: 20px;
    height: 28px; 
    width: 28px;
    cursor: pointer; 
    z-index: 9999;
  }
  .bar, .bar:before, .bar:after {
    height: 2px; position: absolute; content: "";
    background-color: #222; transition: all 250ms ease-in-out;
  }
  .bar { width: 25px; top: 13.5px; }
  .bar:before { width: 30px; top: -10px; }
  .bar:after  { width: 20px; top: 10px; }

  .menu-icon:hover .bar,
  .menu-icon:hover .bar:before,
  .menu-icon:hover .bar:after { background-color: #333; }
  .menu-icon:hover .bar,
  .menu-icon:hover .bar:after { width: 30px; }

  .bar--active, .bar--active:before, .bar--active:after { background-color: #fff; }
  .bar--active { width: 30px; }
  .bar--active:before {
    transform: translate(14px, 4px) rotate(45deg);
    width: 20px;
  }
  .bar--active:after {
    transform: translate(14px, -4px) rotate(-45deg);
    width: 20px !important;
  }

  .overlay {
    width: 100%; height: 100%;
    display: flex; justify-content: center; align-items: center;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.8);
    z-index: 999;
    opacity: 0;
    transition: all 300ms ease-in-out;
    transform: translateX(100%);
  }
  .overlay--active { opacity: 0.95; transform: translateX(0); }
  .overlay li a {
    color: #fff; line-height: 2; font-size: 1.2rem;
    text-decoration: none; font-family: "Noto Serif JP", serif; font-weight: 700;
  }
  .list { padding: 0; margin: 0; list-style: none; text-align: center; }
  .items { margin-bottom: 30px; }

  .links {
    color: #fff; font-size: 1.5rem; /* 2em→少し控えめ */
    text-decoration: none; position: relative;
  }
  .links:after {
    content: ""; position: absolute; bottom: 0; left: 0; width: 0%;
    border-bottom: 1px solid #fff; transition: width 300ms ease-in;
  }
  .links:hover { color: #FF530D; }
  .links:hover:after { width: 100%; }

  .mini { font-size: 8px; letter-spacing: -0.06em; }

  /* SNS */
  .sp-sns {
    position: absolute; right: 60px; top: 8px;
    display: flex; gap: 6px; /* float排除 */
  }
  .sp-sns a {
    display: inline-flex; justify-content: center; align-items: center;
    width: 35px; height: 35px; border-radius: 50%;
    color: #fff; font-size: 1.5rem;
  }
  .sp-sns a img { width: 20px; height: auto; margin-top: -3px; margin-left: -1px; }
  .sp-sns a:hover { opacity: 0.6; }

  /* sp logo */
  .sp-logo {
    position: absolute; top: 12px; left: 15px;
    display: block;
    text-shadow: 0 0 15px #fff;
    font-family: 'Jost', sans-serif;
    color: #fff; letter-spacing: 2px; font-size: 1.4rem;
  }
  .sp-logo a { color: #fff; }
  .sp-logo a:hover { text-decoration: none; opacity: 0.6; }
  .sp-logo img { width: auto; height: 40px; }

  /* -------- Top / news -------- */
  .background-image { background-position: center top; background-size: cover; }

  section h2 { font-size: 32px; margin: 10px 20px; } /* 40px→32px, 左右余白追加 */

  .news-top { width: 100%; }
  .news-item {
    display: block;                /* ruby → block に修正 */
    padding: 0 20px; margin: 10px 0;
  }
  .label {
    width: 50px; margin-right: 20px; font-size: 11px; padding: 4px 10px;
  }
  .content { padding: 10px 0; }

  .video-slider .slick-slide a:before { border: 5px solid #f2f2f2; width: 30px; height: 30px; }
  .video-slider .slick-slide a:after { border-width: 8px 0 8px 15px; }

  .copy-txt { padding: 0 20px; }

  /* slider */
  .banner-slider { margin: 60px auto 0; }

  /* -------- Profile -------- */
  a.en { position: absolute; top: 20px; right: 20px; }
  .profile-text { padding: 20px; }

  .container { display: flex; flex-direction: column; }
  .profile-text { width: auto; order: 2; }
  .profile-image { width: auto; position: static; order: 1; }

  /* -------- Schedule -------- */
   .schedule-list-page {
	width: 100%;
	}
  .schedule-list li {
    width: 90%; margin: 0 auto 20px; padding: 10px 15px; box-sizing: border-box;
  }
  .schedule-content { display: block; }  /* inherit → block */
  .sc-top { padding: 10px; width: 100%; }

  .schedule-list time { font-size: 14px; padding: 7px 10px; }
  .schedule-list h2 { font-size: 1rem; }
  dl { font-size: 14px; margin: 0; }
  dt { width: 100%; font-weight: bold; }
  dd { margin: 0 0 20px; padding: 0; border: none; }

  .schedule-list img { width: 100%; height: auto; }

  .past {
    margin: 0 auto 30px; display: block; text-align: center; float: none;
  }
  .sc-top dt { float: none; margin-bottom: 10px; }
  .sc-flyer { float: none; width: 80%; margin: 0 auto 20px; }

/* schedule single */

#schedule-single,
#offshot {
	padding-top: 70px;
	}

/* from ikuko */

.from-ikuko {
	width: 100%;
	}
  /* -------- Off shot -------- */
  .offshot-content {
    width: 100%;
    display: grid;               /* 明示 */
    grid-template-columns: 1fr;  /* 1列 */
    gap: 16px;
  }
  .offshot-title { padding-top: 20px; }
  .offshot-text {
	  width: auto;
	  margin: 20px;
	   }
  
 

  /* -------- Discography -------- */
  .disco-list {
    width: 100%;
    display: flex; flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 10px;
  }
  .disco-list li { width: 40%; padding: 0 0 10px; }
  .disco-list li span { font-size: 8px; }

  .disco-single h3 { text-align: center; }

.disco-category {
  display: flex;
  flex-wrap: wrap;          /* ← 折り返して2列に */
  justify-content: center;
  gap: 10px 0px;           /* 行・列の間隔 */
  margin: 30px auto;
  padding: 0;
  list-style: none;
}
  .disco-category li a {
    font-size: 10px; margin: 0 5px;
  }
  
  .btn-content
特異性: (0,1,0)
 {
    display: flex;
    justify-content: space-evenly;
    margin: 20px 0;
}
  

  .music-link { justify-content: center; }

  /* -------- Single / Contact -------- */
  .title-bg { margin-top: 100px; }

  .contact-form {
    width: auto; margin: 0 20px; max-width: 90%;
  }

  /* -------- Headlines micro-breakpoints -------- */
  @media (max-width: 475px) {
    .headline { margin-left: 15px; transform: translateY(-160px); }
  }
  @media (min-width: 475px) {
    .headline { transform: translateY(0); }
  }
}
/* ============ /SP ============ */
