@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Saira+Extra+Condensed:wght@200;300;400;500&display=swap');

/* BASE
------------------------------------*/

html {
  font-size: 62.5%;
  height: 100%;
}
body {
  display: none;
  height: 100%;
  font-family: 'Noto Sans JP', "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, Verdana, sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #5F5E5E;
  line-height: 1.5em;
  letter-spacing: 0.1em;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
}

header,
footer {
  position: relative;
  width: 100%;
  min-width: 1300px;
}
main {
  min-height: 100%;
  padding-top: 77px;
}
.wrap {
  width: 1300px;
  padding: 0 50px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  header,
  footer {
    min-width: initial;
  }
  .wrap {
    width: 100%;
    padding: 0 16px;
  }
} /* end @media */


/* COMMON
------------------------------------*/

.margin-center { margin: 0 auto; }
.align-left { text-align: left !important;}
.align-center { text-align: center !important;}
.align-right { text-align: right !important;}

a {
  color: #5F5E5E;
  text-decoration: none;
  cursor: pointer;
}
p {
  line-height: 1.7em;
}

.fwb { font-weight: 700; }

.mt10 { margin-top: 10px; }
.mt20 { margin-top: 20px; }
.mt30 { margin-top: 30px; }
.mt40 { margin-top: 40px; }
.mt50 { margin-top: 50px; }
.mt70 { margin-top: 70px; }
.mt80 { margin-top: 80px; }
.mt100 { margin-top: 100px; }

.mb10 { margin-bottom: 10px; }
.mb16 { margin-bottom: 16px; }
.mb20 { margin-bottom: 20px; }
.mb30 { margin-bottom: 30px; }
.mb40 { margin-bottom: 40px; }
.mb50 { margin-bottom: 50px; }
.mb60 { margin-bottom: 60px; }
.mb70 { margin-bottom: 70px; }
.mb80 { margin-bottom: 80px; }
.mb100 { margin-bottom: 100px; }

.red {
  color: #FF0000;
}
.subTitle {
  position: relative;
  width: 370px;
  text-align: center;
  font-family: 'Saira Extra Condensed';
  font-size: 4.0rem;
  font-weight: 200;
  letter-spacing: 0.1em;
  margin: 0 auto;
}
.subTitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  display: inline-block;
  background-color: #BFE0D6;
  width: 40px;
  height: 1px;
}
.subTitle::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10px;
  display: inline-block;
  background-color: #BFE0D6;
  width: 40px;
  height: 1px;
}
.subTitle2 {
  font-family: 'Saira Extra Condensed';
  font-size: 4.0rem;
  font-weight: 200;
}

.moerLink {
  display: inline-block;
  background-color: #BFE0D6;
  border-radius: 26px;
  width: 272px;
  text-align: center;
  font-family: 'Saira Extra Condensed';
  font-size: 2.0rem;
  font-weight: 200;
  line-height: 51px;
  cursor: pointer;
  transition: all 0.3s;
}
.moerLink:hover {
  background-color: #FFFFFF;
}

.fadeIn {
  opacity : 0.1;
  transition: opacity 2s;
}
.fadeInUp {
  opacity : 0.1;
  transform: translateY(20px);
  transition: opacity 1.5s, transform 1.5s;
}

.hoverLine {
  position: relative;
}
.hoverLine::after {
  background-color: #707070;
  bottom: 0;
  content: '';
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  transition: .3s all;
  width: 0;
  left: 50%;
  transform: translateX(-50%);
}
.hoverLine:hover::after {
  width: 100%;
}


.newWindowIcon::after {
  content: url(../img/icon_newwindow.svg);
  margin-left: 12px;
  vertical-align: middle;
}
.AnkerInvalidation {
  color: inherit !important;
  text-decoration: none !important;;
  pointer-events: none;
}

.sp { display: none; }

.scrollup {
  width: 65px;
  height: 65px;
  transition: all 0.3s;
}
.scrollup:hover {
  opacity: 0.6;
}

.grecaptcha-badge {
  bottom: 80px !important;
}

@media (max-width: 767px) {

  .subTitle {
    width: 100%;
  }
  .subTitle::before {
    position: relative;
    left: -20px;
    top: auto;
    bottom: 15px;
    width: 30px;
  }
  .subTitle::after {
    position: relative;
    top: auto;
    bottom: 15px;
    right: -20px;
    width: 30px;
  }

  .pc { display: none !important; }
  .sp { display: inherit; }

} /* end @media */



/* Header
------------------------------------*/

header {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #BFE0D6;
  padding: 12px 20px 12px 36px;
  z-index: 10;
}
.header__logo,
.menuBox__logo {
  width: 307px;
  transition: opacity 0.3s;
}
.header__logo:hover,
.menuBox__logo:hover {
  opacity: 0.6;
}
.header__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__linkContact {
  display: inline-block;
  background-color: rgba(255,255,255,0.6);
  border-radius: 15px;
  font-size: 1.2rem;
  padding: 4px 26px;
  transition: all 0.3s;
}
.header__linkContact:hover  {
  background-color: rgba(255,255,255,1.0);
}
.header__linkSns {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  margin: 0 34px 0 24px;
}
.header__linkSns li {
  margin: 0 6px;
}

