/* # =================================================================
   # フォント
   # ================================================================= */
@font-face {
	font-family: "en-font";
	src: url("../font/newyork.woff") format("woff"),url("../font/newyork.ttf") format("truetype");
  font-weight: 400;
}
 

/* # =================================================================
   # 変数
   # ================================================================= */
:root {
  --color-p: #AD01B4;
  --color-g: #919191;
  /*--ease: cubic-bezier(.04,.44,.43,.99);*/
}

/* # =================================================================
   # 共通要素
   # ================================================================= */
html {
	font-size: 62.5%;
}
body {
  font-family: "Noto Sans JP", sans-serif;
	font-size: clamp(1.4rem,3.6vw,1.6rem);
  font-weight: 400;
	color: #000;
  line-height: 1.5;
  width: 100%;
  overflow-x: hidden;
}
@media screen and (min-width: 431px) {
  body::before {
    content: "";
    position: fixed;
    display: block;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background: url("../img/bg-pc.jpg") no-repeat center top / cover;
    z-index: -1;
  }
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
  transition: all 0.2s;
}
a {
	color: inherit;
	transition: all 0.2s;
	text-decoration: none;
}
@media screen and (min-width: 431px) {
  a.hover:hover, .hover a:hover {
    opacity: 0.75;
  }
}
svg, button {
  transition: all 0.2s;
}
h1, h2, h3 {
  font-weight: 600;
  line-height: 1.4;
}
p {
  
}
p:not(:last-child) {
  margin-bottom: 1.5em;
}
*::before, *::after {
    position: absolute;
    transition: all 0.2s;
}
 


#wrap {
  width: min(100%,430px);
  background: #FFF;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  perspective: 0;
}
header {
  text-align: center;
  width: 100%;
  transition: all 0.3s;
  z-index: 20;
}
.hdInner {
  width: min(100%,430px);
  background: #FFF;
  padding: 10px 0;
  margin: 0 auto;
}
header .siteTtl {
  display: block;
  font-family: "en-font";
  font-size: clamp(8rem,22vw,9.3rem);
  letter-spacing: -0.05em;
  line-height: 0.8;
  color: var(--color-p);
  position: relative;
}
header .siteTtl span {
  position: absolute;
  top: 0;
  right: 4%;
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.2rem,3.3vw,1.3rem);
  letter-spacing: 0;
}



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

}

.floatNav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  color: #FFF;
  z-index: 3;
}
.floatNav nav {
  display: flex;
  width: min(100%, 430px);
  height: clamp(55px,15vw,64px);
  border-top: 1px solid #FFF;
}
.floatNav .toggle {
  display: block;
  position: relative;
  top: 0;
  width: 20%;
  background: var(--color-p);
  z-index: 2;
}
.floatNav .toggle::before, .floatNav .toggle::after {
  content: "";
  width: 30px;
  height: 2px;
  left: calc(50% - 15px);
  background: #FFF;
}
.floatNav .toggle::before {
  top: calc(50% - 18px);
}
.floatNav .toggle::after {
  top: 50%;
}
.floatNav .toggle span {
  position: absolute;
  width: 30px;
  height: 2px;
  top: calc(50% - 9px);
  left: 50%;
  transform: translateX(-50%);
  background: #FFF;
  transition: all 0.2s;
}
.floatNav .toggle div {
  font-size: 1.2rem;
  text-transform: uppercase;
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
}
.open .floatNav .toggle::before {
  top: calc(50% - 9px);
  transform: rotate(45deg);
}
.open .floatNav .toggle::after {
  top: calc(50% - 9px);
  transform: rotate(135deg);
}
.open .floatNav .toggle span {
  width: 0;
}
.floatNav .toggle:hover {
  color: var(--color-p);
  background: #F2F2F2;
}
.floatNav .toggle:hover span, .floatNav .toggle:hover::before, .floatNav .toggle:hover:after {
  background: var(--color-p);
}

