@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Maru+Gothic:wght@400;500;700&display=swap');

/* CSS Document */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  color: black;
}

a:hover {
  opacity: 0.9;
  transition: 0.4s;
}

@media(min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  background: #fff;
  color: #666;
}

.zen {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-style: normal;
}

.wrapper {
  overflow: hidden;
}

img {
  width: 100%;
  max-width: 100%;
  vertical-align: bottom;
  height: auto;
}

a:hover {
  opacity: 0.6;
  transition: 0.3s;
}

.inner {
  max-width: 1080px;
  width: calc(100% - 40px);
  margin: 0 auto;
}

.s-inner {
  max-width: 712px;
  width: calc(100% - 40px);
  margin: 0 auto;
}

.flex {
  display: flex;
}

.spnone,
.spbr,
.spimg,
.sp {
  display: none;
}

.sml {
  font-size: 0.75em;
}

.big {
  font-size: 1.21em;
}

.c-btn {
  width: 100%;
  max-width: 464px;
  margin: 0 auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.25));
}

.c-btn a {
  display: block;
  background: url(/wp-content/themes/ikemen/images/cpn/13th/btn_b_pc.png) no-repeat;
  background-size: 100% 100%;
  background-position: center;
  height: 63px;
  line-height: 59px;
  text-align: center;
  font-size: clamp(1.5rem, 2vw, 2.1rem);
  letter-spacing: 0.05em;
  color: #fff;
  font-weight: 500;
}

.c-btn a .sml {
  font-size: 0.857em;
}

.bt-l {
  margin-bottom: 100px;
}

.anchor {
  display: block;
  height: 0;
  width: 0;
  position: relative;
  top: -120px;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }

  .spnone,
  .sp {
    display: block;
  }

  .spbr,
  .spimg {
    display: inline;
  }

  .pc {
    display: none;
  }

  .sml {
    font-size: 0.761em;
  }

  .big {
    font-size: 1.33em;
  }

  .c-btn {
    max-width: 401px;
    padding-bottom: 20px;
  }

  .c-btn a {
    background-image: url(/wp-content/themes/ikemen/images/cpn/13th/btn_b_sp.png);
    height: 46px;
    line-height: 42px;
    font-size: 1.6rem;
    letter-spacing: normal;
    text-align: center;
  }

  .c-btn a .sml {
    font-size: 0.88em;
  }

  .campaign-list-item.market .c-btn a {
    padding: 0 0px 0 0;
  }
}

@media screen and (min-width: 768px) and (max-width: 1040px) {

  body,
  .wrapper {
    width: 100%;
    max-width: 1040px;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 0;
    transform: scale(1.2);
  }

  100% {
    opacity: 0;
    z-index: 0;
  }
}

@keyframes simplefade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}


/*====================
      animation
===================*/
.js-fade {
  opacity: 0;
  will-change: opacity;
}

.js-fade.is-inview {
  opacity: 1;
  transition-delay: .3s;
  transition-duration: 1s;
}

.js-fadeUp {
  opacity: 0;
  will-change: transform, opacity;
  transform: translateY(50px);
}

.js-fadeUp.is-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .3s;
  transition-duration: .5s;
}

.js-fadeLeft {
  opacity: 0;
  transform: translateX(-80px);
}

.js-fadeLeft.is-inview {
  opacity: 1;
  transform: translateX(0);
  transition-delay: .3s;
  transition-duration: .5s;
}

.js-fadeRight {
  opacity: 0;
  transform: translateX(80px);
}

.js-fadeRight.is-inview {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.5s;
  transition-duration: .5s;
}

@media screen and (max-width:768px) {
  .js-fade.is-inview {
    transition-delay: .35s;
    transition-duration: 1.2s;
  }

  .js-fadeUp {
    opacity: 0;
    transform: translateY(50px);
  }

  .js-fadeLeft {
    transform: translateX(-50px);
  }

  .js-fadeRight {
    opacity: 0;
    transform: translateX(50px);
  }
}


/*===================
       footer
===================*/
.footer {
  background-color: #343434;
  padding: 40px 0 25px;
  position: relative;
  bottom: 0;
}

.footer-logos {
  width: fit-content;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto 15px;
  gap: 22px;
}

.footer-logos .ikeseri {
  max-width: 93px;
}

.footer-logos .ifc {
  max-width: 58px;
}

p.copy {
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: #fff;
}

/* @media screen and (max-width: 768px) {
  .footer {
    background-image: url(../wp-content/themes/ikemen/images/cpn/13th/footer-bg-sp.png);
  }
} */

