@charset "UTF-8";
/* CSS Document */


/* ////////////////////////////////////////////////////////////////////////////////

	Common

//////////////////////////////////////////////////////////////////////////////// */
@font-face {
  font-family: 'sns_ico';
  src:
    url('../fonts/sns_ico.ttf?z7sza2') format('truetype'),
    url('../fonts/sns_ico.woff?z7sza2') format('woff'),
    url('../fonts/sns_ico.svg?z7sza2#sns_ico') format('svg');
  font-weight: normal;
  font-style: normal;
}

i.snsIcon {
  font-family: 'sns_ico' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  
	color: #000;
}

.icon-search:before { content: "\e908";}
.icon-arrow1_left:before { content: "\e90c";}
.icon-arrow1_bottom:before { content: "\e90d";}
.icon-arrow1_right:before { content: "\e90e";}
.icon-arrow1_top:before { content: "\e90f";}
.icon-arrow2_left:before { content: "\e910";}
.icon-arrow2_bottom:before { content: "\e911";}
.icon-arrow2_right:before { content: "\e912";}
.icon-arrow2_top:before { content: "\e913";}
.icon-link:before { content: "\e914";}
.icon-note:before { content: "\e915";}
.icon-ap:before { content: "\e900";}
.icon-blo:before { content: "\e901";}
.icon-fb:before { content: "\e902";}
.icon-hp:before { content: "\e903";}
.icon-in:before { content: "\e904";}
.icon-line:before { content: "\e905";}
.icon-spo:before { content: "\e906";}
.icon-tt:before { content: "\e907";}
.icon-yt:before { content: "\e909";}
.icon-x:before { content: "\e90a";}
.icon-wb:before { content: "\e90b";}
.icon-arrow3_top:before { content: "\ea3a";}
.icon-arrow3_right:before { content: "\ea3c";}
.icon-arrow3_bottom:before { content: "\ea3e";}
.icon-arrow3_left:before { content: "\ea40";}


html {
	scroll-behavior: smooth;
}
body {
	font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	font-size: min(3.2vw, 14px);
	line-height: 1.8;
	-webkit-text-size-adjust: 100%;
  background-color: #abebf1;
}

img {
	max-width: 100%;
	height: auto;
}
ul { list-style: none;}

.anim {
	opacity: 0;
  transform: translateY(30px);
	transition: all .6s ease-out;
}
.anim.on {
	opacity: 1;
  transform: translateY(0);
}

@media screen and (min-width: 821px) {
	
	.sp { display: none;}
	
	a { transition: all 0.3s ease-out;}
	a:hover { opacity: 0.5;}
	
}
@media screen and (max-width: 820px) {
	
	.pc { display: none;}
	
}



body:not(.page--home) .wrap {
  padding-top: 0;
	padding-bottom: 0;
}

body::before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  border: #000 solid 4px;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.wrap {
  overflow: hidden;
}

body:not(.page--home) header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  z-index: 100;
}

header .hdrLogo {
  background: url("../images/hdr_cloud.png") no-repeat left top;
  background-size: contain;
  line-height: 0;
  padding: min(5vw, 25px) min(9vw, 70px) min(6vw, 50px) min(6vw, 30px);
}
header .hdrLogo img {
  width: min(22vw, 150px);
}

header .hdrMenu {
/*  padding: 0 min(6vw, 30px);*/
  display: flex;
  flex-direction: column;
  gap: min(2vw, 10px);
  position: relative;
}
header .hdrMenu::after {
  content: "";
  display: block;
  background: url("../images/deco_star_wh.png") no-repeat center center;
  background-size: contain;
  aspect-ratio: 66/68;
  width: min(5vw, 20px);
  position: absolute;
  bottom: -6%;
  right: 0;
}
@keyframes star {
  0% { transform: rotate(-10deg);}
  100% { transform: rotate(10deg);}
}

header .hdrMenu li a {
  display: block;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  font-family: ouma-devanagari, sans-serif;
  font-weight: 600;
  font-size: min(3vw, 12px);
  letter-spacing: 0.1em;
  padding: min(0.4vw, 2px) min(4vw, 20px) min(0.5vw, 4px);
  border-radius: 100px;
  text-align: center;
}

@media screen and (min-width: 821px) {
  #globalNavi {
    display: block !important;
    position: absolute;
    top: min(6vw, 30px);
    right: min(6vw, 30px);
  }
  #menuButton,
  .menuTtl {
    display: none !important;
  }
  
  header .hdrMenu::after {
    transform: rotate(-10deg);
    animation: star 1s linear 0s infinite alternate;
  }
}
@media screen and (max-width: 820px) {
	
  #globalNavi {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #abebf1;
  }
  #globalNavi .inrWrap {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 10vh;
  }
  #globalNavi .menuTtl {
    width: min(50vw, 340px);
    line-height: 0;
    margin-bottom: min(10vw, 80px);
  }
  
  header .hdrMenu::before {
    content: "";
    display: block;
    background: url("../images/deco_cloud.png") no-repeat center center;
    background-size: contain;
    aspect-ratio: 438 / 226;
    width: min(26vw, 180px);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transform: translate(-20%, -50%);
  }
