@charset "UTF-8";

/* 基本色 */
:root {
	--main-color: #5D9AB2;
	--accent-color: #BF6A7A;
	--dark-main-color: #2B5566;
	--text-bright-color: #fff;
	--icon-color: #fff;
	--icon-bk-color: #ddd;
	--gray-color: #ddd;
	--large-width: 1000px;
	--middle-width: 800px;
	--ink:#1d2b36;
    --muted:#4b778b;
    --sunday:#c64232;
    --line:#e5e7ea;
    --maxw:950px;
}

/* 基本設定： フォントサイズ */
@media (max-width: 599px) {
	:root {
		font-size: 14px;
	}
}

@media (min-width: 600px) and (max-width: 799px) {
	:root {
		font-size: 16px;
	}
}

@media (min-width: 800px) {
	:root {
		font-size: 18px;
	}
}

body {font-size: 16px;}


@font-face {
    font-family: 'League Gothic';
    src: url('../font/webfonts/leaguegothic-regular-webfont.eot');
    src: url('../font/webfonts/leaguegothic-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../font/webfonts/leaguegothic-regular-webfont.woff') format('woff'),
         url('../font/webfonts/leaguegothic-regular-webfont.ttf') format('truetype'),
         url('../font/webfonts/leaguegothic-regular-webfont.svg#league_gothicregular') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
  font-family: 'Kollektif';
  src: url('../font/Kollektif/Kollektif.eot?#iefix') format('embedded-opentype'),  
  		url('../font/Kollektif/Kollektif.woff') format('woff'), 
  		url('../font/Kollektif/Kollektif.ttf')  format('truetype'), 
  		url('../font/Kollektif/Kollektif.svg#Kollektif') format('svg');
  font-weight: normal;
  font-style: normal;}
@font-face {
    font-family: 'Panton-LightCaps';
    src: url('../font/Panton-LightCaps.eot');
    src: url('../font/Panton-LightCaps.eot?#iefix') format('embedded-opentype'),
         url('../font/Panton-LightCaps.woff') format('woff'),
         url('../font/Panton-LightCaps.ttf') format('truetype'),
         url('../font/Panton-LightCaps.svg#league_gothicregular') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'AozoraMinchoMedium';
    src: url('../font/AozoraMinchoMedium.eot');
    src: url('../font/AozoraMinchoMedium.eot?#iefix') format('embedded-opentype'),
         url('../font/AozoraMinchoMedium.woff') format('woff'),
         url('../font/AozoraMinchoMedium.ttf') format('truetype'),
         url('../font/AozoraMinchoMedium.svg#league_gothicregular') format('svg');
    font-weight: normal;
    font-style: normal;
}


.container{
	margin:0 auto;
}
/* ===== Hero（常時有効：メディアクエリの外に置く） ===== */
:root{
  --header-h: 70px;                /* PCのヘッダー高 */
  --hero-overlay: rgba(0,0,0,.42);
  --hero-title: #fff;
  --hero-sub: #f0f4f8;
}

/* スマホでヘッダーが少し低いなら調整 */
@media (max-width: 767px){
  :root{ --header-h: 56px; }
}

.hero{
  /* 他の section の干渉を受けないように */
  all: unset;
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 100%;
  /* ヘッダーに被らないように上に余白を確保 */
  padding-top: var(--header-h);
  min-height: 68svh;               /* 画面高に応じて伸縮 */
  text-align: center;
  color: var(--hero-title);
  overflow: hidden;
  box-sizing: border-box;

  /* 画像パスは CSS から見て ../img/ が正しければこのままでOK */
  background-image: url('../img/liveheaderimg.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* 文字の視認性向上オーバーレイ */
.hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,.25) 0%,
    var(--hero-overlay) 60%,
    rgba(0,0,0,.35) 100%);
  pointer-events: none;
  z-index: 0;
}

/* コンテンツは上に */
.hero-content{
  position: relative;
  z-index: 1;
  padding-inline: 4vw;
  box-sizing: border-box;
}