/*===================
      Content
===================*/
.wrapper {
  /* background-size: 100% 100%, 28px auto; */
  /* background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 25%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0.8) 75%, rgba(255, 255, 255, 0) 100%) no-repeat, 
  url(../wp-content/themes/ikemen/images/cpn/13th/bg-tile.png) repeat center;
  position: relative;
  background-attachment: fixed; */
  background:
      linear-gradient(rgba(242, 218, 208, 0.5), rgba(242, 218, 208, 0.5)),  /* 50% 투명도 덮기 */
      linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 25%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0.8) 75%, rgba(255, 255, 255, 0) 100%) no-repeat,
      url(/wp-content/themes/ikemen/images/cpn/13th/bg-title-l.png) repeat center;
  position: relative;

}

@media screen and (max-width: 768px) {
  .wrapper {
    background-size: 21% , 1px auto;
    background-attachment: scroll;
  }
}

/*===================
      mv-wrap
===================*/
.mv-wrap {
  position: relative;
  z-index: 1;
}

.mv-wrap img {
  max-width: none;
  width: 100%;
  opacity: 0;
  animation: simplefade 1s linear forwards;
  animation-delay: 0.5s;
}

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

/*===================
      intro-wrap
===================*/
.intro-wrap {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

.intro-wrap .s-inner {
  position: relative;
}

.intro-wrap .s-inner.js-fadeUp.is-inview {
  transition-delay: 1.5s;
  max-width: 1080px;
  width: calc(100% - 40px);
  margin: 0 auto;
}

.deco_head {
  width: fit-content;
  max-width: 287px;
  margin: 0 auto 28px;
}

.intro-wrap h1 {
  font-size: 5rem;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
  width: fit-content;
  margin: 0 auto 100px;
  position: relative;
  color: #E95098;
  font-weight: 700;
}


.fade-img {
  border: 5px solid;
  border-image: linear-gradient(90deg, rgba(146, 129, 30, 1) 0%, rgba(205, 180, 34, 1) 50%, rgba(146, 129, 30, 1) 100%);
  border-image-slice: 1;
  margin: 0 auto 28px;
  position: relative;
  overflow: hidden;
  aspect-ratio: 350 / 200;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.25);
}

.fade-img-list li {
  position: absolute;
  top: 0;
  left: 20px;
  width: 1000px;
  z-index: 10;
  opacity: 0;
  animation: fade 12s infinite;
}

.fade-img-list li:nth-child(2) {
  animation-delay: 4s;
}

.fade-img-list li:nth-child(3) {
  animation-delay: 8s;
}

.fade-img-list li:nth-child(4) {
  animation-delay: 12s;
}

.fade-img-list li:nth-child(5) {
  animation-delay: 16s;
}

.fade-img-list li:nth-child(6) {
  animation-delay: 20s;
}

.fade-img-list li:nth-child(7) {
  animation-delay: 24s;
}

.fade-img-list li:nth-child(8) {
  animation-delay: 28s;
}

.fade-img-list li:nth-child(9) {
  animation-delay: 32s;
}

.fade-img-list li:nth-child(10) {
  animation-delay: 36s;
}

.fade-img-list li:nth-child(11) {
  animation-delay: 40s;
}

.fade-img-list li:nth-child(12) {
  animation-delay: 44s;
}

.fade-img-list li:nth-child(13) {
  animation-delay: 48s;
}

.intro-wrap .lead {
  text-align: center;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin: 100px auto 80px;
  position: relative;
  font-size: 2.4rem;
}

.intro-wrap .lead span{
  font-size: 1.8rem;
}

.deco_foot {
  width: fit-content;
  max-width: 287px;
  margin: 0 auto 60px;
}

.anchor-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 auto 0;
  max-width: 942px;
}

.anchor-list li {
  width: calc((100% - 40px) / 3);
}

.anchor-list li a {
  width: 100%;
  max-width: 298px;
  height: 79px;
  display: block;
  background: url(/wp-content/themes/ikemen/images/cpn/13th/btn_s.png) no-repeat;
  background-size: 100%;
  background-position: center;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.25));
  color: #fff;
  text-align: center;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.anchor-list li a.center {
  padding: 0;
}

.deco_line {
  width: fit-content;
  max-width: 410px;
  margin: 0 auto;
}

.deco-obj {
  position: absolute;
  height: 87px;
  width: fit-content;
}
.heart1 {
  top: -1912px;
  left: 0;
}

