@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}

/* ==========================================================================
    // フォントファミリー----------------------
    ========================================================================== */
/* ==========================================================================
    // color----------------------
    ============================================pop============================== */
.bg-cream {
  background-color: #fffef1;
}

.fc-white {
  color: white !important;
}

.fv.hidden {
  display: none !important;
}

.bg-blue {
  background-color: #6bcdee;
}

.bg-orange {
  background-color: #ffac4c;
}

/* ==========================================================================
    // フォントサイズ----------------------
    ========================================================================== */
img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

html {
  font-size: 14px;
  font-size: 16px;
  scroll-behavior: smooth;
  overflow: auto;
  height: 100%;
}

li {
  list-style: none;
}

@media screen and (max-width: 750px) {
  html {
    font-size: 2.14vw;
  }
}
@media screen and (max-width: 540px) {
  html {
    font-size: 3.6vw;
  }
}
body {
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  color: #231815;
  overflow-x: hidden;
}

.pc {
  display: block;
}
@media screen and (max-width: 540px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 540px) {
  .sp {
    display: block !important;
  }
}

.pop {
  font-family: "Poppins", serif;
}

.enter {
  background-color: #000;
  color: white !important;
  padding: 0.6rem 2rem;
  transition: 0.3s;
  cursor: pointer;
}
.enter:hover {
  opacity: 0.8;
  transition: 0.3s;
}

.flex {
  display: flex;
}

.bg-gray {
  background-color: #f8f8f8;
}

h2 {
  font-family: "Poppins", serif;
  font-weight: 500;
}