/*
  header .hdrMenu::after {
    bottom: max(-10vw, -80px);
    right: min(7vw, 40px);
  }
*/
  header .hdrMenu li a {
    font-size: min(4.2vw, 24px);
    padding: min(0.4vw, 2px) min(18vw, 140px) min(0.5vw, 4px);
  }
  
  #menuButton {
    display: block;
    width: min(10vw, 40px);
    height: min(10vw, 40px);
    z-index: 9000;
    position: relative;
    margin-right: min(5vw, 30px);
  }
  #menuButton span {
    display: block;
    background: #000;
    width: 100%;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 0;
    transition: all 0.4s;
  }
  #menuButton span:nth-child(1) { transform: translateY(-350%) rotate(0deg);}
  #menuButton span:nth-child(2) { transform: translateY(250%) rotate(0deg);}
  #menuButton span:nth-child(3) { transform: translateY(-50%);}
  #menuButton.active span:nth-child(1) { transform: translateY(-50%) rotate(45deg);}
  #menuButton.active span:nth-child(2) { transform: translateY(-50%) rotate(-45deg);}
  #menuButton.active span:nth-child(3) { opacity: 0;}
	
}




footer {
  width: 100%;
  padding: min(18vw, 140px) min(5vw, 60px) min(8vw, 60px);
	display: flex;
	justify-content: flex-end;
  align-items: flex-end;
}
.sns-nav {
  display: flex;
  gap: min(3vw, 15px);
}
.sns-nav a {
  background-color: #000;
  border-radius: 50%;
  width: min(7vw, 40px);
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.sns-nav a i {
  color: #fff;
  font-size: min(4vw, 20px);
}

footer .copyright {
  font-family: ouma-devanagari, sans-serif;
  font-weight: 600;
  font-size: min(3vw, 12px);
  letter-spacing: 0.1em;
}


@media screen and (max-width: 820px) {

  

}

#op {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #abebf1;
  width: 100vw;
  height: 100vh;
  z-index: 9998;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  animation: op 0.6s cubic-bezier(0.87, 0, 0.13, 1) 0.8s forwards;
  pointer-events: none;
}
@keyframes op {
  0% { opacity: 1;}
  100% { opacity: 0;}
}
#op > div {
  line-height: 0;
  width: min(24vw, 180px);
  transform: scale(0.4);
  opacity: 0;
  animation: pan 0.6s cubic-bezier(0.87, 0, 0.13, 1) 0s forwards;
}
@keyframes pan {
  0% { transform: scale(0.4); opacity: 0;}
  100% { transform: scale(1); opacity: 1;}
}



/* ////////////////////////////////////////////////////////////////////////////////

	mainvisual

//////////////////////////////////////////////////////////////////////////////// */
#mainvisual {
  width: 100vw;
  height: 100vh;
  height: 100svh;
  position: relative;
}
#mainvisual::before,
#mainvisual::after {
  content: "";
  display: block;
  position: absolute;
  background: url("../images/deco_cloud.png") no-repeat center center;
  background-size: contain;
  aspect-ratio: 438/226;
  width: min(30vw, 180px);
  animation: cloudDeco 1.5s cubic-bezier(0.45, 0, 0.55, 1) 0s infinite alternate;
}
#mainvisual::before {
  top: -3%;
  right: 5%;
}
#mainvisual::after {
  bottom: -3%;
  left: -4%;
}
@keyframes cloudDeco {
  0% { transform: translateY(0);}
  100% { transform: translateY(-10px);}
}

#mainvisual h1 {
  position: absolute;
  width: 78vh;
  max-width: 80%;
  aspect-ratio: 25/22;
  line-height: 0;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: cloud 2s cubic-bezier(0.45, 0, 0.55, 1) 0s infinite alternate;
}
@keyframes cloud {
  0% { transform: translate(-50%, -50%);}
  100% { transform: translate(-50%, -48%);}
}
#mainvisual h1 .ttl1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  
  opacity: 0;
  animation: op01 1s ease-out 3s forwards;
  z-index: 1;
}
#mainvisual h1 .ttl2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  animation: op01 1s ease-out 4s forwards;
  z-index: 2;
}
#mainvisual h1 .ttl3 {
  opacity: 0;
  animation: op01 1.5s ease-out 2s forwards;
}
@keyframes op01 {
  0% { opacity: 0;}
  100% { opacity: 1;}
}

#mainvisual .sns-nav {
  position: fixed;
  bottom: min(6vw, 30px);
  left: min(5vw, 30px);
  z-index: 2;
}

