@charset "utf-8";
/* ==========================================================================
	CSS Reset
========================================================================== */
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;}
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;}
/*================================================
	Common-layout
================================================*/

* {
		margin: 0;
		padding: 0;
		box-sizing: border-box;
		border: none;
	}
html, body{
	/* ルートのフォントサイズを10pxに設定しておく */
	font-size: 62.5%;
	height: 100%;
	font-size: 10px;
	font-family: sofia-pro, sans-serif;
  font-weight: 100;
  font-style: normal;
	/* max-width: 1920px;*/
	text-size-adjust: 100%;
}
img {
  max-width: 100%;
  height: auto;
}
#wrapper{
  margin: 0 auto;
}
.header {
	height: 11rem;
}
h1 {
	margin: 2rem 0;
	text-align:center;
	white-space: nowrap;
	font-size: 4rem;
	color: rgba(65,65,65,1);
	letter-spacing: 1.1rem;
	font-weight: 300;
	}
.header h1 a {
text-decoration: none;
color: rgba(65,65,65,1);
		}
.pc-only {
  margin: 0 auto;
	font-size: 1.5rem;
	font-weight: 300;
	color: rgba(65,65,65,1);
	width: 100%;
	letter-spacing: 0.25rem;
	padding: 2rem;
  /* background-color: #FFF967;*/
	background-color: rgba(255, 255, 255, 0.959);
  height: 7%;
}
/*JSを使いfixedクラスが付与された際の設定*/
.fixed{
   position: fixed;/*fixedを設定して固定*/
    z-index: 999;/*最前面へ*/
    top:0;/*位置指定*/
    left:0;/*位置指定*/
}
.sp-only {
		display: none;
	}
.pc-only .gnav-menu {
	display:flex;
	justify-content: space-between;
	list-style: none;
	width: 85%;
	margin: 0 auto;
}
h2 {
	font-size : 2.5rem;
	font-weight: 300;
	letter-spacing: 0.5rem;
}
li {
    box-sizing: border-box;
    margin: 0;
}
li a {
  text-decoration: none;
	color: rgba(65,65,65,1);
}
li a:hover {
	/*色替え部分*/
	opacity: 0.5;
	text-decoration: none;
	color: rgb(100, 100, 100);
}

.mainvisual{ 
	width:100%;
	margin:0 auto;
}
.mainvisual img{ 
	width: 100%;
}
#works_top {
		width:100%;
}
#works_top h2 {
	margin: 8rem auto 3rem;
	padding-bottom: 1rem;
	border-bottom: solid 2px rgba(65,65,65,1);
	text-align: center;
	letter-spacing: 0.5rem;
	width:14.5%;
}
#works_top .artworks {
	display: flex;
	flex-wrap: wrap;
	width: 85%;
	gap: 3rem;
	margin: 0 auto;
}
#works_top .artworks_img {
	 width: calc((100% - 3rem*3)/4);
	 position: relative;
}
.js-animation {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10rem);
  transition: all 1s;
}
.js-animation.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
/* 2つ目の要素に200msのdelayをかける */
.js-animation:nth-of-type(2) {
	transition-delay:400ms;
	}
.js-animation:nth-of-type(3) {
	transition-delay:600ms;
	}
.js-animation:nth-of-type(4) {
	transition-delay:800ms;
	}
.js-animation:nth-of-type(4n+1) {
		transition-delay:200ms;
		}
.js-animation:nth-of-type(4n+2) {
		transition-delay:400ms;
		}
.js-animation:nth-of-type(4n+3) {
			transition-delay:600ms;
			}
.js-animation:nth-of-type(4n+4) {
				transition-delay:800ms;
				}
.artworks_img .artwork_title {
position: absolute;/*絶対配置*/
color: white;/*文字は白に*/
top: 0;
left: 0;
opacity: 0;
width: 100%;
height: 100%;
padding: 2rem;
font-size: 2rem;
z-index: 10;
font-weight: 500;
line-height: 3rem;
}