/* タイトル */
.hero h1{
  margin: 0 0 .6em;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: .04em;
  font-size: clamp(32px, 6vw, 72px);
  text-shadow: 0 10px 30px rgba(0,0,0,.35), 0 2px 10px rgba(0,0,0,.35);
}

/* サブタイトル */
.hero h2{
  margin: 0;
  font-weight: 500;
  letter-spacing: .12em;
  color: var(--hero-sub);
  font-size: clamp(16px, 2.8vw, 28px);
  text-shadow: 0 6px 18px rgba(0,0,0,.3);
}

/* 細かいレスポンシブ微調整 */
@media (max-width: 1024px){
  .hero{ min-height: 60svh; }
}
@media (max-width: 768px){
  .hero{ min-height: 54svh; }
  .hero h1{ letter-spacing: .03em; }
  .hero h2{ letter-spacing: .08em; }
}
@media (max-width: 480px){
  .hero{ min-height: 46svh; }
  .hero-content{ padding-inline: 5vw; }
  .hero h1{ font-weight: 900; }
}
@media (orientation: landscape) and (max-height: 600px){
  .hero{ min-height: 56svh; }
}
@media (prefers-reduced-motion: reduce){
  .hero, .hero *{ animation: none; transition: none; }
}

/* ======================= “LIVEに関してのお問合せ” をフッター風から独立したCTAカードへ ======================== */
/* ===== お問い合わせカード ===== */
.cta-inquiry {
  max-width: 1000px;
  margin: 40px auto;
  padding: 32px 24px;
  background: #fff;
  border: 1px solid var(--komaki-line, #e5e7ea);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  color: #16303b;
  text-align: center;
}

/* タイトルを見出し風に強調 */
.cta-inquiry .cta-title {
  display: inline-block;
  margin-bottom: 24px;
  padding: 8px 24px;
  font-weight: 800;
  font-size: clamp(22px, 3vw, 28px);
  letter-spacing: 0.05em;
  color: #2B5566;                /* ヘッダー／フッターと馴染む色 */
  border-bottom: 3px solid #5D9AB2; /* メインカラーライン */
}

/* 本文 */
.cta-info p {
  margin: 0;
  line-height: 1.8;
  font-size: 16px;
  color: #294b57;
}
.cta-info span {
  font-size: 90%;
  opacity: .8;
}
}
@media (max-width: 640px) {
  .cta-inquiry {
    padding: 24px 16px;
  }
  .cta-inquiry .cta-title {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .cta-info p {
    font-size: 14px;
  }
}
/*------------------------------------------------------------------------------------------------------------------ｐｃサイズ*/
@media screen and (min-width:768px){
body {
	background-color: #f4f4f4;
}
html{
	font-size:13px;
}
img[src=".svg"]	{width:100%;}
/* <IEの対応↑> */
#pagetop{
	position:fixed;
	width:90px; height:40px;
	z-index:10;
	right:0px;
	bottom:0;
	margin-right:0px;
	background:url("../img/page-top.gif") 0 0 no-repeat;
}
#pagetop:hover{
background-position:0 -41px;
}
/* <トップページへ戻るjava↑> */
.container{
	width:1000px;
}


.wrap h1{
	width:960px;
	border-bottom: solid 2px #c43717;
	padding-top:30px;
	font-weight:normal;
	font-family:'Kollektif';
	font-size:30px;
	color:#322d2e;
}