.floatNav ul {
  display: flex;
  text-transform: uppercase;
  width: 80%;
}
.floatNav ul li {
  width: 25%;
  border-left: 1px solid #FFF;
}
.floatNav ul a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: var(--color-p);
}
.floatNav ul a:hover {
  color: var(--color-p);
  background: #F2F2F2;
}
.floatNav .searchOpen {
  display: grid;
  place-content: center;
  width: 100%;
  height: 100%;
  background: var(--color-p);
}
.floatNav .searchOpen:hover {
  background: #F2F2F2;
}
.floatNav .searchOpen:hover .manuIconPath {
  fill: var(--color-p);
}
.floatNav .scroll:hover .manuIconPath {
  stroke: var(--color-p);
}
.searchArea {
  position: fixed;
  width: min(100%, 430px);
  bottom: clamp(55px, 15vw, 64px);
  left: 50%;
  transform: translate(-50%, 100%);
  display: grid;
  place-content: center;
  background: var(--color-p);
  color: #FFF;
  padding: 30px 0;
  opacity: 0.5;
  transition: all 0.2s ease-out;
  z-index: 2;
}
.searchShow .searchArea {
  transform: translate(-50%, 0%);
  opacity: 1;
}
#searchform {
  display: flex;
  justify-content: center;
}
#searchform input {
  color: #000;
  background: #FFF;
  border: 1px solid #FFF;
  width: 260px;
  padding: 0.1em 0.5em;
}
::placeholder {
  color: #CCC;
}
#searchform button {
  border: 1px solid #FFF;
  padding: 0.1em 0.5em;
}

.open .floatNav {
  right: 0;
}
.drawerMenu {
  position: fixed;
  width: min(100%, 430px);
  top: 0;
  left: 50%;
  transform: translate(-50%,100%);
  bottom: 0;
  display: grid;
  place-content: center;
  background: var(--color-p);
  color: #FFF;
  padding-bottom: clamp(55px, 15vw, 64px);
  opacity: 0.5;
  transition: all 0.3s ease-out;
  z-index: 2;
}
.open .drawerMenu {
  transform: translate(-50%,0%);
  opacity: 1;
}
.drawerCntnt {
  width: min(88vw, 340px);
}
.drawerMenu ul {
  text-align: center;
  font-size: clamp(1.2rem,3.3vw,1.4rem);
}
.drawerMenu ul li span {
  display: block;
  font-family: "en-font";
  font-size: clamp(4.2rem, 11vw, 5rem);
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: 0.08em;
}
.drawerMenu ul li:not(:last-child) {
  margin-bottom: 2.5em;
}
.drawerMenu a:hover {
  opacity: 0.75;
}


main {
  
}




.container {
  width: min(88%, 380px);
	margin-left: auto;
	margin-right: auto;
}

.scPa {
  padding-top: min(15vw,80px);
  padding-bottom: min(15vw,80px);
}
.scPb {
  padding-bottom: min(15vw,80px);
}
.scMa {
  margin-top: min(15vw,80px);
  margin-bottom: min(15vw,80px);
}
.scMb {
  margin-bottom: min(15vw,80px);
}
.relative {
  position: relative;
  z-index: 1;
}
.spInline {
    display: none;
}
@media screen and (max-width: 1200px) {
  .lgNone { display: none; }
}
@media screen and (max-width: 600px) {
  .container {
    width: 88%;
  }
  .spNone { display: none!important; }
  .spInline { display: inline; }
}
.bgWh {
    background-color: #FFF;
}
.txtCenter, .txtSpLeft { text-align: center; }
.underline { text-decoration: underline;}
a.underline:hover { text-decoration: none; }
@media screen and (max-width: 600px) {
  .txtSpLeft { text-align: left; }
}
.txtGold { color: var(--g); }


footer {
  color: var(--color-p);
  background: #FFF;
  padding: min(5vw,30px) 0 90px;
}

.ftCntnt {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
}
.ftCntnt nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 1.3rem;
}
.ftCntnt nav ul {
  border-left: 2px solid var(--color-p);
  padding: 0 1.5em 0 1em;
}
.ftCntnt nav ul li:not(:last-child){
  margin-bottom: 0.5em;
}

