@charset "UTF-8";
/*
初期設定************************************************/
/* reset */
html {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  animation: loading 1s;
}
@keyframes loading {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
img, video {
  width: 100%;
  pointer-events: none;
}
.pc {
  display: block;
}
.sp {
  display: none;
}
@media screen and (max-width: 700px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
body {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  font-family: 'Yu Gothic', '游ゴシック', 'YuGothic', sans-serif;
  background-image: url(../img/bg_feature.jpg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
header {
  max-width: 700px;
  margin: 0 auto;
}
/* fv */
.main-title {
  position: absolute;
  bottom: 0%;
  width: 90%;
  margin: 0 auto;
  left: 0;
  right: 0;
  z-index: 999;
}
.btn_area {
  width: 100%;
  background: url(../images/btn_area_bg.jpg);
  background-size: cover;
}
.fv_btn {
  position: absolute;
  left: 68%;
  top: 75%;
  width: 30%;
  z-index: 999;
}
.btn_area_block {
  margin: 0 auto;
}
.btn {
  width: 95%;
  padding: 5% 4%;
  margin: 0 auto;
}
/* アンカーリンクエリア */
.anchor_area {
  display: flex;
  padding: 0% 3% 9% 3%;
  gap: 2%;
}
.accordion {
  max-width: 90%;
  margin: 5% auto 0;
  border: 1px solid #ddd;
  background-color: #fff;
}
.accordion-item {
  border-bottom: 1px solid #ddd;
}
.accordion-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background-color: #F5F4F0;
  cursor: pointer;
  border-bottom: 1px solid #ddd;
  text-align: left;
  line-height: 1.6;
}
.accordion-label:hover {
  background-color: #e0e0e0;
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1s ease;
  padding: 0 15px;
  text-align: left;
  line-height: 1.6;
}
.accordion-content p {
  margin: 15px 0;
}
.accordion input[type="checkbox"] {
  display: none;
}
.accordion input[type="checkbox"]:checked ~ .accordion-content {
  max-height: 500px;
}
.accordion input[type="checkbox"]:checked ~ .accordion-label .arrow {
  transform: rotate(223deg);
}
.arrow {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
  transition: transform 0.5s ease;
}
/* スタジオ一覧 */
.content11 {
  position: relative;
  width: 100%;
  background-color: #FCF8E9;
  padding-bottom: 8%;
}
.studio_title {
  font-size: 2rem;
  margin: 0 auto;
  padding: 8% 0;
  color: #57584b;
  letter-spacing: .1rem;
  font-weight: 700;
}
.studio-tab-list-content_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  width: 80%;
  background-color: #fff;
  border-radius: 6px;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  margin: 0 auto;
  border: solid #57584b;
}
.studio-tab-list-content_title h4 {
  margin: 20px 0;
  font-size: 1.4rem;
  color: #57584b;
  letter-spacing: .1rem;
  font-weight: 600;
}
.shop-tab_item {
  width: 90%;
}
.shop-tab_content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
}
.shop-tab_content-item {
  width: 100%;
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: start;
}
.shop-tab_content-item h4 {
  margin-bottom: 15px;
  background-color: #57584b;
  padding: 10px 30px;
  border-radius: 3px;
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: .1rem;
}
.shop-tab_content-item p {
  color: #57584b;
  font-size: 1.0rem;
  line-height: 1.5;
  text-align: left;
}
.shop-tab_content-map {
  margin-bottom: 15px;
}
iframe {
  width: 480px;
  height: 350px;
}
@media screen and (max-width:1200px) {
  iframe {
    width: 350px;
    height: 250px;
  }
}
@media screen and (max-width: 768px) {
  iframe {
    width: 280px;
    height: 170px;
  }
}
@media screen and (max-width: 321px) {
  iframe {
    width: 250px;
  }
}
@media screen and (max-width: 768px) {
  .studio_title {
    font-size: 1.6rem;
  }
  .shop-tab_content-item p {
    font-size: 1rem;
  }
}
footer {
  z-index: 99;
  width: 100%;
  background: #57584b;
  padding: 2% 0 0;
}
.nav {
  max-width: 1000px;
  margin: 0 auto;
  color: #fff;
  padding: 0 0 1.5% 0;
}
.nav a {
  display: block;
  text-decoration: none;
  padding: 10px 0;
  ;
  margin: 0 auto;
  font-size: 1rem;
  transition-duration: 0.7s;
}
.nav a:hover {
  border-bottom: solid 1px #fff;
}
.copy {
  background: #130000;
  color: #fff;
  padding: 7px 0 7px 0;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .copy {
    font-size: 11px;
  }
}
/*pcsp*/
.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}
/*LP direct*/
.direct_wrap {
  position: relative;
  margin: 0 auto;
  max-width: 800px;
  overflow: hidden;
}
.direct_logo {
  width: 20%;
  margin: 3% auto;
}
@media screen and (max-width: 768px) {
  .direct_logo {
    width: 40%;
  }
}
.direct_title {
  font-size: 2rem;
  margin: 0 auto;
  padding: 0 0 5% 0;
  color: #57584b;
  letter-spacing: .1rem;
  position: relative;
  display: inline-block;
  font-weight: 600;
}
.direct_title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30%; /* 下線とテキストの間隔を調整 */
  height: 2px; /* 下線の太さ */
  background-color: #57584b; /* 下線の色 */
  width: 50%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .direct_title {
    font-size: 1.6rem;
    padding: 0 0 8% 0;
  }
  .direct_title::after {
    width: 45%;
  }
}
.direct_studio_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  width: 80%;
  background-color: #fff;
  border-radius: 6px;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  margin: 0 auto 50px;
  border: solid #57584b;
}
.direct_studio {
  margin: 0 auto;
  padding: 5% 0 10%;
  width: 90%;
}
@keyframes flash {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.direct_studio_title h4 {
  margin: 10px 0;
  font-size: 1.8rem;
  color: #57584b;
  letter-spacing: 0rem;
}
@media screen and (max-width: 768px) {
  .direct_studio_title h4 {
    margin: 5px 0;
  }
}
@media screen and (max-width: 768px) {
  .direct_studio_wrap {
    width: 90%;
  }
  .direct_studio_title h4 {
    font-size: 1.5rem;
    font-weight: 600;
  }
}
.shop-tab_item { /* width: 85%; */
  margin: 0 auto;
  text-align: center;
}
/* @media screen and (max-width: 768px) { .shop-tab_item {   width: 95%; }
} */
.direct_map iframe {
  width: 580px;
  height: 350px;
  margin-bottom: 20px;
}
@media screen and (max-width:1200px) {
  .direct_map iframe {
    width: 560px;
    height: 300px;
  }
}
@media screen and (max-width: 768px) {
  .direct_map iframe {
    width: 450px;
    height: 260px;
  }
}
@media screen and (max-width: 500px) {
  .direct_map iframe {
    width: 300px;
    height: 160px;
  }
}
.direct_btn {
  margin-bottom: 0 auto 50px;
}
@media screen and (max-width: 768px) {
  .direct_btn {
    margin-bottom: 0 auto 20px;
  }
}
/*20241028変更 24時までのカウントダウン*/
.header {
  height: 110px;
  background-color: #bcb4a4;
  position: sticky;
  top: 0;
  z-index: 9999;
  border-radius: 0 0 20px 20px;
}
@media screen and (max-width: 768px) {
  .header {
    height: 65px;
    display: table;
    width: 100%;
    border-radius: 0;
  }
}
@media screen and (max-width: 768px) {
  .time {
    display: table-cell;
    vertical-align: middle;
  }
}
.time-campaign {
  font-size: 1.6rem;
  color: #fff;
  padding-top: 1%;
  font-weight: 700;
}
.time-campaign::before, .time-campaign::after {
  position: absolute;
  top: 0;
  height: 1.8rem;
  content: '';
}
.time-campaign::before {
  border-left: solid 3px;
  left: 20%;
  transform: rotate(-30deg);
  margin-top: 1%;
}
.time-campaign::after {
  border-right: solid 3px;
  right: 20%;
  transform: rotate(30deg);
  margin-top: 1%;
}
@media screen and (max-width: 450px) {
  .time-campaign::before, .time-campaign::after {
    position: absolute;
    top: 0.2rem;
    height: 1.2rem;
    content: '';
  }
  .time-campaign::before {
    border-left: solid 2px;
    left: 10%;
  }
  .time-campaign::after {
    border-right: solid 2px;
    right: 10%;
  }
}
@media screen and (max-width: 768px) {
  .time-campaign {
    font-size: 1.0rem;
    padding: 0;
  }
}
.time-frame {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 1% 10%;
}
@media screen and (max-width: 768px) {
  .time-frame {
    width: 90%;
    padding: 0;
    margin: 1% auto 0;
  }
}
.time-limited {
  float: right;
  font-size: 2.8rem;
  color: #fff000;
  margin: 0 auto;
  font-weight: 700;
  font-style: normal;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
@media screen and (max-width: 768px) {
  .time-limited {
    font-size: 1.4rem;
  }
}
.time-hurry { /*position:absolute;*/
  float: left;
  font-size: 1.4rem;
  line-height: 1.6rem;
  color: #fff;
  margin: 0 auto; /*top:0%;
	  right:0;
	  left:0;*/
  font-weight: 900;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  .time-hurry {
    font-size: 1.0rem;
    line-height: 1.0rem;
  }
}
/*LP direct 終わり*/
/*LP プラポリ*/
.pripoli {
  position: relative;
  margin: 0 auto;
  max-width: 100%;
  overflow: hidden;
}
.pripoli h2 {
  font-size: 2rem;
  margin: 5% 0;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .pripoli {
    max-width: 90%;
    margin: 0 auto;
  }
  .pripoli h2 {
    font-size: 1.6rem;
    margin: 10% 0;
  }
}
.pri_bg {
  margin: 0 auto 5%;
  background: #fff;
  padding: 2%;
}
.pri_wrap {
  text-align: left;
}
.pri_midasi {
  font-weight: bold;
  color: #57584B;
  display: block;
  font-size: 21px;
  margin: 5% 0 2% 0;
}
.pri_txt {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #57584B;
}
@media screen and (max-width: 768px) {
  .pri_midasi {
    margin: 7% 0 5% 0;
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .pri_txt {
    font-size: 1.1rem;
    line-height: 1.65;
  }
}
.tokusyo {
  position: relative;
  margin: 0 auto;
  max-width: 100%;
  overflow: hidden;
}
.tokusyo h2 {
  font-size: 2rem;
  margin: 5% 0;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .tokusyo {
    max-width: 100%;
    margin: 0 auto;
  }
  .tokusyo h2 {
    font-size: 1.6rem;
    margin: 10% 0;
  }
}
.tokusyo_bg {
  margin: 0 auto 5%;
  padding: 0 2%;
}
/**テーブルメニュー****/
table {
  border-collapse: collapse; /* 枠の重複をなくす */
  width: 100%; /* 表の幅を設定 */
  margin: 20px 0;
}
th, td {
  border: 1px solid #000; /* 枠線を追加 */
  padding: 10px; /* セル内の余白を設定 */
  text-align: left; /* テキストの配置を左揃えにする */
  background-color: #fff;
  line-height: 1.2;
}
th {
  background-color: #e6e6e8; /* ヘッダーの背景色 */
  width: 20%;
}
@media screen and (max-width: 768px) {
  th, td {
    padding: 6px;
    line-height: 1.4;
  }
  th {
    width: 30%;
  }
}
/*利用規約*/
.terms {
  position: relative;
  margin: 0 auto;
  max-width: 100%;
  overflow: hidden;
}
.terms h2 {
  font-size: 2rem;
  margin: 5% 0;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .terms {
    max-width: 90%;
    margin: 0 auto;
  }
  .terms h2 {
    font-size: 1.6rem;
    margin: 10% 0;
  }
}
.terms_bg {
  margin: 0 auto 5%;
  background: #fff;
  padding: 2%;
}
.terms_wrap {
  text-align: left;
}
.terms_midasi {
  font-weight: bold;
  color: #57584B;
  display: block;
  font-size: 21px;
  margin: 5% 0 2% 0;
}
.terms_txt {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #57584B;
  margin: 2% 0;
}
@media screen and (max-width: 768px) {
  .terms_midasi {
    margin: 7% 0 5% 0;
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .terms_txt {
    font-size: 1.1rem;
    line-height: 1.65;
  }
}
.terms_txt_bold {
  font-weight: 600;
}