@charset "utf-8";
@import url(cmn.css);
@import url(base.css);

/* ==========================================================================
  CONTENTS
========================================================================== */

/*TOP*/

.artist {
	display: flex;
}
.artist__item {
	width: 50%;
	text-align: center;
}
.artist__item img {
	display: block;
	width: 60%;
	margin: 0 auto 5vh auto;
}
.artist__name {
	font-family: var(--font01);
	font-size: clamp(1.8rem,2.375vw,2rem);
	font-weight: 400;
}
.artist__name span {
	display: block;
	font-family: var(--font02);
	font-size: 80%;
	font-weight: 400;
	margin-top: 15px;
}
.main__inner {
	float: right;
	width: 95%;
}

/*ARTIST*/


.artist-link {
  display: flex;
  width: 500px;
  margin: 0 auto 5vh auto;
}
.artist-link__item {
  width: 50%;
  font-family: var(--font02);
  font-weight: 400;
  text-align: center;
}
.nawata .active a {
  text-decoration: underline;
}
.paliwal .active a {
  text-decoration: underline;
}
.artist-img img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 8vh;
}
.artist-list {
  display: flex;
  flex-wrap: wrap;   /* 折り返しを許可 */
  list-style: none;
  padding: 0;
  margin: 0;
}
.artist-list__item {
  width: 50%;        /* 隙間がないので、単純に半分（50%） */
}
.artist-list__item img {
  width: 100%;      /* 親要素の幅いっぱいに広げる */
  height: auto;
  display: block;   /* 画像の下にできる謎の隙間を防ぐ */
}

.profile {
  display: flex;
  font-family: var(--font01);
  font-weight: 400;
  margin-bottom: 40px;
}
.profile:last-child {
  margin-bottom: 0;
}
.profile__tit {
  width: 160px;
}
.profile__txt {
  flex: 1;
}

.works__tit {
	position: relative;
	padding-left: 30px;
	cursor: pointer;
}
.works__tit::before,
.works__tit::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 16px;
	height: 2px;
	background: #000;
	border-radius: 999px;
	transform-origin: center;
	transition:
		transform 0.35s ease,
		opacity 0.25s ease;
}
.works__tit::before {
	transform: translateY(-50%) rotate(0deg);
}
.works__tit::after {
	transform: translateY(-50%) rotate(90deg);
}
.works.is-open .works__tit::before {
	transform: translateY(-50%) rotate(180deg);
}
.works.is-open .works__tit::after {
	transform: translateY(-50%) rotate(180deg);
	opacity: 0;
}
.works__inner {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease;
}
.year {
	display: flex;
	font-family: var(--font01);
	margin-bottom: 20px;
}
.year__tit {
	width: 200px;
}
.year__txt {
	flex: 1;
	line-height: 3rem;
}

/*NEWS*/

.news-list {
	border-bottom: solid 1px rgba(0,0,0,0.1);
	padding-bottom: 30px;
	margin-bottom: 30px;
}
.news-list__cat {
	margin-bottom: 20px;
}
.cat {
	display: flex;
	align-items: center;
	font-size: 1.4rem;
	line-height: 100%;
}
.cat__date {
	width: 110px;
}
.cat__link {
	flex: 1;
}
.cat__link a {
	display: inline-block;
	background-color: var(--color01);
	border-radius: 3px;
	padding: 5px 15px;
}
.news-list__tit {
	font-family: var(--font01);
}

.cat-list {
  display: flex;
}
.cat-list__item {
  font-size: 1.4rem;
  margin-right: 10px;
}
.cat-list__item a {
	display: inline-block;
	background-color: var(--color01);
	border-radius: 3px;
	padding: 5px 15px;
}

/*CONTACT*/

.contact-inner {
  width: 80%;
  margin: 0 auto;
}
.contact-form {
  margin: 0 auto 30px auto;
}
.contact-form dl p {
	line-height: 100%;
}
.contact-form dl p:last-child {
	margin-bottom: 0;
}
.contact-form dl {
  display: flex;
  padding-bottom: 23px;
  margin-bottom: 23px;
}
.contact-form dt {
  width: 300px;
	padding-right: 20px;
}
.contact-form dd {
	flex: 1;
}
.hissu {
	display: inline-block;
	color: #fff;
	font-size: 70%;
	text-align: center;
	background-color: #e00202;
	border-radius: 3px;
	padding: 2px 5px;
	margin-left: 7px;
}

