@charset"utf-8";

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


html,body {
	height: 100%;
}
body {
	max-width: 100%;
	font-family: 'Spectral','Noto Sans JP';
	overflow-x: hidden;
}
.sp {
	font-family: 'Spectral';
}
.nts {
	font-family: 'Noto Sans JP';
}
p {
	font-size: 14px;
}
a {
	text-decoration: none;
	color: #000;
}
img {
	vertical-align: top;
}

.medium-heading {
	letter-spacing: 0.15rem;
	font-size: 16px;
	font-weight: bold;
}
.sub-heading {
	font-weight: 700;
}
.text {
	letter-spacing: 0.05rem;
	font-weight: 400;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  background: #fff;
}
.flex-box-sp {
	display: flex;
}

/*アニメーション*/
.fade-in-left {
   opacity: 0;
   animation-name: fadein-left;
   animation-duration: 1.5s;
   animation-timing-function: ease-out;
   animation-fill-mode: forwards;
}
@keyframes fadein-left {
   0% {
      opacity: 0;
      transform: translateX(-20px);
   }
   100% {
      opacity: 1;
      transform: translateX(0);
   }
}

.fade-in-bottom {
	opacity: 0;
	animation-name: fadein-bottom;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
	animation-delay: .5s;
}
@keyframes fadein-bottom {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.slide-bottom {
	opacity: 0;
	transform: translateY(10px);
	transition: all 1.3s 0s ease-out;
}
.slide-left {
	opacity: 0;
	transform: translate(-20px, 0);
	transition: all 1s ease-out;
}






/*------------------------------

  ハンバーガーメニュー

------------------------------*/
/*固定*/
.drawer {
  top: 0;
  position: fixed;
  z-index: 100;
  height: 60px;
  width: 100%;
}

/* チェックボックス非表示 */
.drawer-hidden {
  display: none;
}

/* アイコン設置スペース */
.drawer-open {
  margin: 7px 0 0 3px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100;
  cursor: pointer;
}

/* アイコン */
.drawer-open span,
.drawer-open span:before,
.drawer-open span:after {
  content: '';
  display: block;
  height: 1px;
  width: 20px;
  background: #333;
  transition: 0.8s;
  position: absolute;
  background-color: #fff;
}

/* 一番上の棒の位置調整 */
.drawer-open span:before {
  bottom: 7px;
}

/* 一番下の棒の位置調整 */
.drawer-open span:after {
  top: 7px;
}

/* アイコンクリックで真ん中の線を透明にする */
#drawer-check:checked ~ .drawer-open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンクリックで上下の線を回転 */
#drawer-check:checked ~ .drawer-open span::before {
  bottom: 0;
  transform: rotate(45deg);
  background-color: #000;
}

#drawer-check:checked ~ .drawer-open span::after {
  top: 0;
  transform: rotate(-45deg);
  background-color: #000;
}

/*スクロールで色変更*/
.drawer-open.drawer-openColorScroll span,
.drawer-open.drawer-openColorScroll span:before,
.drawer-open.drawer-openColorScroll span:after {
  background-color: #000;
  transition: color 0.2s ease-out;
}


/* メニュー*/
.drawer-content {
  margin: 0;
  text-align: center;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 100%;/* メニューを画面外に飛ばす */
  z-index: 99;
  background: #fff;
  transition: .8s;
  display: flex;/*上下中央寄せここから*/
  flex-direction: column;
  justify-content: center;
  align-items: center;/*ここまで*/
  overflow: auto;
}
.drawer-item img {
  width: 20px;
}


/* アイコンがクリックされたらメニューを表示 */
#drawer-check:checked ~ .drawer-content {
  left: 0;/* メニューを画面に入れる */
}

#first-DI {
	padding-top: 0;
}
.drawer-item {
	list-style: none;
	padding-top: 15px;
	margin: 0;
}
.drawer-item a {
	color: #000;
}
.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
}

.header-logo {
	position: absolute;
	height: 12px;
	top: 30px;
	left: 55px;
}