.item{
	overflow:hidden;
}
.nunber ol h2{
	font-weight:normal;
	font-family:'Kollektif';
	font-size:25px;
	font-weight: bold;
	letter-spacing:0.3em;
}
.nunber ol{
	counter-reset:list;
	list-style-type:none;
	font: 13px/1.6 'arial narrow', sans-serif;
	padding:0;
}
.nunber ol li{
  position:relative;
  padding: 0 0 0 30px;
  margin: 7px 0 7px 20px;
  font-size:13px;
  line-height: 25px;
}
.nunber ol li:before{
  counter-increment: list;
  content: counter(list);
  position: absolute;
  left: -10px;
  width: 30px;
  height: 30px;
  text-align: center;
  color: #fff;
  line-height:30px;
  background: #d14627;
  border-radius: 50%;
  top: 12%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.nunber ol li span{
	font-size:12px;
	color: #de8853;
}
.nunber{
	width:60%;
	float:left;
}
.nunber2{
	width:35%;
	float:left;
}
.live{
	margin-bottom:70px;
}
.live p{
	font-size:13px;
	font-family:'Kollektif';
	font-weight:normal;
	line-height: 33px;
	margin-left:35px;
}
.live ol h2{
	font-weight:normal;
	font-family:'Kollektif';
	font-size:23px;
}
.live ol{
	counter-reset:list;
	list-style-type:none;
	font: 13px/1.6 'arial narrow', sans-serif;
	padding:0;
}
.live ol li{
  position:relative;
  padding: 0 0 0 30px;
  margin: 7px 0 7px 20px;
  font-size:13px;
  line-height: 25px;
}
.live ol li p{
	font-weight:normal;
	font-family:'Kollektif';
	font-size:13px;
	margin-left:0px;
	margin-top:-13px;
	line-height: 25px;
}
.live ol li:nth-child(3){
	margin-top:10px;
}
.live ol li:before{
  counter-increment: list;
  content: counter(list);
  position: absolute;
  left: -10px;
  width: 30px;
  height: 30px;
  text-align: center;
  color: #fff;
  line-height:30px;
  background: #d14627;
  border-radius: 50%;
  top: 17%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#yoyaku{
	text-align:center;
}
#wechat p{
	font-size:19px;
}
#wechat img{
	width:5%;
}
.Payment{
	margin-bottom:70px;
}
.Payment p{
	font-size:14px;
	font-family:'Kollektif';
	font-weight:normal;
	line-height: 40px;
	margin-left:35px;
}
.Payment span{
	color:#eb7725;
}
.Payment table{
  width: 800px;
  border-collapse: collapse;
  margin:0 auto;
}
.payspan{
	color:#000 !important;
	display:inline-block;
	margin-top:10px;
}
.Payment table th{
  background: #5c9ad5;
  color:#fff;
}
.Payment table tr{
	font-size:16px;
	font-family:'Kollektif';
	font-weight:normal;
}
.Payment table tr:nth-child(2){
  background: #d1dcee;
}
.Payment table tr:nth-child(3){
  background: #e8eff7;
}
.Payment table tr:nth-child(4){
  background: #d1dcee;
}
.Payment table th,table td{
  border:solid 1px white;
  text-align: left;
  padding: 10px 10px;
}
.otherlivespace{
	margin-bottom:100px;
}
.otherlivespace p{
	font-size:16px;
	font-family:'Kollektif';
	font-weight:normal;
	margin-left:35px;
}
.otherlivespace p img{
	margin-left:-20px;
}

}


/*------------------------------------------------------------------------------------------------------------------タブレットサイズ*/
@media screen and (max-width:768px) and (min-width:481px){
body {
	background-color: #f4f4f4;
}
html{
font-size:15px;
}
#pagetop{position:fixed;
width:90px; height:40px;
z-index:10;
right:0px;
bottom:0;
margin-right:0px;
background:url("../img/page-top.gif") 0 0 no-repeat;
}
#pagetop:hover{
background-position:0 -41px;
}
/* <トップページへ戻るjava↑> */

.container{
	width:98%;
}

.wrap h1{
	width:98%;
	border-bottom: solid 2px #c43717;
	padding-top:8%;
	font-weight:normal;
	font-family:'Kollektif';
	font-size:28px;
	color:#322d2e;
}

