@charset "UTF-8";
.effected, .effected::before, .effected::after, .effected > *, .effected > *::before, .effected > *::after {
  opacity: 1 !important;
  transform: translate(0, 0) scale(1, 1) !important;
}

/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

#root, #__next {
  isolation: isolate;
}

/* added */
ul,
ol {
  list-style: none;
}

html {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-style: normal;
  font-size: 33px;
  color: #666666;
  font-weight: 400;
  letter-spacing: .15em;
  line-height: 1.6;
  font-feature-settings: "palt";
  text-align: center;
}
@media screen and (max-width: 899px) {
  html {
    font-size: 3.6666666667vw;
  }
}

body {
  background-color: #efe8de;
}
@media print, screen and (min-width: 900px) {
  body {
    background: #efe8de url("../../assets/img/bg_pc.webp") no-repeat center center/auto 100%;
    background-attachment: fixed;
  }
}
@media print, screen and (min-width: 1300px) {
  body::before {
    content: "";
    background: url("../../assets/img/logo_white.svg") no-repeat center center/60% auto;
    width: 14vw;
    width: calc(calc(100% - 900px) / 2);
    position: fixed;
    aspect-ratio: 1	/	0.391;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }
}

* {
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

sup {
  top: auto;
  font-size: 60%;
  vertical-align: baseline;
  letter-spacing: .01em;
}

h1 sup, h2 sup, h3 sup, h4 sup {
  font-size: 40%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: bottom;
}

@media screen and (max-width: 899px) {
  .hide-sp {
    display: none !important;
    visibility: hidden;
  }
}

@media print, screen and (min-width: 900px) {
  .hide-pc {
    display: none !important;
    visibility: hidden;
  }
}

.txt-small {
  font-size: 88%;
}

.txt-brown {
  color: #aa9479;
  font-weight: 600;
}

a {
  text-decoration: none;
  color: #aa9479;
}

a.hoverUp {
  display: block;
  transition: .2s;
}
a.hoverUp:hover {
  transform: translateY(-0.5em);
  opacity: .8;
}

.border_btn {
  display: block;
  cursor: pointer;
  position: relative;
  border: #666 solid 1px;
  margin: 0 auto;
  padding: 1rem 3.5rem;
  color: #666 !important;
  width: fit-content;
  transition: all .2s;
}
.border_btn:hover {
  background-color: rgba(232, 223, 210, 0.5);
}
.border_btn::after {
  content: "";
  display: block;
  border: #666 solid 1px;
  border-left: none;
  border-top: none;
  position: absolute;
  right: 1em;
  top: 0;
  bottom: 0;
  width: .5em;
  height: .5em;
  transform: rotate(-45deg);
  margin: auto;
}
.border_btn.plus::before, .border_btn.plus::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #666;
  right: 1em;
  top: 0;
  bottom: 0;
  width: .75em;
  height: 1px;
  margin: auto;
  transition: all .2s;
}
.border_btn.plus::after {
  transform: rotate(90deg);
}
.border_btn.plus.opened::after {
  transform: rotate(0);
}
.border_btn.anchor::after {
  content: "";
  display: block;
  border: #666 solid 1px;
  border-left: none;
  border-top: none;
  position: absolute;
  right: 1em;
  top: 0;
  bottom: 0;
  width: .5em;
  height: .5em;
  transform: translateY(-0.25em) rotate(45deg);
  margin: auto;
}

.note {
  font-size: 0.6rem;
  letter-spacing: .1em;
  position: relative;
  line-height: 1.7;
}

.notes > li {
  text-align: left;
  padding-left: 1em;
  font-size: 0.6rem;
  letter-spacing: .1em;
  position: relative;
}
.notes > li::before {
  content: '※';
  position: absolute;
  top: 0;
  left: 0;
}
.notes.numbering {
  counter-reset: numbering;
}
.notes.numbering > li {
  padding-left: 2.1em;
  counter-increment: numbering;
}
.notes.numbering > li::before {
  content: "※" counter(numbering);
  position: absolute;
  top: 0;
  left: 0;
}

.l-page__bg {
  background-color: #FFF;
}
.l-page__inner {
  background-color: #FFF;
  max-width: 900px;
  overflow: hidden;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 901px) {
  .l-page__inner {
    box-shadow: 0px 30px 30px 0px rgba(170, 148, 121, 0.3);
  }
}