/*スクロールでロゴ画像変更*/
.header-logo.headerLogoScroll.-before {
	display: none;
}
.header-logo.-after {
	display: none;
}
.header-logo.headerLogoScroll.-after {
	display: block;
}



/*----------------------------

  スライダー

-----------------------------*/
.slide {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}
.logo {
	position: absolute;
	right: 10px;
	bottom: 12px;
	width: 55px;
}
.slide-image {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	opacity: 0;
	animation: slider1 24s linear infinite;
}
.slide-image:nth-child(1){
	background-image: url(../images/topIMG01.jpg);
	animation-delay: -2s;
}

.slide-image:nth-child(2){
	background-image: url(../images/topIMG02.jpg);
	animation-delay: 6s;
}
.slide-image:nth-child(3){
	background-image: url(../images/topIMG03.jpg);
	animation-delay: 14s;
}

@keyframes slider1{
	0%{
		opacity: 0;
		transform: scale(1);
	}
	4.16%{
		opacity: 1;
	}
	33.33%{
		opacity: 1;
	}
	41.66%{
		opacity: 0;
		transform: scale(1.2);
	}
	100%{
		opacity: 0;
	}
}

/*スクロールダウン全体の場所*/
.scrolldown1{
	position: absolute;
	left: 50%;
	bottom: 20px;
	height: 50px;
}

/*Scrollテキストの描写*/
.scrolldown1 span{
    /*描画位置*/
	position: absolute;
	left: 5px;
	bottom: 5px;
	color: #eee;
	font-size: 0.78rem;
	letter-spacing: 0.05em;
	/*縦書き設定*/
	-ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

/* 線の描写 */
.scrolldown1::after{
	content: "";
    /*描画位置*/
	position: absolute;
	bottom: 0;
    /*線の形状*/
	width: 1px;
	height: 30px;
	background: #eee;
    /*線の動き1.7秒かけて動く。永遠にループ*/
	animation: pathmove 1.7s ease-in-out infinite;
	opacity:0;
}

/*下からの距離が変化して丸が上から下に動く*/
@keyframes circlemove{
	0%{bottom: 45px;}
	100%{bottom: -5px;}
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
	0%{
		height:0;
		top:0;
		opacity: 0;
	}
	30%{
		height:30px;
		opacity: 1;
	}
	100%{
		height:0;
		top:50px;
		opacity: 0;
	}
}

/*

  リンク

*/
.event-link {
	position: relative;
	padding: 0;
	align-items: center;
	justify-content: center;
	height: 280px;
}
.event-link div {
	width: 100%;
}
.event-link p {
	position: absolute;
	display: block;
	text-align: center;
	color: #eee;
	font-size: 16px;
	font-weight: bold;
	top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    margin:0;
    padding:0;
	white-space: nowrap;
	line-height: 1.8;
}
.event-link img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: ;
}


.top-links {
	position: relative;
	line-height: 0;
}
.top-links p {
	position: absolute;
	color: white;
	font-weight: bold;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    margin: 0;
	text-align: center;
	line-height: 1.5;
}
.top-links img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	margin-bottom: 0;
	transition-duration: 0.3s;
}
.top-links:hover img {
	opacity: 0.8;
	display: block;
	transition-duration: 0.3s;
}


/*

  NEWS

*/
.news {
	padding: 40px 20px 50px;
}
.news-inner {
	width: 80%;
	margin: 0 auto;
}
.news-t {
	margin-bottom: 5px;
}
.news-t p {
	font-size: 25px;
	font-weight: 600;
	margin-bottom: 10px;
}
.news-content p {
	line-height: 25px;
	font-weight: 500;
	padding: 20px 0;
}
.small {
	font-size: 12px;
}
hr {
	border: none;
	border-top: solid 0.05rem #888;
	border-bottom: solid 0.05rem #888;
	width: 100%;
}


/*------------------------------

  footer共通

  ------------------------------*/