.item{
	overflow:hidden;
}
.nunber ol h2{
	font-weight:normal;
	font-family:'Kollektif';
	font-size:24px;
	font-weight: bold;
}
.nunber ol{
	counter-reset:list;
	list-style-type:none;
	font: 13px/1.6 'arial narrow', sans-serif;
	padding:0;
}
.nunber ol li{
  position:relative;
  padding: 0 0 0 30px;
  margin: 7px 0 7px 20px;
  font-size:13px;
  line-height: 20px;
}
.nunber ol li:before{
  counter-increment: list;
  content: counter(list);
  position: absolute;
  left: -2%;
  width: 30px;
  height: 30px;
  text-align: center;
  color: #fff;
  line-height:28px;
  background: #d14627;
  border-radius: 50%;
  top: 6%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.nunber ol li span{
	font-size:12px;
	color: #de8853;
}
.nunber{
	width:50%;
	float:left;
}
.nunber2{
	width:45%;
	float:left;
}
.nunber2 img{
	width:100%;
	margin-top:10%;
	margin-left:3%;
}
.live{
	margin-top:-5%;
	margin-bottom:5%;
	width:98%;
}
.live p{
	font-size:13px;
	font-family:'Kollektif';
	font-weight:normal;
	line-height: 33px;
	margin-left:1%;
}
.live ol h2{
	font-weight:normal;
	font-size:22px;
}
.live ol{
	counter-reset:list;
	list-style-type:none;
	font: 13px/1.6 'arial narrow', sans-serif;
	padding:0;
}
.live ol li{
  position:relative;
  padding: 0 0 0 30px;
  margin: 7px 0 7px 20px;
  font-size:13px;
  line-height: 25px;
}
.live ol li p{
	font-weight:normal;
	font-family:'Kollektif';
	font-size:13px;
	margin-left:0px;
	margin-top:-13px;
	line-height: 25px;
}
.live ol li:before{
  counter-increment: list;
  content: counter(list);
  position: absolute;
  left: -10px;
  width: 30px;
  height: 30px;
  text-align: center;
  color: #fff;
  line-height:30px;
  background: #d14627;
  border-radius: 50%;
  top: 17%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#yoyaku{
	text-align:center;
}
#yoyaku img{
	width:90%;
}
#wechat p{
	font-size:19px;
}
#wechat img{
	width:5%;
}
.Payment{
	margin-bottom:5%;
}
.Payment p{
	font-size:13px;
	font-family:'Kollektif';
	font-weight:normal;
	line-height:30px;
	margin-left:1%;
}
.Payment span{
	color:#eb7725;
}
.Payment table{
  width: 98%;
  border-collapse: collapse;
  margin:0 auto;
}
.payspan{
	color:#000 !important;
	display:inline-block;
	margin-top:2%
}
.Payment table th{
  background: #5c9ad5;
  color:#fff;
}
.Payment table tr{
	font-size:16px;
	font-family:'Kollektif';
	font-weight:normal;
}
.Payment table tr:nth-child(2){
  background: #d1dcee;
}
.Payment table tr:nth-child(3){
  background: #e8eff7;
}
.Payment table tr:nth-child(4){
  background: #d1dcee;
}
.Payment table th,table td{
  border:solid 1px white;
  text-align: left;
  padding: 10px 10px;
}
.otherlivespace{
	margin-bottom:5%;
}
.otherlivespace p{
	font-size:16px;
	font-family:'Kollektif';
	font-weight:normal;
	margin-left:2%;
}
.otherlivespace p img{
	width:100%;
	margin-left:-2%;
}

}
/*--------------------------------------------------------------------------------------------------スマホサイズ*/
@media screen and (max-width:480px){
body {
	background-color: #f4f4f4;
}
html{
font-size:16px;
}
#pagetop{display:none;}
/* <トップページへ戻るjava↑> */

.container{
	width:98%;
}

.wrap h1{
	width:98%;
	border-bottom: solid 2px #c43717;
	padding-top:8%;
	font-weight:normal;
	font-family:'Kollektif';
	font-size:5vw;
	color:#322d2e;
}

.livespecetext span{
	font-size:3.5vw;
	letter-spacing:-0.05em;
}
.nunber{
	width:97%;
}
.nunber ol h2{
	font-weight:normal;
	font-family:'Kollektif';
	font-size:24px;
	font-weight: bold;
}
.nunber ol{
	counter-reset:list;
	list-style-type:none;
	font: 13px/1.6 'arial narrow', sans-serif;
	padding:0;
}
.nunber ol li{
  position:relative;
  padding: 0 0 0 30px;
  margin: 7px 0 7px 20px;
  font-size:13px;
  line-height: 20px;
}
.nunber ol li:before{
  counter-increment: list;
  content: counter(list);
  position: absolute;
  left: -2%;
  width: 30px;
  height: 30px;
  text-align: center;
  color: #fff;
  line-height:28px;
  background: #d14627;
  border-radius: 50%;
  top: 6%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.nunber ol li span{
	font-size:12px;
	color: #de8853;
}
.nunber2{
	text-align:center;
}
.nunber2 img{
	width:50%;
}
.live{
	margin-top:-5%;
	margin-bottom:5%;
	width:98%;
}
.live p{
	font-size:2.6vw;
	font-family:'Kollektif';
	font-weight:normal;
	line-height: 30px;
	margin-left:1%;
}
.live ol h2{
	font-weight:normal;
	font-size:4vw;
}
.live ol{
	counter-reset:list;
	list-style-type:none;
	font: 13px/1.6 'arial narrow', sans-serif;
	padding:0;
}
.live ol li{
  position:relative;
  padding: 0 0 0 30px;
  margin: 7px 0 7px 20px;
  font-size:2.6vw;
  line-height: 25px;
}
.live ol li p{
	font-weight:normal;
	font-family:'Kollektif';
	font-size:2.6vw;
	margin-left:0px;
	margin-top:-13px;
	line-height: 25px;
}
.live ol li:before{
  counter-increment: list;
  content: counter(list);
  position: absolute;
  left: -10px;
  width: 30px;
  height: 30px;
  text-align: center;
  color: #fff;
  line-height:30px;
  background: #d14627;
  border-radius: 50%;
  top: 17%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#yoyaku{
	text-align:center;
}
#yoyaku img{
	width:90%;
}
#wechat p{
	font-size:4vw;
}
#wechat img{
	width:5%;
}
.Payment{
	margin-bottom:5%;
}
.Payment p{
	width:97%;
	font-size:2.7vw;
	font-family:'Kollektif';
	font-weight:normal;
	line-height:28px;
	margin-left:1%;
}
.Payment span{
	color:#eb7725;
}
.Payment table{
  width: 98%;
  border-collapse: collapse;
  margin:0 auto;
}
.Payment table tr td img:nth-child(1){
	width:100%;
}
.Payment table tr td img:nth-child(2){
	width:100%;
}
.Payment table tr td img:nth-child(3){
	width:100%;
}
.Payment table tr td:nth-child(1){
	width:30%;
}
.Payment table tr td:nth-child(2){
	width:30%;
}
.Payment table tr td:nth-child(3){
	width:30%;
}
.payspan{
	color:#000 !important;
	display:inline-block;
	margin-top:2%
}
.Payment table th{
  background: #5c9ad5;
  color:#fff;
}
.Payment table tr{
	font-size:3vw;
	font-family:'Kollektif';
	font-weight:normal;
}
.Payment table tr:nth-child(2){
  background: #d1dcee;
}
.Payment table tr:nth-child(3){
  background: #e8eff7;
}
.Payment table tr:nth-child(4){
  background: #d1dcee;
}
.Payment table th,table td{
  border:solid 1px white;
  text-align: left;
  padding: 10px 10px;
}
.otherlivespace{
	margin-bottom:5%;
}
.otherlivespace p{
	font-size:3vw;
	font-family:'Kollektif';
	font-weight:normal;
	margin-left:2%;
}
.otherlivespace p img{
	width:100%;
	margin-left:-2%;
}

}