.copyright {
  font-family: "en-font";
  font-size: 1.2rem;
  line-height: 1;
  text-align: right;
  width: 100%;
}



/* 表示領域に入ったらフェードイン */
.motion.fade {
    opacity: 0;
}
.motion.fade.act {
    animation: fadeIn 0.8s ease-out 0s forwards;
    -webkit-animation: fadeIn 0.8s ease-out 0s forwards;
}
@keyframes fadeIn {
    0% { opacity: 0; }
	100% { opacity: 1; }
}
@-webkit-keyframes fadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
} 



/* # =================================================================
   # トップページ
   # ================================================================= */
.topMv + h1 {
  color: var(--color-p);
  text-align: center;
  font-size: clamp(1.5rem,3.8vw,1.6rem);
  font-weight: 500;
  line-height: 1.8;
  margin: 30px auto;
}
.topBnGroup {
  margin-bottom: min(15vw,80px);
}
.topBnGroup ul li:not(:last-child) {
  margin-bottom: 15px;
}

.scHeadL {
  text-align: center;
  margin-bottom: 20px;
}
.scHeadL .hdEn {
  font-family: "en-font";
  font-size: clamp(5.2rem,14vw,6rem);
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--color-p);
  margin-bottom: 0.03em;
}
.scHead {
  text-align: center;
  margin-bottom: 20px;
}
.scHead .hdEn {
  font-family: "en-font";
  font-size: clamp(4.2rem,11vw,5rem);
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--color-p);
  margin-bottom: 0.03em;
}
.scHeadL h2, .scHead h2, .scHead h3 {
  color: var(--color-g);
  font-size: 1.3rem;
  letter-spacing: 0.08em;
}


.popularArticles {
  margin-bottom: min(8vw,30px);
}
.slArea {
  width: 100%;
  overflow: hidden;
}
.swArticles {
  margin-bottom: 15px;
}
.swArticles .swiper-slide {
  padding: 0 1.5%;
  overflow: hidden;
}
.swArticles img {
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  /*object-fit: cover;
  object-position: center top;
  height: 100%;*/
}

.clmTxtNav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 11.4%;
}
.swTxt {
  width: calc(100% - 105px);
}
.swTxt .swiper-slide, .slPickupCastSub .swiper-slide {
  background: #FFF;
}
ul.cate {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 5px;
  color: #FFF;
  font-size: 1.2rem;
  margin-bottom: 0.4em;
}
ul.cate li {
  background: var(--color-p);
  border-radius: 20px;
  padding: 0 0.8em;
}
.swTxt .postTtl {
  font-size: clamp(1.6rem,4.3vw,1.8rem);
  font-weight: 600;
  line-height: 1.4;
}

.swNav, .slNav {
  width: 100px;
  display: flex;
  justify-content: space-between;
}
.swButtonNext, .swButtonPrev, .slBtnPrev, .slBtnNext, .btnPrevShop, .btnNextShop {
  display: grid;
  place-content: center;
  width: 45px;
  height: 45px;
  border-radius: 30px;
  border: 1px solid var(--color-p);
  transition: all 0.2s;
}
.swButtonPrev img, .slBtnPrev img, .btnPrevShop img {
  transform: scale(-1, 1);
}
@media screen and (min-width: 431px) {
  .swButtonNext:hover, .swButtonPrev:hover, .slBtnPrev:hover:hover, .slBtnNext:hover {
    background: var(--color-p);
  }
  .swButtonNext:hover img, .swButtonPrev:hover img, .slBtnPrev:hover:hover img, .slBtnNext:hover img{
    filter: brightness(14) grayscale(1);
    -webkit-filter: brightness(14) grayscale(1);
  }
}
#scTopColumn h3 {
  text-align: center;
  font-size: clamp(2rem,5.7vw,2.4rem);
  letter-spacing: 0.08em;
  margin-bottom: 0.9em;
}
.columnList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  grid-row-gap: min(6vw,25px);
}
.columnList > li {
  width: 47%;
}
.columnList .thumb {
  margin-bottom: 10px;
}
.columnList .thumb img {
  border-radius: 15px;
  overflow: hidden;
}
.columnList .postTtl {
  font-size: clamp(1.6rem,4.3vw,1.8rem);
  font-weight: 600;
  line-height: 1.4;
}
.btnContainer {
  text-align: center;
  margin-top: 25px;
}
.btnRound {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  font-family: "en-font";
  font-size: clamp(2rem,5.3vw,2.2rem);
  letter-spacing: 0.05em;
  color: var(--color-p);
  border: 1px solid var(--color-p);
  border-radius: 30px;
  min-height: 46px;
  padding: 0.1em 1em;
}
.btnRound:hover {
  color: #FFF;
  background: var(--color-p);
}
.fontJp {
  font-family: "Noto Sans JP", sans-serif;
}
.btnRound.fontJp {
  font-size: clamp(1.5rem,3.8vw,1.6rem);
  letter-spacing: 0;
}