header {
  /* スクロール時に表示される小さなロゴ */
  /* SNSアイコン */
  /* ハンバーガーメニューアイコン */
  /* ハンバーガーメニューのスライド */
  /* ハンバーガーアイコンのアニメーション */
}
header nav {
  position: fixed;
  top: 1rem;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding: 1rem 2rem;
  box-sizing: border-box;
  z-index: 999;
  gap: 2.5rem;
  padding-right: 4rem;
  padding-top: 1.6rem;
}
@media screen and (max-width: 540px) {
  header nav {
    padding-right: 2rem;
    padding-top: 1rem;
  }
}
header .scroll-logo {
  position: fixed;
  top: 2rem;
  left: 2rem;
  width: 4rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  cursor: pointer;
  z-index: 1001;
}
@media screen and (max-width: 540px) {
  header .scroll-logo {
    width: 2.5rem;
    top: 1.5rem;
    left: 1.5rem;
    display: none;
  }
}
header .scroll-logo.visible {
  opacity: 1;
  transform: translateY(0);
}
header .scroll-logo:hover {
  opacity: 0.8;
}
header .scroll-logo img {
  width: 100%;
  height: auto;
}
header .sns-icon {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
}
header .sns-icon li {
  list-style: none;
}
header .sns-icon a {
  display: inline-block;
  width: 1.7rem;
  transition: 0.3s;
}
header .sns-icon a:hover {
  opacity: 0.8;
  transition: 0.3s;
}
header .sns-icon .icon-s {
  width: 2.5rem;
}
header .ham {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  cursor: pointer;
  position: relative;
  z-index: 1000;
  margin-top: 0.5rem;
}
@media screen and (max-width: 540px) {
  header .ham {
    gap: 0.6rem;
  }
}
header .ham .menu-text {
  position: absolute;
  top: -1.9rem;
  z-index: 1000;
  color: #231815;
  transition: 0.6s ease;
}
@media screen and (max-width: 540px) {
  header .ham .menu-text {
    font-size: 0.85rem;
    top: -1.8rem;
  }
}
header .ham span {
  width: 3.7rem;
  height: 1px;
  background: #333;
  transition: 0.3s ease;
}
@media screen and (max-width: 540px) {
  header .ham span {
    width: 2.5rem;
  }
}
header .ham.open span {
  background: #fff; /* 白色に変更 */
}
header .ham.open .menu-text {
  color: #fff; /* 白色に変更 */
}
header .hum-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 500px;
  max-width: 40%;
  height: 100vh;
  background: #231815;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  transition: right 0.6s ease;
  z-index: 900;
}
@media screen and (max-width: 540px) {
  header .hum-menu {
    max-width: 80%;
  }
}
header .hum-menu.active {
  right: 0;
}
header .hum-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
header .hum-menu ul li {
  margin: 2.5rem 0;
}
@media screen and (max-width: 540px) {
  header .hum-menu ul li {
    margin: 0 0 1.5rem 0;
  }
}
header .hum-menu ul li a {
  text-decoration: none;
  font-size: 1.2rem;
  color: #ffffff;
  transition: color 0.2s ease;
}
@media screen and (max-width: 540px) {
  header .hum-menu ul li a {
    font-size: 1rem;
  }
}
header .hum-menu ul li a:hover {
  color: #b6b6b6;
}
header .hum-sns {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  margin-top: 4rem;
}
@media screen and (max-width: 540px) {
  header .hum-sns {
    margin-top: 2.5rem;
  }
}
header .hum-sns a {
  width: 2rem;
}
@media screen and (max-width: 540px) {
  header .hum-sns a {
    width: 1.3rem;
  }
}
header .hum-sns a svg {
  height: auto;
  width: 100%;
}
header .hum-sns .icon-s {
  width: 2.5rem;
}
@media screen and (max-width: 540px) {
  header .hum-sns .icon-s {
    width: 1.9rem;
  }
}
header .ham.open span:nth-child(1) {
  transform: translateY(1rem) rotate(30deg);
}
@media screen and (max-width: 540px) {
  header .ham.open span:nth-child(1) {
    transform: translateY(0.4rem) rotate(30deg);
  }
}
header .ham.open span:nth-child(2) {
  opacity: 0;
}
header .ham.open span:nth-child(3) {
  transform: translateY(-1rem) rotate(-30deg);
}
.fv {
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  /* 縦線の親要素 */
  /* テキストのスタイル */
  /* 縦のライン */
  /* ラインのアニメーション */
}
.fv .logo {
  width: 17.5rem;
  margin-top: -4rem;
}
@media screen and (max-width: 540px) {
  .fv .logo {
    width: 10.7rem;
    margin-top: 0;
  }
}
.fv .scroll {
  position: absolute;
  bottom: 6%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (max-width: 540px) {
  .fv .scroll {
    bottom: 4rem;
  }
}
.fv .scroll p {
  font-size: 0.875rem;
  color: #333; /* 必要に応じて調整 */
  margin: 0;
  text-align: center;
}
.fv .vertical-line {
  width: 1px;
  height: 4rem; /* 最大の長さ */
  background-color: #333; /* ラインの色 */
  animation: lineStretch 2s infinite ease-in-out;
  transform-origin: top; /* 上端を基準にスケーリング */
  transform: scaleY(0.1); /* 初期のスケール値 */
}
@media screen and (max-width: 540px) {
  .fv .vertical-line {
    height: 4rem;
  }
}
@keyframes lineStretch {
  0%, 100% {
    transform: scaleY(0.1); /* 短い状態 */
  }
  50% {
    transform: scaleY(1); /* 最大の高さ */
  }
}

.topics {
  padding: 5rem 0;
}
@media screen and (max-width: 540px) {
  .topics {
    padding: 3rem 0;
  }
}
.topics .topics-flex {
  display: flex;
  justify-content: space-around;
}
@media screen and (max-width: 540px) {
  .topics .topics-flex {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}
.topics .topics-flex .topics-title {
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.875rem;
}
@media screen and (max-width: 540px) {
  .topics .topics-flex .topics-title {
    width: 100%;
    margin-bottom: 0.7rem;
    font-size: 1.5rem;
  }
}
.topics .topics-slider-container {
  width: 55%;
  position: relative;
  padding: 0 3rem;
}
@media screen and (max-width: 540px) {
  .topics .topics-slider-container {
    width: 100%;
    padding: 0 2rem;
  }
}
.topics .topics-swiper {
  width: 100%;
  height: 33vw;
}
@media screen and (max-width: 540px) {
  .topics .topics-swiper {
    height: 16.5rem;
  }
}
.topics .topics-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.topics .topics-swiper-prev,
.topics .topics-swiper-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #000000;
  color: rgb(255, 255, 255);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media screen and (max-width: 540px) {
  .topics .topics-swiper-prev,
  .topics .topics-swiper-next {
    display: none;
  }
}
.topics .topics-swiper-prev:after,
.topics .topics-swiper-next:after {
  font-size: 1.2rem;
  font-weight: bold;
}
.topics .topics-swiper-prev:hover,
.topics .topics-swiper-next:hover {
  transform: translateY(-50%) scale(1.1);
}
@media screen and (max-width: 540px) {
  .topics .topics-swiper-prev,
  .topics .topics-swiper-next {
    width: 2.5rem;
    height: 2.5rem;
  }
  .topics .topics-swiper-prev:after,
  .topics .topics-swiper-next:after {
    font-size: 1rem;
  }
}
.topics .topics-swiper-prev {
  left: 1.4rem;
}
.topics .topics-swiper-prev:after {
  content: "‹";
}
@media screen and (max-width: 540px) {
  .topics .topics-swiper-prev {
    left: -2rem;
  }
}
.topics .topics-swiper-next {
  right: 1.4rem;
}
.topics .topics-swiper-next:after {
  content: "›";
}
@media screen and (max-width: 540px) {
  .topics .topics-swiper-next {
    right: 1.5rem;
  }
}
.topics .topics-swiper-pagination {
  position: static !important;
  margin-top: 1.2rem;
  text-align: center;
}
.topics .topics-swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #adadad;
  margin: 0 6px;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s ease;
  cursor: pointer;
}
.topics .topics-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #231815;
  transform: scale(1.4);
}
.topics .topics-swiper-pagination .swiper-pagination-bullet:hover {
  background: #666;
  transform: scale(1.1);
}