.heart4 {
  top: -1820px;
  right: 0;
}
.intro-wrap .deco-obj.spade {
  top: 80px;
  left: calc(50% - 596px);
}

.intro-wrap .deco-obj.heart {
  top: 80px;
  right: calc(50% - 596px);
}

.intro-wrap .deco-obj.dia {
  top: 649px;
  left: calc(50% - 596px);
}

.intro-wrap .deco-obj.clover {
  top: 649px;
  right: calc(50% - 596px);
}

.card_1 {
  bottom: 73px;
  left: 350px;
}

.card_2 {
  bottom: 115px;
  right: 350px;
}

@media screen and (max-width: 768px) {
  .intro-wrap {
    padding: 23px 0 53px;
  }

  .intro-wrap .s-inner.js-fadeUp.is-inview {
    transition-delay: 0.3s;
  }

  .deco_head {
    max-width: 168px;
    margin: 0 auto 20px;
  }

  .intro-wrap h1 {
    font-size: 2.1rem;
    margin: 0 auto 24px;
    line-height: 3.2rem;
  }

  .intro-wrap h1::before {
    width: 57px;
    height: 56px;
    top: auto;
    bottom: -19px;
    left: auto;
    right: calc(50% + 118px);
  }

  .intro-wrap h1::after {
    width: 79px;
    height: 52px;
    top: auto;
    bottom: -19px;
    right: auto;
    left: calc(50% + 98px);
  }

  .deco_foot {
    max-width: 178px;
    margin: 0 auto 27px;
  }

  .anchor-list {
    gap: 10px;
    justify-content: space-between;
  }

  .anchor-list li {
    width: calc(50% - 5px);
  }

  .anchor-list li a {
    width: 100%;
    height: 38px;
    font-size: 10px;
    line-height: 13px;
  }

  .anchor-list li a::after {
    width: 13px;
    height: 13px;
    right: 7px;
  }

  .deco_line {
    width: calc(100% - 40px);
    max-width: 313px;
  }

  .deco-obj {
    /* height: 41px; */
    /* max-width: 36px; */
  }

  .intro-wrap .deco-obj.spade {
    top: -6px;
    left: calc(50% - 184px);
  }

  .intro-wrap .deco-obj.heart {
    top: -6px;
    right: calc(50% - 184px);
  }

  .intro-wrap .deco-obj.dia {
    top: 476px;
    left: calc(50% - 184px);
  }

  .intro-wrap .deco-obj.clover {
    top: 476px;
    right: calc(50% - 184px);
  }
}

/*===================
    campaign-wrap
===================*/
.campaign-wrap {
  padding: 0 0 120px;
  position: relative;
}

.campaign-list {
  display: flex;
  flex-wrap: wrap;
  gap: 120px 20px;
  position: relative;
  z-index: 2;
}