#scTopCast {
  padding-bottom: min(15vw,80px);
}
.pickUpCast, .pickUpShop {
  position: relative;
}
.pickUpCast .img, .pickUpShop .img {
  margin-bottom: 15px;
}
.pickUpCast .img img, .pickUpShop .img img {
  border-radius: 30px;
  width: 100%;
  overflow: hidden;
}
.pickUpBadge {
  position: absolute;
  top: -15px;
  left: -15px;
  font-family: "en-font";
  text-transform: uppercase;
  font-size: clamp(2.5rem,6.9vw,2.9rem);
  line-height: 1;
  text-align: center;
  display: grid;
  place-content: center;
  background: #FFEA46;
  width: 90px;
  height: 90px;
  border-radius: 45px;
  padding-top: 1.5%;
}
.slPickupCast {
  margin-bottom: 15px;
}
.slPickupCast .swiper-slide {
  padding: 0 1.5%;
}
.slPickupCast .pickUpBadge {
  left: 6px;
}
#scTopCast .txtBox {
  width: calc(100% - 105px);
}
.slPickupCast img {
  border-radius: 30px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}
#scTopCast .subHd {
  display: inline-block;
  color: #FFF;
  background: var(--color-p);
  padding: 0 0.5em;
  margin-bottom: 0.4em;
}
#scTopCast .position {
  color: var(--color-p);
  font-size: 1.3rem;
  font-weight: 400;
}
.pickUpCast .castName, .slPickupCastSub .castName {
  color: var(--color-p);
  font-size: clamp(2rem,5.7vw,2.4rem);
  letter-spacing: 0.1em;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 0.3em;
}
.pickUpCast .castName span {
  font-family: "en-font";
  text-transform: uppercase;
  font-size: 1.3rem;
}
.slPickupCastSub .castName span {
  font-family: "en-font";
  text-transform: uppercase;
  font-size: 1.3rem;
}

#scTopShop .subHd {
  display: inline-block;
  color: var(--color-p);
  background: #FFF;
  padding: 0 0.5em;
  margin-bottom: 0.4em;
}
#scTopShop .shopName {
  font-size: clamp(2rem,5.7vw,2.4rem);
  line-height: 1.4;
  color: #FFF;
}
#scTopShop {
  background: var(--color-p);
  position: relative;
  margin: min(30vw, 130px) 0;
  z-index: 1;
}
#scTopShop::before, #scTopShop::after {
  content: "";
  display: block;
  width: min(175vw,730px);
  height: min(175vw,730px);
  background: var(--color-p);
  border-radius: 400px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
