@charset "UTF-8";
/*
# =================================================================
# フォント
# =================================================================*/
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+JP:wght@100..900&display=swap');
.fontInter {
  font-family: "Inter", sans-serif; /* font-weight:100 to 900 */
}
.fontCormorantGaramond {
  font-family: "Cormorant Garamond", serif; /* font-weight:300 to 700 */
}

/*
# =================================================================
# 共通要素
# =================================================================*/
html {
  font-size: 62.5%;
}
body {
  background: #e4e4e4;
  font-family: "Noto Sans JP", "-apple-system", "BlinkMacSystemFont", "Helvetica Neue", "Segoe UI", "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", "Meiryo", "sans-serif";
  font-size: 1.3rem;
  color: #000;
  letter-spacing: .06em;
}
header {
  width: 100%;
  padding: 50px 55px 50px 70px;
  position: fixed;
  top: 0;
  z-index: 10;
}
header .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
header .inner .logo {
  width: 236px;
}
header .inner .btnMenu {
  width: 55px;
  position: relative;
  top: -13px;
}
header .inner .btnMenu a {
  width: 55px;
  display: block;
  cursor: pointer;
  position: relative;
}
header .inner .btnMenu a img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transition: .3s;
}
header .inner .btnMenu a:hover img:nth-of-type(1) {
  opacity: 0;
}
header .inner .btnMenu a img:nth-of-type(2) {
  opacity: 0;
}
header .inner .btnMenu a:hover img:nth-of-type(2) {
  opacity: 1;
}
.menu {
  width: 100%;
  height: 100dvh;
  background: rgba(228,228,228,.95);
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: .3s ease-in-out;
  z-index: 10;
}
.menu.act {
  opacity: 1;
  visibility: visible;
}
.menu .bg {
  width: 490px;
  height: 100%;
  margin: 0 0 0 auto;
  padding: 115px 0 50px 0;
  background: #ff5500;
  position: relative;
  overflow-y: scroll;
}
.menu .bg::-webkit-scrollbar{
   width: 1px;
   position: relative;
   right: 0;
}
.menu .bg::-webkit-scrollbar-track{
   background-color: #ff5500;
}
.menu .bg::-webkit-scrollbar-thumb{
   background-color: #ff5500;
}
.menu .bg .inner {
  width: calc(100% - 110px);
  margin: 0 55px;
}
.menu .bg .inner nav {
  margin: 0 0 60px 0;
}
.menu .bg .inner nav ul li {
  margin: 0 0 37px 0;
}
.menu .bg .inner nav ul li:nth-last-of-type(1) {
  margin: 0;
}
.menu .bg .inner nav ul li a {
  font-family: "Inter", sans-serif;
  font-size: 30px;
  font-weight: 200;
  color: #fff;
  line-height: 1;
  position: relative;
}
.menu .bg .inner nav ul li a::after {
  content: '';
  width: 0;
  height: 1px;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: -10px;
  transition: .3s;
}
.menu .bg .inner nav ul li a:hover::after {
  width: 100%;
}
.menu .bg .inner .boxSns {
  margin: 0 0 80px -20px;
}
.menu .bg .inner .boxSns a {
  padding: 12px 22px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 200;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  position: relative;
}
.menu .bg .inner .boxSns a:nth-of-type(2) {
  margin: 0 10px;
}
.menu .bg .inner .boxSns a:link {
  color: #fff;
}
.menu .bg .inner .boxSns a .draw-circle {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.menu .bg .inner .boxSns a .draw-circle rect {
  fill: none;
  stroke: #fff;
  stroke-width: 1;
  rx: 999;
  ry: 999;
  stroke-dasharray: 260;
  stroke-dashoffset: 260;
  transition: stroke-dashoffset 0.8s cubic-bezier(.4,0,.2,1);
  stroke-linecap: round;
}
.menu .bg .inner .boxSns a:hover .draw-circle rect {
  stroke-dashoffset: 0;
}
.menu .bg .inner .boxCopy {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 200;
  color: #fff;
}
.menu .bg .btnClose {
  width: 55px;
  position: absolute;
  top: 35px;
  right: 55px;
}
.menu .bg .btnClose a {
  width: 55px;
  display: block;
  cursor: pointer;
  position: relative;
}
.menu .bg .btnClose a img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transition: .3s;
}
.menu .bg .btnClose a:hover img:nth-of-type(1) {
  opacity: 0;
}
.menu .bg .btnClose a img:nth-of-type(2) {
  opacity: 0;
}
.menu .bg .btnClose a:hover img:nth-of-type(2) {
  opacity: 1;
}