#works_top .artworks_img img,#news_top .news_img img {
	width:100%;
  cursor: pointer;
	transition-duration: 0.3s;
}
#works_top .artworks_img :hover .artwork_title {
	opacity: 1;
	width:100%;
	height:100%;
/*background-color: rgba(230, 93, 230, 0.671);*/
background-color: rgba(230, 93, 230, 0.363);
}
/*モーダルを開くボタン*/
.modal-open{
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  cursor: pointer;
  transform: translate(-50%,-50%);
}
/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0,0,0,50%);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-sizing: border-box;
}
/*モーダル本体の擬似要素の指定*/
.modal-container:before{
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active{
  opacity: 1;
  visibility: visible;
}
/*モーダル枠の指定*/
.modal-body{
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 500px;
  width: 90%;
}
/*モーダルを閉じるボタンの指定*/
.modal-close{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -40px;
  right: -40px;
  width: 40px;
  height: 40px;
  font-size: 4rem;
  color: #fff;
  cursor: pointer;
}
/*モーダル内のコンテンツの指定*/
.modal-content{
  background: #fff;
  text-align: left;
  padding: 30px;
}
.remodal .remodal-cancel {
  background-color: rgb(252, 170, 255);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.5rem;
  margin: 1rem 0;
}
.remodal .remodal-cancel:hover {
  background-color: rgba(253, 218, 255, 0.678);
}
.remodal h2 {
  margin-bottom: 2rem;
  line-height: 2rem;
}
.next_button {
	width:100%;
	margin:4rem auto 0; 
	text-align: center;
	padding: 1rem;
}
.next_button a {
	text-decoration: none;
	color: #191818;
	font-size: 1.8rem;
	letter-spacing: 0.25rem;
	font-weight: 300;
}
.next_button:hover {
	opacity: 0.5;
}
.sen {
	margin: 5rem auto 0;
	width: 85%;
	border-width: 0.5px 0 0 0;
	border-style: solid;
	border-color: #0000005d;
}
#news_top {
	width: 95%;
	margin: 0 auto;
}
#news_top h2 {
	margin: 5rem auto 2rem;
	padding-bottom: 1rem;
	border-bottom: solid 2px rgba(65,65,65,1);
	text-align: center;
	width:8%;
}
.news_box {
	width: 92%;
	margin: 0 auto;
}
.news_box li {
	padding: 1rem;
}
.news_box02 {
display: none;
}

#news_top .news_topics {
	width: 100%;
}
.prev_icon{
  position: absolute;
  top: 35%;
  left: -2rem;
  transform: translate(0,-50%);
  width: 1rem;
  z-index: 1;
}
.next_icon{
  position: absolute;
  top: 35%;
  right: -2rem;
  transform: translate(0,-50%);
  width: 1rem;
  z-index: 1;
}
#news_top .news_img {
	 /*width: calc((100% - 3rem*4)/4);*/
	 background-color:#fff;
	 margin: 0 0.2rem;
}
#news_top .news_img img:hover {
  opacity: 0.5;
  transition-duration: 0.3s;
}
.news_img .caption {
 background-color :white; 
 line-height: 1.5;
 padding-top: 1rem;
}
.news_img .caption p {
	font-size: 1.4rem;
	font-family: futura-pt-bold,sans-serif;
}
.news_img .caption h3 {
	font-size: 1.5rem;
	font-style: normal;
  font-weight: 500;
	font-family: futura-pt-bold,sans-serif;
	color:#191818;
	letter-spacing: 0.1rem;
	text-indent: -1rem;
}
.new {
	color:rgb(255, 255, 255);
	font-size:1.2rem;
	background-color: rgb(255, 124, 211);
	padding: 0.2rem;
	margin-top: 2rem;
}
.button{
  position: fixed;
  right: 3rem;
  bottom: 4rem;
  width: 7rem;
  height: 7rem;
	background-image: url(../img/top_buttun.png);
  cursor: pointer;
	transition: .3s;
  /*デフォルトで非表示にする*/
  opacity: 0;
	visibility: hidden;
}
.button:hover {
	opacity: 0.5;
}
/*このクラスが付与されると表示する*/
.active{
  opacity: 1;
  visibility: visible;
}
/*このクラスが付与されると表示する*/
.absolute{
  position: absolute;
  top: -70px;
  bottom: auto;
}
footer {
	background-color: #FFF967;
	margin-top: 5rem;
	padding: 3rem 0;
	width: 100%;
}
footer h2 {
	text-align: center;
	width: 50%;
	margin: 0 auto;
	color:#191818d5;
}
footer p{
	font-size:6rem;
	letter-spacing: 1rem;
	color:rgba(65,65,65,1);
}
.footer_box {
	justify-content: space-between;
	display: flex;
	width: 65%;
	margin: 0 auto;
	padding: 2rem;
}