#scTopShop::before {
  top: -8%;
}
#scTopShop::after {
  bottom: -8%;
}
#scTopShop .scHeadL .hdEn, #scTopShop .scHeadL h2 {
  color: #FFF;
}
.slPickupShop {
  margin-bottom: 15px;
}
.slPickupShop .swiper-slide {
  padding: 0 1.5%;
}
.slPickupShop img {
  border-radius: 30px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.slPickupShop .pickUpBadge {
  left: 6px;
}
#scTopShop .clmTxtNav {

}
#scTopShop .txtBox {
  width: calc(100% - 105px);
}
 .slPickupShopSub .swiper-slide {
  background: var(--color-p);
}
.btnNextShop, .btnPrevShop {
  display: grid;
  place-content: center;
  width: 45px;
  height: 45px;
  border-radius: 30px;
  border: 1px solid #FFF;
}
#scTopShop .slNav img {
  will-change: filter;
  filter: brightness(14) grayscale(1);
  -webkit-filter: brightness(14) grayscale(1);
}
.btnPrevShop svg {
    transform: scale(-1, 1);
}
@media screen and (min-width: 431px) {
  #scTopShop .slNav div:hover {
    background: #FFF;
  }
  /*#scTopShop .slNav div:hover img {
    filter: brightness(1) grayscale(0);
    -webkit-filter: brightness(1) grayscale(0);
  }*/
  #scTopShop .slNav div:hover svg .alwPath {
    stroke: var(--color-p);
  }
}
#scTopShop h3 {
  text-align: center;
  font-family: "en-font";
  text-transform: uppercase;
  font-size: clamp(2.6rem,7.1vw,3rem);
  letter-spacing: 0.05em;
  color: #FFF;
  margin: min(8vw,30px)  auto 0;
}
.shopNameList li {
  color: #FFF;
  font-size: clamp(1.6rem,4.3vw,1.8rem);
  border-bottom: 1px solid #FFF;
}
.shopNameList li a {
  display: block;
  padding: 0.4em 0;
}
#scTopShop .btnRound {
  color: #FFF;
  border-color: #FFF;
}
#scTopShop .btnRound:hover {
  color: var(--color-p);
  background: #FFF;
}

#scTopFaq {
  
}
.faqList li {
  border-bottom: 1px solid #919191;
}
.faqList li:not(:last-child) {
  margin-bottom: 0.8em;
}
.faqList li a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.8em;
}
.faqList li a:hover {
  color: var(--color-p);
}
.alpQ, .alpA {
  font-family: "en-font";
  font-size: clamp(2rem,5.7vw,2.4rem);
  line-height: 1;
  color: var(--color-p);
  transform: translateY(0.05em);
}
.faqList li a span:last-child {
  width: min(calc(100% - 25px),348px);
}

.pageBtmBnGroup {
  background: #000;
  padding: min(15vw, 60px) 0;
}
.pageBtmBnGroup ul li:not(:last-child) {
  margin-bottom: 15px;
}
.topBnGroup li, .pageBtmBnGroup li {
  position: relative;
}
.topBnGroup li::after, .pageBtmBnGroup li::after {
  content: "PR";
  top: 0;
  right: 0;
  display: block;
  font-size: 1.2rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
  color: #FFF;
  background: rgba(50,50,50,0.8);
  padding: 0 0.3em;
}

/* # =================================================================
   # コラム
   # ================================================================= */