.header__linkSns img {
  vertical-align: middle;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.header__linkSns img:hover {
  opacity: 1.0;
}
.header__linkSnsFb img,
.header__linkSnsTw img,
.header__linkSnsIg img,
.header__linkSnsTt img {
  width: 20px;
  height: auto;
}
.header__linkSnsYt img {
  width: auto;
  height: 16px;
}
.header__linkMenu {
  width: 53px;
  cursor: pointer;
  transition: opacity 0.3s;
}
.header__linkMenu:hover {
  opacity: 0.6;
}
.menuBox {
  display: none;
  position: fixed;
  top:0;
  left:0;
  background-color: #BFE0D6;
  width: 100%;
  height: 100vh;
  overflow: auto;
  z-index: 999;
}
.menuBox__logo {
  position: absolute;
  top: 24px;
  left: 36px;
}
.menuClose {
  position: fixed;
  top: 12px;
  right: 20px;
  width: 53px;
  height: 53px;
  cursor: pointer;
  transition: opacity 0.3s;
}
.menuClose:hover {
  opacity: 0.6;
}

.menuBox__wrap {
  max-width: 600px;
  text-align: center;
  padding: 100px 30px 50px 30px;
  margin: 0 auto;
}
.menuBox__menuList {
  list-style: none;
  padding: 0;
  margin: 0 0 60px 0;
}
.menuBox__menuList li {
  margin-bottom: 30px;
}
.menuBox__menuList li a {
  font-family: 'Saira Extra Condensed';
  font-size: 2.0rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.menuBox__linkContact {
  display: inline-block;
  background-color: #FFFFFF;
  border-radius: 24px;
  width: 100%;
  text-align: center;
  font-size: 1.2rem;
  padding: 13px 26px;
  transition: all 0.3s;
}
.menuBox__linkContact:hover {
  background-color: #A4D0C2;
}

.menuBox h2 {
  border-bottom: 1px solid #FFFFFF;
  text-align: center;
  font-size: 1.4rem;
  padding-bottom: 20px;
  margin: 70px 0 50px 0;
}
.menuBox__linkSns {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0;
  margin: 0;
}
.menuBox__linkSns li {
  margin: 0 10px;
}
.menuBox__linkSns li a {
  font-family: 'Saira Extra Condensed';
  font-size: 2.0rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: all 0.3s;
}
.menuBox__linkSns li a:hover {
  opacity: 0.6;
}

.menuBox__linkSns img {
  vertical-align: middle;
  margin-right: 11px;
}
.menuBox__linkSnsFb img,
.menuBox__linkSnsTw img,
.menuBox__linkSnsIg img,
.menuBox__linkSnsTt img {
  width: 20px;
  height: auto;
}
.menuBox__linkSnsYt img {
  width: auto;
  height: 16px;
}

@media (max-width: 767px) {
  header {
    padding: 11px 12px 11px 16px;
  }
  .header__logo,
  .menuBox__logo {
    width: 186px;
  }
  .header__linkContact,
  .header__linkSns {
    display: none;
  }
  .header__linkMenu {
    width: 45px;
    cursor: pointer;
  }
  .menuBox__logo {
    top: 23px;
    left: 16px;
  }
  .menuClose {
    top: 11px;
    right: 12px;
    width: 45px;
    height: 45px;
  }
  .menuBox__wrap {
    max-width: 100%;
    text-align: left;
    padding: 95px 36px 50px 36px;
  }
  .menuBox__menuList {
    margin: 0 0 40px 0;
  }
  .menuBox h2 {
    margin: 50px 0 30px 0;
  }
  .menuBox__linkSns {
    display: block;
  }
  .menuBox__linkSns li {
    width: 100%;
    margin: 0 0 30px 0;
  }

} /* end @media */


/* FOOTER
------------------------------------*/

footer {
  background-color: #BFE0D6;
  text-align: center;
  padding: 100px 0 30px 0;
}
.footer__nav a {
  position: relative;
  display: inline-block;
  font-family: 'Saira Extra Condensed';
  font-size: 2.0rem;
  font-weight: 500;
  margin-right: 34px;
}
.footer__nav a:nth-child(1) {
  margin-right: 40px;
}
.footer__nav a:nth-child(3) {
  margin-right: 29px;
}
.footer__nav a.hoverLine::after {
  bottom: -8px;
}
.footer__contact {
  margin: 70px auto 100px auto;
}
.footer__contact a {
  display: inline-block;
  background-color: #FFFFFF;
  border-radius: 24px;
  width: 340px;
  text-align: center;
  font-size: 1.2rem;
  padding: 13px 0;
  transition: all 0.3s;
}
.footer__contact a:hover {
  background-color: #A4D0C2;
}

.footer__logo {
  width: 312px;
  margin: 0 auto;
  transition: all 0.3s;
}
.footer__logo:hover {
  opacity: 0.6;
}

.footer__linkSns {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 50px auto 70px auto;
}
.footer__linkSns li {
  margin: 0 6px;
}
.footer__linkSns li a {
  transition: all 0.3s;
}
.footer__linkSns li a:hover {
  opacity: 0.6;
}
.footer__linkSns img {
  vertical-align: middle;
}
.footer__linkSnsFb img,
.footer__linkSnsTw img,
.footer__linkSnsIg img,
.footer__linkSnsTt img {
  width: 20px;
  height: auto;
}
.footer__linkSnsYt img {
  width: auto;
  height: 16px;
}
.footer__cc {
  text-align: center;
  font-size: 1.2rem;
}

@media (max-width: 767px) {

  footer {
    text-align: left;
    padding: 70px 16px 30px 16px;
  }
  .footer__nav a {
    display: block;
    margin-bottom: 30px;
    margin-left: 20px;
  }
  .footer__nav a:nth-child(1) {
    margin-right: 0;
  }
  .footer__nav a:nth-child(3) {
    margin-right: 0;
  }
  .footer__nav a:hover::after {
    width: 0;
  }

  .footer__contact a {
    width: 100%;
  }

} /* end @media */


/* HOME
------------------------------------*/
#loading{
  position: fixed;
  top: 0;
  left: 0;
  background-color: #FFFFFF;
  width: 100vw;
  height: 100vh;
  z-index: 9000;
}
#animation{
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
  z-index: 9999;
}
#animation img{
  width: 64px;
  height: 64px;
}

.secTopMain {
  position: relative;
  height: 100%;
  width: 100%;
  padding-top: 77px;
}
.mainSlider ,
.mainSlider li {
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
}
.mainSlider li {
  position: relative;
}
.mainSlider li picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mainSlider .swiper-slide {
  overflow: hidden;
}
.mainSlider .swiper-slide-prev picture img,
.mainSlider .swiper-slide-active picture img,
.mainSlider .swiper-slide-duplicate-active picture img {
  animation-name: zoom;
  animation-duration: 10s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}
@keyframes zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}

.mainSlider__link {
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.mainSlider__text {
  position: absolute;
  bottom: 0;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.3));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.0),rgba(0, 0, 0, 0.3));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.3));
  width: 100%;
  text-align: right;
  color: #FFFFFF;
  padding: 36px 40px 42px 14px;
}
.mainSlider__textLogo {
  height: 36px;
  width: auto;
  margin-bottom: 20px;
}
.mainSlider__textName {
  font-family: 'Saira Extra Condensed', 'Noto Sans JP';
  font-size: 1.4rem;
  font-weight: 200;
}
.mainSlider__textPhoto {
  font-family: 'Saira Extra Condensed', 'Noto Sans JP';
  font-size: 1.4rem;
  font-weight: 200;
  margin-top: 20px;
}
.secMain__scroll {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  font-family: 'Saira Extra Condensed', 'Noto Sans JP';
  font-size: 2.4rem;
  font-weight: 500;
  color: #FFFFFF;
  padding-bottom: 50px;
  z-index: 1;
}
.secMain__scroll:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #FFFFFF;
  animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}