.c-mv {
  position: relative;
  background-color: #efe8de;
  padding-bottom: calc(120 / 900 * 100%);
}
.c-mv__head, .c-mv__mc, .c-mv__contents {
  position: relative;
  z-index: 2;
}
.c-mv__btn {
  margin: calc(40 / 900 * 100%) calc(50 / 900 * 100%) 0;
  cursor: pointer;
  border-radius: 999px;
  overflow: hidden;
  filter: drop-shadow(0px 7px 4px rgba(0, 0, 0, 0.16));
  transition: all .2s;
}
.c-mv__btn:hover {
  transform: translateY(0.15rem);
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.16));
}
.c-mv__btn::before {
  position: absolute;
  content: '';
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fbfbfb;
  animation: btn_animation 2.5s ease-in-out infinite;
}
@keyframes btn_animation {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
.c-mv__mov {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  margin: auto;
}

.c-intro {
  position: relative;
  background: url("../../assets/img/intro_bg.webp") no-repeat center top/100% auto;
}

.c-cv {
  position: relative;
}
.c-cv_before_copy {
  background-color: #FFF;
}
.c-cv__inner {
  background: #aa9479 url("../../assets/img/cv_bg.webp") no-repeat center top/100% auto;
  padding-bottom: calc(100 / 900 * 100%);
}
.c-cv__block {
  position: relative;
  background-color: #FFF;
  border-radius: clamp(10px, calc(20 / 900 * 100vw), 20px);
  margin: 0 calc(60 / 900 * 100%);
  padding: 0 0 1.5rem;
  box-shadow: 0px 0px 1em 0px rgba(75, 56, 37, 0.35);
}
.c-cv__limited {
  position: absolute;
  left: -1rem;
  top: -1rem;
  width: calc(134 / 780 * 100%);
}
.c-cv__btn {
  margin: 0 calc(40 / 780 * 100%) 1.25rem;
  position: relative;
  cursor: pointer;
  border-radius: 999px;
  overflow: hidden;
  filter: drop-shadow(0px 7px 4px rgba(0, 0, 0, 0.16));
  transition: all .2s;
}
.c-cv__btn:hover {
  transform: translateY(0.15rem);
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.16));
}
.c-cv__btn::before {
  position: absolute;
  content: '';
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fbfbfb;
  animation: btn_animation 2.5s ease-in-out infinite;
}
@keyframes btn_animation {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
.c-cv__note {
  margin: 0 calc(40 / 780 * 100%);
}
.c-cv__note .mb1em {
  margin-bottom: 1em;
}
.c-cv__plus {
  width: calc(76 / 900 * 100%);
  margin: calc(40 / 900 * 100%) auto;
}

.c-about {
  position: relative;
  padding-bottom: calc(90 / 900 * 100%);
}
.c-about .c-point {
  background-color: #f4f2f0;
  padding-bottom: calc(160 / 900 * 100%);
}
.c-about .c-point__divide {
  position: relative;
  margin: 3.5rem auto;
  width: 1.5rem;
  height: 3px;
  border-radius: 999px;
  background-color: #aa9479;
}
.c-about .c-point__divide::before, .c-about .c-point__divide::after {
  content: "";
  display: block;
  position: absolute;
  left: -10px;
  width: 5px;
  height: 3px;
  background-color: #aa9479;
  border-radius: 999px;
}
.c-about .c-point__divide::after {
  left: auto;
  right: -10px;
}
.c-about .c-point__02_slider-wrapper {
  position: relative;
  margin-bottom: calc(100 / 900 * 100%);
}
.c-about .c-point__02_slider-wrapper .swiper-slide {
  padding: 0 0;
  height: auto;
}
.c-about .c-point__02_slider-wrapper .swiper-slide img {
  height: auto;
}
.c-about .c-point__02_slider-wrapper .swiper-button-next, .c-about .c-point__02_slider-wrapper .swiper-button-prev {
  width: calc(50 / 900 * 100%);
}
.c-about .c-point__02_slider-wrapper .swiper-button-next:after, .c-about .c-point__02_slider-wrapper .swiper-button-prev:after {
  content: none;
}
.c-about .c-point__02_slider-wrapper .swiper-button-next {
  right: .666rem;
}
.c-about .c-point__02_slider-wrapper .swiper-button-prev {
  left: .666rem;
}
.c-about .c-point__02_slider-wrapper .swiper-button-disabled {
  opacity: 0;
}
.c-about .c-point__02_slider-wrapper .swiper-pagination {
  bottom: -.3rem;
  font-size: 1px;
}
.c-about .c-point__02_slider-wrapper .swiper-pagination-bullet {
  width: .3rem;
  height: .3rem;
  margin: 0 .25rem;
  background: #666;
  opacity: 1;
}
.c-about .c-point__02_slider-wrapper .swiper-pagination-bullet-active {
  background: #aa9479;
}
.c-about .c-point__03_slider-wrapper {
  position: relative;
  margin-bottom: calc(140 / 900 * 100%);
}
.c-about .c-point__03_slider-wrapper .swiper-slide {
  padding: 0 0;
  height: auto;
}
.c-about .c-point__03_slider-wrapper .swiper-slide img {
  height: auto;
}
.c-about .c-point__03_slider-wrapper .swiper-button-next, .c-about .c-point__03_slider-wrapper .swiper-button-prev {
  width: calc(50 / 900 * 100%);
  height: auto;
  aspect-ratio: 1 / 1;
  top: auto;
  bottom: -1.5rem;
}
.c-about .c-point__03_slider-wrapper .swiper-button-next:after, .c-about .c-point__03_slider-wrapper .swiper-button-prev:after {
  content: none;
}
.c-about .c-point__03_slider-wrapper .swiper-button-next {
  right: .666rem;
}
.c-about .c-point__03_slider-wrapper .swiper-button-prev {
  left: .666rem;
}
.c-about .c-point__03_slider-wrapper .swiper-button-disabled {
  opacity: 0;
}
.c-about .c-point__03_slider-wrapper .swiper-pagination {
  bottom: -.9rem;
  font-size: 1px;
}
.c-about .c-point__03_slider-wrapper .swiper-pagination-bullet {
  width: .3rem;
  height: .3rem;
  margin: 0 .25rem;
  background: #666;
  opacity: 1;
}
.c-about .c-point__03_slider-wrapper .swiper-pagination-bullet-active {
  background: #aa9479;
}
.c-about .c-program {
  display: none;
  padding: calc(100 / 900 * 100%) 0 0;
}
.c-about .c-program__lesson_contents {
  margin-bottom: calc(120 / 900 * 100%);
}
.c-about .c-program__pg_ttl {
  margin-bottom: calc(50 / 900 * 100%);
}
.c-about .c-program__slider-wrapper {
  position: relative;
}
.c-about .c-program__slider-wrapper .swiper-slide {
  padding: 0 0;
  height: auto;
  transition: all .2s;
}
.c-about .c-program__slider-wrapper .swiper-slide img {
  height: auto;
  margin: 1rem 0 1rem;
  filter: drop-shadow(0px 0px 0.60606061rem rgba(170, 148, 121, 0.3));
}
.c-about .c-program__slider-wrapper .swiper-slide-prev, .c-about .c-program__slider-wrapper .swiper-slide-next {
  transform: scale(80%);
}
.c-about .c-program__slider-wrapper .swiper-button-next, .c-about .c-program__slider-wrapper .swiper-button-prev {
  width: calc(50 / 900 * 100%);
}
.c-about .c-program__slider-wrapper .swiper-button-next:after, .c-about .c-program__slider-wrapper .swiper-button-prev:after {
  content: none;
}
.c-about .c-program__slider-wrapper .swiper-button-next {
  right: 2.15rem;
}
.c-about .c-program__slider-wrapper .swiper-button-prev {
  left: 2.15rem;
}
.c-about .c-program__slider-wrapper .swiper-button-disabled {
  opacity: 0;
}
.c-about .c-program__slider-wrapper .swiper-pagination {
  font-family: "futura-pt", sans-serif;
  bottom: -1.5rem;
  color: #aa9479;
  font-weight: 600;
}
.c-about .c-ekichika__more {
  width: calc(104 / 900 * 100%);
  margin: calc(-52 / 900 * 100%) auto calc(100 / 900 * 100%);
}
.c-about .c-ekichika__contents {
  margin-bottom: calc(90 / 900 * 100%);
}

.c-evaluation {
  position: relative;
}
.c-evaluation .c-voice {
  background-color: #f4f2f0;
  padding-bottom: calc(150 / 900 * 100%);
}
.c-evaluation .c-voice__slider-wrapper {
  position: relative;
  margin-bottom: calc(100 / 900 * 100%);
}
.c-evaluation .c-voice__slider-wrapper .swiper-slide {
  padding: 0 1.81818182rem;
  height: auto;
}
.c-evaluation .c-voice__slider-wrapper .swiper-slide img {
  height: auto;
}
.c-evaluation .c-voice__slider-wrapper .swiper-button-next, .c-evaluation .c-voice__slider-wrapper .swiper-button-prev {
  width: calc(50 / 900 * 100%);
}
.c-evaluation .c-voice__slider-wrapper .swiper-button-next:after, .c-evaluation .c-voice__slider-wrapper .swiper-button-prev:after {
  content: none;
}
.c-evaluation .c-voice__slider-wrapper .swiper-button-next {
  right: 1.09090909rem;
}
.c-evaluation .c-voice__slider-wrapper .swiper-button-prev {
  left: 1.09090909rem;
}
.c-evaluation .c-voice__slider-wrapper .swiper-button-disabled {
  opacity: 0;
}
.c-evaluation .c-voice__slider-wrapper .swiper-pagination {
  bottom: -1.5rem;
  font-size: 1px;
}
.c-evaluation .c-voice__slider-wrapper .swiper-pagination-bullet {
  width: .3rem;
  height: .3rem;
  margin: 0 .25rem;
  background: #666;
  opacity: 1;
}
.c-evaluation .c-voice__slider-wrapper .swiper-pagination-bullet-active {
  background: #aa9479;
}
.c-evaluation .c-voice__note {
  text-align: right;
  margin: 0 calc(60 / 900 * 100%);
}

.c-flow {
  position: relative;
  padding-bottom: calc(150 / 900 * 100%);
}
.c-flow__ttl {
  margin-bottom: calc(100 / 900 * 100%);
}
.c-flow__block {
  position: relative;
  margin-bottom: calc(170 / 900 * 100%);
}
.c-flow__block::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3.8rem;
  width: 1px;
  height: 4.8rem;
  margin: auto;
  background-color: #aa9479;
}
.c-flow__block:last-of-type {
  margin-bottom: 0;
}
.c-flow__block:last-of-type::after {
  content: none;
}
.c-flow__01-btn {
  position: absolute;
  width: calc(700 / 900 * 100%);
  left: 0;
  right: 0;
  top: 6.5rem;
  margin: auto;
  cursor: pointer;
  border-radius: 999px;
  overflow: hidden;
  filter: drop-shadow(0px 7px 4px rgba(0, 0, 0, 0.16));
  transition: all .2s;
}
.c-flow__01-btn:hover {
  transform: translateY(0.15rem);
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.16));
}
.c-flow__01-btn::before {
  position: absolute;
  content: '';
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fbfbfb;
  animation: btn_animation 2.5s ease-in-out infinite;
}
@keyframes btn_animation {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
.c-faq {
  position: relative;
}
.c-faq__body > div {
  background-color: #f4f2f0;
  padding: calc(80 / 900 * 100%) calc(60 / 900 * 100%) calc(80 / 900 * 100%);
}
.c-faq__body > div:nth-child(odd) {
  background-color: #FFF;
}
.c-faq__body h2 {
  color: #aa9479;
  font-weight: 700;
}
@media print, screen and (min-width: 900px) {
  .c-faq__body h2 {
    font-size: 24px;
  }
}
.c-faq__body .accordion-area li {
  margin: 0.8rem 0;
}
.c-faq__body .accordion-area li:last-child {
  margin-bottom: 0;
}
.c-faq__body .accordion-area section {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  text-align: left;
  border: 2px solid #aa9479;
  font-size: 1rem;
  letter-spacing: .15em;
}
@media print, screen and (min-width: 900px) {
  .c-faq__body .accordion-area section {
    font-size: 20px;
  }
}
.c-faq__body .accordion-area section::before {
  content: "Q";
  font-family: "futura-pt", sans-serif;
  color: #aa9479;
  font-weight: 400;
  width: 1.25em;
  padding: 0.05em 0 0 0.5em;
  font-size: 1.5em;
}
.c-faq__body .accordion-area section h3.title {
  cursor: pointer;
  position: relative;
  flex: 1;
  padding: .5em 1.5em .5em  .5em;
  font-weight: 400;
  font-size: 1em;
}
.c-faq__body .accordion-area section h3.title::before, .c-faq__body .accordion-area section h3.title::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #aa9479;
  right: .5em;
  top: 1.25em;
  width: .75em;
  height: 1px;
  margin: auto;
  transition: all .2s;
}
.c-faq__body .accordion-area section h3.title::after {
  transform: rotate(90deg);
}
.c-faq__body .accordion-area section h3.title.opened::after {
  transform: rotate(0);
}
.c-faq__body .accordion-area section .box {
  width: 100%;
  border-top: 1px solid #aa9479;
  margin: 0 1em;
  padding: .5em  0;
  display: flex;
}
.c-faq__body .accordion-area section .box::before {
  content: "A";
  font-family: "futura-pt", sans-serif;
  color: #d07d40;
  font-weight: 400;
  width: 1em;
  padding: 0em 0 0 0;
  font-size: 1.5em;
  line-height: 1;
}
.c-faq__body .accordion-area section .box p {
  flex: 1;
  padding-top: .15em;
}