.breadcrumbs {
  margin-bottom: min(13vw, 60px);
}
.breadcrumbs ul {
  font-size: clamp(1.1rem, 1vw, 1.2rem);
}
.breadcrumbs li {
  display: inline;
}
.breadcrumbs ul a {
  position: relative;
  margin-right: 1.3em;
}
.breadcrumbs ul a::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 0.55em;
  height: 0.55em;
  border-top: 1px solid var(--color-g);
  border-right: 1px solid var(--color-g);
  transform: rotate(45deg);
  top: -0.1em;
  right: -0.55em;
}
.pageNav {
  text-align: center;
  margin-top: min(8vw,30px);
}
.pageNav nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5em 0.7em;
}
.pageNav .page-numbers {
  font-family: "en-font";
  font-size: clamp(1.6rem,4.2vw,1.8rem);
  line-height: 1.4;
  display: grid;
  place-content: center;
  width: 1.9em;
  height: 1.9em;
  color: var(--color-p);
  border: 1px solid var(--color-p);
  border-radius: 40px;
}
.pageNav .page-numbers.current {
  color: #FFF;
  background: var(--color-p);
}
.pageNav .next, .pageNav .prev {
  position: relative;
  border: none;
}
.pageNav .next::before, .pageNav .prev::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  border-top: 1px solid var(--color-p);
  border-right: 1px solid var(--color-p);
  top: calc(50% - 0.45em);
}
.pageNav .next::before {
  transform: rotate(45deg);
  left: 0;
}
.pageNav .prev::before {
  transform: rotate(225deg);
  left: 40%;
}
.columnIndexBlock {
  background: #F2F2F2;
  border-radius: 30px;
  padding: min(8vw,30px) 9%;
}
.columnIndexBlock:not(:last-of-type) {
  margin-bottom: 20px;
}
.cateParent {
  border-bottom: 1px solid var(--color-g);
  padding-bottom: 5px;
  margin-top: 15px;
}
.cateParent:not(:last-of-type) {
  margin-bottom: 5px;
}
.cateParent a {
  display: block;
  position: relative;
  padding-left: 30px;
}
.cateParent a::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 10px;
  background: var(--color-p);
  top: calc(50% - 9px);
  left: 5px;
}
.cateParent a::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  transform: rotate(45deg);
  top: calc(50% - 3px);
  left: 10px;
}
.cateChild {
  padding-left: 30px;
}
.cateChild:not(:last-of-type) {
  margin-bottom: 3px;
}
.cateChild a {
  display: block;
  position: relative;
  padding-left: 1em;
}
.cateChild a::before {
  content: "";
  display: block;
  width: 0.6em;
  height: 0.6em;
  border-top: 1px solid var(--color-p);
  border-right: 1px solid var(--color-p);
  transform: rotate(45deg);
  top: calc(50% - 0.3em);
  left: 0;
}
.tagIndex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5em 0.5em;
}
.tagIndex a {
  position: relative;
  display: block;
  border: 1px solid #000;
  border-radius: 30px;
  padding: 0 0.5em 0 1.1em;
}
.tagIndex a::before {
  content: "#";
  left: 0.5em;
}
.cateParent a:hover, .tagIndex a:hover {
  color: var(--color-g);
  border-color: var(--color-g);
}

.contributor {
  color: #FFF;
  background: #000;
  display: inline-block;
  font-size: clamp(1.2rem,3.3vw,1.4rem);
  padding: 0 0.5em;
  margin-bottom: 0.5em;
}
.postDate {
  font-size: clamp(1.2rem,3.3vw,1.4rem);
}
#scColumn .ttl {
  font-size: clamp(2rem,5.5vw,2.3rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.4em;
}
#scColumn ul.cate {
  margin-bottom: min(8vw,30px);
}
#scColumn ul.cate li {
  background: none;
  padding: 0;
}
#scColumn ul.cate li a {
  background: var(--color-p);
  border-radius: 20px;
  padding: 0 0.8em;
}
#scColumn .thumb {
  margin-bottom: 25px;
}
#scColumn .thumb img {
  border-radius: 15px;
  overflow: hidden;
  z-index: 1;
}
.postCntnt {
  margin-bottom: min(8vw,30px);
}
.tagList {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2em 0.9em;
  color: var(--color-g);
}
.tagList a {
  position: relative;
  display: block;
  padding-left: 0.7em;
}
.tagList a::before {
  content: "#";
  left: 0;
}

#scOtherPost {
  border-top: 1px solid var(--color-p);
  padding-top: min(10vw,50px);
}
#scOtherPost h2 {
  font-size: clamp(1.7rem, 4.8vw, 2rem);
  margin-bottom: 0.8em;
}
.otherPostList > li:not(:last-of-type) {
  margin-bottom: min(3vw,15px)
}
.otherPostList > li a {
  display: flex;
  justify-content: space-between;
}
.otherPostList .thumb {
  width: 30%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.otherPostList .thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  overflow: hidden;
}
.otherPostList .txt {
  width: 65%;
}
.otherPostList .postTtl {
  font-size: clamp(1.6rem,4.3vw,1.8rem);
  font-weight: 600;
  line-height: 1.4;
}

/* # =================================================================
   # 投稿者アーカイブ author.php
   # ================================================================= */
#scAuthor h1 {
  font-size: clamp(1.7rem, 4.8vw, 2rem);
  border-bottom: 1px solid var(--color-g);
  padding-bottom: 0.3em;
  margin-bottom: 1em;
}