@keyframes circlemove{
  0%{bottom:40px;}
  100%{bottom:-5px;}
}
@keyframes cirlemovehide{
  0%{opacity:0}
  50%{opacity:1;}
  70%{opacity:0.9;}
  100%{opacity:0;}
}
.secMain__scroll::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  display: inline-block;
  background-color: #FFFFFF;
  width: 1px;
  height: 40px;
}

.secTemporaryNews {
  padding: 70px 0 0 0;
}
dl.temporaryNews,
.temporaryNews dt,
.temporaryNews dd {
  margin: 0;
  padding: 0;
}
dl.temporaryNews {
  background: #EBF5F2;
  border: 1px solid #BFE0D6;
  width: 100%;
  margin-bottom: 16px;
}
.temporaryNews dt {
  position: relative;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5em;
  padding: 15px 60px 13px 20px;
	transition: all 0.3s ease;
}
.temporaryNews dt:hover {
  cursor: pointer;
	opacity: 0.8;
}
.temporaryNews dd {
  font-size: 1.4rem;
  line-height: 2.0em;
  white-space: pre-wrap;
  padding: 0 20px 19px 20px;
}
.temporaryNews dd a {
  color: #6794B1;
  text-decoration: underline;
}

.temporaryNews dt::before,
.temporaryNews dt::after {
  content: '';
  display: block;
  width: 25px;
  height: 1px;
  background: #BFE0D6;
  position: absolute;
  right: 20px;
  top: 25px;
}
.temporaryNews dt::after {
  background: #BFE0D6;
  transform: translateY(-50%) rotate(90deg);
  transition: 0.5s;
}
.temporaryNews dt.is-active::after {
  transform: rotate(0);
  transition: 0.5s;
}

.secTopNews {
  padding: 120px 0 70px 0;
}
.secTopNews .newsList {
	margin-top: 70px;
}

.newsList {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 0;
  margin: 50px auto 0 auto;
}
.newsList::before{
  content:"";
  display: block;
  width: 268px;
  order:1;
}
.newsList::after{
  content:"";
  display: block;
  width: 268px;
}
.newsList > li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-flow: wrap;
  width: 268px;
  margin-bottom: 70px;
}
.newsList__left {
  width: 100%;
}
.newsList__right {
  width: 100%;
  margin-top: 16px;
}
.newsList__image {
  background-color: #EBF5F2;
  width: 268px;
  height: 179px;
  object-fit: contain;
  transition: opacity 0.3s;
}
.newsList__image:hover {
/*  box-shadow: 0 0 16px rgba(0, 0, 0, 0.15); */
	opacity: 0.7;
}
.newsList__name {
  position: relative;
  font-size: 1.4rem;
  font-weight: 500;
  white-space: pre-wrap;
  padding-bottom: 11.5px;
  margin-bottom: 6px;
}

.categoryList {
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 0 6px 0;
}
.categoryList li {
  background-color: #CCCCCC;
  border-radius: 1px;
  font-size: 1.0rem;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 17px;
  letter-spacing: 0.1em;
  padding: 0 10px;
  margin-right: 10px;
}
.newsList__title {
  display: inline;
  font-size: 1.4rem;
  line-height: 1.7em;
  white-space: pre-wrap;
}
.newsList a {
  color: #6794B1;
  text-decoration: underline;
  transition: color 0.3s;
}
.newsList a:hover {
  color: #999999;
  text-decoration: none;
}

.newsList__text {
  width: 100%;
  font-size: 1.1rem;
  white-space: pre-wrap;
  margin-top: 12px;
	padding-top: 12px;
	color: #999999;
	border-top: 1px solid #EBF5F2;
}

.secTopArtists {
  background-color: #EBF5F2;
  padding: 100px 0 120px 0;
}
.secTopArtists .wrap {
  position: relative;
  width: 1200px;
}
.swiperArtist {
  width: 1100px;
  padding: 0;
  overflow: hidden;
  margin: 0 auto;
}
.artistList {
  list-style: none;
  margin: 70px 0 0;
}
.artistList li {
  position: relative;
  background-color: #BFE0D6;
  height: auto;
}
.artistList li a {
  display: inline-block;
  width: 100%;
  height: 100%;
  transition: all 0.5s;
}
.artistList__image {
  width: 260px;
  height: 390px;
  object-fit: cover;
}
.artistList__hoverWrap {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 23px 21px;
  transition: all 0.5s;
  opacity: 0;
}
.artistList li a:hover .artistList__hoverWrap{
  background-color: rgba(0, 0, 0, 0.65);
  opacity: 1;
}
.artistList__attribute {
  position: absolute;
  bottom: 23px;
}
.artistList__hoverWrap h3 {
  font-size: 1.2rem;
  color: #BABABA;
}
.artistList__hoverWrap h3 em {
  display: block;
  font-size: 1.7rem;
  color: #FFFFFF;
}
.artistList__affiliation {
  margin-top: 22px;
}
.artistList__affiliation img {
  height: 29px;
  width: auto;
}

/* 前へ次への矢印カスタマイズ */
.secTopArtists .swiper-button-prev,
.secTopArtists .swiper-button-next {
  top: 44%;
  height: 66px;
  width: 24px;
}
.secTopArtists .swiper-button-prev {
  left: -10px;
}
.secTopArtists .swiper-button-next {
  right: -10px;
}
/* 前へ次への矢印カスタマイズ */
.secTopArtists .swiper-button-prev:after,
.secTopArtists .swiper-button-next:after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 66px;
  margin: auto;
  width: 24px;
}
/* 前への矢印カスタマイズ */
.secTopArtists .swiper-button-prev:after {
  background-image: url(../img/slide_prev.svg);
}
/* 次への矢印カスタマイズ */
.secTopArtists .swiper-button-next:after {
  background-image: url(../img/slide_next.svg);
}

.linkBox {
  text-align: center;
  margin-top: 70px;
}