#mainvisual .scroll {
  position: absolute;
  bottom: min(6vw, 30px);
  right: min(5vw, 30px);
  height: min(12vw, 60px);
  width: min(4vw, 20px);
  overflow: hidden;
}
#mainvisual .scroll::before {
  content: "";
  display: block;
  background-color: #000;
  width: 3px;
  height: 100%;
  margin: 0 auto;
}
#mainvisual .scroll::after {
  content: "";
  display: block;
  background-color: #fff;
  border: #000 solid 3px;
  border-radius: 50%;
  width: min(4vw, 20px);
  height: min(4vw, 20px);
  position: absolute;
  top: 0;
  left: 0;
  animation: scrl 2s linear 0s infinite;
}
@keyframes scrl {
  0% { top: calc(0% - min(4vw, 20px));}
  100% { top: 100%;}
}

@media screen and (max-width:820px) {
  
  #mainvisual::before {
    display: none;
  }
  
  #mainvisual h1 {
    top: 46%;
  }
  
  #mainvisual .scroll {
    width: 16px;
  }
  #mainvisual .scroll::after {
    width: 16px;
    height: 16px;
  }
  
}


section {
  padding: min(8vw, 60px) 0;
}
.contentWrap {
  max-width: 1200px;
  padding: 0 min(5vw, 60px);
  margin: 0 auto;
}

h2 {
  text-align: center;
  font-size: min(2.8vw, 16px);
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: min(6vw, 40px);
}
h2 strong {
  font-family: ouma-devanagari, sans-serif;
  font-size: 2.8em;
  font-weight: 500;
  display: block;
  letter-spacing: 0.1em;
  padding: 0 1em;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}
h2 strong::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 100%;
  background: url("../images/deco_star01.png") no-repeat left center;
  background-size: min(4vw, 22px);
}
h2 strong::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1em;
  height: 100%;
  background: url("../images/deco_star02.png") no-repeat right center;
  background-size: min(4vw, 22px);
}

.whiteBox {
  background-color: #fff;
  border: #000 solid 2px;
  border-radius: min(2vw, 10px);
  padding: min(5vw, 40px);
  position: relative;
}
.whiteBox + .whiteBox {
  margin-top: min(6vw, 30px);
}

.whiteBox:first-of-type::before {
  content: "";
  display: block;
  position: absolute;
  background: url("../images/deco_cloud.png") no-repeat center center;
  background-size: contain;
  aspect-ratio: 438/226;
  width: min(30vw, 180px);
  animation: cloudDeco2 1.5s cubic-bezier(0.45, 0, 0.55, 1) 0s infinite alternate;
  top: 0;
  right: 0;
  z-index: 1;
  transform: translate(50%, -50%);
}
@keyframes cloudDeco2 {
  0% { top: 0;}
  100% { top: -20px;}
}
.whiteBox:last-of-type::after {
  content: "";
  display: block;
  position: absolute;
  background: url("../images/deco_cloud.png") no-repeat center center;
  background-size: contain;
  aspect-ratio: 438/226;
  width: min(30vw, 180px);
  animation: cloudDeco3 1.5s cubic-bezier(0.45, 0, 0.55, 1) 0s infinite alternate;
  bottom: 0;
  left: 0;
  z-index: -1;
  transform: translate(-50%, 50%);
}
@keyframes cloudDeco3 {
  0% { bottom: 0;}
  100% { bottom: -20px;}
}




#schedule .s-table {
	width: 100%;
	border-collapse: collapse;
}
#schedule a.ticketBtn{
    font-size: 120%;
    padding: 20px;
    border-radius: 20px;
    width: 500px;
    margin: 0 auto 50px;
    background: #2d878f;
    color: #fff;
    font-weight: bold;
}
#schedule a.ticketBtn::after {
    border-top: #fff solid 2px;
    border-right: #fff solid 2px;
}
#schedule .tradeDetail{
    margin:0 0 20px 0;
}
#schedule .tradeDetail dt{
    background: #f55067;
    color: #fff;
    text-align: center;
    font-size: 120%;
    padding: 20px;
    border-radius: 20px;
    width: 500px;
    margin: 0 auto;
    transition: 0.5s ease;
    position: relative;
    font-weight: 700;
    cursor: pointer;
}
#schedule .tradeDetail dt::after {
    position: absolute;
    margin: -12px 0 0;
    content: "";
    vertical-align: middle;
    top: 53%;
    right: 25px;
    width: 10px;
    height: 10px;
    border-top: 2px solid;
    border-right: 2px solid;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    z-index: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