/* # =================================================================
   # キャスト
   # ================================================================= */
.castSearchBox {
  border: 1px solid var(--color-g);
  border-radius: 5px;
  margin-bottom: min(8vw,30px);
}
.castSearchBox .accSwitch {
  font-weight: 500;
  position: relative;
  padding: 5px 10px;
  cursor: pointer;
}
.castSearchBox .accSwitch::after {
  content: "";
  border-top: 6px solid #000;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  top: calc(50% - 3px);
  right: 10px;
}
.castSearchBox .accSwitch.accOpen::after {
  transform: scale(1, -1);
}
.castSearchBox .acc {
  border-top: 1px solid var(--color-g);
  padding: 5px 0;
  display: none;
}
.castSearchBox .acc li {
  
}
.castSearchBox .acc a {
  display: block;
  padding: 2px 20px;
}
.castSearchBox .acc a:hover {
  color: var(--color-g);
}

#scCastDetail .thumb {
  /*border-radius: 30px;
  overflow: hidden;*/
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
}
#scCastDetail .slArea {
  margin-bottom: 15px;
}
.castNameArea {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 0.5em;
  color: var(--color-p);
  font-size: clamp(2.4rem,2.3vw,2.8rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 0.8em;
}
.castNameArea .romaji {
  font-family: "en-font";
  font-size: 0.64em;
}
.castProfile {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: min(13vw, 60px);
}
.castProfile dt {
  width: 7.5em;
  font-weight: 500;
  background: #F2F2F2;
  padding: 0.3em 1em;
}
.castProfile dd {
  width: calc(100% - 7.5em);
  padding: 0.3em 1em;
  border-bottom: 1px solid #F2F2F2;
}
.castProfile dt:not(:last-of-type), .castProfile dd:not(:last-of-type) {
  margin-bottom: 0.4em;
}
.castProfile span + .snsLink {
  margin-left: 0.6em;
}
.castProfile .icon{
  width: 24px;
}
.castProfile a {
  text-decoration: underline;
}
#scCastDetail h2 {
  font-size: clamp(1.7rem,4.8vw,2rem);
  border-bottom: 1px solid var(--color-g);
  padding-bottom: 0.3em;
  margin-bottom: 0.4em;
}

/* # =================================================================
   # 店舗一覧
   # ================================================================= */
.pageFvArea {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: min(45vw,200px);
  color: #FFF;
  background: url("../img/bg-page-ttl.png") no-repeat center top / cover;
  margin-bottom: min(4vw, 20px);
}
.pageFvArea .pageTtlEn {
  font-family: "en-font";
  font-size: clamp(5.2rem,14vw,6rem);
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: 0.1em;
}
.pageFvArea .pageTtl {
  font-weight: 400;
  letter-spacing: 0.05em;
}
.shopList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  grid-row-gap: min(7vw, 30px);
}
.shopList > li {
  width: 47%;
}
.shopList .thumb {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
}
.shopList .shopName {
  /*font-size: clamp(1.6rem, 4.3vw, 1.8rem);*/
  text-align: center;
  font-weight: 500;
  line-height: 1.4;
}


.shopNameRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.shopNameRow .shopLogo {
  width: min(15vw,60px);
}
.shopNameRow .shopLogo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  overflow: hidden;
}
.shopNameRow h1 {
  width: calc(100% - 70px);
  font-size: clamp(2rem,5.5vw,2.3rem);
  font-weight: 600;
}
#scShopImg .thumb img {
  width: 100%;
}

.slMain {
  margin-bottom: 15px;
}
.slThumb {
  padding-bottom: 5px;
}
.slThumb .swiper-wrapper {
  column-gap: 5px;
}
.slThumb .swiper-slide {
  position: relative;
}
.slThumb .swiper-slide::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: var(--color-p);
}
.slThumb .swiper-slide.swiper-slide-thumb-active::after {
  width: 100%;
}