.secTopInformations {
  padding: 120px 0;
}
.flexBox {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.flexBox_left01 {
  width: 350px;
}
.flexBox_right01 {
  width: 800px;
}
.informationList {
  width: 100%;
}
.informationList td {
  border-top: 1px solid #BFE0D6;
  width: 153px;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 20px 0;
}
.informationList th {
  border-top: 1px solid #BFE0D6;
  font-size: 1.4rem;
  padding: 20px 0;
  text-align: left;
}
.informationList th a {
  color: #6794B1;
  text-decoration: underline;
  transition: all 0.3s;
}
.informationList th a:hover {
  color: #999999;
  text-decoration: none;
}
.informationList tr:nth-child(1) td {
  border-top: none;
  padding-top: 0;
}
.informationList tr:nth-child(1) th {
  border-top: none;
  padding-top: 0;
}

@media (max-width: 767px) {

  .secTopMain {
    position: relative;
    height: 567px;
    padding-top: 67px;
  }
  .mainSlider__text {
    padding: 23px 27px 23px 27px;
  }
  .secMain__scroll {
    display: none;
  }
  .mainSlider__textLogo {
    height: 21px;
    margin-bottom: 18px;
    margin-right: 0;
  }
  .mainSlider__textName {
    margin-right: 0;
  }
  .mainSlider__textPhoto {
    margin-top: 22px;
  }

  .secTemporaryNews {
    padding: 50px 0 0 0;
  }

  .secTopNews {
    padding: 70px 0 50px 0;
  }
  .newsList > li {
    width: 100%;
    margin-bottom: 40px;
  }
  .newsList__left {
    width: 120px;
  }
  .newsList__right {
    width: calc(100% - 120px - 16px);
    margin-top: 0;
  }
  .newsList__image {
    width: 120px;
    height: 80px;
  }
  .newsList__name {
    padding-bottom: 0;
    margin-bottom: 10px;
  }
  .newsList__name::after {
    height: 0;
  }
  .categoryList {
    margin: 0 0 10px 0;
  }

  .secTopArtists {
    padding: 100px 0 100px 0;
  }
  .secTopArtists .wrap {
    width: 100%;
  }
  .swiperArtist {
    width: 100%;
  }
  .artistList {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    padding: 0;
    margin: 50px 0 0;
  }
  .artistList li {
    width: 49%;
    margin-bottom: 10px;
  }
  .artistList li a:hover .artistList__hoverWrap{
    background-color: transparent;
    opacity: 0;
  }
  .artistList__image {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }

  .secTopInformations {
    padding: 100px 0;
  }
  .flexBox_left01 {
    width: 100%;
  }
  .flexBox_right01 {
    width: 100%;
  }
  .informationList {
    margin-top: 50px;
  }
  .informationList th ,
  .informationList td {
    display: block;
    width: 100%;
  }
  .informationList th {
    border-top: none;
    padding-top: 0;
  }
  .informationList td {
    padding-bottom: 12px;
  }

} /* end @media */


/* PAGE
------------------------------------*/
.page .wrap {
  width: 1100px;
}
.page p {
  line-height: 2.0em;
}
.pageContents,
.singleContents,
.artistContents {
  padding: 77px 0 150px 0;
}
.pageHeader {
  text-align: center;
  padding: 123px 0 100px 0;
}
.pageHeader h1 {
  position: relative;
  font-family: 'Saira Extra Condensed';
  font-size: 5.5rem;
  font-weight: 200;
  letter-spacing: 0.1em;
  padding-bottom: 30px;
}
.pageHeader h1 small {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 400;
  margin-top: 30px;
}
.pageHeader h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  display: inline-block;
  background-color: #BFE0D6;
  width: 30px;
  height: 1px;
}
.pageSubTitle {
  text-align: center;
  font-size: 2.3rem;
  font-weight: 700;
}
.pageSubTitle::before,
.pageSubTitle::after {
  content: '';
  display: inline-block;
  position: relative;
  bottom: 10px;
  background-color: #BFE0D6;
  width: 40px;
  height: 1px;
}
.pageSubTitle::before {
  left: -60px;
}
.pageSubTitle::after {
  right: -60px;
}

.linkStyle {
  color: #6794B1;
  text-decoration: underline;
  transition: all 0.3s;
}
.linkStyle:hover {
  color: #999999;
  text-decoration: none;
}

@media (max-width: 767px) {
  .page .wrap {
    width: 100%;
  }
  .pageContents,
  .singleContents,
  .artistContents {
    padding: 67px 0 100px 0;
  }
  .pageHeader {
    text-align: center;
    padding: 70px 0 50px 0;
  }
  .pageHeader h1 {
    font-size: 4.0rem;
    padding-bottom: 30px;
  }
  .pageHeader h1 small {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 400;
    margin-top: 30px;
  }

} /* end @media */


/* PAGE COMPANY
------------------------------------*/
.companyTab {
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #BFE0D6;
}
.companyTab li {
  background-color: #EFF5F3;
  border: 1px solid #BFE0D6;
  border-radius: 4px 4px 0 0;
  text-align: center;
  width: 207px;
  margin-right: 4px;
  margin-bottom: -1px;
  transition: all 0.3s;
}
.companyTab li:hover {
  background-color: #BFE0D6;
}
.companyTab li.active {
  background-color: #FFFFFF;
  border-bottom: none;
}
.companyTab a {
  display: inline-block;
  width: 100%;
  padding: 15px 0 16px 0;
}
.companyTab li.active a {
  pointer-events: none;
}
.companyTab li img {
  height: 18px;
  width: auto;
}
.companyTable {
  width: 100%;
  margin: 40px 0 120px 0;
}
.companyTable th,
.companyTable td {
  border-bottom: 1px solid #BFE0D6;
  text-align: left;
  font-size: 1.4rem;
  line-height: 2.0em;
  padding: 30px 0;
}
.companyTable th {
  font-weight: 700;
  padding-left: 30px;
  padding-right: 10px;
  width: 240px;
}
.companyTable dl:not(:last-of-type) {
  margin-bottom: 30px;
}
.companyTable dt {
  font-weight: 700;
  margin-bottom: 10px;
}

.companyBox {
  background-color: #EFF5F3;
  padding: 50px;
  margin-top: 50px;
}
.companyBox h3 {
  font-size: 2.0rem;
  font-weight: 700;
  margin: 2.5em 0 1em 0;
}
.companyBox p {
  margin-bottom: 1.5em;
}