main .inner {
  max-width: 1300px;
  width: 90%;
  margin: 0 auto;
}
main .inner.type2 {
  max-width: 1440px;
}
main .inner.type3 {
  max-width: none;
  width: 100%;
}
footer {
  padding: 60px 0 55px 0;
  background: #e4e4e4;
  border-top: 1px solid #000;
}
footer .inner {
  max-width: 1300px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
footer .inner .fMenu {
  width: 60%;
  display: flex;
  flex-wrap: wrap;
}
footer .inner .fMenu ul {
  margin: 0 75px 0 0;
}
footer .inner .fMenu ul li {
  margin: 0 0 20px 0;
}
footer .inner .fMenu ul li:nth-last-of-type(1) {
  margin: 0;
}
footer .inner .fMenu ul li a {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: .02em;
  position: relative;
}
footer .inner .fMenu ul li a::after {
  content: '';
  width: 0;
  height: 1px;
  background: #000;
  position: absolute;
  bottom: -5px;
  left: 0;
  transition: .3s;
}
footer .inner .fMenu ul li a:hover::after {
  width: 100%;
}
footer .inner .fSns {
  width: 40%;
  margin: -12px 0 0 0;
  text-align: right;
}
footer .inner .fSns a {
  padding: 12px 18px;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 300;
  text-decoration: none;
  letter-spacing: .02em;
  display: inline-block;
  position: relative;
}
footer .inner .fSns a:nth-of-type(2) {
  margin: 0 10px;
}
footer .inner .fSns a .draw-circle {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
footer .inner .fSns a .draw-circle rect {
  fill: none;
  stroke: #000;
  stroke-width: 1;
  rx: 999;
  ry: 999;
  stroke-dasharray: 260;
  stroke-dashoffset: 260;
  transition: stroke-dashoffset 0.8s cubic-bezier(.4,0,.2,1);
  stroke-linecap: round;
}
footer .inner .fSns a:hover .draw-circle rect {
  stroke-dashoffset: 0;
}
footer .inner .fInfo {
  width: 100%;
  margin: 170px 0 0 0;
}
footer .inner .fInfo img {
  max-width: 1145px;
  width: 100%;
  margin: 0 0 40px 0;
  display: block;
}
footer .inner .fInfo .copy {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: .02em;
}
footer .inner .pagetop {
  position: absolute;
  bottom: 0;
  right: 0;
}
footer .inner .pagetop a {
  padding: 0 48px 0 0;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: .02em;
  position: relative;
}
footer .inner .pagetop a::before {
  content: '';
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  top: -10px;
  right: 0;
}
footer .inner .pagetop a::after {
  content: '';
  width: 12px;
  height: 16px;
  background: url(../img/common/iconArrow1.svg) no-repeat left top / 12px;
  position: absolute;
  top: 2px;
  right: 13px;
}
a:link,
a:active,
a:visited,
a:hover {
  color: #000;
  text-decoration: none;
}
a.hani::before {
  background: #000;
  transition: .3s;
}
a.hani:hover::before {
  background: #ff5500;
}
img {
  max-width: 100%;
  vertical-align: top;
}
*:focus {
  outline: none;
}
.sp {
  display: none !important;
}
.js-slide-title {
  overflow: hidden;
}
.js-slide-title .of {
  display: inline-block;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}
.js-slide-title.is-active .of {
  opacity: 1;
  transform: translateY(0);
}
.js-fade-title {
  opacity: 0;
  transform: translateY(10px);
  transition: transform 1s linear, opacity 1s linear;
}
.js-fade-title.is-active {
  opacity: 1;
  transform: translateY(0);
}

/*
# =================================================================
# 下層共通要素
# =================================================================*/
.underLayer main {
  margin: 155px 0 0 0;
  padding: 90px 0 0 0;
}
.underLayer main .ttl {
  position: relative;
}
.underLayer main .ttl h1 {
  margin: 0 0 30px 0;
  font-size: 50px;
  font-weight: 500;
  line-height: 1;
}
.underLayer main .ttl h1 span {
  margin: 25px 0 0 0;
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 300;
  display: block;
}
.underLayer main .ttl h2 {
  font-size: 45px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .1em;
}
.underLayer main .ttl h2 span {
  margin: 20px 0 0 0;
  padding: 0 0 0 33px;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: .02em;
  display: block;
  position: relative;
}
.underLayer main .ttl h2 span::before {
  content: '';
  width: 19px;
  height: 19px;
  background: url(../img/common/iconLogo.svg) no-repeat left top / 19px;
  position: absolute;
  top: 0;
  left: 5px;
}
.underLayer main .pankuzu {
  width: 270px;
  text-align: right;
  position: absolute;
  bottom: 0;
  right: 0;
}
.underLayer main .pankuzu a {
  margin: 0 35px 0 0;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  line-height: 1;
  letter-spacing: .02em;
  position: relative;
}
.underLayer main .pankuzu a::after {
  content: '';
  width: 22px;
  height: 1px;
  background: #000;
  position: absolute;
  top: 8px;
  right: -28px;
}
.underLayer main .pankuzu span {
  padding: 10px 12px;
  border: 1px solid #000;
  border-radius: 50%;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  line-height: 1;
  letter-spacing: .02em;
}
.underLayer .boxContact {
  padding: 80px 0 60px 0;
  background: url(../img/common/bgContact.jpg) no-repeat center top / 1920px;
  text-align: center;
}
.underLayer .boxContact .inner h2 {
  margin: 0 0 30px 0;
  font-family: "Inter", sans-serif;
  font-size: 80px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: .04em;
}
.underLayer .boxContact .inner h2 span {
  margin: 25px 0 0 0;
  font-family: "Noto Sans JP", "-apple-system", "BlinkMacSystemFont", "Helvetica Neue", "Segoe UI", "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", "Meiryo", "sans-serif";
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .04em;
  display: block;
}
.underLayer .boxContact .inner p {
  margin: 0 0 40px 0;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.9;
}
.underLayer .boxContact .inner .btnReadmore {
  max-width: 180px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.underLayer .boxContact .inner .btnReadmore::after {
  content: '';
  width: 16px;
  height: 12px;
  background: url(../img/common/iconArrow2.svg) no-repeat left top / 16px;
  position: absolute;
  top: calc(50% - 5px);
  right: 13px;
  transition: .3s ease-in-out;
}
.underLayer .boxContact .inner .btnReadmore:hover::after {
  background: url(../img/common/iconArrow2_o.svg) no-repeat left top / 16px;
}
.underLayer .boxContact .inner .btnReadmore a {
  padding: 35px 20px;
  border: 1px solid #000;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  line-height: 1;
  letter-spacing: .01em;
  transition: .3s ease-in-out;
  display: block;
}
.underLayer .boxContact .inner .btnReadmore:hover a {
  border: 1px solid #ff5500;
  background: #ff5500;
  color: #fff;
}
.boxProject {
  display: block;
}
.boxProject.act {
  display: none;
}
.boxProject ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0 2.666666%;
}
.boxProject ul li {
  width: 23%;
  margin: 0 0 60px 0;
  padding: 0 0 60px 0;
  border-bottom: 1px solid #000;
}
.boxProject ul li a img {
  max-width: 295px;
  height: 190px;
  width: 100%;
  margin: 0 auto 22px auto;
  display: block;
  object-fit: cover;
}
.boxProject ul li span {
  margin: 0 0 13px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 700;
  display: block;
}
.boxProject ul li span time {
  padding: 0 0 0 20px;
  font-family: "Noto Sans JP", "-apple-system", "BlinkMacSystemFont", "Helvetica Neue", "Segoe UI", "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", "Meiryo", "sans-serif";
  font-size: 13px;
  font-weight: 500;
}
.boxProject ul li h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}
.boxList {
  display: none;
}
.boxList.act {
  display: block;
}
.boxList ul {
  margin: 0 0 70px 0;
  border-top: 1px solid #000;
}
.boxList ul li {
  border-bottom: 1px solid #000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.boxList ul li h3 {
  width: 17%;
  padding: 30px 20px 30px 15px;
  font-size: 18px;
  font-weight: 500;
  position: relative;
}
.boxList ul li h3::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #000;
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 3px);
  left: 0;
}
.boxList ul li span {
  width: 17%;
  padding: 30px 20px 30px 0;
  font-size: 15px;
  display: block;
}
.boxList ul li p {
  width: 66%;
  padding: 30px 20px 30px 0;
  font-size: 15px;
}
.boxProject .btnMore,
.boxList .btnMore {
  max-width: 180px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.boxProject .btnMore::after,
.boxList .btnMore::after {
  content: '';
  width: 12px;
  height: 16px;
  background: url(../img/common/iconArrow4.svg) no-repeat left top / 12px;
  position: absolute;
  top: calc(50% - 8px);
  right: 15px;
  transition: .3s ease-in-out;
}
.boxProject .btnMore:hover::after,
.boxList .btnMore:hover::after {
  background: url(../img/common/iconArrow4_o.svg) no-repeat left top / 12px;
}
.boxProject .btnMore a,
.boxList .btnMore a {
  width: 180px;
  padding: 35px 20px;
  border: 1px solid #000;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  display: block;
  transition: .3s ease-in-out;
}
.boxProject .btnMore a:hover,
.boxList .btnMore a:hover {
  border: 1px solid #ff5500;
  background: #ff5500;
  color: #fff;
}
.boxArtists ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0 2.666666%;
}
.boxArtists ul li {
  width: 23%;
  margin: 0 0 70px 0;
  padding: 0 0 60px 0;
  border-bottom: 1px solid #000;
}
.boxArtists ul li img {
  max-width: 100%;
  height: 295px;
  margin: 0 auto 10px auto;
  display: block;
  object-fit: cover;
}
.boxArtists ul li .txt {
  position: relative;
}
.boxArtists ul li .txt span {
  margin: 0 0 10px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.boxArtists ul li .txt h3 {
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .16em;
}
.boxArtists ul li .txt .btnMore {
  width: 40px;
  height: 40px;
  position: absolute;
  bottom: -5px;
  right: 0;
}
.boxArtists ul li .txt .btnMore a {
  width: 40px;
  height: 40px;
  background: #000;
  border-radius: 50%;
  transition: .3s ease-in-out;
  display: block;
  position: relative;
}
.boxArtists ul li .txt .btnMore a:hover {
  background: #ff5500;
}
.boxArtists ul li .txt .btnMore a::after {
  content: '';
  width: 16px;
  height: 12px;
  background: url(../img/common/iconArrow3.svg) no-repeat left top / 16px;
  position: absolute;
  top: calc(50% - 5px);
  right: 11px;
}
.boxFlow ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
.boxFlow ul::after {
  content: '';
  width: 100%;
  height: 1px;
  background: #000;
  position: absolute;
  top: 105px;
  z-index: -1;
}
.boxFlow ul li {
  width: 16.204%;
}
.boxFlow ul li > span {
  height: 210px;
  margin: 0 0 20px 0;
  background: #d6d3b8;
  border: 1px solid #000;
  border-radius: 50%;
  font-family: "Cormorant Garamond", serif;
  font-size: 45px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
} 
.boxFlow ul li h3 {
  margin: 0 0 23px 0;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: .2em;
}
.boxFlow ul li h3 span {
  margin: 0 0 5px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .04em;
  display: block;
}
.boxFlow ul li p {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 2;
}

/*
# =================================================================
# 404エラーページ
# =================================================================*/
.errorPage404 {
  margin: 0!important;
}
.errorPage404 h1 {
  margin: 0 0 50px 0;
  font-size: 5rem;
  text-align: center;
}
.errorPage404 .editor-area {
  margin: 0 0 50px 0;
  padding: 0 5%;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.8;
}
.errorPage404 .editor-area p {
  margin: 0 0 15px 0;
}
.errorPage404 .insertion-image {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto 100px auto;
}

/*
# =================================================================
# エフェクト要素
# =================================================================*/


/*
# =================================================================
# レスポンシブ要素
# =================================================================*/
/* 4K:2560px */
@media screen and (min-width: 1921px) {
  .underLayer .boxContact {
    background: url(../img/common/bgContact.jpg) no-repeat center top / cover;
  }
}

/* PC:1920px */

/* laptop NotePC L */
@media screen and (max-width: 1440px) {
  .boxFlow ul li > span {
    height: 14.584vw;
  }
  .boxFlow ul::after {
    top: 7.5vw;
  }
}

/* laptop NotePC */
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 960px) {
  footer .inner .fMenu {
    width: 50%;
  }
  footer .inner .fSns {
    width: 50%;
  }
  footer .inner .fMenu {
    justify-content: space-between;
    gap: 0 3%;
  }
  footer .inner .fMenu ul {
    margin: 0;
  }
  footer .inner .fMenu ul:nth-of-type(1) {
    width: 25.333333%;
  }
  footer .inner .fMenu ul:nth-of-type(2) {
    width: 35.333333%;
  }
  footer .inner .fMenu ul:nth-of-type(3) {
    width: 30.333333%;
  }
  .boxArtists ul {
    gap: 0 3.333333%;
  }
  .boxArtists ul li {
    width: 31%;
  }
}

