@charset "UTF-8";
/* CSS Document */
* {
  margin: 0;
  padding: 0;
}
html {
  font-size: 62.5%;
  background: url("../img/bg.png")repeat;
  background-color: #000000;
}
body {
  color: #ffffff;
  width: 100%;
  font-size: 1.6rem;
  line-height: 2em;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}
a {
  word-break: break-all;
}
a:link {
  color: #fff;
}
a:hover {
  color: #BCAF68;
  text-decoration: none;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
a:active {
  color: #fff;
  text-decoration: none;
}
a:visited {
  color: #fff;
  text-decoration: underline;
}
img, div {
  border: none;
}
#load {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  margin: -100px 0 0 0;
  z-index: 300;
  background: #000;
  text-align: center;
  color: #fff;
}
#load_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#load_logo img {
  width: 300px;
}
.fade {
  animation-name: fadeAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeAnime {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeUp {
  animation-name: fadeUp;
  animation-duration: 1.5s;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*Header-----------------------------------------------------------------------------------------------*/
#header {
  background: rgba(0, 0, 0, 0.9);
  width: 100%;
  height: 100px;
  top: 0;
  font-family: 'Noto Serif JP', serif;
  position: fixed;
  display: flex;
  justify-content: center;
  z-index: 200;
}
#logo {
  margin: -10px 0 0 0;
}
#logo h1 {
  font-size: 0;
}
#sub_nav {
  position: absolute;
  top: 20px;
  right: 25px;
  width: 300px; /*250*/
  display: flex;
}
/*.ds a {
	font-size: 1.2rem;
	text-decoration: none;
	padding-right: 10px;
}*/
.btn-sns img {
  width: 40px;
}
/*Language-----------------------------------------------------------------------------------------------*/
.btn-lang {
  width: 80px;
  vertical-align: middle;
  padding: 5px 0 0 0;
}
.btn-lang a {
  margin: 0 5px;
  text-decoration: none;
  color: #fff;
  font-family: 'Noto Serif JP', serif;
}
.btn-lang a:hover {
  color: #fff;
}
.btn-lang a.selected {
  text-decoration: underline;
}
/*nav-----------------------------------------------------------------------------------------------*/
#nav_btn {
  position: absolute;
  width: 50px;
  height: 50px;
  z-index: 9999;
  top: 10px;
  right: 10px;
  cursor: pointer;
  background: #000;
}
/*nav-btn-----------------------------------------------------------------------------------------------*/
#nav_btn span {
  display: inline-block;
  transition: all .3s;
  position: absolute;
  left: 13px;
  height: 2px;
  background-color: #fff;
}
#nav_btn span:nth-of-type(1) {
  top: 25px;
  width: 50%;
}
#nav_btn span:nth-of-type(2) {
  top: 32px;
  width: 30%;
}
#nav_btn.active span:nth-of-type(1) {
  top: 22px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 35%;
}
#nav_btn.active span:nth-of-type(2) {
  top: 34px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 35%;
}
#nav {
  position: absolute;
  z-index: -1;
  opacity: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  font-size: 2.6rem;
  background: #000000;
  transition: all 0.3s;
  pointer-events: none; /*リンククリックできない対策*/
}
#nav.p_active {
  opacity: 1;
  z-index: 999;
}
#nav.p_active #nav-list {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  pointer-events: auto; /*リンククリックできない対策*/
}
#nav ul {
  display: none;
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#nav.p_active ul {
  display: block;
}
#nav li {
  list-style: none;
  text-align: center;
}
#nav li a {
  color: #ffffff;
  text-decoration: none;
  padding: 10px;
  display: block;
  letter-spacing: 0.05em;
}
#nav li.ds_link {
  font-size: 1.4rem;
}
li.g_nav_icon {
  display: flex;
  text-align: center;
  justify-content: center;
}
/*main_img-----------------------------------------------------------------------------------------------*/
#topimg {
	background: url("../img/main.jpg") no-repeat;
	background-size:cover;
	aspect-ratio: 3 / 2;
	width: 100%;
	position: relative;
}

.main_banner {
	position:absolute;
	bottom: 0;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items:flex-end;
	align-content: flex-end;
}

.main_banner_left {
	padding: 0 0 10px 10px ;
}

.main_banner_right {
	text-align: right;
	right: 0;
	padding: 0 10px 10px 0;
}