#schedule .tradeDetail dt.open{
    width: 100%;
    border-radius: 20px 20px 0 0;
}
#schedule .tradeDetail dt.open:after{
    margin: -5px 0 0;
    transform: rotate(-45deg);
    transition: 0.5s ease;
}
#schedule .tradeDetail dd{
    display: none;
    background:#fffef8;
    padding: 50px;
    border-radius: 0 0 20px 20px;
    margin: 0;
}
#schedule .tradeDetail dd >*{
    margin-bottom: 20px;
}
#schedule .tradeDetail dd >*:last-child{
    margin: 0;
}
#schedule .tradeDetail dd .txt{

}
#schedule .tradeDetail dd .innerDetail{
    padding: 40px;
    background: #FFF;
}
#schedule .tradeDetail dd .innerDetail li{
    margin: 0 0 20px;
    border-left: 5px solid;
    padding: 0 0 0 10px;
}
#schedule .tradeDetail dd .innerDetail li:last-child{
    margin: 0;
}
#schedule .tradeDetail dd .innerDetail li span{
    font-weight: 600;
    display: inline-block;
    margin-bottom: 5px;
}
#schedule .tradeDetail dd .innerDetail li a{
    text-decoration: underline;
    color: #7e93b3;
    word-break: break-all;
}

#schedule .s-table thead th {
	padding: 1em 0;
	text-align: center;
	font-size: 12px;
	border-bottom: solid 1px #000;
	vertical-align: middle;
}
#schedule .s-table td {
	padding: min(5vw, 25px) 0;
	font-size: min(3.2vw, 14px);
	text-align: center;
	vertical-align: middle;
	border-bottom: solid 1px #000;
	position: relative;
}
#schedule .s-table td + td::before {
	width: 1px;
	height: 84%;
	content: "";
	background: #000;
	display: block;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
#schedule .s-table td.soldout::after {
	content: "SOLD OUT";
	font-size: 19px;
	color: #f6ab00;
	display: inline-block;
	position: absolute;
	left: -1em;
	top: 17%;
	transform: rotate(-15deg);
}
#schedule .s-table .day {
	width: 125px;
  font-family: "ouma-devanagari", sans-serif;
  font-weight: 700;
}
#schedule .s-table.type2 .day {
	width: 125px;
}
#schedule .s-table .date {
	font-size: min(3.8vw, 20px);
	display: inline-block;
	vertical-align: middle;
}
#schedule .s-table .youbi {
	padding-left: 0.5em;
	display: inline-block;
	vertical-align: middle;
  font-size: min(3vw, 12px);
}
#schedule .s-table .time {
	width: 140px;
	font-weight: bold;
}
#schedule .s-table .area {
	width: 90px;
	font-weight: bold;
}
#schedule .s-table .venue {
	padding-left: 3%;
	padding-right: 3%;
	font-weight: bold;
	line-height: 1.2;
	text-align: left;
  font-size: min(3.6vw, 18px);
}
#schedule .s-table .info {
  text-align: left;
	padding-left: 3%;
	padding-right: 3%;
}
#schedule .s-table a {
  color: #000;
  text-decoration: underline;
  word-break: break-all;
}
#schedule .new {
	margin: 50px 0 25px;
	padding: 0.5em 0;
	font-size: 24px;
	color: #fff;
	text-align: center;
	background: #0136e4;
}

@media screen and (max-width:820px) {

	#schedule .tradeDetail dt {
	    padding: 15px;
	    border-radius: 10px;
	    width: 100%;
		font-size: 100%;
	}
	#schedule .tradeDetail dd {
	    padding: 20px;
	    border-radius: 0 0 10px 10px;
	    margin: 0;
	}
	#schedule a.ticketBtn {
	    width: 100%;
	    padding: 15px;
	    border-radius: 10px;
	    margin: 0 auto 30px;
		font-size: 100%;
	}
	#schedule .s-table td {
		padding: 2vw 0;
		line-height: 1.3;
	}
	#schedule .s-table td.soldout::after {
		font-size: 11px;
		white-space: nowrap;
		top: 10%;
		left: 0;
	}
	#schedule .s-table .day,
	#schedule .s-table.type2 .day {
		width: 20%;
		box-sizing: border-box;
	}
	#schedule .s-table .date {
		white-space: nowrap;
	}
	#schedule .s-table .youbi {
		padding-left: 0;
		display: block;
	}
	#schedule .s-table .youbi .holiday {
		margin: 0 0 0 1em;
		display: inline-block;
		font-size: 1.3vw;
		vertical-align: baseline;
	}
	#schedule .s-table .area {
		width: 18%;
		box-sizing: border-box;
		white-space: nowrap;
	}
	#schedule .s-table .venue {
		width: 62%;
		box-sizing: border-box;
		padding-right: 0 !important;
		padding-left: 0.8em !important;
		line-height: 1.5;
	}
	#schedule .s-table .time2 {
		margin-top: 0.4em;
		display: block;
    font-size: min(3vw, 12px);
	}
	#schedule .s-table .info2 {
		display: block;
    font-size: min(3vw, 12px);
    margin-top: min(2vw, 10px);
	}
}


#ticket .price {
  font-size: min(3.8vw, 20px);
  font-weight: bold;
  margin-bottom: min(3vw, 15px);
}
#ticket .note {
  font-size: min(3vw, 12px);
}
#ticket .note a {
  color: #000;
  text-decoration: underline;
}