/*

  フォームリンク

*/
.contact-link {
	background: #ccc;
	padding: 40px;
}
.contact-inner {
	width: 80%;
	margin: 0 auto;
}
.contact-link p {
	line-height: 30px;
	margin-bottom: 35px;
}
.contact-t {
	display: inline-block;
	margin-bottom: 25px;
	font-weight: 600;
	font-size: 25px;
	letter-spacing: 0.03rem;
}
.contact-f {
	text-align: center;
	background: #fff;
	font-size: 0.8em;
	padding: 16px 20px;
	border: none;
	border-radius: 30px;
	width: 90%;
	max-width: 350px;
	margin: 0 auto;
}

/*

  footer

*/
.ftr {
	width: 100%;
	height: 150px;
	position: relative;
	line-height: 0;
	margin: 0;
}
.ftr-img {
	width: 100%;
	height: 150px;
    object-fit: cover;
}
.ftr-inner,.copy {
	position: absolute;
	display: inline-block;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
	text-align: center;
}
.ftr-logo {
	width: 165px;
	display: block;
	margin: 0 auto;
}
.copy {
	margin-top: 55px;
	width: 100%;
}
.copy-p {
	font-size: 10px;
	color: #aaa;
}



/*------------------------------

  下層ページ共通

  ------------------------------*/

.ul-title {
	position: relative;
	line-height: 0;
}
.ul-title p {
	position: absolute;
	color: white;
	font-weight: bold;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    margin: 0;
	text-align: center;
	line-height: 1.5;
}
.jp-ul-t {
	padding-bottom: 20px;
}
.ul-title img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	margin: 0;
}


.flyer {
	text-align: center;
}
.flyer img {
	height: 300px;
	margin-top: 20px;
}

.ul {
	margin: 0 auto 50px;
}
.ul-inner p {
	width: 80%;
	margin: auto;
	line-height: 1.8;
}
.ul-inner-title {
	margin: 30px 0 0 0;
	padding-left: 10px;
}
.hr1 {
	border: 1px solid;
	margin: 12px 0 30px;
	width: 95%;
}
.ul-inner a {
	text-decoration: underline;
}
.ul-inner hr {
	margin: 5px auto 15px;
	width: 80%;
}
.sub-heading-margin {
	margin-top: 20px !important;
}

/*------------------------------

  event

  ------------------------------*/
.t-o-contents {
	font-size: 14px;
}
.t-o-contents p {
	text-align: center;
}
.t-o-contents ol {
	list-style: none;
	max-width: 250px;
	margin: 0 auto;
	line-height: 1.5;
}
.t-o-contents hr {
	margin-top: 30px;
	border: 1px solid #e29ca2;
}
.event-hr{
	border: 0.06rem solid #e29ca2;
}
.event-a {
	background: linear-gradient(transparent 0, gainsboro 0);
}

/*------------------------------

  stage info

  ------------------------------*/
.bg-gray {
	background-color: #fff;
	padding: 20px 0 30px;
	margin: 50px 0;
}
.bold {
	font-weight: bold;
}

/*------------------------------

  member

  ------------------------------*/
.member-inner {
	margin-top: 20px;
}

.member-img {
	text-align: center;
}
.member-img img {
	width: 130px;
	height: 130px;
	object-fit: cover;
	margin-top: 20px;
	border-radius: 50%;
}

.box {
	width: 80%;
	background: #ddd;
	margin: 10px auto 0;
	padding: 20px;
	border-radius: 10px;
}
.box-show p {
	width: 100%;
	margin-left: 20px;
}
.box-show a {
	margin: 2px 0 0 auto;
	margin-right: 15px;
}
.box-show img {
	width: 25px;
}

.box-hide,.box-hide2,.box-hide3,.box-hide4,.box-hide5,.box-hide6,.box-hide7,.box-hide8,.box-hide9,.box-hide10,.box-hide11 {
	margin: 10px auto;
	display: none;
	width: 100%;
}
.button-more,.button-more2,.button-more3,.button-more4,.button-more5,.button-more6,.button-more7,.button-more8,.button-more9,.button-more10,.button-more11 {
	width: 120px;
	margin: 15px auto 0;
	display: block;
	background: #fff;
	color: #000;
	padding: 10px;
	border: none;
	outline: 0;
	transition: .5s;
	border-radius: 18px;
	
}
.button-more::after {
	content: "続きを読む ▽";
	transition: .2s;
}
.button-more.on-click::after {
	content: "閉じる △";
}