@media (max-width: 767px) {
  .companyTab {
    justify-content: space-between;
  }
  .companyTab li {
    width: 49%;
    margin-right: 0;
  }
  .companyTable th,
  .companyTable td {
    display: block;
    width: 100%;
    padding: 20px 0 20px 10px;
  }
  .companyTable th {
    border-bottom: none;
    display: block;
    width: 100%;
    padding-bottom: 0;
  }
  .companyTable td {
    padding-top: 10px;
  }
  .companyBox {
    background-color: #EFF5F3;
    padding: 20px;
    margin-top: 30px;
  }

} /* end @media */


/* PAGE RECRUIT
------------------------------------*/
.recruitTable {
  border-bottom: 1px solid #BFE0D6;
  width: 100%;
  margin: 70px 0 120px 0;
}
.recruitTable th,
.recruitTable td {
  border-top: 1px solid #BFE0D6;
  font-size: 1.4rem;
  line-height: 2.0em;
  padding: 30px 0;
}
.recruitTable th {
  font-weight: 700;
  padding-left: 30px;
  padding-right: 10px;
  width: 240px;
}
.recruitTable dl:not(:last-of-type) {
  margin-bottom: 30px;
}
.recruitTable dt {
  font-weight: 700;
  margin-bottom: 10px;
}
.recruitTable li {
  margin-left: 20px;
}
.recruitTable li:not(:last-of-type) {
  margin-bottom: 16px;
}
.recruitBox01 {
  background-color: #EFF5F3;
  text-align: center;
  padding: 70px 50px 50px 50px;
  margin-top: 50px;
}
.recruitBox02 {
  background-color: #FFFFFF;
  padding: 50px;
}
.recruitBox01 .pageSubTitle {
  font-family: 'Saira Extra Condensed';
  font-size: 4.0rem;
  font-weight: 200;
}
.recruitText01 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 12px 0 50px 0;
}
.recruitText02 {
  font-size: 1.5rem;
  font-weight: 700;
}
.recruitText02 em {
  color: #FF0000;
  font-weight: 400;
}
.indent2line {
  padding-left:1em;
  text-indent:-1em;
}
.lineEntry {
  margin: 40px 0 20px 0;
}
.lineEntry a {
  display: inline-block;
  background-color: #1DB11F;
  border-radius: 49px;
  width: 400px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 67px;
  color: #FFFFFF;
  transition: all 0.3s;
}
.lineEntry a:hover {
  background-color: #77D078;
}
.lineEntry a::before {
  content: url(../img/icon_line.svg);
  display: inline-block;
  height: 40px;
  width: 40px;
  margin-right: 15px;
  vertical-align: middle;
}

@media (max-width: 767px) {
  .recruitTable th,
  .recruitTable td {
    display: block;
    width: 100%;
  }
  .recruitTable th {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 10px;
  }
  .recruitTable td {
    border-top: none;
    padding-top: 0;
  }
  .recruitTable dl:not(:last-of-type) {
    margin-bottom: 20px;
  }
  .recruitBox01 {
    padding: 70px calc(50vw - 50%) 50px calc(50vw - 50%);
    margin: 50px calc(50% - 50vw) 0 calc(50% - 50vw) ;
  }
  .recruitBox02 {
    background-color: #FFFFFF;
    padding: 50px 20px;
  }
  .recruitText02 {
    text-align: left;
  }
  .recruitText02 em {
    margin-top: 5px;
  }
  .lineEntry a {
    width: 100%;
  }
} /* end @media */


/* PAGE AUDITION
------------------------------------*/
.auditionSubTitle {
  background-color: #EFF5F3;
  text-align: center;
  font-size: 2.0rem;
  font-weight: 700;
  padding: 20px 0;
  margin: 100px 0 50px 0;
}
.auditionText01 {
  color: #FF0000;
  padding-left:1em;
  text-indent:-1em;
  margin-top: 30px;
}

@media (max-width: 767px) {
  .auditionSubTitle {
    padding: 20px calc(50vw - 50%);
    margin: 100px calc(50% - 50vw) 50px calc(50% - 50vw) ;
  }

} /* end @media */


/* CONTACT
------------------------------------*/
.page.contact .wrap {
  width: 900px;
}