.castList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  grid-row-gap: min(6vw, 25px);
}
.castList li {
  width: 47%;
  text-align: center;
}
.castList .thumb {
  margin-bottom: 8px;
}
.castList .thumb img {
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}
.castList .castName {
  text-align: center;
  font-size: clamp(1.6rem,4.2vw,1.8rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 0.2em;
}
.castList .belong {
  color: var(--color-g);
  font-size: clamp(1.2rem,3.3vw,1.4rem);
  margin-bottom: 0.1em;
}
.castList .position {
  display: inline-block;
  color: var(--color-g);
  font-size: clamp(1.1rem,3.1vw,1.3rem);
  padding: 0 0.2em;
  border: 1px solid var(--color-g);
}

.shopInfo dt {
  font-weight: 500;
  letter-spacing: 0.08em;
  background: #F2F2F2;
  padding: 3px 10px;
  margin-bottom: 0.5em;
}
.shopInfo dd {
  padding: 0 10px;
}
.shopInfo dd:not(:last-of-type) {
  margin-bottom: 20px;
}






/*.topSlNav {

  width: auto;
  bottom: clamp(20px,3.5vh,35px);
  left: auto;
  right: 0;
  z-index: 1;
  text-align: center;
}
.swiper-pagination-bullet {
  opacity: 1;
  background: #EFEFEF;
  width: 16px;
  height: 16px;
  border-radius: 0;
  margin: 0 0 0 30px!important;
}*/

/* # =================================================================
   # よくある質問
   # ================================================================= */
.faqCateList li {
  
}
.faqCateList li:not(:last-child) {
  margin-bottom: 8px;
}
.faqCateList a {
  display: block;
  position: relative;
  padding: 5px 10px 5px 40px;
  border: 1px solid var(--color-g);
}
.faqCateList a:hover {
  color: var(--color-p);
  border-color: var(--color-p);
}
.faqCateList a::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 10px;
  background: var(--color-p);
  top: calc(50% - 9px);
  left: 15px;
}
.faqCateList a::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  transform: rotate(45deg);
  top: calc(50% - 3px);
  left: 20px;
}

#scFaqDetail .faqPostCate {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;  
  font-size: clamp(1.2rem,3.3vw,1.4rem);
  margin-bottom: 0.5em;
}
#scFaqDetail .faqPostCate a {
  color: var(--color-p);
  border: 1px solid var(--color-p);
  display: block;
  padding: 0 0.5em;
}
.faqHeading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--color-g);
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.faqHeading .alpQ, .faqAnswer .alpA {
  font-size: clamp(3.1rem, 8.5vw, 3.6rem);
  transform: translateY(0.05em);
}
.faqHeading h1 {
  font-size: clamp(2rem,5.5vw,2.3rem);
  font-weight: 500;
}
.faqHeading h1, .faqAnswer .alpA + div {
  width: min(calc(100% - 50px), 336px);
}
.faqAnswer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* # =================================================================
   # 検索結果
   # ================================================================= */
#scSearch .resultPageTtl {
  font-size: clamp(1.7rem, 4.8vw, 2rem);
  border-bottom: 1px solid var(--color-g);
  padding-bottom: 0.3em;
  margin-bottom: 1em;
}
.searchResults article:not(:last-of-type) {
  margin-bottom: min(6vw,25px);
}
.searchResults a {
  display: flex;
  justify-content: space-between;
}
.searchResults .img {
  width: 30%;
}
.searchResults .img img {
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.searchResults .text {
  width: 65%;
}
.articleTtl {
  font-size: clamp(1.6rem,4.3vw,1.8rem);
  margin-bottom: 0.5em;
}
.excerpt {
  color: var(--color-g);
  font-size: clamp(1.2rem,3.3vw,1.4rem);
}
.readmore {
  text-align: right;
  position: relative;
  color: var(--color-p);
  padding-right: 1em;
  margin-top: 0.5em;
}
.readmore::before {
  content: "";
  display: block;
  width: 0.6em;
  height: 0.6em;
  border-top: 1px solid var(--color-p);
  border-right: 1px solid var(--color-p);
  top: calc(50% - 0.3em);
  right: 0.1em;
  transform: rotate(45deg);
}