#ticket h3 {
  font-size: min(3.8vw, 20px);
  margin-bottom: min(3vw, 15px);
}
#ticket .flexBox {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: min(4vw, 20px);
  gap: min(6vw, 30px);
}
#ticket .ticketInfo .apli {
  background-color: #abebf1;
  padding: 0.2em 1em;
  font-size: min(3.2vw, 14px);
  font-weight: 600;
  border-radius: min(1vw, 4px);
  width: fit-content;
  margin-bottom: min(2vw, 10px);
}
#ticket .ticketInfo p {
  font-size: min(3.2vw, 14px);
}


#ticket .flexBox > p {
  font-size: min(4.6vw, 20px);
  font-weight: 600;
}

a.ticketBtn {
  background-color: #000;
  color: #abebf1;
  text-decoration: none;
  font-size: min(3.2vw, 14px);
  padding: min(4vw, 20px) min(7vw, 50px) min(4vw, 20px) min(4vw, 20px);
  position: relative;
  display: block;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
}
#ticket a.ticketBtn {
  margin: 0;
}
a.ticketBtn::after {
  content: "";
  display: block;
  width: min(4vw, 10px);
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  right: min(4vw, 20px);
  transform: translateY(-50%) rotate(45deg);
  border-top: #abebf1 solid 2px;
  border-right: #abebf1 solid 2px;
}

@media screen and (max-width:820px) {
  
  #ticket .flexBox {
    flex-direction: column;
  }
  
}


#special h3 {
  text-align: center;
  font-size: min(4.8vw, 36px);
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  font-feature-settings: "palt";
  width: fit-content;
  margin: 0 auto min(6vw, 30px);
}
#special a.ticketBtn {
  min-width: min(40vw, 240px);
}

.campaign .lead {
  text-align: center;
  font-size: min(3.6vw, 18px);
  margin-bottom: min(6vw, 30px);
}
.campaignGoods {
  line-height: 0;
  max-width: 460px;
  margin: 0 auto min(6vw, 30px);
}
.campaignDetail > li {
  display: flex;
  padding: min(4vw, 20px) 0;
  border-bottom: #000 solid 1px;
}
.campaignDetail > li .ttl {
  width: 160px;
  font-weight: 600;
  font-size: min(3.4vw, 16px);
}
.campaignDetail > li .txt {
  width: calc(100% - 160px);
}
.campaignDetail > li .txt p {
  font-size: min(3.4vw, 16px);
}
.campaignDetail > li .txt .notes {
  list-style: disc;
  padding-left: 1em;
}
.campaignDetail > li .txt p + .notes {
  margin-top: min(2vw, 15px);
}

@media screen and (max-width:820px) {
  
  .campaignDetail > li {
    flex-direction: column;
    gap: min(3vw, 15px);
  }
  .campaignDetail > li .ttl {
    width: 100%;
  }
  .campaignDetail > li .txt {
    width: 100%;
  }
  
}

.contactWrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(4vw, 20px);
  width: fit-content;
  margin: 0 auto;
}
.contactWrap .ticketBtn {
  width: 100%;
  font-size: min(3.4vw, 14px);
  padding: min(3vw, 20px) min(10vw, 80px) min(3vw, 20px) min(6vw, 30px);
}
.contactWrap .ticketBtn::after {
  right: min(5vw, 30px);
}

@media screen and (max-width:820px) {
  
  
  
}

.comingsoon {
  text-align: center;
  font-size: min(4.2vw, 24px);
  font-weight: 600;
  padding: min(8vw, 60px) 0;
}





/*===============================================

    goods

=============================================== */
#goods{
    color: #000;
}
#goods h3{
    max-width: 700px;
    margin: 0 auto 15px;
}
#goods h4 + .cap{
    text-align: center;
    margin-bottom: 80px;
}
#goods .btnList{
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}
#goods .btnList li{

}
#goods .btnList li a{
    display: inline-block;
    text-align: center;
    font-weight: bold;
    padding: 20px 40px;
    font-size: 16px;
    border-radius: 10px;
    transition: 0.4s;
    background: #ffed8d;
    color: #64666c;
}

#goods .guidance{
    background: #FFF;
    padding: 50px;
    border-radius: 20px;
    margin-bottom: 60px;
}
#goods .guidance.store{
    margin-top: 60px;
    margin-bottom: 0;
}
#goods .guidance >*{
    margin-bottom: 20px;
}
#goods .guidance >*:last-child{
    margin-bottom: 0;
}
#goods .guidance h4{
    border-bottom: 1px solid;
    padding: 0 0 20px;
    size: 20px;
}
#goods .guidance.store h4 { 
    font-size: 200%;
}

#goods .guidance.store h4 span{ 
    display: block;
    font-size: 32%;
}
#goods .guidance.store h4 + .cap{ 
    margin-bottom: 40px;
}
#goods .guidance.store.start h4{
    border-bottom: none;
}