.button-more2::after {
	content: "続きを読む ▽";
	transition: .2s;
}
.button-more2.on-click::after {
	content: "閉じる △";
}

.button-more3::after {
	content: "続きを読む ▽";
	transition: .2s;
}
.button-more3.on-click::after {
	content: "閉じる △";
}

.button-more4::after {
	content: "続きを読む ▽";
	transition: .2s;
}
.button-more4.on-click::after {
	content: "閉じる △";
}

.button-more5::after {
	content: "続きを読む ▽";
	transition: .2s;
}
.button-more5.on-click::after {
	content: "閉じる △";
}

.button-more6::after {
	content: "続きを読む ▽";
	transition: .2s;
}
.button-more6.on-click::after {
	content: "閉じる △";
}

.button-more7::after {
	content: "続きを読む ▽";
	transition: .2s;
}
.button-more7.on-click::after {
	content: "閉じる △";
}

.button-more8::after {
	content: "続きを読む ▽";
	transition: .2s;
}
.button-more8.on-click::after {
	content: "閉じる △";
}

.button-more9::after {
	content: "続きを読む ▽";
	transition: .2s;
}
.button-more9.on-click::after {
	content: "閉じる △";
}

.button-more10::after {
	content: "続きを読む ▽";
	transition: .2s;
}
.button-more10.on-click::after {
	content: "閉じる △";
}
.button-more11::after {
	content: "続きを読む ▽";
	transition: .2s;
}
.button-more11.on-click::after {
	content: "閉じる △";
}

/*------------------------------

  history

  ------------------------------*/
.history-inner {
	margin-bottom: 60px;
}

.history-ftr {
	width: 100%;
	height: 150px;
	object-fit: cover;
	opacity: 0.8;
}


/*------------------------------

  photo-gallery

  ------------------------------*/
.gallery{
	width: 100%;
	margin: 30px auto;
	display: flex !important;
	flex-wrap: wrap;
	justify-content: space-between;
}

.gallery li {
	width: 32%;
    list-style: none;
	margin: 0;
	padding: 3px 0;
}
.gallery::after {
	content: "";
    display: block;
    width: 32%;
}
.gallery li img{
	width: 100%;
	vertical-align: bottom;
}

.lightbox {
	margin: 0;
}
.lb-outerContainer {
	background-color: #222 !important;
}
.lightbox .lb-image {
	border: none !important;
}
.lb-nav a.lb-prev {
	opacity: 0.7 !important;
}
.lb-nav a.lb-next {
	opacity: 0.7 !important;
}

.gallery-link {
	position: relative;
}
.gallery-link-right {
	position: absolute;
	right: 0;
	margin-right: 5%;
	padding: 8px 8px 8px 10px;
	color: #333;
	background: #fff;
	border: 2px solid #555;
	border-radius: 30px;
	font-weight: bold;
	white-space: nowrap;
	text-decoration: none !important;
}
.gallery-link p {
	margin: 0;
	padding: 0;
}
.gallery-link-left {
	position: absolute;
	left: 0;
	margin-left: 5%;
	padding: 8px 8px 8px 10px;
	color: #333;
	background: #fff;
	border: 2px solid #555;
	border-radius: 30px;
	font-weight: bold;
	white-space: nowrap;
	text-decoration: none !important;
}