.mw_wp_form {
  border-top: 1px solid #BFE0D6;
  padding-top: 30px;
  margin-top: 50px;
}
.mw_wp_form_complete .mw_wp_form {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.mwform-radio-field {
  margin-top: 15px !important;
}
.mwform-checkbox-field-text {
  margin-left: 10px;
}
.mw_wp_form .error {
  margin-top: 5px;
}

.formGroup {
  margin-bottom: 30px;
}
.formGroup dt {
  font-size: 1.6rem;
  font-weight: 700;
}
.mw_wp_form_confirm .formGroup dt {
  border-bottom: 1px dotted #BFE0D6;
  padding-bottom: 12px;
}
.formGroup dd {
  min-height: 1em;
  margin-top: 10px;
}
.formGroup dd.inputSupplement {
  font-size: 1.2rem;
  margin-top: 2px;
}

.formGroup input[type=text],
.formGroup input[type=email],
.formGroup input[type=tel],
.formGroup textarea {
  background-color: #EFF5F3;
  border: 1px solid #BFE0D6;
  border-radius: 2px;
  width: 100%;
  font-size: 1.4rem;
  padding: 15px 12px;
}
.formGroup textarea {
  line-height: 1.8em;
}
.formGroup input.size-s {
  width: 150px;
}

.formGroup input[type="radio"] {
	width: 21px;
	height: 21px;
	vertical-align: top;
	margin: 0 9px 0 0;
}
.formGroup input[type="radio"]{
  display: none;
}
.formGroup input[type="radio"] + span{
  position:relative;
  display: inline-block;
  padding-left: 30px;
  margin-right: 30px;
}
.formGroup input[type="radio"] + span::before{
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-color: #EFF5F3;
  border: 1px solid #BFE0D6;
  border-radius: 50%;
}
.formGroup input[type="radio"]:checked + span::after{
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 3px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: #BFE0D6;
  border-radius: 50%;
}

.formGroup input[type="checkbox"] {
	position: relative;
  border: none;
	margin: 0 15px 0 0;
	cursor: pointer;
}
.formGroup input[type="checkbox"]:before {
	position: absolute;
	z-index: 400;
	top: -14px;
	left: 0.1875rem;
	width: 20px;
	height: 10px;
	content: '';
	-webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
	        transition:         transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
	-webkit-transform: rotate(-45deg) scale(0, 0);
	        transform: rotate(-45deg) scale(0, 0);
	border: 4px solid #BFE0D6;
	border-top-style: none;
	border-right-style: none;
}
.formGroup input[type="checkbox"]:checked:before {
	-webkit-transform: rotate(-45deg) scale(1, 1);
	        transform: rotate(-45deg) scale(1, 1);
}
.formGroup input[type="checkbox"]:after {
	position: absolute;
	top: -15px;
	left: 0;
	width: 20px;
	height: 20px;
	content: '';
	cursor: pointer;
	border: 1px solid #BFE0D6;
  border-radius: 2px;
	background: #EFF5F3;
}

.agreeText {
  background-color: #EEEEEE;
  border: 1px solid #CCCCCC;
  border-radius: 2px;
  height: 193px;
  line-height: 2.0em;
  padding: 30px;
  overflow-x: scroll;
}
.agreeText ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
.agreeText ol li {
  padding-left: 1.3em;
  text-indent: -1.3em; 
  margin-bottom: 15px;
}
.agreeText__text01 {
  text-align: center;
  margin: 10px 0;
}
.agreeCheck {
  text-align: center;
}
.mw_wp_form_confirm .agreeCheck {
  text-align: left;
}
.formButton {
  text-align: center;
  margin-top: 70px;
}
.sendButton {
  background-color: #BFE0D6;
  border-radius: 30px;
  width: 280px;
  text-align: center;
  font-size: 1.3rem;
  line-height: 59px;
  cursor: pointer;
  transition: all 0.3s;
}
.formButton .g-recaptcha {
  margin: -50px 0 50px 0;
}
.sendButton:hover {
  background-color: #D8ECE6;
}
.returnButton {
  font-size: 1.3rem;
  color: #6794B1;
  text-decoration: underline;
  cursor: pointer;
  margin-top: 30px;
  transition: all 0.3s;
}
.returnButton:hover {
  color: #999999;
  text-decoration: none;
}

.mw_wp_form_confirm .inputOnly {
  display: none;
}
.confirmOnly {
  display: none;
}
.mw_wp_form_confirm .confirmOnly {
  display: block;
}

.topLink {
  display: inline-block;
  background-color: #BFE0D6;
  border-radius: 30px;
  width: 272px;
  text-align: center;
  font-size: 1.3rem;
  line-height: 59px;
  transition: all 0.3s;
}
.topLink:hover {
  background-color: #D8ECE6;
}


.contact .pageBody h2 {
  background-color: #EFF5F3;
  text-align: center;
  font-size: 2.0rem;
  font-weight: 700;
  padding: 20px;
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .page.contact .wrap {
    width: 100%;
  }
  .formGroup input[type=text],
  .formGroup input[type=email],
  .formGroup input[type=tel],
  .formGroup textarea {
    font-size: 1.6rem;
  }

  .agreeText {
    padding: 20px;
  }
  .formButton {
    text-align: center;
    margin-top: 70px;
  }
  .topLink {
    width: 100%;
  }

} /* end @media */


/* single
------------------------------------*/
.single .wrap {
  width: 1100px;
}
.singleHeader {
  padding: 100px 0 50px 0;
}
.singleHeader h1 {
  border-bottom: 1px solid #BFE0D6;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.3em;
  padding-bottom: 20px;
}

.singleBody p {
  font-size: 1.5rem;
  line-height: 2.0em;
  margin-bottom: 1.5em;
}
.singleBody h1 {
  border-bottom: 1px solid #BFE0D6;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.3em;
  padding-bottom: 20px;
  margin-bottom: 50px;
}
.singleBody h2 {
  background-color: #EFF5F3;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3em;
  padding: 20px;
  margin-bottom: 50px;
}
.singleBody h2:not(:first-child) {
  margin-top: 50px;
}
.singleBody h3 {
  border-left: 6px solid #EFF5F3;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3em;
  padding: 11px 0 11px 16px;
  margin: 30px 0 30px 0;
}
.singleBody h4,
.singleBody h5,
.singleBody h6 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3em;
  margin: 30px 0 20px 0;
}
.singleBody ul {
  padding-left: 30px;
}
.singleBody strong {
  font-weight: 700;
}
.singleBody em {
  font-style: italic;
}
.singleBody s {
  text-decoration: line-through;
}
.singleBody sup {
  font-size: 70%;
	vertical-align: super;
}
.singleBody sub {
  font-size: 70%;
	vertical-align: sub;
}

@media (max-width: 767px) {
  .single .wrap {
    width: 100%;
  }
  .singleHeader {
    padding: 60px 0 50px 0;
  }

} /* end @media */


/* artists
------------------------------------*/
.page.artists .wrap {
  width: 1300px;
}
.jumpLink {
  display: none;
}
.artistsBox {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}
.artistsBox__01 {
  width: 672px;
  margin-bottom: 50px;
}
.artistsBox__02 {
  background-color: #BFE0D6;
  width: 1px;
  margin-bottom: 50px;
}
.artistsBox__03 {
  width: 427px;
  margin-bottom: 50px;
}
.artistsBox__04 {
  width: 100%;
  margin-bottom: 50px;
}
.artistsBox__05 {
  width: 100%;
}

.artistsBox__title {
  background-color: #EFF5F3;
  text-align: center;
  padding: 24px 20px 23px 20px;
  margin-bottom: 50px;
}
.artistsBox__title img {
  height: 25px;
  width: auto;
}

.artistsList {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}
.artistsList::before{
  content:"";
  display: block;
  width: 197px;
  order:1;
}
.artistsList li {
  width: 197px;
  margin-bottom: 40px;
}
.artistsList li img {
  background-color: #BFE0D6;
  width: 197px;
  height: 296px;
  object-fit: cover;
  transition: all 0.3s;
}
.artistsList li a:hover img {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
.artistsList li h3 {
  position: relative;
  font-size: 1.4rem;
  margin-top: 16px;
  padding-bottom: 12px;
  margin-bottom: 11px;
}
.artistsList li h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  background-color: #BFE0D6;
  width: 16px;
  height: 1px;
}
.artistsList li p {
  font-family: 'Saira Extra Condensed';
  font-size: 1.4rem;
  font-weight: 200;
  color: #999999;
}
.artistsList li.artistsList__brank {
  margin-bottom: 0 !important;
  width: 220px;
}