.footer_nav {
 width: 50%;
 margin: 0 auto 2rem;
}
.footer_nav02 {
	margin: 0 auto 2rem;
 }
.footer_nav02 p {
	font-size: 2rem;
	letter-spacing: 0.2rem;
}
.footer_nav .gnav-menu {
	list-style: none;
	font-size: 1.5rem;
	width: 80%;
}
.footer_nav .gnav-menu02 {
	list-style: none;
	font-size: 1.5rem;
	width: 80%;
	margin-top: 3rem;
}
.footer_nav h3 {
	font-size: 2rem;
	width: 180%;
	padding-bottom: 1rem;
	border-bottom: solid 1px #191818;
}
.footer_nav02 h3 {
	font-size: 2rem;
	width: 100%;
	padding-bottom: 1rem;
	border-bottom: solid 1px #191818;
}
.footer_nav .gnav-menu li {
	list-style: none;
	font-size: 1.5rem;
	padding: 0.5rem 0;
	border-bottom: dotted 1px #191818;
}
.footer_nav .gnav-menu02 li {
	list-style: none;
	font-size: 1.5rem;
	padding: 0.5rem 0;
	border-bottom: dotted 1px #191818;
}
.footer_content a {
	text-decoration:none; 
}
.footer_nav a:hover {
	opacity: 0.5;
	color:rgba(65,65,65,1);
}
footer .secondpage {
	text-indent:1rem;
	font-size: 1rem;
}
.sns_icon {
	display:flex;
	justify-content: space-between;
	list-style: none;
	width: 100%;
	margin: 0 auto;
}
.sns_icon img {
	width: 90%;
}
.sns_icon span {
	width: 120%;
	font-size: 1.5rem;
	margin-top: 0.8rem;
	font-style: italic;
}
footer small {
	width: 40%;
	margin: 0 auto;
	display: block;
	text-align: center;
	letter-spacing: 1px;
}
/*パンクズリスト*/
#panlist {
  width: 82%;
  padding-left: 0;
	margin: 3rem auto;
	margin-bottom: 0;
	list-style: none;
	display: flex;
  flex-wrap: wrap;
  font-size: 1.3rem;
  font-weight: 150;
  letter-spacing: 0.3rem;
}
#panlist li {
  display: inline-block;
	position: relative;
	padding-right: calc(16px + 8px);
  margin-right: 8px;
  color: rgb(124, 124, 124);
}
#panlist li::before {
	content: '›';
	width: 1em;
	height: 1em;
	line-height: 1;
	text-align: center;
	font-size: 1em;
	color: inherit;
	position: absolute;
	top: 35%;
	right: 0;
  transform: translateY(-50%);
}
#panlist li:last-child {
	margin-right: 0;
  padding-right: 0;
  color: rgb(32, 32, 32);
  font-weight: 300;
}
#panlist li:last-child::before {
	content: normal;
}
#panlist li:hover {
  color: rgb(32, 32, 32);
}
/**************ページリスト**************/
.pager {
  width: 25%;
  margin: 5% auto 0;
  font-size: 1.5rem;
	letter-spacing: 0.3rem;
}
.pager02 {
  width: 30%;
  margin: 5% 0 0 48%;
  font-size: 1.5rem;
	letter-spacing: 0.3rem;
}
.pagination {
  display: flex;
  justify-content: space-between;
}
.pagination li {
  font-weight: 300;
}
.menu-btn {
	position: fixed;
	top: 5.5rem;
	right: 1rem;
	display: flex;
	width: 10rem;
	justify-content: center;
	align-items: center;
	z-index: 90;
	display: block;
	line-height: 1;
	cursor :pointer;
	font-size: 8rem;
}