#goods .guidance.store .op_detail dt{
    width: 40%;
}
#goods .guidance.store .op_detail dd{
    width: 60%;
}
#goods .guidance .txt{
    line-height: 1.8em;
}
#goods .guidance.store .txt{
    text-align: center;
}
#goods .guidance .btn{

}
#goods .guidance .btn a{
    background: #64666c;
    color: #FFF;
    margin: 0 auto;
}
#goods .goodsImageList{

}
#goods .goodsImageList li{

}
#goods .goodsImageList li:last-child{

}

#goods .block-tit{
    text-align: center;
    font-size: 160%;
    font-weight: 600;
}
#goods .inContent{
    padding: 50px;
    background: #FFF;
    margin-top: 40px;
    border-radius: 20px;
}

#goods .inContent .txt{
    word-wrap: break-word;
}
#goods .inContent .btnList{
    display: flex;
    justify-content: center;
}
#goods .inContent .btnList li{
    padding: 0 10px;
}
#goods .inContent .btnList li a{
    background: #64666c;
    color: #FFF;
    margin: 0;
    width: 300px;
}
#goods .inContent .inner--point {
    border-bottom: 1px solid;
    padding: 0 0 40px;
    margin: 0 0 40px;
}
#goods .inContent .inner--point:last-child {
    border-bottom: none;
    padding: 0;
    margin: 0;
}
#goods .inContent .inner--point >*{
    margin-bottom: 40px;
}
#goods .inContent .inner--point >*:last-child{
    margin-bottom: 0;
}
#goods .inContent .point-list {
    padding: 0 10px;
}
#goods .inContent .point-list-box {
    display: flex;
    justify-content: center;
    border-bottom: 1px dashed #DDD;
    padding: 0 0 20px;
    margin: 0 0 40px;
}
#goods .inContent .point-list li {
    display: flex;
    justify-content: space-between;
    border: 2px solid #7e93b3;
    margin: 0 0 20px;
    border-radius: 100px;
    line-height: 1em;
    font-weight: 600;
}
#goods .inContent .point-list li .priceNum {
    font-weight: 600;
    padding: 10px 15px;
    display: inline-block;
    color: #7e93b3;
}
#goods .inContent .point-list li .pointNum {
    padding: 10px 15px;
    display: inline-block;
    border-radius: 100px;
    color: #FFF;
    font-size: 14px;
    background: #7E93B3;
}
#goods .inContent .lead{
    text-align: center;
    font-weight: 600;
    border-top: 1px dashed #DDD;
    padding: 40px 0 0;
}
#goods .inContent .lead a{
    text-decoration: underline;
}
#goods .goodsCatTit{
    margin: 0 0 24px;
    border-bottom: 2px solid #7A9486;
}
#goods .goodsCatTit span{
    background: #7A9486;
    display: inline-block;
    color: #FFF;
    font-size: 140%;
    line-height: 1em;
    padding: 10px 20px 8px;
}
#goods .goodsListAcd{
    margin-bottom: 60px;
    margin-top: 60px;
}
#goods .goodsListAcd dt{
    background: #64666C;
    font-weight: bold;
    padding: 20px;
    font-size: 16px;
    border-radius: 10px;
    text-align: center;
    color: #FFF;
    position: relative;
    max-width: 560px;
    margin: 0 auto;
    transition: 0.3s ease;
    cursor: pointer;
}
#goods .goodsListAcd dt.open{
    max-width: 100%;
}
#goods .goodsListAcd dt span{
    position: absolute;
    margin: -12px 0 0;
    content: "";
    vertical-align: middle;
    top: 53%;
    right: 25px;
    width: 10px;
    height: 10px;
    border-top: 2px solid;
    border-right: 2px solid;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    z-index: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
#goods .goodsListAcd dt.open span{
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 60%;
}
#goods .goodsListAcd dd{
    display: none;
    padding: 40px 0 0;
}
#goods .goodsList {
    display: flex;
    flex-wrap: wrap;
}
#goods .goodsList li{ 
    width: calc(100% / 3);
    margin-bottom: 24px;
}
#goods .goodsList li:nth-child(3n+1){ 
    padding: 0 16px 0 0;
}
#goods .goodsList li:nth-child(3n+2){ 
    padding: 0 8px 0;
}
#goods .goodsList li:nth-child(3n+3){ 
    padding: 0 0 0 16px;
}
#goods .goodsList li > a{
    color: #000;
    text-decoration: none;
    text-align: center;
    line-height: 1.5;
    display: block;
}
#goods .goodsList li .thumb{ 
    line-height: 0;
    margin-bottom: 10px;
    position: relative;
}
#goods .goodsList li .thumb .new{ 
    position: absolute;
    right: 10px;
    top: 10px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #B9C9E2;
    font-size: 70%;
    font-weight: 800;
    border-radius: 100px;
    letter-spacing: 0;
    z-index: 5;
}
#goods .goodsList li .goodsName{ 
    font-size: 14px;
    font-weight: 600;
}
#goods .goodsList li .goodsName .red{ 
    color: #E76363;
}
#goods .goodsList li .goodsPrice{ 
    font-size: 12px;
    font-weight: 600;
}
#goods .btn_vnSale{ 
    text-align: center;
    margin-top: 60px;
}
#goods .btn_vnSale a{ 
    display: inline-block;
    text-align: center;
    font-weight: bold;
    padding: 20px 40px;
    font-size: 16px;
    border-radius: 10px;
    transition: 0.4s;
    background: #ffed8d;
    color: #64666c;
}
#goods .goodsCatTit{

}
#goods .goodsCatTit span {
    font-size: 100%;
}

