/* CSS Document */
@keyframes check {
  0% {
  height: 0;
  width: 0;
    opacity: 0;
}
50% {
  height: 0;
  width: 0.35rem;
  opacity: 1;
}
100% {
   height: 1rem;
  width: 0.35rem;
  opacity: 1;
  }
}
.check_list li.wcvisible .check::after{
  animation: check 0.8s ease;
}
/*ページャー*/
.pager_wrap{
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
	gap:0.5rem;
}
body:not([wc-view-code="sp"]) .pager_wrap{
  width: 350px;
  margin: 1rem auto 0 auto;
}
.pager_wrap > div{
}
.pager_wrap > div,
.pager_wrap > div a{
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat";
  font-weight: 700;
}
body:not([wc-view-type="sp"]) .pager_wrap > div,
body:not([wc-view-type="sp"]) .pager_wrap > div a{
  width: 40px;
  height: 40px;
}
.pager_wrap > .active{
  color: #fff;
  background-color: var(--accentColor);
}
.pager_wrap > div a{
  border: solid 1px #bbb;
  box-sizing: border-box;
  text-decoration: none;
  color: #333;
}
.pager_wrap > .prev a,
.pager_wrap > .next a{
  position: relative;
  z-index: 1;
}
.pager_wrap > .prev a::before,
.pager_wrap > .next a::before{
  content: "";
  width: 35px;
  height: 35px;
  background-color: #333;
  -webkit-mask-image: var(--wciconsrc);
  mask-image: var(--wciconsrc);
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 2;
}
body:not([wc-view-type="sp"]) .pager_wrap > .prev a::before,
body:not([wc-view-type="sp"]) .pager_wrap > .next a::before{
  width: 40px;
  height: 40px;
}
/*ページタイトル*/
.page_title{
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}
body[wc-view-code="sp"] .page_title{
	height: 50vw;
	padding-top: 10vw;
}
body[wc-view-type="tb"] .page_title{
	height: 33vw;
}
body[wc-view-type="tb-l"] .page_title{
	height: 250px;
}
body[wc-view-code="pc"] .page_title{
	height: 290px;
}
.page_title > h2{
	font-size: 1.35rem;
	color: #fff;
	font-weight: 700;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.page_title > h2::after{
	font-size: 0.8rem;
  line-height: 1em;
  font-family: "Montserrat";
  letter-spacing: 1px;
	content: "ACCESS";
	color: #fff;
}
.page_title > figure{
	position: absolute;
	inset:0;
	z-index: -1;
}
.page_title > figure::before{
	content: "";
	position: absolute;
	z-index: 1;
	inset:0;
	background:linear-gradient(180deg,rgba(0, 164, 207, 0.6) 0%, rgba(51,51,51, 0.2) 60%,rgba(51,51,51, 0.2) 100%);
}
body[wc-view-code="sp"] .page_title > figure img{
	height: 50vw;
}
body[wc-view-type="tb"] .page_title > figure img{
	height: 33vw;
}
body[wc-view-type="tb-l"] .page_title > figure img{
	height: 250px;
}
body[wc-view-code="pc"] .page_title > figure img{
	height: 290px;
}
/*画像*/
figure{
}
figure picture{
  width: 100%;
  height: 100%;
  display: block;
}
figure img{
  width: 100%;
  height: auto;
  object-fit: cover;
}
/*こめ*/
.kome{
	display: flex;
	font-size: 0.9rem;
}
.kome::before{
	content: "※";
	flex: none;
	font-size: 0.9rem;
	margin-right: 0.15rem;
}
/*透明*/
.opa{
  width: 0;
  height: 0;
  display: block;
  overflow: hidden;
}
/*コンテンツタイトル*/
.contents_title{
  font-size: 1.35rem;
  text-align: center;
  font-weight: 700;
  line-height: 1.2em;
  color: var(--accentColor);
  transform: translateY(1rem);
  opacity: 0;
  transition: opacity 600ms ease,transform 600ms ease;
  display: flex;
  flex-direction:column-reverse;
  align-items: center;
  gap:0.25rem;
}
.contents_title.wcvisible{
  transform: translateY(0);
  opacity: 1;
}
.contents_title.white{
  color:#fff;
}
.contents_title::before{
  font-size: 0.8rem;
  line-height: 1em;
  font-family: "Montserrat";
  letter-spacing: 1px;
  opacity: 0.5;
}
.contents_title.white::after{
  color: #fff;
}

/*サブタイトル*/
.sub_title{
  text-align: center;
  font-weight: 700;
  font-size: 1.35rem;
  margin-top: 1.5rem;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 600ms ease,transform 600ms ease;
  transform: translateY(1rem);
}
.sub_title.wcvisible{
  opacity: 1;
  transform: translateY(0);
}
.sub_title .color_dif{
  font-weight: 700;
  font-size: 1.35rem;
  transition: color 600ms 600ms ease;
}
.sub_title.wcvisible .color_dif{
  color: var(--accentColor);
}
/*ボタン*/
.btn{
  width: fit-content;
}
.btn a{
  display: flex;
  align-items: center;
  background-color: #F2A830;
  color: #fff;
  font-weight: 700;
  gap:0.5rem;
  text-decoration: none;
  font-size: 1.15rem;
  border-radius: 0.25rem;
  padding: 0.5rem 1rem;
  box-sizing: border-box;
}
.btn.mini a{
  font-size: 0.95rem;
  padding: 0.25rem 0.25rem 0.25rem 0.5rem;
}
.btn a::after{
  content: "";
  width: 2rem;
  height: 2rem;
  display: table;
  background-color: #fff;
  -webkit-mask-image: var(--wciconsrc);
  mask-image: var(--wciconsrc);
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.btn.mini a::after{
  width: 1.5rem;
  height: 1.5rem;
}
/*ボタンブロック*/

.btn_block{
  display: flex;
  align-items: center;
}
body[wc-view-code="sp"] .btn_block{
  flex-direction: column;
  gap: 0.5rem;
  width: fit-content;
}
body:not([wc-view-code="sp"]) .btn_block{
  justify-content: center;
  gap: 1.5rem;
}
.btn_block .btn{
}
body[wc-view-code="sp"] .btn_block .btn{
}
body[wc-view-code="sp"] .btn_block .btn,
body[wc-view-code="sp"] .btn_block .btn a{
  width: 100%;
}
body[wc-view-code="sp"] .btn_block .btn a{
  justify-content: space-between;
}
/*stickyボタン*/
.sticky_btn{
  width: fit-content;
  position: sticky;
  margin: 0 auto;
  z-index: 9999;
  transition: all 600ms linear;
}
html.wctop .sticky_btn{
  bottom: var(--headerHeight);
}
html.wcscroll .sticky_btn{
  bottom: calc((var(--headerHeight) / 2) - 1rem);
  margin-bottom: 1rem;
}
html.wctop .sticky_btn a{
  background-color: #fff;
}
.sticky_btn a{
  background-color: #803982;
  gap: 0.25rem;
  text-decoration: none;
  padding: 0 2rem;
  box-sizing: border-box;
  border-radius: 0.25rem;
  position: relative;
  z-index: 1;
  display: flex;
  height: 18.75vw;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.sticky_btn a
body[wc-view-code="tb"] .sticky_btn a{
  padding: 0 3rem;
}
body[wc-view-type="tb"] .sticky_btn a{
  height: 11.375vw;
}
body[wc-view-type="tb-l"] .sticky_btn a{
  height: 9.375vw;
}
body[wc-view-code="pc"] .sticky_btn a{
  padding: 0 3rem;
  height: 80px;
}
html.wctop .sticky_btn a::after{
  border: solid 2px #fff;
}
.sticky_btn a::after{
  content: "";
  inset:-4px;
  border-radius: calc(0.25rem + 4px);
  border: solid 2px #803982;
  box-sizing: border-box;
  position: absolute;
}
html.wctop .sticky_btn a span{
  color: #803982;
  transition: all 600ms linear;
}
.sticky_btn a span{
  color: #fff;
  margin-block:calc((1em - 1lh) / 2);
  font-weight: 700;
}
.sticky_btn a .s_btn01{
  font-size: 0.95rem;
}
.sticky_btn a .s_btn02{
  font-size: 1.35rem;
}
/*大きい文字*/
.big{
  font-weight: 700;
  font-size: 1.75rem;
}
.mid{
  font-weight: 700;
  font-size: 1.65rem;
}
/*太い文字*/
.bold{
  font-weight: 700;
}
/*色*/
.navy{
  color:var(--accentColor);
}
.purple{
	color: #803982;
}
.orange{
	color: #f26d00;
}
/*マーカー*/
.marker{
 background-image: linear-gradient(transparent 60%, #f2cf39 0%);
 display: inline;
 padding: 0 1px 0px;
  background-repeat: no-repeat;
  background-position: left bottom; /* マーカーの発生位置を左下に設定 */
  background-size: 0 40%; /* マーカーの横幅 / 縦幅 */
  transition: all 0.8s ease; /* マーカーを引く速度 */
  cursor: pointer; /* ホバー時のカーソルをポインターにする */
}

/*チェック項目*/
.check_list{
  list-style: none;
  list-style-position: outside;
  display: flex;
  gap:0.75rem;
  flex-direction: column;
  margin-top:1rem;
}
body[wc-view-code="sp"] .check_list{
  width: calc(100% - 2rem);
  margin: 1rem auto;
}
body[wc-view-code="tb"] .check_list{
  width: 450px;
  margin: 1rem auto;
}
body[wc-view-code="pc"] .check_list{
  width: 550px;
  margin: 1.5rem auto;
}
.check_list li{
  display: flex;
}
.check_list li .check{
  width: 2rem;
  height: 2rem;
  flex: none;
  margin-right: 0.75rem;
  position: relative;
  z-index: 1;
  border: solid 6px #efefef;
  box-sizing: border-box;
  background-color: #fff;
}
.check_list li .check::before{
  content: "";
  inset: -3px;
  border: solid 2px #dcdcdc;
  box-sizing: border-box;
  position: absolute;
}
.check_list li .check::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 2;
  height: 1rem;
  width: 0.35rem;
  border-right: 4px solid var(--accentColor);
  border-top: 4px solid var(--accentColor);
  display: block;
  transform-origin: left top;
  transform: scaleX(-1) rotate(135deg);
}
.check_list li p{
  font-weight: 700;
  transition: opacity 600ms ease;
}
.check_list li.wcvisible p{
  opacity: 1;
}
/*header*/
html.wctop header#wcheader{
  background-color: rgba(0,0,0,0) !important;
}
html.wcscroll header#wcheader{
  background-color: rgba(129,58,131,0.75) !important;
  backdrop-filter: blur(5px) !important;
}
header#wcheader div.headerlogo[sub-type="after"] .titlearea .subtitle{
	height: auto !important;
}
header#wcheader div.headerlogo[sub-type="after"] .titlearea .subtitle > span{
	line-height: calc(1em - (1em - 1lh) / 2) !important;
}
/*ドロワーメニュー*/
.wcdrawermenu .wcdrawermenuwrap {
  background: #F0F8FF !important;
  background: linear-gradient(0deg,rgba(240, 248, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 100%) !important;
}
.wcdrawermenu div.header div.title{
  font-family: "Montserrat" !important;
}
.wcdrawermenu div.header div.drawerclosebtn[wc-icon] span::before{
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
}
.wcdrawermenu nav > ul{
}
.wcdrawermenu nav > ul > li{
  border-radius: 0.5rem;
}
.wcdrawermenu nav > ul > li > a{
  font-weight: 700;
}


.wcdrawermenu nav .dw_service li a .dw_s_text{
  font-size: 0.9rem;
}


.dw_contact{
  background-color: #c3def4;
  padding: 1rem;
  box-sizing: border-box;
  border-radius: 0.25rem;
  width: calc(100% - 1.5rem);
  margin: 0.75rem auto 0;
  margin-bottom: 1rem;
}
.dw_contact .dw_c_title{
  padding-bottom: 0.75rem;
}
.dw_c_title span{
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 1px;
  display: table;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}
.dw_contact .dw_c_title span::before,
.dw_contact .dw_c_title span::after{
  content: "";
  width: 0.55rem;
  height: 1.5rem;
  border-left: 2px solid var(--accentColor);
  border-right: 2px solid var(--accentColor);
  box-sizing: border-box;
  position: absolute;
  bottom: 0;
  z-index: 2;
}
.dw_contact .dw_c_title span::before{
  left: 0;
  transform: rotate(-45deg);
}
.dw_contact .dw_c_title span::after{
  right: 0;
  transform: rotate(45deg);
}
.dw_contact .dw_contact_box{
  background-color: #fff;
  box-sizing: border-box;
  padding: 1rem;
  border-radius: 0.25rem;
}
.dw_contact_box > p{
  font-size: 0.95rem;
  font-weight: 700;
}
.dw_contact .dw_contact_box > dl{
  margin-top: 0.75rem;
}
.dw_contact .dw_contact_box > dl > dt{
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  padding-bottom: 0.25rem;
}
.dw_contact .dw_contact_box > dl > dd{
}
.dw_contact .dw_contact_box > dl > dd > a{
  width: 100%;
  display: flex;
  padding: 0.5rem;
  box-sizing: border-box;
  border-radius: 0.25rem;
  background-color: var(--accentColor);
  text-decoration: none;
  font-family: "Montserrat";
  color: #fff;
  justify-content: space-between;
  font-size: 1.15rem;
  font-weight: 700;
  align-items: center;
}
.dw_contact .dw_contact_box > dl > dd > a::after{
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background-color: #fff;
  -webkit-mask-image: var(--wciconsrc);
  mask-image: var(--wciconsrc);
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.dw_contact .dw_contact_box > .dw_tel > dd > a{
  background-color: var(--accentColor);
  font-family: "Montserrat";
  font-size: 1.25rem;
}
body:not([wc-view-code="sp"]) .dw_contact .dw_contact_box > .dw_tel > dd > a{
  pointer-events: none;
}
.dw_contact .dw_contact_box > .dw_mail > dd > a{
  background-color: #f26d00;
}
.dw_contact .dw_contact_box > .dw_line > dd > a{
  background-color: #06c755;
}
/*footer*/
footer{
  text-align: left !important;  
  background: #3A0926 !important;
  background: linear-gradient(0deg,rgba(58, 9, 38, 1) 0%, rgba(129, 58, 131, 1) 100%) !important;
}
.f_contact{
  box-sizing: border-box;
}
body[wc-view-code="sp"] .f_contact{
  padding: var(--headerHeight) 7vw calc(var(--headerHeight) / 2);
}
body[wc-view-type="tb"] .f_contact{
  padding: var(--headerHeight) calc(var(--avesize) * 2) calc(var(--headerHeight) / 2);
}
body[wc-view-type="tb-l"] .f_contact{
  padding: var(--headerHeight) 10vw calc(var(--headerHeight) / 2);
}
body[wc-view-code="pc"] .f_contact{
  padding: var(--headerHeight) calc((100vw - 1100px) / 2) calc(var(--headerHeight) / 2);
}
.f_contact .contents_title::before{
  content: "CONTACT";
}
.f_contact > .fc_text{
  line-height: 1.8rem;
  padding: 1rem;
  box-sizing: border-box;
  transition: opacity 600ms ease,transform 600ms ease;
  opacity: 0;
  transform: translateY(1rem);
}
.f_contact > .fc_text.wcvisible{
  opacity: 1;
  transform: translateY(0);
}
body:not([wc-view-code="sp"]) .f_contact > .fc_text{
  text-align: center;
}
.f_contact .fc_contents{
  box-sizing: border-box;
  border-radius: 1rem;
  transition: opacity 600ms ease;
  opacity: 0;
}
.f_contact .fc_contents.wcvisible{
  opacity: 1;
}
.f_contact .fc_contents .fc_flex{
  display: flex;
  justify-content: center;
  gap:1rem;
}
body[wc-view-code="sp"] .f_contact .fc_contents .fc_flex{
  flex-direction: column;
  gap:0.5rem;
  width: fit-content;
  margin: 0 auto;
}
.f_contact .fc_contents .fc_flex > dl{
  background-color: #fff;
  border-radius: 0.25rem;
  box-sizing: border-box;
  width: 280px;
  padding: 1rem;
}

.f_contact .fc_contents .fc_flex > .fc_line{
}
body[wc-view-code="sp"] .f_contact .fc_contents .fc_flex > dl{
  width: 100%;
}
body[wc-view-type="tb"] .f_contact .fc_contents .fc_flex > dl{
  width: calc((100% / 3) - 0.6rem);
}
.f_contact .fc_contents .fc_flex > dl > dt{
}
.f_contact .fc_contents .fc_flex > dl > dt span{
  font-weight: 700;
  display: table;
  color: #333;
  margin: 0 auto 0.25rem;
}
body:not([wc-view-code="sp"]) .f_contact .fc_contents .fc_flex > dl > dt span{
  margin-bottom: 0.5rem;
}
.f_contact .fc_contents .fc_flex > dl > dd{
}
.f_contact .fc_contents .fc_flex > dl > dd .fc_btn{
}
body[wc-view-code="pc"] .f_contact .fc_contents .fc_flex > dl > dd .fc_btn{
  width: fit-content;
  margin: 0 auto;
}
.f_contact .fc_contents .fc_flex > dl > dd .fc_btn a{
  width: 100%;
  color: #fff;
  font-weight: 700;
  border-radius: 0.25rem;
  text-decoration: none;
  padding: 0.5rem 1rem;
  line-height: 1em;
  box-sizing: border-box;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body[wc-view-code="pc"] .f_contact .fc_contents .fc_flex > dl > dd .fc_btn a{
  min-width: 220px;
}
.f_contact .fc_contents .fc_flex > dl > dd .fc_btn a::after {
  content: "";
  width: 2rem;
  height: 2rem;
}
.f_contact .fc_contents .fc_flex > dl > dd .fc_btn a::after{
  display: table;
  background-color: #fff;
  -webkit-mask-image: var(--wciconsrc);
  mask-image: var(--wciconsrc);
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.f_contact .fc_contents .fc_flex > .fc_tel > dd .fc_btn a{
  background-color: var(--accentColor);
  font-family: "Montserrat";
}
.f_contact .fc_contents .fc_flex > .fc_mail > dd .fc_btn a{
  background-color: #f26d00;
}
.f_contact .fc_contents .fc_flex > .fc_line > dd .fc_btn a{
  background-color: #06c755;
}
.f_contact .fc_contents .fc_flex > dl > dd {
}
/*フッター元の分を変更*/
footer div.footer {
  border-top: var(--borderColor) 1px solid !important;
}
footer .footerflex{
}
body[wc-view-code="pc"] footer .footerflex{
  flex-direction: column;
  align-items: baseline;
}
.office_info{
}
.office_info > dt{
}
.office_info > dt span{
  display: table;
  border: 1px solid #fff;
  padding: 0.1rem 0.5rem 0.15rem;
  background-color: #fff;
  color: #813a83;
  font-weight: 700;
  border-radius: 1rem;
  font-size: 0.9rem;
}
.office_info > dd{
}
.office_info > dd > dl{
  margin-top: 0.5rem;
}
footer div.footerlogo{
}
body[wc-view-code="tb"] footer div.footerlogo{
  width: 265px !important;
  margin-bottom: 0.5rem;
}
footer div.footerlogo .wclogoimg{
}
body[wc-view-code="tb"] footer div.footerlogo .logomark.wclogoimg{
  width: 60px !important;
}
footer div.footerlogo .logotype.wclogoimg{
}
body[wc-view-code="tb"] footer div.footerlogo .logotype.wclogoimg{
  width: 200px !important;
}
#wcfooter .footerflex .wc-dlbox_tel dt::before,
#wcfooter .footerflex .wc-dlbox_address dt::before{
	background-color: #813a83 !important;
}
/*フッター各事業所相互リンク*/
.office_block{
}
body[wc-view-code="tb"] .office_block{
  padding-top: calc(51px + 0.5rem);
}
body[wc-view-code="pc"] .office_block{
  padding-top: calc(45px + (var(--avesize) * 2));
}
.office_block .officelist_title{
  display: table;
  border: 1px solid #fff;
  padding: 0.1rem 0.5rem 0.15rem;
  background-color: #fff;
  color: #813a83;
  font-weight: 700;
  border-radius: 1rem;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
body[wc-view-code="tb"] .footeritem,
body[wc-view-code="pc"] .footeritem{
  width: calc(50% - calc(var(--avesize) * 4)) !important;
}
.office_block > dl{
  border-top: 1px solid #fff;
}
.office_block > dl:last-of-type{
  border-bottom: 1px solid #fff;
}
.office_block > dl dt{
  font-weight: 700;
  padding: 0.5rem 0.75rem;
  box-sizing:border-box; 
}
.office_block > dl dd{
}
.office_block > dl dd .fl_flex{
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.5);
  padding: 0.5rem 0.75rem;
  box-sizing: border-box;
  width: calc(100% - 1.5rem);
  margin: 0 auto;
}
.office_block > dl dd .fl_flex a{
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  text-decoration: none;
}
.office_block > dl dd .fl_flex a::after{
  content: "";
  background-color: #fff;
  -webkit-mask-image: var(--wciconsrc);
  mask-image: var(--wciconsrc);
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
  width: 1.5rem;
  height: 1.5rem;
}
.office_box span.acdeco::after{
  background-color: #fff !important;
}
/*スクロールボタン*/
#wcscrollbtns .scrollbtnwrap .wcscrbtn{
  background-color: rgba(129,58,131,0.75) !important;
}
/*スワイプメニュー*/
body[wc-view-code="pc"] [swipemenu][menu-type="tab"] .swipemenuinner{
	padding: var(--avesize) var(--radius) 5px !important;
}
body[wc-view-code="pc"] [swipemenu][menu-type="tab"]::after{
	height: 5px !important; 
}
/*チェンジボタン*/
div.btnlist{
  display: flex;
  gap:0 0.5rem;
  padding-bottom: 0.7rem;
  width: max-content;
  margin: 0 auto;
}
body[wc-view-type="tb"] div.btnlist,
body[wc-view-type="tb-l"] div.btnlist{
  padding-bottom: 1.5rem;
}
body[wc-view-type="pc"] div.btnlist{
  padding-bottom: 1.7rem;
}
div.btnlist > div{
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  position: relative;
  z-index: 1;
}
div.btnlist > div::before{
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  transform: translateX(-50%) rotate(45deg);
  bottom: -0.35rem;
  position: absolute;
  left: 50%;
  z-index: -1;
}
div.btnlist > div::after{
  font-weight: 700;
}
/*チェンジメニュー切り替えに必要なcss*/
.swipe_inner .wcchangebtns .wcactive[wc-change],
.swipe_inner .btnlist .wcactive[wc-change] {
  background-color: var(--accentColor);
  color: #fff;
  font-weight: 600;
}
.swipe_inner .wcchangebtns .wcactive[wc-change]::before,
.swipe_inner .btnlist .wcactive[wc-change]::before{
  background-color: var(--accentColor);
}
.swipe_inner .wcchangebtns [wc-change]:not(.wcactive),
.swipe_inner .btnlist [wc-change]:not(.wcactive) {
  background-color: #bbb !important;
}
.swipe_inner [wc-change-wrap] [wc-change-item] {
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.6s ease;
}
.swipe_inner [wc-change-wrap] .wcactive[wc-change-item] {
  position: relative;
  opacity: 1;
  z-index: 2;
}
.swipe_inner [wc-change-wrap] [wc-change-item]:not(.wcactive) {
  position: absolute;
  opacity: 0;
  z-index: 1;
  visibility: hidden;
}