.c-studiolist {
  position: relative;
}
.c-studiolist__ttl {
  margin-bottom: calc(60 / 900 * 100%);
}
.c-studiolist__sttl {
  margin-bottom: calc(60 / 900 * 100%);
  font-size: 1.27rem;
}
@media print, screen and (min-width: 900px) {
  .c-studiolist__sttl {
    font-size: .8rem;
  }
}
.c-studiolist .studio-tab-list {
  margin: 0 1rem;
  padding: 0 0 1.5rem;
  background-color: #f4f2f0;
  border-radius: clamp(10px, calc(20 / 900 * 100vw), 20px);
  overflow: hidden;
}
.c-studiolist .studio-tab-list .tab-list {
  display: flex;
}
.c-studiolist .studio-tab-list .tab-item {
  position: relative;
  width: 25%;
  color: #aa9479;
  font-weight: 700;
  padding: 1em 0;
  cursor: pointer;
}
@media print, screen and (min-width: 900px) {
  .c-studiolist .studio-tab-list .tab-item {
    font-size: .7rem;
  }
}
.c-studiolist .studio-tab-list .tab-item::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #d07d40;
  transition: .2s ease;
}
.c-studiolist .studio-tab-list .tab-item.active {
  color: #d07d40;
}
.c-studiolist .studio-tab-list .tab-item.active::after {
  height: .2em;
}
.c-studiolist .studio-tab-list-content {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  margin: 0 1em;
  padding: 1em 0 0;
  font-size: 1.2rem;
  line-height: 1.3;
}
@media print, screen and (min-width: 900px) {
  .c-studiolist .studio-tab-list-content {
    font-size: .7rem;
  }
}
.c-studiolist .studio-tab-list-content.active {
  display: flex;
}
.c-studiolist .studio-tab-list-content .studio-toggle {
  width: 100%;
}
.c-studiolist .toggle-title {
  width: 100%;
  border-radius: clamp(8px, calc(16 / 900 * 100vw), 16px);
  background-color: #aa9479;
  position: relative;
  padding: .75em 2.5em .75em 1.25em;
  z-index: 1;
  margin: 0 auto 1em;
  font-weight: 700;
  color: #FFF;
  text-align: left;
  cursor: pointer;
}
.c-studiolist .toggle-title::after {
  content: "";
  display: block;
  position: absolute;
  right: 1em;
  top: 0;
  bottom: 0;
  width: .8em;
  height: .6em;
  margin: auto;
  background: #FFF;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  transition: all .2s;
}
.c-studiolist .toggle-title.opened::after {
  transform: rotate(180deg);
}
.c-studiolist .studio-button-list {
  width: 100%;
}
@media print, screen and (min-width: 900px) {
  .c-studiolist .studio-button-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0 .4em;
  }
  .c-studiolist .studio-button-list > .studio-tab-list-content_item {
    width: calc(50% - .4em);
    font-size: .8em;
  }
}
.c-studiolist .studio-tab-list-content_item {
  text-align: left;
  width: 100%;
  position: relative;
  padding: .75em 2.5em .75em 1.25em;
  z-index: 1;
  margin-bottom: 1em;
}
.c-studiolist .studio-tab-list-content_item::before {
  content: "";
  display: block;
  position: absolute;
  background-color: #FFF;
  border-radius: clamp(8px, calc(16 / 900 * 100vw), 16px);
  left: .2em;
  top: .2em;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.c-studiolist .studio-tab-list-content_item::after {
  content: "";
  display: block;
  position: absolute;
  right: 1em;
  top: 0;
  bottom: 0;
  width: .8em;
  height: .6em;
  margin: auto;
  background: #aa9479;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  transform: rotate(-90deg);
}
.c-studiolist .studio-tab-list-content_item .studio-tab-list-content_title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 3;
  padding: .1em 0 0;
}
.c-studiolist .studio-tab-list-content_item .studio-tab-list-content_title p {
  font-size: 60%;
  padding-left: .75em;
  letter-spacing: .1em;
}
.c-studiolist .studio-tab-list-content_item a {
  border-radius: clamp(8px, calc(16 / 900 * 100vw), 16px);
  border: 1px solid #aa9479;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  text-align: left;
  text-indent: -999em;
  z-index: 10;
}