/*-------------------------------------
    max-width:899px
------------------------------------- */
@media screen and (max-width:899px) {
#goods .btnList {
    display: block;
    margin-bottom: 40px;
}
#goods .btnList li {
    text-align: center;
    margin-bottom: 20px;
}
#goods .btnList li a {
    width: 100%;
    max-width: 400px;
}
}




/*===================================================
  OP:GOODS
====================================================*/
.op_goods{

}
.op_goods .goodsPop {
  display:none;
    width: 100%;
    height: 100%;
    color: #fff;
    box-sizing: border-box;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
.op_goods .goodsPop.popActive {
  display:block;
}
.op_goods .goodsPop .popupShade{
    position: absolute;
    left: 0;
    width: 100%;
    height: auto;
    min-height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 0;
}
.op_goods .goodsPop .popTit{
    text-align: center;
    font-size: 30px;
    line-height: 1em;
    margin: 0 0 60px;
    color: #000;
    letter-spacing: 0.1em;
}
.op_goods .goodsPop .close {
    width: 50px;
    height: 50px;
    position: fixed;
    right: 50px;
    top: 30px;
    cursor: pointer;
    transition: 0.3s ease;
    transform: rotate(45deg);
    background: #000;
    border-radius: 100px;
}
.op_goods .goodsPop .close::before,
.op_goods .goodsPop .close::after {
    content: '';
    display: inline-block;
    width: 60%;
    height: 2px;
    background: #FFF;
    position: absolute;
    left: 50%;
    top: 50%;
}
.op_goods .goodsPop .close::before {
  transform: translate(-50%,-50%);
}
.op_goods .goodsPop .close::after {
    transform: translate(-50%,-50%) rotate(90deg);
}
.op_goods .goodsPop .popInBox {
    width: 90%;
    max-width: 1200px;
    margin: 100px auto;
    background: #f7f7f7;
    padding: 40px;
    color: #000;
    border-radius: 20px;
}
.op_goods .goodsPop .name {
    font-size: 180%;
    margin: 0 0 10px;
    font-weight: 500;
}
.op_goods .goodsPop .price {
    font-size: 100%;
    font-weight: 600;
    margin: 0 0 40px;
}
.op_goods .goodsPop .popInBox .columnBox {
    margin: 0;
    box-sizing: border-box;
    display: flex;
}
.op_goods .goodsPop .thumb {
    width: 45%;
}
.op_goods .goodsPop .column {
    width: 55%;
    padding: 0 0 0 40px;
}
.op_goods .goodsPop .detailList dt {
    width: 25%;
}
.op_goods .goodsPop .detailList dd {
    width: 75%;
}
.op_goods .goodsPop .detailList dt {
    width: 30%;
}
.op_goods .goodsPop .goodsImage{
    line-height: 0;
    margin: 0 0 10px;
}
.op_goods .goodsPop .sizeChart {
    display: flex;
    margin-bottom: 10px;
}
.op_goods .goodsPop .sizeChart:last-of-type{
    margin-bottom: 0;
}
.op_goods .goodsPop .sizeChart li {
    width: 20%;
    text-align: center;
    font-size: 14px;
}
.op_goods .goodsPop .sizeChart:has(> :nth-child(4):last-child) li {
    width: 25%;
}


.op_goods .detailList {
    display: flex;
    border-bottom: 1px solid;
    padding: 0 0 15px;
    margin: 0 0 15px;
    align-items: stretch;
}
.op_goods .detailList:first-of-type{
    border-top: 1px solid;
    padding: 15px 0 15px;
}
.op_goods .detailList:last-child{
    margin: 0;
}
.op_goods .detailList dt{
    width: 20%;
    padding: 0 40px 0 0;
    display: flex;
    align-items: center;
    font-weight: 500;
    line-height: 1.6em;
}
.op_goods .detailList dt:before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background: #000;;
}
.op_goods .detailList dd{
    width: 80%;
    position: relative;
    padding: 0 0 0 40px;
    display: flex;
    align-items: center;
}
.op_goods .detailList dd:before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background: #000;
}
.op_goods .detailList dd > *{
    margin-bottom:20px;
}
.op_goods .detailList dd > *:last-child{
    margin-bottom:0;
}
.op_goods .detailList dd .detailInner{
    width:100%;
}
.op_goods .detailList dd .detailInner > *{
    margin-bottom:10px;
}
.op_goods .detailList dd .detailInner  > *:last-child{
    margin-bottom:0;
}