.content-inner {
  width: 980px;
  margin: 0 auto;
  max-width: 90%;
  padding: 10rem 0;
}
@media screen and (max-width: 540px) {
  .content-inner {
    padding: 3rem 0;
  }
}

.artist-logo {
  width: 5rem;
  margin-top: 0.5rem;
}

.artist-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 5rem;
}
@media screen and (max-width: 540px) {
  .artist-list {
    margin-bottom: 3rem;
  }
}
.artist-list::after {
  content: "";
  width: 31%;
}
.artist-list .artist-item._v2 {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.artist-list .artist-item {
  width: 31%;
  text-align: center;
  margin-bottom: 3rem;
  text-decoration: none;
}
@media screen and (max-width: 540px) {
  .artist-list .artist-item {
    width: 47%;
  }
}
.artist-list .artist-item h3 {
  font-weight: 500;
  font-size: 1.25rem;
  margin-top: 1.3rem;
  color: #231815;
}
@media screen and (max-width: 540px) {
  .artist-list .artist-item h3 {
    font-size: 1rem;
    margin-top: 1rem;
  }
}
.artist-list .artist-item h3 span {
  font-size: 0.6875rem;
  display: inline-block;
  line-height: 1;
}
.artist-list .artist-item .artist-img {
  height: 13rem;
  overflow: hidden;
  transition: 0.3s;
}
@media screen and (max-width: 540px) {
  .artist-list .artist-item .artist-img {
    height: 8.8rem;
  }
}
.artist-list .artist-item .artist-img img {
  transition: 0.3s;
}
.artist-list .artist-item:hover .artist-img img {
  transform: scale(1.05);
  transition: 0.3s;
}

.link-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 1.3rem;
  text-decoration: none;
  color: #231815;
  transition: 0.3s;
}
.link-item:hover {
  opacity: 0.8;
  transition: 0.3s;
}
@media screen and (max-width: 540px) {
  .link-item {
    font-size: 0.875rem !important;
    margin-top: 0.7rem;
    gap: 0.5rem;
  }
}
.link-item img {
  width: 1.125rem;
}