.campaign-list-item {
  width: calc(50% - 10px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  padding: 18px 24px 18px;
  position: relative;
}

.campaign-list-item h2 {
  width: 66%;
  max-width: 430px;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.campaign-list-item h3 {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  color: #E95098;
  min-height: 96px;
  text-align: center;
  font-size: 2.4rem;
  line-height: 3.2rem;
  margin: 50px auto 20px;
  padding: 18px 0 0 0;
  font-size: clamp(1.6rem, 2.4vw, 2.8rem);
}

.campaign-list-item h3.line3 {
  padding: 0;
  margin: 46px auto 20px;
}

.campaign-list-item h3 .sml {
  font-size: 0.875em;
}

.campaign-list-item h3 .big {
  font-size: 1.16em;
}

.campaign-list-item h4 {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  color: #000000;
  text-align: center;
  font-size: 1.8rem;
  line-height: 3.2rem;
  margin: 0 auto 20px;
  padding: 18px 0 0 0;
}

.campaign-img {
  width: 100%;
  height: 261px;
  border: 3px solid #902D41;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.campaign-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.campaign-txt {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  text-align: center;
  margin: 31px auto 31px;
  letter-spacing: 0.05em;
  font-size: clamp(1.4rem, 1.5vw, 2.1rem);
}

.campaign-txt a{
  text-decoration: underline;
  color: #666;
}

.campaign-list-item .note {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  width: fit-content;
  margin: 0 0 0 auto;
  padding-left: 1em;
  text-indent: -1em;
  font-size: 1.2rem;
  line-height: 1.33;
}

.campaign-list-item.present .campaign-txt {
  margin: 28px auto 20px;
}

.campaign-list-item.wide {
  width: 100%;
}


.campaign-list-item.loginbonus h2 {

  width: 106%;
  max-width: 430px;
  top: -80px;
}

.loginbonus-content {
  width: 60.97%;
  padding: 10px 28px 32px;
  position: relative;
  margin: 0 auto;
}

.app-download {
  width: 100%;
  margin: 0 auto;
}

.campaign-list-item .download-mh {
  padding: 14px 0 8px;
  width: fit-content;
  font-size: 2.4rem;
  margin: 23px auto 39px;
  min-height: 1em;
  border-bottom: 1px solid #E95098;
}

.app-list-item {
  display: flex;
  align-items: end;
  margin: 0 0 16px;
  align-self: flex-start;
  width: calc(50% - 20px);
}

.app-list-item .app-img {
  width: 29.6%;
}

.app-list-item .app-txt {
  width: 70.4%;
  padding: 0 0 0 16px;
}

.app-list-item .app-ttl {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  margin: 0 0 16px;
}

.app-list-item .app-ttl .sml {
  font-size: 0.77em;
}

.app-dl_btns {
  display: flex;
  justify-content: space-between;
}

.app-dl_i {
  width: 42.08%;
}

.app-dl_a {
  width: 51.9%;
}

.campaign-wrap .deco-obj.spade {
  top: 432px;
  right: 0;
}

.campaign-wrap .deco-obj.heart {
  top: -340px;
  left: 0;
  z-index: 0;
}
.campaign-wrap .deco-obj.heart2 {
  left: 0;
  z-index: 0;
  bottom: 223px;
}
.campaign-wrap .deco-obj.clover {
  top: 2495px;
  right: 0;
}

.campaign-wrap .deco-obj.dia {
  bottom: 1017px;
  left: 0;
}

.campaign-wrap .deco-obj.clock {
  bottom: 159px;
  right: 0;
}

@media screen and (max-width: 768px) {
  .anchor-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 auto 0;
    max-width: 310px;
    width: 100%;
    justify-content: space-between;
}
  .app-box {
    height: auto !important;
  }
  .campaign-wrap {
    padding: 0 0 80px;
  }

  .campaign-list {
    display: block;
  }
  

  .campaign-list-item {
    width: 100%;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.16);
    border-radius: 8px;
    padding: 15px 15px 15px;
    margin: 0 0 53px;
  }

  .campaign-list-item:last-child {
    margin: 0;
  }

  .campaign-list-item h2 {
    width: calc(100% - 40px);
    max-width: 274px;
    top: -8px;
  }

  .campaign-list-item h3 {
    min-height: 1em;
    font-size: 1.8rem;
    line-height: 2.8rem;
    margin: 50px auto 16px;
    padding: 0;
  }

  .campaign-list-item h3 .sml {
    font-size: 0.857em;
  }

  .campaign-txt {
    margin: 18px auto 18px;
  }

  .campaign-list-item .note {
    margin: 0 0 20px auto;
  }

  .campaign-list-item.loginbonus {
    display: block;
  }

  .loginbonus-content {
    width: 100%;
    padding: 0;
  }

  .campaign-list-item.loginbonus h2 {
    left: 50%;
    width: calc(100% - 40px);
    max-width: 274px;
    top: -88px;
  }

  .campaign-list-item.loginbonus .campaign-txt {
    margin: 38px 0;
  }

  .app-download {
    width: 100%;
  }

  .campaign-list-item .download-mh {
    padding: 0 0 6px;
    font-size: 1.8rem;
    margin: 0 auto 28px;
  }

  .app-list-item {
    padding: 0px 0 45px;
    position: relative;
    margin: 0;
    width: 100%;
  }

  .app-list-item:first-child {
    padding: 20px 0 20px;
  }

  .app-list-item .app-img {
    width: 50.3%;
  }

  .app-list-item .app-txt {
    width: 49.7%;
    padding: 0 0 0 20px;
  }

  .app-list-item .app-ttl {
    font-size: 1.4rem;
    margin: 0;
    position: absolute;
    top: 20px;
    left: 50%;
    width: 100%;
    text-align: center;
    transform: translateX(-50%);
  }

  .app-list-item:first-child .app-ttl {
    top: 0;
  }

  .app-dl_btns {
    display: block;
  }

  .app-dl_i {
    width: 100%;
    margin: 0 0 16px;
  }

  .app-dl_a {
    width: 100%;
  }

  .app-list-item:last-child {
    padding: 0;
    border-bottom: none;
  }

  .campaign-wrap .deco-obj.spade {
    top: 513px;
    right: 0px;
  }

  .campaign-wrap .deco-obj.heart {
    top: 1149px;
    left: 0px;
  }

  .campaign-wrap .deco-obj.clover {
    top: 1749px;
    right: 0px;
  }

  .campaign-wrap .deco-obj.ht1 {
    top: -395px;
    left: 0;
  }

  .campaign-wrap .deco-obj.sp2 {
    top: -405px;
    right: 0;
    width: 150px;
  }

  .campaign-wrap .deco-obj.sp3 {
    top: 1300px;
    right: 0;
    width: 60px;
  }

  .campaign-wrap .deco-obj.sp4 {
    top: 1870px;
    right: 0;
    width: 150px;
  }

  .campaign-wrap .deco-obj.spade2 {
    top: 2468px;
    left: 0;
  }

  .campaign-wrap .deco-obj.spade2 {
    top: 2468px;
    left: 0;
  }

  .campaign-wrap .deco-obj.heart2 {
    top: auto;
    bottom: 174px;
    left: 0;
  }

  .campaign-wrap .deco-obj.spade3 {
    top: auto;
    bottom: 78px;
    right: 0;
    width: 160px;
  }

  .campaign-wrap .deco-obj.clock {
    bottom: 95px;
    right: -10px;
    width: 187px;
    max-width: none;
  }
}