footer {
  position: relative;
  padding: 2rem 1rem 1.5rem;
  font-family: "futura-pt", sans-serif;
  font-size: .7rem;
  letter-spacing: 0;
}
footer::before {
  content: url("../../assets/img/logo.svg");
  display: block;
  width: 30%;
  filter: invert(41%) sepia(0%) saturate(452%) hue-rotate(235deg) brightness(93%) contrast(86%);
  margin: 0 auto .5rem;
}

.bnr_fixed {
  position: fixed;
  display: flex;
  justify-content: space-evenly;
  z-index: 99;
  width: 100%;
  max-width: 900px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: rgba(255, 255, 255, 0.9);
  padding: .5rem 0;
  opacity: 0;
  transform: translateY(1rem);
  transition: all .35s;
}
.bnr_fixed.is-active {
  opacity: 1;
  transform: translateY(0);
}
.bnr_fixed__studiolist {
  width: calc(343 / 900 * 100%);
  display: block;
}
.bnr_fixed__cv {
  cursor: pointer;
  width: calc(466 / 900 * 100%);
}
@media print, screen and (min-width: 900px) {
  .bnr_fixed {
    display: none;
  }
}

.bnr_fixed_pc {
  display: none;
}
@media print, screen and (min-width: 900px) {
  .bnr_fixed_pc {
    display: flex;
    flex-direction: column;
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    height: fit-content;
    margin: auto;
    z-index: 99;
    gap: 1em;
  }
  .bnr_fixed_pc__studiolist {
    transition: all .2s;
    transform: translateX(0);
  }
  .bnr_fixed_pc__studiolist:hover {
    transform: translateX(5px);
  }
  .bnr_fixed_pc__cv {
    cursor: pointer;
    transition: all .2s;
    transform: translateX(0);
  }
  .bnr_fixed_pc__cv:hover {
    transform: translateX(5px);
  }
}