/* ----------------------------------------------------------------------------------------フッター */
footer {
	color: #fff;
	color: var(--text-bright-color);
	background-color: #2B5566;
	background-color: var(--dark-main-color);
}
footer .container {
	padding: 40px 20px;
}
/* デスクトップ版（768px以上のサイズ） */
@media (min-width: 768px) {
	footer .container {
		display: flex;
		flex-wrap: wrap;
		max-width: 1000px;
		max-width: var(--large-width);
		margin-left: auto;
		margin-right: auto;
	}

	.footA {
		flex: 0 0 40%;
	}

	.footB {
		flex: 0 0 60%;
	}

	.footC {
		flex: 0 0 100%;
	}
}


/* フッターA： サイト情報 */
.footA {
	margin-bottom: 30px;
}
.footA h2 {
	margin-top: 0;
	margin-bottom: 10px;
	font-family: 'Montserrat', sans-serif;
	font-size: 30px;
	letter-spacing: 0.2em;
}
.footA p {
	margin-top: 0;
	margin-bottom: 0;
	font-size: 14px;
}
.footA a {
	color: inherit;
	text-decoration: none;
}

/* ====== footB: フッターメニュー（新バージョン） ====== */
.footB {
  margin: 30px 0;
}

.footB ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* 中央揃え */
  gap: 20px;               /* 各リンク間の余白 */
  padding: 0;
  margin: 0;
  list-style: none;
}