@media screen and (max-width: 385px) {
  .campaign-list-item h3 {
    font-size: 1.8rem;
  }

  .c-btn a {
    font-size: 1.6rem;
  }
}

.app-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.app-box {
  width: 100%;
  height: auto;
  min-height: 696px;
  border-radius: 12px;
  border: 1px solid #6D2324;
  background-color: #fff;
  padding: 15px 10px;
  box-sizing: border-box;
}

.app-box-l {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #6D2324;
  background-color: #fff;
  padding: 28px;
  box-sizing: border-box;
}

.app-image {
  width: 104px;
}

.app-footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px 0 20px;
}

.app-buttons {
  width: 164px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.app-description {
  font-size: 12px;
  color: #222222;
  line-height: 1.8;
  text-align: left;
}
.anchor-wrapper {
  width: 100%;
  height: 251px;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  box-sizing: border-box;
  padding: 18px 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .anchor-wrapper {
    width: 100%;
    padding: 10px 15px;
    height: 185px;
  }

  .intro-wrap .lead {
    text-align: center;
    font-family: "Zen Maru Gothic", serif;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin: 40px auto;
    font-size: 1.4rem;
    color: #000;
  }

  .intro-wrap .lead span{
    font-size: 1.1rem;
  }

  .app-box-l {
    padding: 15px 10px;
  }

  .app-list {
    display: block;
  }

  .app-image {
    width: 110px;
  }

  .app-buttons {
    display: flex;
    width: 160px;
    flex-direction: column;
    gap: 8px;
  }

  .app-footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px 0 0px;
  }

  .campaign-list-item h4 {
    font-family: "Zen Maru Gothic", serif;
    font-weight: 700;
    color: #000000;
    text-align: center;
    font-size: 14px;
    line-height: 3.2rem;
    margin: 0 auto 12px;
    padding: 0;
  }

  .campaign-img {
    width: 100%;
    height: 173px;
    border: 3px solid #902D41;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .app-box {
    width: 100%;
    height: auto;
    min-height: 0;
    border-radius: 12px;
    border: 1px solid #6D2324;
    background-color: #fff;
    padding: 15px 10px;
    box-sizing: border-box;
  }


}

.app-box-m {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #6D2324;
  background-color: #fff;
  padding: 15px 8px;
  box-sizing: border-box;
}