.composer {
  margin-top: 8rem;
  gap: 2rem;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 540px) {
  .composer {
    flex-direction: column;
    margin-top: 4rem;
  }
}

.composer-txt {
  text-align: center;
  font-size: 2rem;
}
@media screen and (max-width: 540px) {
  .composer-txt {
    font-size: 1.7rem;
  }
}

.composer-list {
  font-size: 1.25rem;
}
@media screen and (max-width: 540px) {
  .composer-list {
    justify-content: center;
    gap: 1rem;
    align-items: center;
  }
}
.composer-list p {
  font-weight: 500;
}
@media screen and (max-width: 540px) {
  .composer-list p {
    width: 8rem;
    font-size: 1.2rem;
    text-align: center;
    margin: 0rem auto;
  }
}
.composer-list a {
  color: #231815;
  text-decoration: none;
  font-size: 1.4rem;
}

.btn_area .btn_flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 540px) {
  .btn_area .btn_flex {
    flex-direction: column;
  }
}
@media screen and (max-width: 540px) {
  .btn_area .content-inner {
    padding: 3rem 0;
  }
}
.btn_area .btn_link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 2rem;
  justify-content: center;
  background-color: #000;
  border: 1px solid #000;
  color: white;
  width: 48%;
  box-sizing: border-box;
  padding: 0rem 1rem;
  height: 8rem;
  line-height: 8rem;
  text-align: center;
  line-height: 1;
  text-decoration: none;
  margin-bottom: 3rem;
  transition: 0.3s;
}
@media screen and (max-width: 540px) {
  .btn_area .btn_link {
    width: 100%;
  }
  .btn_area .btn_link:last-child {
    margin-bottom: 0;
  }
}
.btn_area .btn_link:hover {
  background-color: white;
  color: #000;
  transition: 0.3s;
}
.btn_area .btn_link:hover .btn_arrow svg path {
  stroke: #000;
  transition: stroke 0.3s;
}
.btn_area .btn_link span {
  font-size: 1rem;
}
.btn_area .btn_link .btn_arrow {
  display: flex;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.btn_area .btn_link p {
  font-size: 1.6rem;
  line-height: 1.4;
}

.playlist {
  text-align: center;
}
.playlist .playlist-flex {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 540px) {
  .playlist .playlist-flex {
    flex-direction: column;
  }
}
.playlist h2 {
  font-size: 2rem;
}

footer {
  padding: 3rem 2rem;
  border-top: 1px solid #e9e9e9;
}
@media screen and (max-width: 540px) {
  footer {
    padding: 3rem 1rem;
  }
}
footer .footer-flex {
  justify-content: space-between;
  display: flex;
  align-items: flex-end;
  width: 93%;
  margin: 0 auto;
}
@media screen and (max-width: 540px) {
  footer .footer-flex {
    flex-direction: column;
    align-items: center;
  }
}
footer .footer-flex .footer-logo {
  width: 5rem;
}
@media screen and (max-width: 540px) {
  footer .footer-flex .footer-logo {
    margin-bottom: 2rem;
  }
}
footer .footer-main ul {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
@media screen and (max-width: 540px) {
  footer .footer-main ul {
    justify-content: flex-start;
  }
}
footer .footer-main ul li {
  line-height: 1.8;
}
footer .footer-main ul li a {
  color: #231815;
  text-decoration: none;
  transition: 0.2s;
}
footer .footer-main ul li a:hover {
  opacity: 0.7;
  transition: 0.2s;
}
footer .footer-sns-flex {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 1.3rem 0;
  gap: 1rem;
  transition: 0.3s;
}
@media screen and (max-width: 540px) {
  footer .footer-sns-flex {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 540px) {
  footer .footer-sns-flex a:first-child {
    width: 1.6rem;
  }
}
@media screen and (max-width: 540px) {
  footer .footer-sns-flex a {
    width: 2rem;
  }
}
footer .footer-sns-flex a:hover {
  opacity: 0.8;
  transition: 0.3s;
}
footer .copy {
  text-align: right;
  font-size: 10px;
}

.translate-btn {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-right: 1rem;
}
.translate-btn a {
  font-size: 1.2rem;
  text-decoration: none;
  color: #000 !important;
  position: relative;
  display: inline-block;
}
.translate-btn .active::after {
  position: absolute;
  width: 0.4rem;
  height: 0.4rem;
  bottom: -0.6rem;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  content: "";
  border-radius: 999px;
  background-color: #775c98;
}

.schedule {
  padding: 10rem 0;
}
@media screen and (max-width: 540px) {
  .schedule {
    padding: 3rem 0;
  }
}

.schedule-flex {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}
@media screen and (max-width: 540px) {
  .schedule-flex {
    flex-direction: column;
    align-items: center;
  }
}
.schedule-flex .schedule-title {
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.875rem;
}
@media screen and (max-width: 540px) {
  .schedule-flex .schedule-title {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.schedule-flex .schedule-list {
  width: 55%;
}
@media screen and (max-width: 540px) {
  .schedule-flex .schedule-list {
    width: 90%;
  }
}
.schedule-flex .schedule-list .date {
  margin-bottom: 0.7rem;
}
.schedule-flex .schedule-list .schedule-item {
  border-bottom: 1px solid #b9b9b9;
  padding: 1.5rem 0;
}
.schedule-flex .schedule-list .schedule-item a {
  text-decoration: none;
  color: #231815;
}
.schedule-flex .schedule-list .schedule-item:first-child {
  padding-top: 0;
}
.schedule-flex .cate {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.1rem 0.8rem;
  color: white;
}
.schedule-flex .cate_live {
  background-color: #e98ba3;
}
.schedule-flex .cate_radio {
  background-color: #36a1c3;
}
.schedule-flex .more-button {
  display: flex;
  justify-content: flex-end;
  margin-top: 2rem;
}
.schedule-flex .more-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15rem;
  gap: 1rem;
  border: 1px solid #000;
  color: #000;
  padding: 0.9rem 0.1rem;
  text-decoration: none;
  transition: 0.3s;
}
.schedule-flex .more-button a:hover {
  background-color: #000;
  color: #fff;
  transition: 0.3s;
}
.schedule-flex .more-button a:hover svg path {
  stroke: #fff;
}

.page footer {
  background-color: #f8f8f8;
}
.page .scroll-logo {
  opacity: 1;
}
.page a {
  color: #4889e9;
}

.page-content {
  min-height: 100vh;
}
@media screen and (max-width: 540px) {
  .page-content {
    min-height: auto;
  }
}
.page-content .page-title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 10rem;
  background-color: #fff;
  padding-bottom: 4rem;
}
.page-content .page-title h2 {
  font-size: 2.5rem;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 540px) {
  .page-content .page-title h2 {
    font-size: 1.8rem;
  }
}
.page-content .page-title span {
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 540px) {
  .page-content .page-title span {
    font-size: 1.4rem;
  }
}
.page-content .page-content {
  background-color: #f8f8f8;
}
.page-content .page-content table {
  max-width: 90%;
  width: 980px;
  margin: 0 auto;
  padding: 3rem 0;
  border-collapse: separate;
  border-spacing: 0 1rem;
}
@media screen and (max-width: 1024px) {
  .page-content .page-content table {
    width: 90%;
    padding: 3rem 0;
  }
}
@media screen and (max-width: 768px) {
  .page-content .page-content table {
    border-spacing: 0 0.5rem;
  }
}
.page-content .page-content table tr td {
  padding: 1rem 1.2rem;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  .page-content .page-content table tr td {
    padding: 0.8rem 1rem;
  }
}
.page-content .page-content table tr td:first-child {
  width: 20%;
}
@media screen and (max-width: 768px) {
  .page-content .page-content table tr td:first-child {
    width: 35%;
  }
}
.page-content .page-inner {
  max-width: 90%;
  width: 980px;
  margin: 0 auto;
  padding: 5rem 0;
  border-collapse: separate;
  border-spacing: 0 1rem;
}
@media screen and (max-width: 1024px) {
  .page-content .page-inner {
    width: 90%;
    padding: 3rem 0;
  }
}
.page-content .page-inner h4 {
  margin-bottom: 0.4rem;
}

.recruit-item {
  margin-bottom: 2rem;
}

.txtm {
  font-size: 1.25rem;
  font-weight: 600;
}

.txtl {
  font-size: 1.5rem;
  font-weight: 600;
}

.txts {
  font-size: 0.875rem;
}

@media screen and (max-width: 540px) {
  .btn_area {
    display: flex;
    justify-content: center;
  }
}

.btn_flex._v2 {
  justify-content: flex-start;
  gap: 2rem;
}
@media screen and (max-width: 540px) {
  .btn_flex._v2 {
    gap: 1rem;
    margin-bottom: 3rem;
  }
}

.btn_link._v2 {
  height: 4rem;
  width: 24rem;
}
@media screen and (max-width: 540px) {
  .btn_link._v2 {
    margin-bottom: 1rem;
  }
}
.btn_link._v2 .btn_arrow svg {
  width: 2rem;
}
.btn_link._v2 p {
  font-size: 1rem;
}

.btn_area .btn_link._v3 {
  width: 15rem;
  height: 3.3rem;
  margin-bottom: 1.2rem;
  margin-top: 2rem;
}
@media screen and (max-width: 540px) {
  .btn_area .btn_link._v3 {
    width: 100%;
    height: 3.7rem;
  }
}
.btn_area .btn_link._v3 p {
  font-size: 1rem;
  line-height: 1.4;
}
.btn_area .btn_link._v3 svg {
  width: 1.5rem;
}
@media screen and (max-width: 540px) {
  .btn_area .btn_link._v3 svg {
    width: 2.7rem;
  }
}
.btn_area .btn_link._v3 .btn_arrow {
  right: 5%;
}

.fac-item {
  background-color: #fff;
  display: flex;
  gap: 2rem;
  padding: 2rem;
  border: 1px solid #b9b9b9;
  margin-bottom: 2rem;
}
@media screen and (max-width: 540px) {
  .fac-item {
    flex-direction: column;
    gap: 1rem;
  }
}
.fac-item .fac-name {
  margin-bottom: 1rem;
}
@media screen and (max-width: 540px) {
  .fac-item .fac-name {
    font-size: 1.3rem;
  }
}
.fac-item .fac-item-qr {
  width: 7.5rem;
  height: 7.5rem;
  overflow: hidden;
}
.fac-item .fac-item-qr img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  transform: scale(1.02);
}
.fac-item .fac-item-fee {
  margin: 2rem 0 0;
}
.fac-item .fac-item-fee p {
  font-weight: bold;
}
.fac-item .fac-item-img {
  width: 35%;
}
@media screen and (max-width: 540px) {
  .fac-item .fac-item-img {
    width: 100%;
  }
}
.fac-item .fac-item-txt {
  width: 60%;
  line-height: 1.7;
}
@media screen and (max-width: 540px) {
  .fac-item .fac-item-txt {
    width: 100%;
  }
}

.img-size {
  width: 400px;
  max-width: 90%;
}
@media screen and (max-width: 540px) {
  .img-size {
    margin: 0 auto;
    max-width: 100%;
  }
}

.formflex2._v2 {
  width: 100% !important;
}/*# sourceMappingURL=style.css.map */