@media (max-width: 767px) {
  .page.artists .wrap {
    width: 100%;
  }
  .jumpLink {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
  }
  .jumpLink li a {
    font-family: 'Saira Extra Condensed';
    font-size: 1.5rem;
    font-weight: 200;
    text-decoration: underline;
  }
  #FOSTER {
    height: 30px;
    margin-top: -30px;
  }
  .artistsBox__01 {
    width: 100%;
    margin-bottom: 0;
    padding-top: 30px;
  }
  .artistsBox__02 {
    width: 0;
    margin-bottom: 0;
  }
  .artistsBox__03 {
    width: 100%;
    margin-bottom: 0;
    padding-top: 84px;
    margin-top: -30px;
  }
  .artistsBox__04 {
    width: 100%;
    padding-top: 84px;
    margin-top: -30px;
  }
  .artistsBox__title {
    margin-bottom: 40px;
  }

  .artistsList li {
    width: 48%;
    margin-bottom: 30px;
  }
  .artistsList li img {
    width: 100%;
    height: auto;
  }

} /* end @media */


/* artist
------------------------------------*/
.artistContents .secTemporaryNews {
  margin-bottom: -60px;
}
.articleMain {
  padding: 120px 0 50px 0;
}
.articleMain .flexBox {
  align-items: flex-start;
  flex-wrap: wrap;
}
.articleMain__image {
  width: 450px;
}
.articleMain__attribute {
  width: 650px;
  padding-right: 50px;
}
.articleMain__attribute h1 {
  font-size: 1.6rem;
  line-height: 2.5em;
  margin-bottom: 30px;
}
.articleMain__attribute h1 em {
  display: block;
  font-family: 'Saira Extra Condensed';
  font-size: 5.0rem;
  font-weight: 300;
}
.articleMain__linkFun {
  position: relative;
  display: inline-block;
  background-color: #BFE0D6;
  border-radius: 26px;
  width: 193px;
  font-family: 'Saira Extra Condensed';
  text-align: center;
  font-size: 2.0rem;
  font-weight: 300;
  line-height: 40px;
  margin-bottom: 20px;
  transition: all 0.3s;
}
.articleMain__linkFun:hover {
  background-color: #D8ECE6;
}

.articleMain__linkFun::after {
  content: url(../img/icon_newwindow@b.svg);
  position: absolute;
  right: 21px;
}
.articleMain__linkSns {
  display: flex;
  align-items: center;
}
.articleMain__linkSns a {
  display: inline-block;
  margin-right: 16px;
  transition: all 0.3s;
}
.articleMain__linkSns a:hover {
  opacity: 0.6;
}
.articleMain__linkSns a::before {
  content: '';
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
.articleMain__linkSns a.articleMain__linkBlob::before {
  background-image: url(../img/icon_bl@b.png);
  width: 10px;
  height: 20px;
}
.articleMain__linkSns a.articleMain__linkFacebook::before {
  background-image: url(../img/icon_fb@b.png);
  width: 20px;
  height: 20px;
}
.articleMain__linkSns a.articleMain__linkTwitter::before {
  background-image: url(../img/icon_x@b.png);
  width: 20px;
  height: 17px;
}
.articleMain__linkSns a.articleMain__linkInstagram::before {
  background-image: url(../img/icon_ig@b.png);
  width: 20px;
  height: 20px;
}
.articleMain__linkSns a.articleMain__linkYoutube::before {
  background-image: url(../img/icon_yt@b.png);
  width: 72px;
  height: 16px;
}
.articleMain__linkOther img {
  height: 20px;
  width: auto;
  vertical-align: middle;
 }

.titleProfile,
.titleAward {
  position: relative;
  font-family: 'Saira Extra Condensed';
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #BFE0D6;
  margin: 50px 0 20px 0;
}
.titleProfile span,
.titleAward span {
  position: relative;
  left: 20px;
  background-color: #FFFFFF;
  padding: 0 15px;
}
.titleProfile::before,
.titleAward::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 10px;
  background-color: #BFE0D6;
  width: 100%;
  height: 1px;
  margin-right: 15px;
}

.profileTable {
  width: 100%;
}
.profileTable th,
.profileTable td {
  text-align: left;
  font-size: 1.3rem;
  vertical-align: bottom;
  padding-bottom: 13px;
}
.profileTable th {
  width: 160px;
}
.profileTable td img {
  height: 20px;
  width: auto;
}