.bg-deco-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.bg-deco-img {
  position: absolute;
  top: 80px;
  height: 87px;
  width: auto;
  background-image: url(/wp-content/themes/ikemen/images/cpn/13th/card_1.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.bg-deco-img.left {
  left: 0;
}

.bg-deco-img.right {
  right: 0;
  transform: scaleX(-1);
}

.slide-track {
  display: flex;
  transition: transform 2s ease-in-out;
}

.slide {
  flex: 0 0 100vw;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slider-wrap {
  width: 100vw;
  /* height: 400px; */
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.slider {
  width: 100vw;
  /* min-height: 460px; */
  height: 430px;
  overflow: hidden;
  position: relative;
  border-top: 3px solid #6D2324;
  border-bottom: 3px solid #6D2324;
  border-left: none;
  border-right: none;
  z-index: 1;
}

.slide-border {
  width: 100%;
  display: block;
  pointer-events: none;
  z-index: 2;
}

.slide-border.top {
  margin-bottom: -4px;
}

.slide-border.bottom {
  height: 1px;
  position: relative;
  /* bottom: -63px; */
}

@media screen and (max-width: 768px) {
  .slider {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: auto;
    height: 247px !important;
    overflow: hidden;
    z-index: 0;
  }
  .slide-border.top {
    margin-bottom: 0px !important;
  }
  .slide-border.bottom {
    /* margin-top: -14px !important; */
    bottom: 13px;
  }
  .slider-wrap {
    width: 100vw;
    height: auto;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
}

.top-cv {
  position: fixed;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 0;
  color: #fff;
  width: min(630px, 100vw);
  background-color: #fff;
  padding: min(30px, 4vw) 0 min(30px, 4.333333vw);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  bottom: max(-30px, -4vw);
  background: url(/wp-content/themes/ikemen/images/cpn/13th/btn_b_pc.png) no-repeat;
  background-size: 90%;
  background-position: center;
  text-align: center;
  z-index: 99;
}
.top-cv.on {
  visibility: visible;
  opacity: 1;
  bottom: 0;
}
.top-cv p {
  color: #fff;
  font-size: min(2.1rem, 3.4666666667vw);
}
.top-cv::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  opacity: 0.2;
}
.top-cv-text {
  position: relative;
  text-align: center;
  font-size: min(2.6rem, 3.4666666667vw);
  margin-bottom: min(20px, 0vw);
}
.top-cv .btn {
  margin-top: 0;
  position: relative;
}

.campaign-list-item {
  display: flex;
}

.app-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.campaign-list {
  display: flex;
  flex-wrap: wrap;
  gap: 120px 20px;
}

.campaign-list-item {
  width: calc(50% - 10px);
}

.c-btn {
  margin-top: auto;
}

@media screen and (max-width: 768px) {
  .campaign-list {
    flex-direction: column;
  }
  .campaign-list-item {
    width: 100%;
  }
  .campaign-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 20px;
  }
}

.slider-slick {
  width: 100vw;
  height: 530px;
  position: relative;
}

.slider-slick img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
  background-size: 20px 20px;
  width: 40px;
  height: 40px;
  border: none;
  cursor: pointer;
  opacity: 0.7;
}

.slick-dots {
  bottom: 15px;
}

.slick-dots li button:before {
  font-size: 10px;
  color: #fff;
  opacity: 1;
}

.slick-dots li.slick-active button:before {
  color: #fff;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .slider-slick {
    height: auto;
  }
  .slick-arrow {
    width: 30px;
    height: 30px;
    background-size: 16px 16px;
  }
}

.slider-slick {
  position: relative;
  width: 100vw;
  max-width: 100%;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  overflow: hidden !important;
  position: relative;
}

.slider-slick img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: 100% 25%;
  display: block;
}

/*  */
.slick-dots {
  position: absolute;
  bottom: -55px !important;
  left: 0;
  width: 100%;
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.slick-dots li button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  opacity: 0.9;
}

.slick-dots li.slick-active button {
  opacity: 1;
}

.slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
  z-index: 10;
  cursor: pointer;
  border: none;
  background-color: transparent;
  opacity: 1;
  z-index: 10;
}

.slick-prev {
  width: 30px !important;
  height: 30px !important;
  left: 10px !important;
  background-image: url('/wp-content/themes/ikemen/images/cpn/13th/slick-prev.png');
}

.slick-next {
  width: 30px !important;
  height: 30px !important;
  right: 10px !important;
  background-image: url('/wp-content/themes/ikemen/images/cpn/13th/slick-next.png');
}
.slick-prev:before, .slick-next:before {
  font-size: 30px !important;
}

@media screen and (max-width: 768px) {
  .slick-arrow {
    width: 30px;
    height: 30px;
    background-size: 14px 14px;
  }

  .slick-dots li button {
    width: 8px;
    height: 8px;
  }

  .slick-dots {
    position: absolute;
    bottom: -30px !important;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    gap: 8px;
    z-index: 10;
  }
  .slick-list {
   height: auto;
  }
  .slider-slick img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .bt-l {
    margin-bottom: 30px;
  }
}

.slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}

.slider-slick {
  position: relative;
  overflow: visible !important;
}

.slick-dots li button:before {
  font-size: 8px !important;
}