.main_banner img {
	width: 80%;
}
/*.main_banner {
  position: relative;
  display: inline-block;
  width: 100%;
}
.main_banner img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.main_banner a {
  position: absolute;
  left: 0%;
  bottom: 0%;
  width: 100%;
  height: auto;
}*/
/*slider-----------------------------------------------------------------------------------------------*/
ul.slider {
  width: 100%;
  margin: 10px auto;
}
ul.slider li img {
  width: 98%;
}
.slide-arrow {
  position: absolute;
  top: 50%;
  margin-top: -20px;
  z-index: 100;
}
.prev-arrow {
  left: 10px;
  width: 40px;
  height: 40px;
}
.next-arrow {
  right: 10px;
  width: 40px;
  height: 40px;
}
/*slider-----------------------------------------------------------------------------------------------*/
ul.f_banner {
  width: 50%;
  margin: 0 auto;
  display: flex;
  list-style-type: none;
}
ul.f_banner li {
  margin: 0 10px;
}
ul.f_banner li img {
  width: 100%;
}
/*Contents-----------------------------------------------------------------------------------------------*/
#wrapper {
  width: 100%;
  height: 100%;
  margin: 100px auto 0 auto;
  pointer-events: auto; /*リンククリックできない対策*/
}
#container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
/*Top_contents-----------------------------------------------------------------------------------------------*/
.top__itemarea {
  margin: 120px 0 0 0;
}
.top_title {
  margin: 0 0 15px 0;
  font-size: 3.2rem;
  font-family: 'Noto Serif JP', serif;
  text-align: center;
}
.top_title span {
  font-size: 2.0rem;
  font-family: 'Barlow', sans-serif;
  font-style: italic;
}
.newsarea {}
.newsarea_m {
  margin: 110px auto 0 auto;
}
.newsitem {
  position: relative;
  padding: 23px 5px;
  text-decoration: none;
  color: #fff;
  display: flex;
  height: auto;
  cursor: pointer;
}
.newsitem:hover {
  opacity: 0.8;
}
.newsitem::before, .newsitem::after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  background: #707070;
  width: 100%;
  height: 1px;
  transition: all 0.4s ease-in-out;
}
.newsitem::after {
  width: 0;
  background: #BCAF68;
}
.newsitem:hover::after {
  width: 100%;
}
.newsitem a {
  text-decoration: none;
  color: #fff;
  display: flex;
  height: auto;
}
.day_tag {
  display: flex;
  width: 210px;
}
.day {
  font-size: 1.6rem;
  font-family: 'Barlow', sans-serif;
  font-style: italic;
  margin-right: 15px;
  width: 100px; /*--80px--*/
}
.day2 {
  font-size: 1.6rem;
  font-family: 'Barlow', sans-serif;
  font-style: italic;
  margin-right: 15px;
  width: 150px; /*--80px--*/
  text-align: center;
  color: #fff;
  background: #BCAF68;
}
.tag {
  font-size: 1.4rem; /*--1.6rem--*/
  font-family: 'Barlow', sans-serif;
  font-style: italic;
  width: 80px;
  height: 30px;
  background: #fff;
  color: #000;
  padding: 0 5px;
  margin-right: 15px;
  text-align: center;
  letter-spacing: 0.01em;
}
.tag_sold {
  font-size: 1.6rem;
  font-family: 'Barlow', sans-serif;
  font-style: italic;
  width: 80px;
  height: 30px;
  border: 1px solid #FFFF00;
  color: #FFFF00;
  padding: 0 5px;
  margin-right: 15px;
  text-align: center;
  letter-spacing: 0.01em;
}
.tag_sold_sub {
  font-size: 1.2rem;
  font-family: 'Barlow', sans-serif;
  font-style: italic;
  width: 80px;
  height: 30px;
  border: 1px solid #FFFF00;
  color: #FFFF00;
  padding-top: 5px;
  margin-right: 15px;
  text-align: center;
  line-height: 1.2rem;
  letter-spacing: 0.01em;
}
.newsitem .topic {
  width: calc(100% / calc(210px * 2));
}
.top_moviearea {
  width: 100%;
  margin: 0 auto;
  position: relative;
  display: block;
  overflow-x: hidden;
}
.movie_image a img {
  width: 100%;
}
.movie_l-title {
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 118px;
  background: rgba(255, 255, 255, 0.3);
  width: 99%;
  height: auto;
  padding: 10px 0 10px 10px;
}
.movie_image a::before {
  background: url("../img/icon_play.png") center center / 100px 100px no-repeat;
  content: "";
  display: block;
  width: 100px;
  height: 100px;
  margin: -100px auto 0;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 1;
}
.more_btn a {
  width: 180px;
  height: 25px;
  margin: 50px auto 0 auto;
  padding: 15px 0;
  font-size: 2.4rem;
  font-family: 'Barlow', sans-serif;
  font-style: italic;
  text-decoration: none;
  color: #000;
  background: #fff;
  text-align: center;
  display: block;
}
.more_btn_berevo a {
  width: 200px;
  height: 30px;
  margin: 10px auto;
  padding: 15px 0;
  font-size: 1.4rem;
  text-decoration: none;
  color: #fff;
  background: #bcaf68;
  text-align: center;
  display: block;
  border-radius: 50px;
}
.more_btn_tour a {
  width: 280px;
  height: 30px;
  margin: 10px auto;
  padding: 15px 0;
  font-size: 1.4rem;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  border-radius: 50px;
  background: #bcaf68;
  text-align: center;
  display: block;
}
.twarea {
  width: 600px;
  height: 832px;
  margin: 35px auto 0 auto;
  overflow: auto;
}
/*Footer-----------------------------------------------------------------------------------------------*/
#totop {
  position: fixed;
  bottom: 20px;
  right: 10px;
}
#totop img {
  width: 32px;
}
#footer {
  margin: 90px 0 55px 0;
  padding: 0;
  text-align: center;
  font-size: 10px;
  width: 100%;
  color: #eee;
}
/*Contents-----------------------------------------------------------------------------------------------*/
#contents_inner_title {
  background: #000;
  padding: 85px 0;
  border-top: 1px solid #1C1C1C;
}
.itemarea {
  margin: 40px 0 0 0;
  min-height: 500px;
}
.hajimeni_area {
  padding: 110px 10px;
  text-align: center;
}
.hajimeni_area p {
  font-size: 1.8rem;
  font-family: 'Noto Serif JP', serif;
}
p.hajimeni_title {
  font-size: 2.4rem;
}
.cntlist_detail {
  background: rgba(255, 255, 255, 0.1);
  margin: 20px 0;
  padding: 20px;
}
.att_message {
  border: 1px solid #fff;
  margin: 0 5px;
  padding: 5px 30px 5px 5px;
  font-weight: bold;
  text-align: center;
  position: relative;
}
.att_message span::before, .att_message span::after {
  content: '';
  display: block;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.att_message span::after {
  background: #fff;
  transform: translateY(-50%) rotate(90deg);
  transition: 0.3s;
}
.att_message .active::after {
  transform: rotate(0);
  transition: 0.3s;
}
.att_message2 {
  border: 1px solid #fff;
  margin: 0 5px;
  padding: 5px 30px 5px 5px;
  font-weight: bold;
  text-align: center;
  position: relative;
}
.att_message2 span::before, .att_message2 span::after {
  content: '';
  display: block;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.att_message2 span::after {
  background: #fff;
  transform: translateY(-50%) rotate(90deg);
  transition: 0.3s;
}
.att_message2 .active::after {
  transform: rotate(0);
  transition: 0.3s;
}
.att_message3 {
  border: none;
  background: #a89632;
  margin: 0 5px;
  padding: 5px 30px 5px 5px;
  font-weight: bold;
  text-align: center;
  position: relative;
}
.panel_area {
  list-style: none;
  width: 100%;
  margin: 0 auto;
}
.panel_area li {
  margin: 0 0 30px 0;
}
.panel_area_item {}
.panel_title {
  position: relative;
  cursor: pointer;
  border: 1px solid #fff;
  margin: 0 5px;
  padding: 5px 30px 5px 5px;
  font-weight: bold;
  text-align: center;
}
.panel_title::before, .panel_title::after {
  content: '';
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  position: absolute;
  right: 10px;
  top: 50%;
}
.panel_title::before {
  top: 48%;
  right: 15px;
  transform: rotate(0deg);
}
.panel_title::after {
  top: 49%;
  right: 15px;
  transform: translateY(-50%) rotate(90deg);
  transition: 0.3s;
}
.panel_title.close::before {
  transform: rotate(0deg);
}
.panel_title.close::after {
  transform: rotate(0deg);
}
.panel_title_w {
  position: relative;
  cursor: pointer;
  background: #fff;
  color: #000;
  margin: 0;
  padding: 5px 30px 5px 5px;
  font-weight: bold;
  text-align: center;
}
.panel_title_w::before, .panel_title_w::after {
  content: '';
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: #000;
  position: absolute;
  right: 10px;
  top: 50%;
}
.panel_title_w::before {
  top: 48%;
  right: 15px;
  transform: rotate(0deg);
}
.panel_title_w::after {
  top: 49%;
  right: 15px;
  transform: translateY(-50%) rotate(90deg);
  transition: 0.3s;
}
.panel_title_w.close::before {
  transform: rotate(0deg);
}
.panel_title_w.close::after {
  transform: rotate(0deg);
}
.panel_itemarea {
  display: none;
  padding: 2%;
  border-bottom: 1px solid #b5b3b3;
}
.modal_btn a {
  background: #a89632;
  color: #fff;
  border: none;
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 5px 0;
}
.modal_btn a:hover {
  background: #EFD89A;
  border: none;
  display: block;
  text-align: center;
  padding: 5px 0;
}
.sub_t {
  font-size: 2.0rem;
}
.title_t {
  background: #ffffff;
  padding: 5px 8px;
  color: #000;
}
.gallery_2c {
  display: flex;
  padding: 0;
}
.gallery_2c_inner1 {
  width: 50%;
}
.gallery_2c_inner2 {
  width: 50%;
  padding-left: 0.5%;
}
.shoplist_flex {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
.shoplist_flex_box {
  width: 50%;
}
.jk-3box {
  display: flex;
	width: 100%;
  gap: 10px;
  justify-content: space-between;
}
.jk-3box img {
	width: 32%;
}
table {
  border-collapse: collapse;
}
th, td {
  padding: 10px;
  box-sizing: border-box;
  line-height: 1.3;
}
.table-list {
  width: 100%;
}
th {
  border: 1px solid #4a4a4a;
  background: #fff;
  color: #000;
  padding: 10px;
  text-align: center;
  font-weight: normal;
}
td {
  border: 1px solid #4a4a4a;
  padding: 10px;
  text-align: center;
}
td:first-child.spon {
  display: none;
}
td.tb-day {
  display: none;
}
/*------ 注釈 ------- */
ul.asta {
  margin: 0; /*--余白消し--*/
  padding-left: 1em;
  line-height: 2em;
}
ul.asta > li {
  text-indent: -1em;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
ul.asta > li:before {
  display: inline;
  content: "※";
}
ul.asta01 {
  margin: 0; /*--余白消し--*/
  padding-left: 1em;
  line-height: 2em;
}
ul.asta01 > li {
  text-indent: -1em;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
ul.asta01 > li:before {
  display: inline;
  content: "・";
}
ul.asta02 {
  margin: 0; /*--余白消し--*/
  padding-left: 1em;
  line-height: 2em;
}
ul.asta02 > li {
  text-indent: -1em;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
ul.asta02 > li:before {
  display: inline;
  content: "●";
}
.img_right2center {
  padding: 0 0 15px 15px;
  float: right;
}
.img200 {
  max-width: 200px;
  width: 100%;
  height: auto;
}
.img300 {
  max-width: 300px;
  width: 100%;
  height: auto;
}
.img400 {
  max-width: 400px;
  width: 100%;
  height: auto;
}
.new {
  color: #fff;
  font-size: 80%;
  font-family: 'Noto Serif JP', serif;
  text-decoration: none !important;
  background: #A00F0F;
  margin: 0 0 0 10px;
  padding: 0 10px;
  display: inline-block;
}
.newsarea__inner {
  width: 80%;
  margin: 0 auto;
}
.newsitem__inner {
  position: relative;
  border-bottom: 1px solid #fff;
  padding: 5px;
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-flow: column;
  height: auto;
}
.newsitem__inner .tag {
  font-size: 1.6rem;
  font-family: 'Barlow', sans-serif;
  font-style: italic;
  width: 70px;
  height: 25px;
  background: #fff;
  color: #000;
  padding: 0 5px 5px 5px;
  text-align: center;
  letter-spacing: 0.01em;
}
.newsitem__inner .topic {
  width: 100%;
  padding: 10px 0 0 0;
}
.newsitem__textarea {
  padding: 10px;
}
.flex_img {
  display: flex;
  gap: 5px;
}
.flex_img div {
  width: 50%;
}
.flex_img img {
  width: 100%;
}
.button a {
  background: #bcaf68;
  border-radius: 5px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 180px;
  padding: 10px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
.button a:hover {
  background: #fff;
  color: #000;
}
.button a:after {
  content: '';
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}
.button a:hover:after {
  border-color: #000;
}
.flexw50 {
  width: 100%;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  box-sizing: border-box;
}
.flexw50-img, .flexw50-txt {
  width: 50%;
}
.flexw50-img {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .flexw50 {
    flex-direction: column;
  }
  .flexw50-img, .flexw50-txt {
    width: 100%;
  }
}
/*Media-----------------------------------------------------------------------------------------------*/
ul.media_tag {
  display: flex;
  width: 400px;
  margin: 0 auto 50px auto;
  justify-content: space-around;
}
ul.media_tag li {
  list-style-type: none;
  text-align: center;
}
ul.media_tag li a {
  list-style-type: none;
  font-size: 2.4rem;
  font-family: 'Barlow', sans-serif;
  font-style: italic;
  text-align: center;
  text-decoration: none;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 12px;
  padding: 5px;
}
.media_title {
  font-size: 3.2rem;
  font-family: 'Barlow', sans-serif;
  font-style: italic;
  margin: 0 0 0 15px;
  position: relative;
}
.media_title::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 32px;
  background: #fff;
  position: absolute;
  left: -15px;
}
/*Profile-----------------------------------------------------------------------------------------------*/
.profilearea {
  display: flex;
  width: 100%;
  margin: 0 auto;
  padding: 0 5px;
}
.member {
  text-align: center;
  width: calc(100% - 20px);
  padding-right: 20px;
}
.member:last-child {
  padding-right: 0;
}
.name {
  font-size: 2.6rem;
  font-family: 'Noto Serif JP', serif;
}
.name span {
  font-size: 1.8rem;
  font-family: 'Barlow', sans-serif;
  font-style: italic;
}
.part {
  font-family: 'Noto Serif JP', serif;
}
.member img.member_photo {
  width: 100%;
}
.member .member_sns img {
  padding: 10px;
  width: 40px;
}
/*Work一覧-----------------------------------------------------------------------------------------------*/
.work_title {
  font-size: 3.2rem;
  font-family: 'Noto Serif JP', serif;
  margin: 0 0 30px 15px;
  position: relative;
}
.work_title::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 32px;
  background: #fff;
  position: absolute;
  left: -15px;
  top: 3px;
}
.work_title span {
  font-size: 2.4rem;
}
.works {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.works_inner {
  width: calc(100% / 4 - 15px);
}
.workJK {
  position: relative;
}
.workJK span.mask {
  position: relative;
  display: block;
  line-height: 0;
  overflow: hidden;
}
.workJK span.mask::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  opacity: 0;
  transition: .3s ease-in-out;
  transform: translateY(-100%);
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
}
.workJK:hover span.mask::before {
  opacity: 1;
  transform: translateY(0);
}
.workJK span.cap {
  position: absolute;
  opacity: 0;
  transition: .5s ease-in-out;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  line-height: 1.5;
  font-size: 1.4rem;
  text-align: center;
}
.workJK:hover span.cap {
  opacity: 1;
}
.workJK img {
  width: 100%;
}
.works_panel {
  list-style: none;
}
.work_panel_title {
  cursor: pointer;
}
.work_panel_title::before, .work_panel_title::after {
  position: absolute;
  content: '';
  width: 15px;
  height: 2px;
}
.work_panel_title::before {
  top: 48%;
  right: 15%;
  transform: rotate(0deg);
}
.work_panel_title::after {
  top: 48%;
  right: 15%;
  transform: rotate(90deg);
}
.work_panel_title.close::before {
  transform: rotate(45deg);
}
.work_panel_title.close::after {
  transform: rotate(-45deg);
}
.works_panel_inner {
  display: none;
}
.works_p {
  display: none;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.button_ec-wrap {
  display: flex;
  gap: 5px;
}
.button_ec {
  display: inline-block;
  background: #bcaf68;
  border: 1px solid #fff;
  color: #fff;
  width: 160px;
  text-align: center;
  padding: 10px 0;
  text-decoration: none;
  font-size: 1.4rem;
  position: relative;
}
.button_ec::after {
  position: absolute;
  content: "";
  background-image: url("../img/icon_cart.svg");
  display: inline-block;
  height: 1.7rem;
  width: 1.7rem;
  vertical-align: middle;
  background-size: contain;
  top: 18px;
  right: 8px;
}
.button_ec:hover {
  color: #fff;
}
/*Movie-----------------------------------------------------------------------------------------------*/
.movie {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  width: 100%;
  margin: 0 auto;
}
.movie_inner {
  width: calc(100% / 2 - 15px);
  position: relative;
}
.movie_thum a::before {
  background: url("../img/icon_play.png") center center / 80px 80px no-repeat;
  content: "";
  display: block;
  width: 80px;
  height: 80px;
  margin: -100px auto 0;
  position: absolute;
  top: 62%;
  left: 0;
  right: 0;
  z-index: 1;
}
.movie_inner img {
  width: 100%;
}
.movie_inner p {
  position: relative;
  padding-left: 18px;
  text-align: left;
  line-height: 1.25;
}
.movie_inner p:before {
  background: none;
  display: block;
  position: absolute;
  width: 9px;
  height: 9px;
  box-sizing: border-box;
  border-right: 2px solid #666;
  border-bottom: 2px solid #666;
  top: 0.3em;
  left: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  content: "";
}
.youtube_large {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  /*overflow: hidden;*/
  margin: 0 auto 5px auto;
}
.youtube_large iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*Work-----------------------------------------------------------------------------------------------*/
.workarea {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow: hidden;
}
.work_item_left img {
  width: 100%;
  max-width: 500px;
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  touch-callout: none;
  user-select: none;
}
.work_item_left {
  padding: 15px;
  text-align: center;
  width: 45%;
  float: left;
}
.work_item_right {
  padding: 15px;
  width: 45%;
  float: right;
}
.work_item_title {
  font-size: 2.4rem;
  font-family: 'Noto Serif JP', serif;
  margin: 0 0 40px 0;
}
.work_item_title span {
  font-size: 1.8rem;
}
.work_item_inner a {
  text-decoration: none;
}
.mtm_lk a {
  padding: 10px;
  width: 205px;
  border: 1px solid #fff;
  border-radius: 10px;
  color: #ffffff;
  text-align: center;
  display: block;
}
.mtm_lk img {
  width: auto;
  vertical-align: middle;
}
.mtm_lk a {
  color: #ffffff;
  text-decoration: none;
}
.workarea_sub {
  width: 90%;
  margin: 0 auto;
  padding: 10px;
  border: 1px solid #BCAF68;
}
/*Contact-----------------------------------------------------------------------------------------------*/
span.red {
  color: #ff0000;
}
span.gold {
  color: #BCAF68;
  ;
}
article.contact {
  max-width: 960px;
  padding: 1rem;
  margin: auto;
}
.form dt, .form dd {}
.form dt {
  padding-bottom: 4px;
  box-sizing: border-box;
}
.form dd {}
.formtxt {
  color: #FFF;
  width: 100%;
  padding: 10px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  box-sizing: border-box;
}
input:-internal-autofill-selected {
  color: #FFF;
  width: 100%;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.2) !important;
  border: none;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  box-sizing: border-box;
}
.formshort {
  width: 180px;
}
.form .dotline {
  margin: 10px 0px;
  border-bottom: #D8D8D8 dotted 1px;
}
.formtxtarea {
  color: #FFF;
  height: 180px;
  padding: 10px;
  width: 100%;
  padding: 10px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  box-sizing: border-box;
}
.btn {
  text-align: center;
  margin: auto;
  width: 270px;
  height: 70px;
  font-size: larger;
  background: #333333;
  padding: 12px;
  display: block;
  color: #FFF;
  border: none;
  box-sizing: border-box;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  cursor: pointer;
}
.btn:hover {
  text-align: center;
  margin: auto;
  font-size: larger;
  background: #000000;
  display: block;
  color: #ffffff;
}
.radio input[type=radio] {
  display: inline-block;
  margin-right: 6px;
}
.radio input[type=radio] + label {
  position: relative;
  display: inline-block;
  margin-right: 15px;
  cursor: pointer;
}
.radio input[type=radio] {
  display: none;
  margin: 0;
}
.radio input[type=radio] + label {
  padding: 0 0 0 24px;
}
.radio input[type=radio] + label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  background: rgba(255, 255, 255, 0.1);
}
.radio input[type=radio] + label::before {
  border: 1px solid #525966;
  border-radius: 30px;
}
.radio input[type=radio]:checked + label::after {
  content: "";
  position: absolute;
  top: 50%;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
}
.radio input[type=radio]:checked + label::after {
  left: 5px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  background: #FFF;
  border-radius: 8px;
}
.contact_form_privacy {
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 80px;
  font-size: 14px;
}
.contact_form_privacy a {
  text-decoration: underline;
}
.contact_form_privacy a:hover {
  opacity: 0.7;
}
input[type="submit"][disabled] {
  background-color: #ccc;
  cursor: default !important;
}
input, textarea, select {
  font-size: 1.6rem;
}
.letterbox {
  border: solid 1px;
  padding: 20px;
}
.grecaptcha-badge {
  opacity: 0 !important;
}
@media screen and (max-width: 1200px) {
  .newsarea {
    width: 90%;
    margin: 0 auto;
  }
  .newsarea_m {
    width: 90%;
    margin: 110px auto 0 auto;
  }
  .profilearea {
    display: flex;
    width: 90%;
    margin: 0 auto;
    padding: 0 5px;
  }
}
@media screen and (max-width: 768px) {
  body {
    color: #ffffff;
    width: 100%;
    font-size: 1.4rem;
    line-height: 2em;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  }
  #header {
    background: rgba(0, 0, 0, 1);
    width: 100%;
    height: 100px;
    top: 0;
    font-family: 'Noto Serif JP', serif;
    position: fixed;
    display: flex;
    justify-content: flex-start;
    z-index: 200;
  }
  .btn-sns img {
    width: 30px;
  }
  /*---slider---*/
  .prev-arrow {
    left: 10px;
    width: 25px;
    height: 25px;
  }
  .next-arrow {
    right: 10px;
    width: 25px;
    height: 25px;
  }
  /*---slider_end---*/
  .top__itemarea {
    margin: 100px 0 0 0;
  }
  #sub_nav {
    position: absolute;
    top: 30px;
    right: 10px;
    width: 260px;
    display: flex;
  }
  /*slider-----------------------------------------------------------------------------------------------*/
  ul.f_banner {
    width: 100%;
    margin: 0 auto;
    display: flex;
    list-style-type: none;
  }
  ul.f_banner li {
    margin: 0 10px;
  }
  ul.f_banner li img {
    width: 100%;
  }
  /*nav-----------------------------------------------------------------------------------------------*/
  #nav_btn {
    position: absolute;
    width: 50px;
    height: 50px;
    z-index: 9999;
    top: 15px;
    right: 10px;
    cursor: pointer;
    background: #000;
  }
  #nav {
    position: absolute;
    z-index: -1;
    opacity: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    font-size: 1.8rem;
    background: #000000;
    transition: all 0.3s;
    pointer-events: none; /*リンククリックできない対策*/
  }
  #container {
    width: 100%;
    max-width: inherit;
    margin: 0 auto;
  }
  .top_title {
    margin: 0 0 15px 0;
    font-size: 2.4rem;
    font-family: 'Noto Serif JP', serif;
    text-align: center;
  }
  .top_title span {
    font-size: 1.4rem;
    font-family: 'Barlow', sans-serif;
    font-style: italic;
  }
  .newsarea {
    width: 90%;
    margin: 0 auto;
  }
  .newsarea_m {
    width: 90%;
    margin: 110px auto 0 auto;
  }
  .newsitem {
    position: relative;
    margin: 0 0 10px 0;
    padding: 8px 5px;
    text-decoration: none;
    color: #fff;
    display: flex;
    flex-flow: column;
    height: auto;
  }
  .newsitem a {
    text-decoration: none;
    color: #fff;
    display: flex;
    flex-flow: column;
    height: auto;
  }
  .day_tag {
    display: flex;
    width: 180px;
  }
  .day {
    font-size: 1.4rem;
    font-family: 'Barlow', sans-serif;
    font-style: italic;
    margin-right: 5px;
    width: 90px; /*--80px--*/
  }
  .tag {
    font-size: 1.2rem; /*--1.4rem--*/
    font-family: 'Barlow', sans-serif;
    font-style: italic;
    width: 70px;
    height: 24px;
    background: #fff;
    color: #000;
    padding: 0 5px;
    margin-right: 20px;
    text-align: center;
    letter-spacing: 0.01em;
  }
  .tag_sold {
    font-size: 1.4rem;
    font-family: 'Barlow', sans-serif;
    font-style: italic;
    width: 70px;
    height: 24px;
    border: 1px solid #FFFF00;
    color: #FFFF00;
    padding: 0 5px;
    margin-right: 20px;
    text-align: center;
    letter-spacing: 0.01em;
  }
  .topic {
    width: 100%;
    padding: 10px 0 0 0;
  }
  .more_btn a {
    width: 120px;
    height: 22px;
    margin: 50px auto 0 auto;
    padding: 15px 0;
    font-size: 1.8rem;
    font-family: 'Barlow', sans-serif;
    font-style: italic;
    text-decoration: none;
    color: #000;
    background: #fff;
    text-align: center;
    display: block;
  }
  .twarea {
    width: 70%;
    height: 700px;
    margin: 35px auto 0 auto;
    overflow: auto;
  }
  .img_right2center {
    display: block;
    padding: 10px;
    float: none;
    width: 100%;
    text-align: center;
  }
  .newsitem__inner {
    position: relative;
    margin: 0 0 10px 0;
    padding: 8px 5px;
    text-decoration: none;
    color: #fff;
    display: flex;
    flex-flow: column;
    height: auto;
  }
  .movie_l-title {
    position: inherit;
    z-index: 1;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 1);
    width: 99%;
    height: auto;
    margin-top: -10px;
    padding: 10px 0 10px 10px;
  }
  .flex_img {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .flex_img div {
    width: 100%;
  }
  /*MEDIA-----------------------------------------------------------------------------------------------*/
  ul.media_tag {
    display: flex;
    width: 50%;
    margin: 0 auto 50px auto;
    justify-content: space-around;
  }
  ul.media_tag li {
    list-style-type: none;
    text-align: center;
  }
  ul.media_tag li a {
    list-style-type: none;
    font-size: 1.8rem;
    font-family: 'Barlow', sans-serif;
    font-style: italic;
    text-align: center;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 12px;
    padding: 5px;
  }
  /*PROFILE-----------------------------------------------------------------------------------------------*/
  .name {
    font-size: 2.0rem;
    font-family: 'Noto Serif JP', serif;
  }
  .name span {
    font-size: 1.6rem;
    font-family: 'Barlow', sans-serif;
    font-style: italic;
  }
  .part {
    font-family: 'Noto Serif JP', serif;
  }
  .member .member_sns img {
    padding: 7px;
    width: 20px;
  }
  .works_inner {
    width: calc(100% / 3 - 15px);
  }
  /*Movie-----------------------------------------------------------------------------------------------*/
  .movie_inner {
    width: calc(100% / 2 - 15px);
    position: relative;
  }
  .movie_thum a::before {
    background: url("../img/icon_play.png") center center / 80px 80px no-repeat;
    content: "";
    display: block;
    width: 80px;
    height: 80px;
    margin: -100px auto 0;
    position: absolute;
    top: 68%;
    left: 0;
    right: 0;
    z-index: 1;
  }
  /*Work-----------------------------------------------------------------------------------------------*/
  .workarea {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow: hidden;
  }
  .work_item_left img {
    width: 100%;
    max-width: 500px;
  }
  .work_item_left {
    padding: 15px;
    margin: 0 auto;
    text-align: center;
    width: 90%;
    float: none;
  }
  .work_item_right {
    padding: 15px;
    margin: 0 auto;
    width: 90%;
    float: none;
  }
  .work_item_title {
    font-size: 2.2rem;
    font-family: 'Noto Serif JP', serif;
    margin: 0 0 40px 0;
  }
  .work_item_title span {
    font-size: 1.8rem;
  }
  .mtm_lk a {
    padding: 10px;
    width: 205px;
    border: 1px solid #fff;
    border-radius: 10px;
    color: #ffffff;
    text-align: center;
    display: block;
  }
}
@media screen and (max-width: 640px) {
.main_banner_left {
	padding: 0 0 0 10px ;
}

.main_banner_right {
	text-align: right;
	right: 0;
	padding: 0 10px 0 0;
}	

.main_banner img {
	width: 70%;
}
	
  #contents_inner_title {
    background: #000;
    padding: 65px 0;
    border-top: 1px solid #1C1C1C;
  }
  .top_title img {
    width: 30%;
  }
  .button_ec-wrap {
    display: flex;
    gap: 5px;
  }
  .shoplist_flex {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-direction: column;
  }
  .shoplist_flex_box {
    width: 100%;
  }