.l-page__inner {
  padding-bottom: calc(190 / 900 * 100%);
}
@media print, screen and (min-width: 900px) {
  .l-page__inner {
    padding-bottom: 0;
  }
}

#studioListModal {
  display: none;
}

.modaal-wrapper {
  -webkit-tap-highlight-color: transparent;
}
.modaal-wrapper .modaal-inner-wrapper {
  display: table-cell;
  width: 100%;
  height: 100%;
  position: relative;
  vertical-align: middle;
  text-align: center;
  padding: 0 2rem;
}
@media screen and (max-height: 1000px) {
  .modaal-wrapper .modaal-inner-wrapper {
    padding: 0 2rem;
  }
}
.modaal-wrapper .modaal-container {
  text-align: center;
  color: #666666;
  position: relative;
}
.modaal-wrapper .modaal-content-container {
  padding: 1rem 0;
}
.modaal-wrapper .modaal-close {
  position: absolute;
  right: -0.5rem;
  top: -2.5rem;
  width: 2rem;
  height: 2rem;
}
@media print, screen and (min-width: 900px) {
  .modaal-wrapper .modaal-close {
    right: -1.5rem;
    top: -0.25rem;
    width: 1.25rem;
    height: 1.25rem;
  }
}
.modaal-wrapper .modaal-close::after, .modaal-wrapper .modaal-close::before {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: .12rem;
  height: 60%;
  margin: auto;
  border-radius: 2px;
}
.modaal-wrapper .c-studiolist {
  max-height: 80vh;
  max-height: 80dvh;
  overflow-y: scroll;
}
.modaal-wrapper .c-studiolist__sttl {
  margin-bottom: 1rem;
}
.modaal-wrapper .studio-tab-list {
  padding-bottom: 0;
}
.modaal-wrapper .studio-tab-list-content {
  font-size: 1rem;
}
@media print, screen and (min-width: 900px) {
  .modaal-wrapper .studio-tab-list-content {
    font-size: .7rem;
  }
}