/* tablet */
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  header {
    padding: 20px 15px 20px 20px
  }
  header .inner .logo {
    margin: 6px 0 0 0;
  }
  header .inner .btnMenu {
    width: 40px;
    position: static;
  }
  header .inner .btnMenu a {
    width: 40px;
  }
  .menu .bg {
    width: 80%;
  }
  .menu .bg .btnClose {
    width: 40px;
    top: 20px;
    right: 15px;
  }
  .menu .bg .btnClose a {
    width: 40px;
  }
  footer .inner {
    display: block;
  }
  footer .inner .fMenu {
    width: 100%;
    margin: 0 0 60px 0;
    display: block;
  }
  footer .inner .fMenu ul {
    margin: 0 0 20px 0;
  }
  footer .inner .fMenu ul,
  footer .inner .fMenu ul:nth-of-type(1),
  footer .inner .fMenu ul:nth-of-type(2),
  footer .inner .fMenu ul:nth-of-type(3) {
    width: 100%;
  }
  footer .inner .fMenu ul:nth-of-type(3) {
    margin: 0;
  }
  footer .inner .fSns {
    width: 100%;
    margin: 0 0 65px 0;
    text-align: left;
  }
  footer .inner .fSns a {
    margin: 0 30px 0 0;
    padding: 0;
  }
  footer .inner .fSns a:nth-of-type(2) {
    margin: 0 30px 0 0;
  }
  footer .inner .fSns a:nth-of-type(3) {
    margin: 0;
  }
  footer .inner .fSns a .draw-circle {
    display: none;
  }
  footer .inner .fInfo {
    margin: 0;
  }
  a.hani::before {
    transition: none;
  }
  a.hani:hover::before {
    background: #000;
  }
  .boxProject ul {
    gap: 0 6%;
  }
  .boxProject ul li {
    width: 47%;
  }
  .boxList ul li {
    display: block;
  }
  .boxList ul li h3 {
    width: 100%;
    padding: 30px 20px 0 15px;
  }
  .boxList ul li h3::before {
    top: calc(50% - -12px);
  }
  .boxList ul li span {
    width: 100%;
    padding: 20px 20px 0 0;
  }
  .boxList ul li p {
    width: 100%;
    padding: 20px 20px 30px 0;
  }
  .boxArtists ul {
    gap: 0 6%;
  }
  .boxArtists ul li {
    width: 47%;
  }
  .boxFlow ul {
    display: block;
  }
  .boxFlow ul::after {
    content: none;
  }
  .boxFlow ul li {
    width: 100%;
    margin: 0 0 50px 0;
  }
  .boxFlow ul li:nth-last-of-type(1) {
    margin: 0;
  }
  .boxFlow ul li > span {
    width: 150px;
    height: 150px;
    margin: 0 auto;
  }
}