/* OP:GOODS:PC-min-770 */
@media screen and (min-width: 770px){
.op_goods .goodsList li a:hover .goodsImage img{
    transform:scale(1.2);
}

}

/* OP:GOODS:SP-max-769 */
@media screen and (max-width: 769px){

.op_goods .goodsList li {
    width: calc(50% - 10px);
    margin: 0 0 20px;
}
.op_goods .goodsList .goodsName {
    line-height: 1.3em;
    font-size: 90%;
}
.op_goods .goodsList .goodsPrice {
    font-size: 80%;
}
.op_goods .goodsPop .close {
    width: 30px;
    height: 30px;
    right: 10px;
    top: 10px;
}
.op_goods .goodsPop .popInBox {
    padding: 20px;
    margin: 60px auto;
}
.op_goods .goodsPop .name {
    font-size: 140%;
}
.op_goods .goodsPop .price {
    margin: 0 0 20px;
}
.op_goods .goodsPop .comment{
    margin: 0 0 20px;
}
.op_goods .goodsPop .popInBox .columnBox {
    display: block;
}
.op_goods .goodsPop .thumb {
    width: 100%;
}
.op_goods .goodsPop .column {
    width: 100%;
    padding: 0;
}
.op_goods .goodsPop .detailList dt {
    width: 100%;
}
.op_goods .goodsPop .detailList dd {
    width: 100%;
}
.op_goods .detailList {
    display: block;
}
.op_goods .detailList dt {
    width: 100%;
    padding: 0 0 0 10px;
    margin: 0 0 10px;
    font-size: 80%;
    border-left: 5px solid;
}
.op_goods .detailList dd {
    width: 100%;
    position: relative;
    padding: 0;
}
.op_goods .detailList dd:before {
    content: none
}
}

@media screen and (min-width:900px) {

#goods .goodsList li a .thumb{ 
    overflow: hidden;
}
#goods .goodsList li a .thumb img{ 
    transition: 0.3s ease;
}
#goods .goodsList li a:hover .thumb img{ 
    transform: scale(1.1);
}
}



/*-------------------------------------
    max-width:899px
------------------------------------- */
@media screen and (max-width:899px) {
#goods h4 + .cap{
    font-size: 90%;
    text-align: left;
    margin-bottom: 30px;
}
#goods .guidance{
    padding: 20px;
    margin-bottom: 40px;
}
#goods .guidance.store {
    margin-top: 40px;
}
#goods .guidance h4 {
    padding: 0 0 15px;
    margin-bottom: 15px;
    font-size: 115%;
}
#goods .guidance.store h4 { 
    font-size: 26px;
}
#goods .guidance.store h4 span {
    font-size: 30%;
}
#goods .guidance.store .txt{
    text-align: left;
}
#goods .inContent {
    padding: 20px;
}

#goods .inContent .inner--point {
    padding: 0 0 20px;
    margin: 0 0 20px;
}
#goods .inContent .inner--point >* {
    margin-bottom: 20px;
}
#goods .block-tit {
    text-align: left;
    font-size: 120%;
}
#goods .inContent .txt {
    font-size: 90%;
}
#goods .inContent .btnList {
    display: block;
}
#goods .inContent .btnList {
    display: block;
}
#goods .inContent .btnList li {
    padding: 0;
    margin-bottom: 10px;
}
#goods .inContent .btnList li:last-child {
    margin-bottom: 0;
}
#goods .inContent .btnList li a {
    width: 100%;
    max-width: 100%;
}
#goods .inContent .point-list-box {
    display: block;
    padding: 0 0 20px;
    margin: 0 0 20px;
}
#goods .inContent .point-list {
    padding: 0;
}
#goods .inContent .point-list li {
    margin: 0 0 10px;
}
#goods .inContent .lead {
    text-align: left;
    font-size: 90%;
    padding: 20px 0 0;
}
#goods .goodsList {
    display: block;
}
#goods .goodsList li {
    width: 100%;
}
#goods .goodsList li:nth-child(3n+1){ 
    padding: 0 ;
}
#goods .goodsList li:nth-child(3n+2){ 
    padding: 0 ;
}
#goods .goodsList li:nth-child(3n+3){ 
    padding: 0 ;
}
#goods .guidance.store .op_detail dt {
    width: 100%;
}
#goods .guidance.store .op_detail dd {
    width: 100%;
}
#goods .goodsListAcd {
    margin-bottom: 40px;
    margin-top: 40px;
}
#goods .goodsListAcd dt{
    padding: 15px;
    font-size: 14px;
}

}