.input01 input {
	border: solid 1px #d3d3d3;
	padding: 20px;
	width: 50%;
}
.input02 input {
	border: solid 1px #d3d3d3;
	padding: 20px;
	width: 80%;
}
.input03 input {
	border: solid 1px #d3d3d3;
	padding: 20px;
}
textarea {
	width: 100%;
	border: solid 1px #d3d3d3;
	box-sizing: border-box;
	padding: 20px;
}
.contact-form select {
	width: 80%;
	background-color: #f8f8f8;
	border: solid 1px #d3d3d3;
	border-radius: 5px;
	box-sizing: border-box;
	padding: 20px;
}

.radio {
  line-height: 3rem;
}
.bt-form {
	overflow: hidden;
	text-align: center;
	margin: 0 auto 20px auto;
}
.bt-form li {
	display: inline-block;
	width: 100%;
	padding: 0 5%;
}
.bt-form li button {
	display: inline-block;
	color: #fff;
	width: 35%;
	font-size: 100%;
	background-color: var(--body);
	border: solid 1px var(--body);
  border-radius: 5px;
	cursor: pointer;
	padding: 20px 0;
	margin: 0 10px;
	-webkit-transition: 0.4s ease-in-out;  
		 -moz-transition: 0.4s ease-in-out;  
			 -o-transition: 0.4s ease-in-out;  
					transition: 0.4s ease-in-out;  
}
.bt-form li button:hover {
	background-color: #545454;
	border: solid 1px #545454;
}
.bt-form li input {
	display: inline-block;
	color: #fff;
	width: 25%;
	font-size: 100%;
	background-color: var(--body);
	border: solid 1px var(--body);
  border-radius: 5px;
	cursor: pointer;
	padding: 20px 0;
	margin: 0 10px;
	-webkit-transition: 0.4s ease-in-out;  
		 -moz-transition: 0.4s ease-in-out;  
			 -o-transition: 0.4s ease-in-out;  
					transition: 0.4s ease-in-out;  
}

/* 各ベンダープレフィックスが取れた標準版 */
:placeholder-shown {
	color: #cecece;
}
/* Google Chrome, Safari, Opera 15+, Android, iOS */
::-webkit-input-placeholder {
	color: #cecece;
}
/* Firefox 18- */
:-moz-placeholder {
	color: #cecece; opacity: 1;
}
/* Firefox 19+ */
::-moz-placeholder {
	color: #cecece; opacity: 1;
}
/* IE 10+ */
:-ms-input-placeholder {
	color: #cecece;
}

/*チェックボックス*/

.checkbox01-input{
  display: none;
}
.mwform-checkbox-field-text{
  padding-left: 25px;
  position:relative;
}
.mwform-checkbox-field-text::before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
	background-color: #fff;
  border: 2px solid #d9d9d9;
  border-radius: 4px;
}
.checkbox01-input:checked + .mwform-checkbox-field-text{
  color: #3bbe9e;
}
.checkbox01-input:checked + .mwform-checkbox-field-text::after{
  content: "";
  display: block;
  position: absolute;
  top: -5px;
  left: 5px;
  width: 7px;
  height: 14px;
  transform: rotate(40deg);
  border-bottom: 3px solid #3bbe9e;
  border-right: 3px solid #3bbe9e;
}


/* ==========================================================================
  PC 1025px -
========================================================================== */

@media screen and (min-width: 1025px) {
}

@media screen and (max-width: 1200px) {
  /* 1200以下 */
}

/* ==========================================================================
  TABLET - 1024px
========================================================================== */

@media screen and (max-width: 1024px) {

.main__inner {
	float: none;
	width: 100%;
}

/*CONTACT*/

.contact-inner {
  width: 100%;
}
.contact-form {
  margin: 0 auto 25px auto;
}
.contact-form dl {
  display: block;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.contact-form dt {
  width: 300px;
	padding-right: 0;
  margin-bottom: 10px;
}
input,textarea {
  font-size: 16px;
}

}

/* ==========================================================================
  SP - 640px
========================================================================== */

@media screen and (max-width: 640px) {

/*TOP*/

.artist {
	display: block;
}
.artist__item {
	width: 100%;
}
.artist__item img {
	width: 60%;
	margin: 0 auto 5vh auto;
}

/*ARTIST*/

.artist-link {
  width: 100%;
}
.artist-link__item {
  font-size: 1.3rem;
}
.artist-img img {
  margin-bottom: 5vh;
}

.artist-list {
	display: block;
}
.artist-list__item {
  width: 100%;    /* 横幅いっぱいにする */
}
.profile {
  display: flex;
  margin-bottom: 30px;
}
.profile__tit {
  width: 90px;
}
.year {
	display: block;
}
.year__tit {
	width: 100%;
	font-size: 1.3rem;
	margin-bottom: 10px;
}

/*NEWS*/

.cat {
	font-size: 1.2rem;
}
.cat__date {
	width: 100px;
}

.cat-list__item {
  font-size: 1.2rem!important;
}
}