.titleAward {
  color: #D0C390;
}
.titleAward::before {
  background-color: #D0C390;
}
.awardList {
  list-style: none;
  padding: 0;
  margin: 0;
}
.awardList li {
  font-size: 1.3rem;
  margin-bottom: 13px;
}
.awardList li::before {
  content: '';
  display: inline-block;
  background-image: url(../img/icon_award.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 12px;
  height: 12px;
  margin-right: 8px;
}
.awardList.close {
  display: none;
}
.awardListView {
  font-size: 1.3rem;
  color: #D0C390;
  margin-top: 15px;
  cursor: pointer;
  transition: all 0.3s;
}
.awardListView:hover {
  opacity: 0.6;
}
.awardListView small {
  font-size: 1.1rem;
}
.awardListView.close {
  display: none;
}


.articleNews {
  padding: 70px 0 146px 0;
}
.articleNews .newsList {
  margin-top: 70px;
}
.articlepContents__subTitle {
  position: relative;
  font-family: 'Saira Extra Condensed';
  text-align: center;
  font-size: 4.0rem;
  font-weight: 200;
  letter-spacing: 0.1em;
}
.articlepContents__subTitle::before,
.articlepContents__subTitle::after {
  content: '';
  display: inline-block;
  position: relative;
  bottom: 10px;
  background-color: #BFE0D6;
  width: 40px;
  height: 1px;
  margin-right: 50px;
}
.articlepContents__subTitle::after {
  margin-right: 0;
  margin-left: 50px;
}

.articleMasterpiece {
  background-color: #EFF5F3;
  padding: 100px 0 50px 0;
}
.artistText01 {
  text-align: center;
  font-size: 1.5rem;
  margin-top: 15px;
}
.masterpieceList {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 0;
  margin: 70px 0 0 0;
}
.masterpieceList::after{
  content:"";
  display: block;
  width: 358px;
}
.masterpieceList > li {
  width: 358px;
  margin-bottom: 70px;
}
.masterpieceList__image {
  background-color: #FFFFFF;
  width: 385px;
  height: 240px;
  object-fit: contain;
  transition: all 0.3s;
}
.masterpieceList__image:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
.masterpieceList .categoryList{
  margin-top: 23px;
}
.masterpieceList__title {
  display: inline;
  font-size: 1.4rem;
  line-height: 1.7em;
  white-space: pre-wrap;
}
.masterpieceList > li > a {
  color: #6794B1;
  text-decoration: underline;
  transition: all 0.3s;
}
.masterpieceList > li > a:hover {
  color: #999999;
  text-decoration: none;
}

.masterpieceList__text {
  background-color: #FFFFFF;
  width: 100%;
  font-size: 1.2rem;
  white-space: pre-wrap;
  padding: 0 6px;
  margin-top: 10px;
}

.articleBiography {
  position: relative;
  padding: 120px 0 0 0;
  overflow: hidden;
}

.articlepContents__subTitle2 {
  font-family: 'Saira Extra Condensed';
  font-size: 4.0rem;
  font-weight: 200;
  letter-spacing: 0.1em;
}

.biographyTab {
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #BFE0D6;
  width: 100vw;
  padding: 0 calc(50vw - 50%);
  margin: 50px calc(50% - 50vw) 0 calc(50% - 50vw) ;
}
.biographyTab li {
  border-left: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  border-radius: 1px;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  padding: 17px 20px;
  cursor: pointer;
  transition: all 0.3s;
}
.biographyTab li:first-child {
  border-left: 2px solid #FFFFFF;
}
.biographyTab li:last-child {
  border-right: 2px solid #FFFFFF;
}
.biographyTab li.active {
  background-color: #5F5E5E;
  cursor: auto;
}
.biographyTab li:hover {
  background-color: #5F5E5E;
}
.biographyPanel {
  display: none;
  margin-top: 50px;
}
.biographyPanel.active {
  display: block;
}
.biographySlide {
  display: none;
}
.biographyList {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}
.biographyList > li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 48%;
  margin-bottom: 30px;
}
.biographyList__left {
  width: 114px;
}
.biographyList__image {
  background-color: #EBF5F2;
  width: 114px;
  height: 114px;
  object-fit: contain;
  transition: all 0.3s;
}
.biographyList__image:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.biographyList__right {
  width: calc(100% - 114px - 20px);
}
.biographyList__title {
  display: inline;
  font-size: 1.4rem;
  line-height: 1.7em;
  white-space: pre-wrap;
}
.biographyList a {
  color: #6794B1;
  text-decoration: underline;
  transition: all 0.3s;
}
.biographyList a:hover {
  color: #999999;
  text-decoration: none;
}

.categoryList li.categoryList__year {
  color: inherit;
  font-size: 1.2rem;
  font-weight: 400;
  background-color: inherit;
  padding: 0;
}
.biographyList__text {
  width: 100%;
  font-size: 1.2rem;
  white-space: pre-wrap;
  margin-top: 10px;
}
.biographyListView {
  margin-top: 70px;
  text-align: center;
}
.biographyListView__others {
  font-size: 1.2rem;
  margin-top: 10px;
}
.biographyListView .moerLink:hover {
  background-color: #BFE0D6;
  opacity: 0.6;
}

.articleBanner {
  background-color: #EFF5F3;
  padding: 70px 0 20px 0;
  margin-bottom: -150px;
  margin-top: 100px;
}
.bannerLIst {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}
.bannerLIst li {
  width: 200px;
  margin: 0 15px 50px 15px;
}
.bannerLIst li img {
  width: 200px;
  height: auto;
  transition: box-shadow 0.3s;
}
.bannerLIst li a:hover img {
  box-shadow: 0 0 20px rgb(0 0 0 / 15%);
}
.bannerLIst__text {
  font-size: 1.2rem;
  line-height: 1.66em;
  color: #6794B1;
  text-decoration: underline;
  margin-top: 1.2em;
}
.bannerLIst li a:hover .bannerLIst__text {
  text-decoration: none;
}

@media (max-width: 767px) {
  .artistContents .secTemporaryNews {
    margin-bottom: 0;
  }
  .articleMain {
    padding: 30px 0 50px 0;
  }
  .articleMain__image {
    width: 100%;
  }
  .articleMain__attribute {
    width: 100%;
    padding-right: 0;
    margin-top: 50px;
  }
  .articleMain__linkFun {
    width: 100%;
    margin-bottom: 20px;
  }
  .articleMain__linkSns {
    justify-content: center;
  }
  .articleMain__linkSns a {
    margin-left: 8px;
    margin-right: 8px;
  }
  .profileTable th {
    width: 130px;
  }
  .profileTable td {
    width: calc(100% - 130px);
  }

  .articleNews {
    padding: 50px 0 70px 0;
  }
  .articlepContents__subTitle {
    position: relative;
    font-family: 'Saira Extra Condensed';
    text-align: center;
    font-size: 4.0rem;
    font-weight: 200;
    letter-spacing: 0.1em;
  }
  .articlepContents__subTitle::before,
  .articlepContents__subTitle::after {
    width: 30px;
    margin-right: 20px;
  }
  .articlepContents__subTitle::after {
    margin-right: 0;
    margin-left: 20px;
  }
  .articleNews .newsList {
    margin-top: 50px;
  }

  .articleMasterpiece {
    padding: 70px 0 50px 0;
  }
  .masterpieceList {
    margin: 50px 0 0 0;
  }
  .masterpieceList::after{
    content:"";
    display: block;
    width: 100%;
  }
  .masterpieceList > li {
    width: 100%;
    margin-bottom: 50px;
  }
  .masterpieceList__image {
    background-color: #FFFFFF;
    width: 100%;
    height: 240px;
    object-fit: contain;
  }

  .articleBiography {
    padding: 70px 0 0 0;
  }
  .biographyTab {
    overflow-x: scroll;
  }
  .biographyPanel {
    margin-top: 30px;
  }
  .biographySlide {
    display: block;
    text-align: right;
    margin-top: 10px;
  }
  .biographySlide label {
    font-size: 1.1rem;
    color: #BFE0D6;
  }
  .biographySlide label::after {
    content: url(../img/icon_slide.svg);
    margin-left: 9px;
    vertical-align: top;
  }
  .biographyList > li {
    width: 100%;
  }

  .biographyListView {
    margin-top: 50px;
    text-align: center;
  }

  .articleBanner {
    padding: 70px 0 30px 0;
    margin-bottom: -100px;
  }
  .bannerLIst li {
    margin: 0 15px 40px 15px;
  }  
} /* end @media */