.hamburger-menu h2 {
position: fixed;
top: 0rem;
left: 0rem;
color: rgba(65,65,65,1);
letter-spacing: 1.1rem;
font-weight: 300;
width: 100%;
height: 10rem;
padding: 3rem 0;
background-color: rgb(255, 255, 255);
text-align: center;
z-index: 20;
font-size: 4.5rem;
}
.hamburger-menu h2 a {
text-decoration: none;
color: rgba(65,65,65,1);
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
	content: '';
	display: block;
	height: 3px;
	width: 25px;
	border-radius: 3px;
	background-color: rgba(65,65,65,1);
	position: absolute;
}
.menu-btn span:before {
	bottom: 0.7rem;
}
.menu-btn span:after {
	top: 0.7rem;
}
#menu-btn-check:checked ~ .menu-btn span {
	background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
	bottom: 0;
	transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
	top: 0;
	transform: rotate(-45deg);
}
#menu-btn-check {
	display: none;
}
.menu-content {
	width: 100%;
	position: fixed;
	right: 100%;/*leftの値を変更してメニューを画面外へ*/
	z-index: 30;
	transition: all 0.5s;/*アニメーション設定*/
	border-top: solid 1px #00000023;
	top:9.8rem;
	background-color: rgb(255, 255, 255);
	height: 100%;
}

.menu-content .menu-content_box li a {
	display: block;
	font-size: 4rem;
	font-weight: 300;
	letter-spacing: 0.5rem;
	box-sizing: border-box;
	color:rgba(65,65,65,1);
	text-decoration: none;
	position: relative;
	padding: 3rem 0 3rem 4rem;
}

/*.menu-content ul li a::before {
	content: "";
	width: 7px;
	height: 7px;
	border-top: solid 2px #ffffff;
	border-right: solid 2px #ffffff;
	transform: rotate(45deg);
	position: absolute;
	right: 11px;
	top: 16px;
}*/
#menu-btn-check:checked ~ .menu-content {
	left: 0;/*メニューを画面内へ*/
}
.menu01{
font-size: 4rem;
font-weight: 300;
letter-spacing: 0.5rem;
box-sizing: border-box;
color:rgba(65,65,65,1);
}
.menu02 {
font-size: 4rem;
font-weight: 300;
letter-spacing: 0.5rem;
box-sizing: border-box;
color:rgba(65,65,65,1);
z-index: 999;
}
.menu01 ul,.menu02 ul {
background :#f4f4f4;
}

.menu-link {
display: block;
line-height: 1;
cursor :pointer;
padding: 3rem 0 3rem 4rem;
}
input {
	display: none;
}
.menu01 li,.menu02 li {
	height: 0;
	overflow: hidden;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	display: block;
}
#menu_bar01:checked ~ #links01 li,#menu_bar02:checked ~ #links02 li
{
	height: 20%;
	opacity: 1;
	position: relative;
}
.menu01 label:after{
color: rgb(27, 27, 27);
content:"＋"; /* ラベルのアイコン */
position: absolute;
left: 96%;
transform:translate(-100%,0%);
}
.menu02 label:after{
color: rgb(27, 27, 27);
content:"＋"; /* ラベルのアイコン */
position: absolute;
left: 96%;
transform:translate(-100%,0%);
z-index: -1;
}
.menu01 input:checked ~ label::after,.menu02 input:checked ~ label::after {
content:"ー"; /* ラベルをクリックした後のアイコン */
font-size: 4rem;
left: 96%;
}