.right-arrow1 {
	position: relative;
	display: inline-block;
	padding: 0 0 0 16px;
	color: #000;
	vertical-align: middle;
	text-decoration: none;
	font-size: 15px;
}
.right-arrow1::before,
.right-arrow1::after {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}
.right-arrow2::before {
	box-sizing: border-box;
	width: 15px;
	height: 15px;
	border: 1px solid #333;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}
.right-arrow2::after {
	left: 6px;
	box-sizing: border-box;
	width: 7px;
	height: 7px;
	border: 3px solid transparent;
	border-left: 3px solid #333;
}

.left-arrow1 {
	position: relative;
	display: inline-block;
	padding: 0 16px 0 0;
	color: #000;
	vertical-align: middle;
	text-decoration: none;
	font-size: 15px;
}
.left-arrow1::before,
.left-arrow1::after {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}
.left-arrow2::before {
	box-sizing: border-box;
	width: 15px;
	height: 15px;
	border: 1px solid #333;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}
.left-arrow2::after {
	right: 6px;
	box-sizing: border-box;
	width: 7px;
	height: 7px;
	border: 3px solid transparent;
	border-right: 3px solid #333;
}


/*------------------------------

  wp-blog

  ------------------------------*/
#header, #footer {
  display:none;
}

/*------------------------------

  contact

  ------------------------------*/
.form {
	margin: 0 auto;
}
.form,.form-hr {
	width: 80%;
	max-width: 700px;
}
.form-p {
	margin: 30px auto;
}
.form label,.radio,.btn,.form a {
	font-size: 14px;
}
.required {
	font-size: 12px;
	color: red;
	margin-left: 5px;
}
.entry-field {
	width: 100%;
	height: 18px;
	border: none;
	background: #ddd;
	margin: 10px 0 20px;
	border-radius: 0;
}
.entry-field:focus-visible {
	outline: 0;
}
.entry-field:focus {
	background: powderblue;
}
.radio {
	margin: 10px 0 15px;
}
.radio input {
	margin: 5px 0;
}
.textarea {
	height: calc(1.3em*8);
	line-height: 1.3;
}
.btn-div {
	text-align: center;
    height: 50px;
	width: 70%;
	max-width: 300px;
	border-radius: 30px;
	border: 2px solid #000;
	overflow: hidden;
	margin-top: 20px;
}
.btn {
	height: 100%;
	width: 80%;
	background: #fff;
	color: #000;
}


.btn2 {
	margin-top: 20px;
	text-align: center;
}
.btnback-div,.btnsubmit-div {
	display: inline-block;
	height: 50px;
	width: 200px;
	border-radius: 30px;
	overflow: hidden;
}
.btnback-div {
	border: 2px solid #ddd;
	margin-bottom: 10px;
}
.btnsubmit-div {
	border: 2px solid #000;
}
.btn-back,.btn-submit {
	height: 100%;
	width: 100%;
	color: #000;
}
.btn-back {
	background: #ddd;
	border: 2px solid #ddd;
}
.btn-submit {
	background: #fff;
}

.error-list {
	padding: 10px 30px;
	color: #ff2e5a;
	font-size: 86%;
	text-align: left;
	border: 1px solid #ff2e5a;
	border-radius: 5px;
}

/*

  privacypolicy

*/
.privacy-b span,
.privacy-b span:before,
.privacy-b span:after {
	background-color: #000;
}
.contact-title {
	margin-top: 70px;
}



/*------------------------------

  special

  ------------------------------*/
.special-inner {
	background: #474a4d;
	padding-bottom: 30px;
}
.special-img {
	position: relative;
	width: 100%;
	overflow: hidden;
	object-fit: cover;
}
.special-logo {
	position: absolute;
	right: 10px;
	bottom: 12px;
	width: 50px !important;
	height: 55px !important;
}
.special-video {
	margin: 0 auto;
	width: 80%;
	aspect-ratio: 16/9;
}
.special-inner p,.special-inner a {
	color: white;
}
.special-inner hr {
	color: #dcdddd;
}
.underline {
	text-decoration: underline;
}

/*------------------------------

  special2

  ------------------------------*/
.special-inner2 {
	padding-bottom: 30px;
}
.tiktok-inner {
	margin: 0 auto;
	width: 80%;
}


  
/*------------------------------

  special-banner

  ------------------------------*/
.special-banner {
	background: black;
	width: 100%;
	height: 280px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.special-banner-innner {
	width: 100%;
	height: 100%;
}
.special-banner-img {
	text-align: center;
}
.special-banner-img img {
	width: 80px;
}
.special-banner-title {
	display: block;
	text-align: center;
	font-weight: bold;
	margin: 15px 0 10px;
}
.special-banner-text {
	margin: 0 10px;
	line-height: 1.5;
}
.special-banner-text p{
	color: white;
}


/*------------------------------

  special-banner2

  ------------------------------*/
#special-banner2 {
	background: #406d8e;
}




/*------------------------------

  TB

  ------------------------------*/
@media screen and (min-width: 520px) {

.medium-heading {
	font-size: 18px;
}
p {
	font-size: 0.9em;
}
/*header--TB*/
.drawer-open span,
.drawer-open span:before,
.drawer-open span:after {
    height: 2px;
}
.drawer-item {
	font-size: 18px;
	padding-top: 18px;
}
.header-logo {
	height: 18px;
	top: 27px;
}

/*logo--TB*/
.logo {
	right: 18px;
	bottom: 20px;
	width: 65px;
}

/*footer--TB*/
.ftr,.ftr-img {
	height: 200px;
}
.ftr-logo {
	width: 220px;
}
.copy {
	margin-top: 80px;
}
.copy-p {
	font-size: 12px;
}

/*

  home--TB

*/
/*リンク--TB*/
.flex-box {
	display: flex;
}
.top-links {
	width: 50%;
}
.top-links img {
	height: 320px;
}


/*

  下層ページ共通--TB

*/
.ul-title img {
	height: 350px;
}
.ul-inner-title {
	padding-left: 20px;
}
.flyer-tb {
	width: 40%;
}

/*

  event--TB

*/
.t-o-contents ol {
	max-width: 300px;
}
.t-o-contents hr {
	width: 400px;
}

/*

  stageinfo--TB

*/
.stageinfo-flyer1 {
	margin-right: 20px;
}

/*

  member--TB

*/
.member-inner {
	width: 80%;
	margin: 30px auto 0;
}
.member-img {
	padding-right: 10px;
}
.member-img img {
	width: 150px;
	height: 150px;
}
.box {
	margin: 18px 0 0 0;
}


/*

  history--TB

*/
.history-inner {
	width: 60%;
}

/*

  photo-gallery--TB

*/
.gallery {
	width: 80%;
}
.lb-outerContainer {
	width: 80% !important;
	height: 80% !important;
}
.lightbox .lb-image {
	width: 100% !important;
	height: 100% !important;
}


/*

  contact--TB

*/
.contact-title {
	margin-top: 90px;
}
.contact-subheading {
	width: 40%;
}
.entry-field {
	margin-top: 0;
	width: 200%;
}
.radio {
	margin-top: 0;
}

.btnback-div {
	margin: 0;
}

/*

  special--TB

*/
.special-logo {
	width: 55px !important;
	height: 60px !important;
}

/*

  special-banner--TB

*/
.special-banner-img {
	width: 30%;
}
.special-banner-img img {
	width: 95px;
}
.special-banner-title {
	text-align: left;
}


}




/*------------------------------

  PC

  ------------------------------*/
@media screen and (min-width: 960px) {

/*アイコン--PC*/
.drawer-open span,
.drawer-open span:before,
.drawer-open span:after {
    width: 25px;
}
.drawer-open span:before {
  bottom: 8px;
}
.drawer-open span:after {
  top: 8px;
}
.header-logo {
	height: 20px;
	top: 27px;
}
/*logo--PC*/
.logo {
	right: 25px;
	bottom: 35px;
	width: 75px;
}

/*リンク--PC*/
.top-links img {
	height: 400px;
}


/*footer--PC*/
.ftr-logo {
	width: 240px;
}


/*

  下層ページ共通--PC

*/
.ul-inner-title {
	padding-left: 50px;
}

/*

  member--PC

*/
.member-inner {
	margin-top: 40px;
}


/*

  history--PC

*/
.history-ftr img {
	height: 300px;
}

/*

  photo-gallery--PC

*/
.gallery {
	max-width: 900px;
}
.gallery li {
	width: 24%;
}
.gallery::after {
    width: 24%;
}
.gallery::before {
    width: 24%;
}

.lb-outerContainer {
	width: 70% !important;
	max-width: 900px;
	height: 70% !important;
}

/*

  special--PC

*/
.special-logo {
	right: 18px;
	width: 65px !important;
	height: 70px !important;
}


}

