/* mobile L */
@media screen and (max-width: 480px) {
  .menu .bg {
    width: 100%;
    padding: 60px 0 50px 0;
  }
  .menu .bg .inner {
    width: calc(100% - 76px);
    margin: 0 38px;
  }
  .menu .bg .inner nav {
    margin: 0 0 50px 0;
  }
  .menu .bg .inner nav ul li {
    margin: 0 0 23px 0;
  }
  .menu .bg .inner nav ul li a {
    font-size: 8vw;
  }
  .menu .bg .inner .boxSns {
    margin: 0 0 25px -20px;
  }
  .menu .bg .inner .boxSns a {
    padding: 12px 18px;
    font-size: 3.4vw;
  }
  .menu .bg .inner .boxCopy {
    font-size: 4.8vw;
  }
  footer .inner .fMenu ul li a {
    font-size: 4.4vw;
  }
  footer .inner .fSns a {
    font-size: 4.4vw;
  }
  footer .inner .fInfo img {
    margin: 0 0 25px 0;
  }
  footer .inner .fInfo .copy {
    font-size: 3vw;
  }
  footer .inner .pagetop {
    bottom: 10px;
  }
  footer .inner .pagetop a {
    font-size: 4.2vw;
  }
  /* 下層共通要素 */
  .underLayer main {
    margin: 80px 0 0 0;
    padding: 140px 0 0 0;
  }
  .underLayer main .ttl {
    margin: 0 0 30px 0;
    padding: 0 0 40px 0;
  }
  .underLayer main .ttl h1 {
    font-size: 8.2vw;
  }
  .underLayer main .ttl h1 span {
    font-size: 4.8vw;
  }
  .underLayer main .pankuzu a {
    font-size: 3.4vw;
  }
  .underLayer main .pankuzu span {
    font-size: 3.4vw;
  }
  .underLayer main .ttl h2 {
    font-size: 8.6vw;
  }
  .underLayer main .ttl h2 span {
    font-size: 4.6vw;
  }
  .underLayer main .ttl h2 span::before {
    top: -1px;
  }
  .underLayer .boxContact {
    padding: 50px 0;
  }
  .underLayer .boxContact .inner h2 {
    font-size: 15.6vw;
  }
  .underLayer .boxContact .inner h2 span {
    margin: 20px 0 0 0;
    font-size: 4.3vw;
  }
  .underLayer .boxContact .inner p {
    margin: 0 0 30px 0;
    font-size: 4vw;
  }
  .boxProject ul li {
    margin: 0 0 50px 0;
    padding: 0 0 30px 0;
  }
  .boxProject ul li a img {
    margin: 0 0 18px 0;
  }
  .boxProject ul li span {
    margin: 0 0 8px 0;
    font-size: 5.2vw;
    position: relative;
  }
  .boxProject ul li span time {
    margin: 0;
    font-size: 3.3vw;
    position: absolute;
    top: 5px;
    right: 0;
  }
  .boxProject ul li h3 {
    font-size: 3.4vw;
    letter-spacing: .04em;
  }
  .boxList ul {
    margin: 0 0 50px 0;
  }
  .boxList ul li h3::before {
    top: calc(50% - -9px);
  }
  .boxList ul li h3 {
    padding: 25px 0 0 15px;
    font-size: 4.8vw;
  }
  .boxList ul li span {
    padding: 15px 0 0 0;
  }
  .boxList ul li p {
    padding: 15px 0 25px 0;
  }
  .boxProject .btnMore a,
  .boxList .btnMore a {
    font-size: 4vw;
  }
  .boxArtists ul li {
    margin: 0 0 50px 0;
    padding: 0 0 40px 0;
  }
  .boxArtists ul li img {
    height: 140px;
  }
  .boxArtists ul li .txt span {
    font-size: 6.4vw;
  }
  .boxArtists ul li .txt h3 {
    font-size: 4.6vw;
  }
  .boxFlow ul li {
    margin: 0 0 40px 0;
  }
  .boxFlow ul li > span {
    margin: 0 auto 10px auto;
  }
  .boxFlow ul li h3 {
    margin: 0 0 20px 0;
    font-size: 5.4vw;
  }
  .boxFlow ul li h3 span {
    font-size: 4.3vw;
  }
  .boxFlow ul li p {
    font-size: 3.8vw;
    letter-spacing: .02em;
  }
  .errorPage404 h1 {
    font-size: 8vw;
  }
  .errorPage404 .editor-area {
    font-size: 3vw;
  }
}

/* mobile M */
@media screen and (max-width: 375px) {
  .underLayer .boxContact .inner .btnReadmore a {
    font-size: 4vw;
  }
}

/* mobile S */
@media screen and (max-width: 320px) {
}