/* Icon */
.menu-content_box li a:before{
	display: block;
	content: "";
	position: absolute;
	top: 28%;
	right: 35px;
	height: 10px;
	left: 5rem;
}
.menu-content_box li a:after{
	display: block;
	content: "＞";
	position: absolute;
	top: 30%;
	right: 80px;
	width: 5px;
}
.menu-content_box .menu01 a:after{
	display: block;
	content: "＞";
	position: absolute;
	right: 7%;
}
.menu-content_box .menu02 a:after{
	display: block;
	content: "＞";
	position: absolute;
	right: 7%;
}
#links01 li a,#links02 li a {
font-size: 4rem;
}
.menu_sns_box {
margin-top: 1rem;
}
.menu_sns_box p {
margin: 1rem auto;
text-align: center;
padding-top: 1rem;
font-style: italic;
font-size: 4rem;
}
.menu_sns_icon {
width: 50%;
display:flex;
justify-content: space-between;
list-style: none;
margin: 0 auto;
}
@media screen and (max-width : 1282px ){
.sp-only {
		display: block;
	}
.pc-only {
		display: none;
	}
.header-logo h1 {
		display: none;
		}
.mainvisual{ 
	display: none;
}
#works_top .artworks {
	display: flex;
	flex-wrap: wrap;
	width: 85%;
	margin: 0 auto;
	gap: 8rem;
}
#works_top .artworks_img {
	width: calc(100% - 6rem);
	position: relative;
	margin: 0 auto;
}
#works_top h2 {
	font-size: 4rem;
	width: 85%;
	border-bottom: solid 2px rgba(65, 65, 65, 0);
}
.news_box {
	display: none;
}
.news_box02 {
	width: 85%;
	margin: 0 auto;
	display: block;
}
.news_box02 li{
	width: 100%;
	margin: 0 auto;
}
#news_top02 .news_img {
	background-color:#fff;
}
#news_top h2 {
		font-size: 4rem;
		width: 85%;
		border-bottom: solid 2px rgba(65, 65, 65, 0);
}
.news_topics02 h3 {
	margin-bottom: 5rem;
}
.news_img .caption p {
	font-size: 1.9rem;
}
.news_img .caption h3 {
	font-size: 2rem;
}
.next_button {
	width:60%;
	margin:4rem auto 0; 
	text-align: center;
	padding: 1rem;
}
.next_button a {
	text-decoration: none;
	font-size: 3rem;
}
.next_button:hover {
	opacity: 0.5;
}
footer nav {
	display: block;
}
.footer_nav {
	display: none;
}
.footer_nav02 {
	width: 80%;
	margin: 0 auto;
 }
 footer h2{
	width: 80%;
	font-size: 3rem;
}
 .footer_nav02 h3 {
 display: none;
 }
.footer_nav02 p {
	font-size: 2rem;
	letter-spacing: 0.2rem;
	text-align: center;
}
.sns_icon {
	width: 100%;
}
.sns_icon span {
	margin-top: 1rem;
}
footer small {
	width: 100%;
	margin: 0 auto;
font-size: 2rem;
}
#panlist {
  width: 89%;
  padding-left: 0;
	margin: 3rem auto;
	margin-bottom: 0;
	list-style: none;
	display: flex;
  flex-wrap: wrap;
  font-size: 2rem;
  font-weight: 150;
  letter-spacing: 0.3rem;
}
/**************ページリスト**************/
.pager {
  width: 50%;
  margin: 0 auto;
  font-size: 2rem;
  letter-spacing: 0.3rem;
}
.pagination {
  display: flex;
  justify-content: space-between;
}
.pagination li {
  font-weight: 300;
}
.pager02 {
  width: 30%;
  margin: 0 0 0 45%;
  font-size: 2rem;
	letter-spacing: 0.3rem;
}
}