@charset "UTF-8";
/* ©SCHNEID */
@import url('https://fonts.googleapis.com/css2?family=BIZ+UDPGothic:wght@400;700&family=Marcellus&display=swap');
/*------------------------------------------------------------
	Reset
------------------------------------------------------------*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, dialog, figure, footer, header, nav, section, time, mark, audio, video {
 font-size: 1em;
 margin: 0;
 padding: 0;
 border: 0;
 outline: 0;
 -webkit-box-sizing: border-box;
 box-sizing: border-box;
 background: transparent;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
 display: block;
}
figure {
 margin: 1.2rem auto;
}
html {
 font-size: 62.5%;
 -webkit-overflow-scrolling: touch;
}
body {
 -webkit-text-size-adjust: 100%;
}
* {
 box-sizing: border-box;
}
body, table, input, textarea, select, option, h1, h2, h3, h4, h5, h6, p {
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
 margin: 0;
 padding: 0;
}
h1, h2, h3, h4, h5, h6 {
 font-weight: 600;
 font-feature-settings: "palt"1;
}
table, input, textarea, select, option {
 line-height: 1.1;
}
ol, ul {
 list-style: none;
}
blockquote, q {
 quotes: none;
}
:focus {
 outline: 0;
}
ins {
 text-decoration: none;
}
del {
 text-decoration: line-through;
}
img {
 vertical-align: bottom;
}
hr {
 height: 0;
 margin: 0;
 padding: 0;
 border: 0;
}
a {
 color: inherit;
 text-decoration: none;
 -webkit-transition: all 100ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
 transition: all 100ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
 display: inline-block;
}
a:hover {
 cursor: pointer;
 -webkit-transition: all 100ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
 transition: all 100ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
}
img {
 max-width: 100%;
 width: 100%;
 height: auto;
}
figure, img {
 pointer-events: none;
}
/*------------------------------------------------------------
	layout
------------------------------------------------------------*/
html {
 height: -webkit-fill-available;
}
body {
 font-family: "Hina Mincho", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
 font-size: 1.6rem;
 line-height: 2.2em;
 font-weight: 400;
 letter-spacing: 1px;
 background-color: #fefcbe;
 color: #333;
 font-style: inherit;
 font-weight: inherit;
 -ms-text-size-adjust: 100%;
 -webkit-text-size-adjust: 100%;
 text-rendering: geometricPrecision;
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
 -webkit-tap-highlight-color: transparent;
 overflow-x: hidden;
 -webkit-overflow-scrolling: touch;
 min-height: -webkit-fill-available;
}
b, strong, .bold {
 font-weight: 700;
}
.loadingWrap {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 height: 100vh;
 min-height: 100%;
 min-height: 100vh;
 min-height: 100lvh;
 overflow: hidden;
 z-index: 10000;
 display: flex;
 justify-content: center;
 -webkit-box-align: center;
 -ms-flex-align: center;
 align-items: center;
 background: #fff;
 background-size: 100% auto;
}
.loadingWrap img {
 width: 440px;
 max-width: 60%;
 margin-bottom: 3vh;
}
.flex {
 display: -webkit-box;
 display: -ms-flexbox;
 display: -webkit-flex;
 display: flex;
 -webkit-box-lines: multiple;
 -moz-box-lines: multiple;
}
.images {
 margin: auto;
 width: auto;
 max-width: 100%;
 height: auto;
 padding: 0;
 position: absolute;
 left: 0;
 right: 0;
 top: 0;
 bottom: 0;
 -webkit-transition: all .8s cubic-bezier(.2, 1, .2, 1);
 transition: all .8s cubic-bezier(.2, 1, .2, 1);
}
a:hover .images {
 -webkit-transform: scale3d(1.1, 1.1, 1.1);
 transform: scale3d(1.1, 1.1, 1.1);
}
.fadein {
 opacity: 0;
 transform: translate(0, 60px);
 transition: all 1000ms;
}
.fadein.in, .fadein.active {
 transform: translate(0, 0);
}
.ani {
 transition: ease;
 opacity: 0;
 -webkit-animation: ani-item 2s ease 2s 1 forwards;
 animation: ani-item 2s ease 2s 1 forwards;
}
@-webkit-keyframes ani-item {
 0% {
  opacity: 0;
  filter: brightness(200%);
 }
 100% {
  opacity: 1;
  filter: brightness(100%);
 }
}
@keyframes ani-item {
 0% {
  opacity: 0;
  filter: brightness(200%);
 }
 100% {
  opacity: 1;
  filter: brightness(100%);
 }
}
.zoomIn, .fadeLeft, .fadeRight {
 opacity: 0;
}
/* 左から */
.fadeLeft.in {
 animation-name: fadeLeftAnime;
 animation-duration: 1s;
 animation-fill-mode: forwards;
 opacity: 0;
}
@keyframes fadeLeftAnime {
 from {
  opacity: 0;
  transform: translateX(-160px);
 }
 to {
  opacity: 1;
  transform: translateX(0);
 }
}
/* 右から */
.fadeRight.in {
 animation-name: fadeRightAnime;
 animation-duration: 0.5s;
 animation-fill-mode: forwards;
 opacity: 0;
}
@keyframes fadeRightAnime {
 from {
  opacity: 0;
  transform: translateX(100px);
 }
 to {
  opacity: 1;
  transform: translateX(0);
 }
}
/* 縮小 */
.zoomIn.in {
 animation-name: zoomInAnime;
 animation-duration: 0.5s;
 animation-fill-mode: forwards;
 opacity: 0;
}
@keyframes zoomInAnime {
 from {
  transform: scale(1.8);
  opacity: 0;
 }
 to {
  transform: scale(1);
  opacity: 1;
 }
}
.delay3s {
 animation-delay: 3s;
}
.intro {
 position: relative;
 width: 100%;
 min-height: 100vh;
 min-height: 100lvh;
}
.intro .section_bg {
 width: 100%;
 height: 700px;
 top: 0;
 left: 0;
 position: sticky;
 overflow: hidden;
 background-color: #0C2123;
}
.intro .section_bg .shrink {
 opacity: .8;
 background: url('images/main.jpg') no-repeat;
 background-size: cover;
 background-position: center top 30%;
 width: 100%;
 height: 100%;
 transform: scale(1.2);
}
.shrink.active {
 animation: shrink 14s linear forwards;
}
@keyframes shrink {
 0% {
  transform: scale(1.2);
 }
 100% {
  transform: scale(1);
 }
}
.intro .section_inner {
 position: relative;
 margin-top: -700px;
 overflow: hidden;
 z-index: 1;
}
.intro .section_inner .gakufu, .intro .section_inner .onpu {
 width: 100%;
 height: 700px;
 position: relative;
 display: flex;
 justify-content: flex-end;
 flex-flow: column;
}
.intro .section_inner .onpu {
 z-index: 2;
 position: absolute;
}
.intro .section_inner .gakufu img, .intro .section_inner .onpu img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 object-position: center bottom;
}
.intro .header-logo {
 position: absolute;
 left: 6%;
 top: 30px;
 width: 30%;
 max-width: 230px;
 z-index: 10;
}
.intro .header-ttl {
 position: absolute;
 bottom: 0;
 width: 100%;
 z-index: 10
}
.intro .header-ttl img {
 display: block;
 margin: 0 auto;
 width: 60%;
 max-width: 800px;
}
.intro_inner {
 position: relative;
 z-index: 1;
 background-color: #fefcbe;
 padding-bottom: 5rem;
}
.intro_inner .period {
 text-align: center;
 font-size: clamp(1.5rem, 2.4vw, 2.4rem);
 padding-bottom: 2rem;
}
.intro_inner .period .bg-yellow {
 background-color: #fff100;
 display: inline-block;
 line-height: 1em;
 padding: 2px 12px 4px;
}
.intro_inner .period .bg-yellow span {
 font-size: 1.6em;
}
@media screen and (max-width: 812px) {
 .intro .section_inner {
  margin-top: -540px;
 }
 .intro .section_inner .gakufu, .intro .section_inner .onpu, .intro .section_bg {
  height: 540px;
 }
 .intro .section_bg .shrink {
  background-position: left 38% top;
 }
 .intro .section_inner .onpu img {
  height: 72%;
  margin-bottom: 50px;
 }
 .intro .header-logo {
  max-width: 170px;
  left: 2%;
 }
 .intro .header-ttl img {
  width: 74%;
  max-width: 600px;
 }
}
@media screen and (max-width: 520px) {
 .intro .header-ttl img {
  width: 98%;
 }
}
#container {
 width: 100%;
 max-width: 1920px;
 margin: 0 auto;
 overflow: hidden;
 position: relative;
}
.contents {
 margin: 0 auto;
 width: 92%;
 max-width: 1240px;
 padding: 40px;
 position: relative;
 background-color: #fff;
 border-radius: clamp(50px, 8vw, 100px);
}
.contents .box {
 margin-bottom: clamp(2rem, 5vh, 6rem);
}
.area {
 margin-bottom: 6rem;
}
.ttl-cp {
 font-size: clamp(1.8rem, 4vw, 3.6rem);
 line-height: 1.6em;
 text-align: center;
 display: flex;
 flex-flow: column;
 align-items: center;
}
.ttl-cp.large {
 font-size: clamp(2.2rem, 4vw, 3.6rem);
}
.ttl-cp span {
 line-height: 1em;
 display: inline-block;
 background-color: #fff100;
 font-weight: normal;
 padding: 0 12px 4px;
 margin-bottom: 12px;
 letter-spacing: 2px;
}
.ttl-sub {
 font-size: clamp(1.7rem, 3vw, 3rem);
 line-height: 1.6em;
 text-align: center;
 display: flex;
 flex-flow: column;
 align-items: center;
 color: rgba(210, 190, 239, 1);
}
.read {
 font-weight: 600;
 line-height: 1.6em;
 font-size: clamp(1.4rem, 2vw, 1.8rem);
 width: 90%;
 margin: 1rem auto 4rem;
}
.info {
 position: relative;
 margin-top: 5rem;
 margin-bottom: 3rem;
 text-align: center;
}
.info .tti-info {
 font-size: clamp(1.6rem, 2.4vw, 2.4rem);
 padding-top: 2rem;
}
.info .tti-info-sub {
 font-size: clamp(1.5rem, 2.2vw, 2rem);
 margin: 3rem auto 1.2rem;
}
.btn-area {
 display: -ms-grid;
 display: grid;
 grid-gap: 2rem;
 -ms-grid-columns: 1fr 1fr;
 grid-template-columns: repeat(2, 1fr);
 max-width: 600px;
 margin: 2rem auto;
 width: 90%;
 text-align: center;
}
.btn-area.post {
 grid-gap: 3rem;
 -ms-grid-columns: 1fr 1fr 1fr;
 grid-template-columns: repeat(3, 1fr);
 max-width: 400px;
 margin: 2rem auto;
 width: 80%;
}
.btn-s {
 font-size: clamp(1.6rem, 2vw, 2rem);
 font-weight: 600;
 line-height: 1.4em;
 border: 1px solid #777;
 padding: 2px 2px 4px;
 border-radius: 20px;
 display: block;
 margin: auto;
 max-width: 240px;
 transition: background-color 0.3s ease-in-out;
}
.btn-s:hover {
 background-color: rgba(210, 190, 239, 0.9);
 border-color: rgba(210, 190, 239, 0.9);
}
.kiyaku {
 margin: 4rem auto;
 max-width: 230px;
 width: 50%;
 text-align: center;
}
.kiyaku.streaming {
 max-width: 240px;
 margin-top: 0;
}
.sns-post {
 margin: 4rem auto;
 max-width: 320px;
 width: 80%;
 text-align: center;
}
.sns-post .btn-s {
 max-width: 100%;
 padding: 10px;
 border-radius: 100px;
}
.btn-area.post.music {
 grid-gap: 2rem 1rem;
 font-size: clamp(1.3rem, 1.6vw, 1.6rem);
 line-height: 1em;
 white-space: nowrap;
 margin: 0 auto;
 letter-spacing: normal;
 font-family: Arial, Helvetica, "sans-serif";
 width: 90%;
}
.btn-area.post.music a, .modal-content a {
 text-decoration: underline;
 text-decoration-color: rgba(210, 190, 239, 1);
}
.btn-area.post.music a:hover, .modal-content a:hover {
 background-color: rgba(210, 190, 239, 0.9);
}
.title {
 text-align: center;
 margin: 0 auto 1rem;
 font-size: clamp(2rem, 2vw, 3rem);
 font-weight: 600;
}
.title .en {
 padding: 0 1em 0.1em;
}
.title .jp {
 display: block;
 font-size: 52px;
 line-height: 1.6em;
 margin-top: .5em;
 white-space: nowrap;
}
.subtitle {
 text-align: center;
 margin: 0 auto .5em;
 font-size: clamp(1.6rem, 2vw, 2rem);
 font-weight: 600;
}
.profile {
 width: 86%;
 max-width: 800px;
 margin: 4rem auto 1rem;
}
.profile-txt .ttl {
 font-size: clamp(1.6rem, 1.8vw, 1.8rem);
 margin-bottom: .6rem;
}
.profile-ph {
 width: 50%;
 max-width: 160px;
}
.fotter {
 padding: 2rem;
 text-align: center;
 font-size: 12px;
}
.read {
 text-align: center;
 font-size: clamp(1.8rem, 4vw, 3.6rem);
 font-weight: 600;
 line-height: 1.6em;
 font-size: clamp(1.2rem, 2vw, 1.8rem);
 margin: 1rem auto 4rem;
}
.youtube {
 max-width: 800px;
 width: 90%;
 margin: 1rem auto;
}
.youtube iframe {
 display: block;
 width: 100%;
 height: auto;
 aspect-ratio: 1.77777778;
 max-width: 100%;
}
.youtube.h {
 display: -ms-grid;
 display: grid;
 grid-gap: 4rem;
 -ms-grid-columns: 1fr 1fr;
 grid-template-columns: repeat(2, 1fr);
}
.soon {
 display: flex;
 justify-content: center;
 align-items: center;
 height: 300px;
 font-size: clamp(3.2rem, 6vw, 6rem);
 color: rgba(210, 190, 239, 1);
}
@media screen and (min-width: 813px) {
 .ttl-cp span {
  font-size: .8em;
 }
 .info {
  aspect-ratio: 2.5;
  max-width: 1000px;
  width: 100%;
  margin: 10rem auto 3rem;
 }
 .info .jacket {
  width: 40%;
  position: absolute;
  left: 0;
  top: 0;
 }
 .info .music-area, .info .tti-info {
  padding-left: 40%;
 }
 .btn-area.post.music {
  width: 100%;
  grid-gap: 2rem;
 }
 .btn-area.post {
  grid-gap: 5rem;
  margin: 4rem auto 2rem;
 }
 .profile {
  display: flex;
  justify-content: space-between;
  align-items: center;
 }
 .profile-ph {
  width: 30%;
  margin-right: 20px;
 }
 .profile-txt {
  width: 100%;
 }
 .youtube {
  margin: 4rem auto;
 }
 .present {
  margin: 2rem auto 0;
  max-width: 1000px;
  display: -ms-grid;
  display: grid;
  grid-gap: 5rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: repeat(3, 1fr);
 }
}
@media screen and (max-width: 812px) {
 .contents {
  padding: 20px 0;
 }
 .contents .box {
  margin-bottom: 2rem;
 }
 .intro_inner {
  padding-bottom: 3rem;
 }
 .area {
  margin-bottom: 3rem;
 }
 .info .jacket {
  width: 70%;
  max-width: 500px;
  margin: 2rem auto 0;
 }
 .kiyaku {
  margin: 2rem auto;
 }
 .kiyaku .btn-s {
  font-size: 1.4rem;
 }
 .profile-txt .ttl {
  text-align: center;
 }
 .profile-ph {
  margin: 0 auto 1.2rem;
 }
 .youtube.h {
  grid-gap: 1rem;
 }
 .present {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
 }
 .present li {
  width: 48%;
  padding: 0 2%;
  margin-top: 3rem;
 }
}
/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 height: 100vh;
 height: 100lvh;
 min-height: 100vh;
 min-height: 100lvh;
 text-align: center;
 background: rgba(0, 0, 0, 50%);
 padding: 40px;
 overflow: auto;
 opacity: 0;
 visibility: hidden;
 transition: .3s;
 box-sizing: border-box;
 z-index: 1000;
 display: flex;
 justify-content: center;
}
.modal-container.active {
 opacity: 1;
 visibility: visible;
}
.modal-body {
 position: relative;
 min-height: 100%;
 width: 100%;
}
.modal-content {
 background: #fff;
 width: 100%;
 max-width: 900px;
 min-height: 100%;
 margin: auto;
 padding: 40px;
 text-align: left;
}
.modal-close {
 position: fixed;
 z-index: 1;
 display: flex;
 align-items: center;
 justify-content: center;
 top: 20px;
 right: 20px;
 width: 50px;
 height: 50px;
 font-size: 0;
 cursor: pointer;
 background-color: #fff100;
 border-radius: 50%;
}
.modal-close:before, .modal-close:after {
 content: "";
 display: block;
 width: 60%;
 height: 1px;
 background: #333;
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%) rotate(45deg);
}
.modal-close:after {
 transform: translate(-50%, -50%) rotate(-45deg);
}
.modal-open {
 cursor: pointer;
}
@media screen and (max-width: 812px) {
 .modal-container {
  padding: 20px;
 }
 .modal-content {
  padding: 20px;
 }
 .modal-close {
  top: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
 }
}
/* リスト */
.modal-content p, .profile-txt p {
 max-width: 800px;
 margin: 0 auto 3rem;
 position: relative;
 font-family: "BIZ UDPGothic", "ヒラギノ角ゴ Pro W5", "Hiragino Sans", "Hiragino Kaku Gothic ProN", osaka, "MS Pゴシック", sans-serif;
 font-size: 1.4rem;
 line-height: 1.6em;
}
ul.disc {
 list-style-type: disc;
 padding-left: 1.8rem;
 max-width: 800px;
 margin: 0 auto 3rem;
 position: relative;
 font-family: "BIZ UDPGothic", "ヒラギノ角ゴ Pro W5", "Hiragino Sans", "Hiragino Kaku Gothic ProN", osaka, "MS Pゴシック", sans-serif;
 font-size: 1.4rem;
 line-height: 1.6em;
}
ul.disc li {
 margin-bottom: 2rem;
}
.profile-txt p {
 opacity: .8;
 margin: 0;
}
.profile-txt .flex {
 align-items: center;
 line-height: 1em;
 margin-top: 10px;
}
.icon-instagram {
 display: inline-block;
 width: 26px;
 height: 26px;
 vertical-align: middle;
 fill: none;
 stroke: #000;
 margin-right: 5px;
}
.ico-check {
 display: inline-flex;
 align-items: center;
 margin: 0 6px;
}
.ico-check::before {
 content: "";
 width: 30px;
 height: 24px;
 background: url("images/ico-check.png") center left no-repeat;
 background-size: 24px auto;
 display: block;
}
.sp {
 display: none;
}
@media screen and (max-width : 812px) {
 .sp {
  display: block;
 }
 .pc {
  visibility: hidden;
  display: none;
 }
 .ico-check::before {
  content: "";
  width: 24px;
  height: 20px;
  background: url("images/ico-check.png") center left no-repeat;
  background-size: 18px auto;
 }
}
/*ウィジェット表示調整*/
html .sns-list {
 margin: 2rem auto 8rem;
 max-width: 1240px;
 width: 90%;
 text-align: center;
}
html .atelu_widget__grid_item {
 width: 100%;
}
html .atelu_widget__grid_item_image {
 aspect-ratio: 1;
 height: auto;
}
html .atelu_widget {
 margin: 2rem auto;
 font-family: "BIZ UDPGothic", "ヒラギノ角ゴ Pro W5", "Hiragino Sans", "Hiragino Kaku Gothic ProN", osaka, "MS Pゴシック", sans-serif;
}
html .atelu_widget__readmore_button {
 background: rgba(210, 190, 239, 1);
 font-size: clamp(1.6rem, 2vw, 2rem);
 color: #333;
 font-weight: 600;
 border-radius: 100px;
 font-family: "Hina Mincho", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
@media screen and (min-width : 813px) {
 html .sns-list {
  max-width: 1240px;
  width: 100%;
 }
 html .atelu_widget__grid_list, html .atelu_widget__grid_list_message {
  display: -ms-grid;
  display: grid;
  grid-gap: 1rem;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: repeat(4, 1fr);
 }
}
@media screen and (max-width : 812px) {
 html .atelu_widget__grid_list, html .atelu_widget__grid_list_message {
  display: -ms-grid;
  display: grid;
  grid-gap: 1rem;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: repeat(2, 1fr);
 }
}