.jk-3box {
  display: flex;
  width: 100%;
  gap: 15px;
  justify-content: space-between;
  flex-direction: column;
}
.jk-3box img {
	width: 100%;
}
  .table-list {
    border-spacing: 10px;
	border-collapse: separate;
  }
  .tr01 {
    display: none;
  }
  td {
    display: block;
    border-bottom: 1px solid #4a4a4a;
    width: 100%;
    text-align: center;
  }
  td:not(:first-child)::before {
    content: attr(data-label);
    font-size: 1.0rem;
    display: block;
    background: #000;
    color: #fff;
    margin: 0 0 10px;
    padding: 5px
  }
  td:first-child {
    background: #fff;
    color: #000;
    text-align: center;
  }
  td:first-child.spon {
    display: block;
  }
  td.tb-day {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  #sub_nav {
    position: absolute;
    top: 30px;
    right: 10px;
    width: 120px;
    display: flex;
  }
  .btn-sns {
    display: none;
  }
  .hajimeni_area img {
    width: 100%;
  }
  .hajimeni_area p {
    font-size: 1.6rem;
    font-family: 'Noto Serif JP', serif;
  }
  p.hajimeni_title {
    font-size: 2.0rem;
  }
  /*---PROFILE---*/
  .profilearea {
    display: flex;
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
    padding: 0 5px;
  }
  .member {
    text-align: center;
    width: 100%;
    padding-right: 0;
  }
  .order01 {
    order: 1;
  }
  .order02 {
    order: 0;
  }
  .order03 {
    order: 2;
  }
  .name {
    font-size: 2.0rem;
    font-family: 'Noto Serif JP', serif;
  }
  .name span {
    font-size: 1.6rem;
    font-family: 'Barlow', sans-serif;
    font-style: italic;
  }
  .part {
    font-family: 'Noto Serif JP', serif;
  }
  .member .member_sns img {
    padding: 7px;
    width: 20px;
  }
  ul.media_tag {
    display: flex;
    width: 80%;
    margin: 0 auto 50px auto;
    justify-content: space-around;
  }
  ul.media_tag li a {
    list-style-type: none;
    font-size: 1.6rem;
    font-family: 'Barlow', sans-serif;
    font-style: italic;
    text-align: center;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 8px;
    padding: 5px;
  }
  .top_title img {
    width: 40%;
  }
  .works_inner {
    width: calc(100% / 2 - 10px);
  }
  /*--Live---*/
  .modal_btn a {
    font-size: 1.2rem;
  }
  .title_t {
    font-size: 1.2rem;
  }
  /*--Movie---*/
  .movie_inner {
    width: calc(100% / 1 - 15px);
    position: relative;
  }
  .movie_thum a::before {
    background: url("../img/icon_play.png") center center / 80px 80px no-repeat;
    content: "";
    display: block;
    width: 80px;
    height: 80px;
    margin: -100px auto 0;
    position: absolute;
    top: 75%;
    left: 0;
    right: 0;
    z-index: 1;
  }
  .work_title, .media_title {
    font-size: 2.4rem;
  }
  .work_item_right {
    padding: 15px;
    margin: 0 auto;
    width: 80%;
    float: none;
  }
  .workarea_sub {
    width: 85%;
    margin: 0 auto;
    padding: 10px;
    border: 1px solid #BCAF68;
  }
  img.logo_sp {
    width: 100%;
  }
}
@media screen and (max-width: 320px) {
  .movie_l-title {
    padding: 3px;
  }
  #contents_inner_title {
    background: #000;
    padding: 45px 0;
    border-top: 1px solid #1C1C1C;
  }
}