.footB a {
  display: inline-block;
  padding: 8px 20px;
  color: #fff;
  color: var(--text-bright-color);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.footB a:hover {
  background-color: rgba(255,255,255,0.15); /* ホバー時に淡い背景 */
  transform: translateY(-2px);              /* 浮き上がり感 */
}

/* フッターC： コピーライト */
.footC {
	font-size: 12px;
	text-align: center;
	font-family: 'Montserrat', sans-serif;
}

/* フッターD： コピーライト */
.footD {
	margin-top: 20px;
}
.footD ul {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
}
.footD a {
	display: block;
	margin-right: 8px;
	padding: 0px;
	color: inherit;
	font-size: 16px;
	text-decoration: none;
	border: solid 1px currentColor;
	width: 2em;
	line-height: 2em;
	border-radius: 50%;
	text-align: center;
}
.footD a:hover {
	background-color: rgba(0,0,0,0.3);
}

/* -----------------------------------------------------------------------------------------------ヘッダー */
header {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	background-color: rgba(255,255,255,0.9);
}
.nohero header {
	position: static;
	border: solid 1px #ddd;
	border-bottom: solid 1px var(--gray-color);
}

/* ヘッダーA: サイト名 */
.headA {
  display: inline-block;
  line-height: 70px;
  padding-left: 20px;
  padding-right: 20px;
  background-color: var(--main-color);
  color: var(--text-bright-color) !important; /* ←強制 */
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  text-decoration: none;
}

/* ヘッダーB： ナビゲーションメニュー */
.headB ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.headB a {
	display: block;
	padding: 15px;
	color: inherit;
	font-size: 12px;
	text-decoration: none;
}

.headB a:hover {
	background-color: rgba(0,0,0,0.3);
}

/* デスクトップ版（768px以上のサイズ） */
@media (min-width: 768px) {
	header .container {
		display: flex;
		align-items: center;
		justify-content: space-between;
		max-width: 1000px;
		max-width: var(--large-width);
		margin-left: auto;
		margin-right: auto;
	}

	.headB ul {
		display: flex;
	}
}


/* ヘッダーC： トグルボタン */

@media (max-width: 767px) {
	/* 小さい画面用の設定 */
	header .container-small {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.headC {
		margin-right: 10px;
		padding: 0;
		border: none;
		outline: none;
		background: none;
		font-size: 28px;
		opacity: 0.5;
		cursor: pointer;
	}

	.headC:hover {
		opacity: 0.3;
	}

	.headB {
		display: none;
	}
}

@media (min-width: 768px) {
	/* 大きい画面用の設定 */
	.headC {
		display: none;
	}

	.headB {
		display: block !important;
	}
}

