@charset "utf-8";

/* ウィラトラセール
-------------------------------*/
/*設定
--------------------*/
:root {
    --black: #1F2943;
    --white: #fff;
    --lightGray: #E2E2E2;
    --pink: #FF33A1;
    --green: #40EDA2;
    --blue: #00BAFF;
    --blue-2: #40D6ED;
    --yellow: #FFF500;
    --lightYellow: #FFFA99;
    --borderGray: #737C90;
    --ticketBorder: #6D7895;
    --box-shadow: rgba( 0, 0, 0, 0.16);
}

/*共通 パーツ
-------------------------------*/
/*ヘッダー*/
header:has(> #obi-10man) + article {
    margin-top: 104px !important;
}
@media (max-width: 360px) {
    header:has(> #obi-10man) + article {
        margin-top: 97px !important;
    }
}
@media (min-width: 576px) {
    header:has(> #obi-10man) + article{
        margin-top: 56px !important;
    }
}
@media (min-width: 768px) {
        header:has(> #obi-10man) + article {
        margin-top: 146px!important;
    }
}

article {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", 'メイリオ', Meiryo, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  margin-top: 0;
}


body{
    color: #1F2943;
    background-attachment: fixed;
}

a:hover {
  text-decoration: none;
  opacity: 0.6;
}

figure {
    margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

small {
  font-size: 70%;
}

p {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.6;
    letter-spacing: 0;
}


/* Common
----------------------------------------------------*/
header{
	z-index: 30;
}

#section-breadcrumb,#section-hoken-number,#section-footer {
	z-index: 30;
	position: relative;
}

#section-hoken-number table {
    width: 100%;
    max-width: 300px;
}

/*セール終了対応*/
.e_o_sale {
    z-index: 30;
    font-size: 14px;
}

.wrapper{
    position: relative;
    z-index:0;
}

/*
@media (max-width: 340px) {
    .wrapper {
        overflow: hidden;
    }
}
*/
@media (min-width: 501px) {
   .e_o_sale {
        font-size: 15px;
    }
}

@media (max-width: 340px) {
   .e_o_sale {
        font-size: 12px;
    }
}


/* background-color
--------------------------*/
.bg-lightblue {
  background: var(--blue);
}

.bg-yellow {
  background: var(--yellow);
}

#section-hoken-number table {
    max-width: 300px;
}


/* color
---------------------------*/
.color-pink {
    color: var(--pink) !important;
}
.color-white {
    color: var(--white) !important;
}

/* font
---------------------------------*/
.font-oswald {
    font-family: "Oswald", sans-serif;
}


/* Contents
---------------------------------------------*/
.content-wrapper {
    position: relative;
    background-color: var(--green);
}
.content-wrapper::before,
.content-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 20px;
    height: 100vh;
    margin: 0 5px;
    display: block;
    background: url(/static/img/campaign/willtra/bg-text-sale.svg) repeat-y center / 100%;
    background-color: var(--green);
}

.content-wrapper::before {
    left: 0;
    animation: pcBgSideLeft 300s linear infinite;
}
.content-wrapper::after {
    right: 0;
    animation: pcBgSideRight 300s linear infinite;
}

.content-main {
    z-index: 5;
    max-width: 500px;
    width: 100%;
    min-height: 100vh;
    height: 100%;
    margin: 0 auto;
    box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.25);
    text-align: center;
    position: relative;
    background: var(--white);
    font-size: 13px;
  }

  .inner {
      width: 100%;
      max-width: 100%;
      margin: 0 auto;
      padding: 0 8px;
  }


@media (min-width: 501px) {
    .content-main p {
        font-size: 14px;
    }
    
    .inner {
        width: 98%;
        padding: 0 15px;
    }
}

@media (min-width: 560px) {
    .content-wrapper::before,
    .content-wrapper::after{
        content: none;
    }
}

@media (min-width: 767px){
    .content-main {
        width: 96%;
    }
}



/* section
--------------------------------------------*/
.section {
    padding: 40px 0;
}


/* heading
---------------------------------------------*/
.heading {
    text-align: center;
    margin: 0 auto 22px;
}

.heading span {
    display: block;
}

.heading .en  {
    width: 80%;
    margin: 0 auto 10px;
}

.heading .jp{
    font-size: 18px;
    letter-spacing: 0;
    font-weight: bold;
}

/* heading animation */
.anm-marker-blind .anm-blind-wrap {
  position: relative;
  display: inline-block;
  margin-top: 5px;
}

.js-scrollIn .anm-marker-blind .anm-blind-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  animation: anm-marker-blind 2.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.anm-marker-blind .anm-blind-wrap .jp {
  color: var(--black);
  display: inline-block;
  line-height: 1.6;
  padding: 5px 10px 0;
  position: relative;
  z-index: 1;
}

/*カラー変更*/
.js-scrollIn .marker-green::before {
    background: linear-gradient(to right, var(--green) 0%, var(--green) 50%,var(--green) 100%);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 100% 40%;
}
.js-scrollIn .marker-yellow::before {
    background: linear-gradient(to right, var(--yellow) 0%, var(--yellow) 50%, var(--yellow) 100%);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 100% 40%;
}
.js-scrollIn .marker-blue::before {
    background: linear-gradient(to right, var(--blue) 0%, var(--blue) 50%, var(--blue) 100%);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 100% 40%;
}


@keyframes anm-marker-blind {
  0% {
    opacity: 0;
    transform: scaleX(0) translateX(-5%);
  }
  30% {
    transform: scaleX(1) translateX(0);
  }
  100% {
    transform: scaleX(1) translateX(0);
  }
  30%, 100% {
    opacity: 1;
  }
}

@media (min-width: 501px) {
    .heading .en {
        width: 96%;
    }

   .heading .jp{
        font-size: 22px;
    } 
}


/* title
---------------------------------------------*/
.title {
    font-size: 18px;
    text-align: center;
    font-weight: bold;
    margin: 30px auto 20px;
}

.line-title {
    overflow: hidden;
    margin-top: 16px;
}

.line-title span {
    display: inline-block;
    width: fit-content;
    padding: 0 18px;
    position: relative;
}

.line-title span::before,
.line-title span::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 90px;
    max-width: 100%;
    height: 0.5px;
    background: var(--black);
}

.line-title span::before {
    left: 100%;
}
.line-title span::after{
    right: 100%;
}

@media (min-width: 501px) {
    .title {
        margin: 30px auto 20px;
    }

    .line-title {
        overflow: hidden;
        margin-top: 10px;
    }    
}


/* text
---------------------------------------------*/
.lead {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.625;
}

@media (max-width: 340px) {
    .lead {
        font-size: 12px;
    }
}

/* button
-------------------------------*/
.pink-button {
    display: block;
    width: 100%;
    border-radius: 5px;
    border: 2px solid var(--pink);
    background: var(--white);
    color: var(--pink);
    padding: 7px 8px 6px;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
}

.pink-button:hover,
.pink-button:active {
    opacity: 1;
    color: var(--pink);
}

@media (hover: hover) {
    .pink-button:hover,
    .pink-button:active {
        opacity: 1;
        color: var(--pink);
    }
}

.pink-button .underline {
    text-decoration: underline;
}

.use.pink-button {
    background: var(--pink);
    color: var(--white);
    position: relative;
}
.use.pink-button::after {
    content: '\f105';
    position: absolute;
    font-family: "Font Awesome 5 Free";
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 14px;
}

@media (min-width: 501px) {
    .pink-button {
        border-radius: 11px;
        padding: 10px 24px 8px;
        font-size: 14px;
    }
}


/* finger button */
.finger-button {
    text-align: center;
    display: inline-block;
    width: 100%;
    border-radius: 50px;
    border: 2px solid var(--black);
    padding: 10px 4% 10px 1.5%;
    position: relative;
    transition: .2s ease-in-out;
}

.finger-button img {
    text-align: center;
    margin: auto;
    max-width: 90%;
}

.finger-button .default-img {
    display: block;
}

.finger-button .hover-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
}

/*透過しない*/
.finger-button:hover,
.finger-button:active {
    opacity: 1;
}

.finger-button:hover .default-img,
.finger-button:active .default-img {
    opacity: 0;
}

.finger-button:hover .hover-img,
.finger-button:active .hover-img {
    opacity: 1;
}

/*ホバー適用のデバイス*/
@media (hover: hover) {
    .finger-button:hover .default-img,
    .finger-button:active .default-img {
          opacity: 0;
    }

    .finger-button:hover .hover-img,
    .finger-button:active .hover-img {
        opacity: 1;
    }
}

/*ホバー適用外のデバイス*/
@media (hover: none) {
    /*タップされたとき*/
    .finger-button.active .default-img,
    .finger-button.active:active .default-img {
        opacity: 0;
    }
    .finger-button.active .hover-img,
    .finger-button.active:active .hover-img {
        opacity: 1;
    }
}

/*ボタンの指*/
.finger-button::after {
    content: '';
    position: absolute;
    right: -10px;
    bottom: -5px;
    display: inline-block;
    width: 24px;
    height: 28px;
    background: url("/static/img/campaign/willtra/icon-finger.svg") no-repeat center center/ 100%;
    transition: .1s;
}

/*指の動き*/
.finger-button:hover::after,
.finger-button:active::after,
.finger-button.hover::after{
    transform: rotate(-30deg);
}

.finger-button.green {
    background: var(--green);
}

.finger-button.pink {
    background: var(--pink);
}

.finger-button.yellow {
    background: var(--yellow);
}

.finger-button.green img {
    max-width: 70%;
}

.finger-button.pink img,
.finger-button.yellow img {
    max-width: 45%;
}

@media (max-width: 340px) {
    .finger-button img {
       width: min(60%, 80%);
    }
    
    .finger-button.green img {
        width: min(70%, 90%);
    }

    .finger-button.pink img,
    .finger-button.yellow img {
        width: min(46%, 60%);
    }
}


@media (min-width: 501px) {
    /* finger button */
    .finger-button {
        padding: 11px 16px;
    }

    .finger-button img {
        text-align: center;
        margin: auto;
        max-width: 92%;
    }
    
    /*ボタンの指*/
    .finger-button::after {
        bottom: -5px;
        width: 30px;
        height: 36px;
    }

}


/* area button
---------------------*/
.area-button {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 45px;
    border: 2px solid #1F2943;
    border-radius: 8px;
    font-size: 11px;
    font-weight: bold;
    text-align: center;
    padding: 1% 2%;
    cursor: pointer;
    background: var(--white);
    transition:  0.3s;
}

@media (min-width: 501px) {
    .area-button {
        font-size: 14px;
    }
}


/* label
-----------------------*/
.label {
    width: fit-content;
    box-sizing: border-box;
    display: inline-block;
    border-radius: 3px;
    background-color: var(--lightGray);
    padding: 3px 2% 2px;
    font-size: 9px;
    font-weight: bold;
    text-align: center;
}

@media (max-width: 340px) {
    .label {
        max-width: 100%;
        font-size: 8px;
    }
}

@media (min-width: 501px) {
    .label {
        min-width: 63px;
        padding: 3px 6px 2px;
        font-size: 10px;
    }
}




/* link
-------------------------------*/
.link-inline {
    text-decoration: underline;
    color: var(--black);
}

.link-inline:hover {
    color: var(--black);
}



/* Sold
-------------------------*/
.sold-layer,
.sold-layer-v2 {
    position: relative;
    z-index: 0;
}

/*クーポン（大）用*/
.sold-layer::after {
    content: '配布を終了しました';
    position: absolute;
    z-index: 1;
    top: -10px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 107%;
    padding: 100px 10px;
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: var(--white);
    background: rgba(51, 51, 51, 0.9);
    border-radius: 10px;
}

/*セール用*/
.sold-layer-v2::after {
    content: 'SOLD OUT';
    position: absolute;
    z-index: 1;
    top: -17px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 111%;
    padding: 76px 10px;
    /* display: block; */
    font-size: 16px;
    font-weight: bold;
    color: var(--white);
    background: rgba(51, 51, 51, 0.9);
    border-radius: 10px;
}


.sold-layer .img-check {
    visibility: hidden;
}

.sold-layer .sold-text {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 16px;
}

@media (min-width: 501px) {
    .sold-layer::after,
    .sold-layer .sold-text {
        font-size: 20px;
    }
}


/* ancker nav
-------------------------------*/
.ancker-nav {
    padding: 16px 0 30px;
    height: 55vw;
}
.ancker-nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ancker-nav-item {
    width: 46%;
    max-width: 230px;
    margin: 0 1%;
}
.ancker-nav-item a {
    text-align: left;
    display: block;
    width: 100%;
    border-radius: 15px;
    border: 2px solid var(--black);
    padding: 4.6% 14.8% 3.6% 7.6%;
    background: var(--white);
    color: var(--black);
    position: relative;
    box-shadow: 0px 5px 0px 0px var(--black);
    transition: .3s;
}
.ancker-nav-item a:hover,
.ancker-nav-item a:active {
    opacity: 1;
    box-shadow: none;
    transform: translateY(5px);
}
.ancker-nav-item a::before,
.ancker-nav-item a::after {
    content: '';
    position: absolute;
    display: inline-block;
}
.nav-sale a::before {
    right: 12px;
    top: -24px;
    width: 53px;
    height: 53px;
    background: url('/static/img/campaign/willtra/ico-sale.svg') no-repeat center center/ 100%;
}
.nav-coupon a::before {
    right: -9px;
    top: -10px;
    width: 49px;
    height: 38px;
    background: url('/static/img/campaign/willtra/ico-coupon.svg') no-repeat center center/ 100%;
}
.ancker-nav-item a::after {
    right: 11px;
    top: 40px;
    width: 11px;
    height: 15px;
    background: url('/static/img/campaign/willtra/ancker-nav-arrow.svg') no-repeat center center/ 100%;
    transition: .3s;
}
.ancker-nav-item a:hover::after,
.ancker-nav-item a:active::after{
    bottom: auto;
    top: 36px;
}

.ancker-title {
    font-size: 11px;
    font-weight: bold;
    line-height: 1.2;
}

.ancker-bnr {
    width: 94%;
    margin: 0 auto 26px;
}
.ancker-bnr a {
    display: block;
    transition: 0.3s;
}
.ancker-bnr a:hover {
    opacity: 1;
    transform: translateY(3px);
}

@media (max-width: 340px) {
    .ancker-nav-item a {
        padding: 7.6% 10.8% 7.6% 8.6%;
    }
    
    .ancker-nav-item a::after {
        right: 5%;
        top: 60%;
        width: 3vw;
        height: 5vw;
    }
} 

@media (min-width: 501px) {
    .ancker-nav {
        padding: 20px 0 40px;
        height: 270px;
    }
    
    .ancker-nav-list {
        margin: auto;
    }

    .ancker-nav-item a {
        padding: 10px 30px 8px 16px;
    }

    .ancker-nav-item a::after {
        right: 16px;
        top: 45px;
    }
    
    .ancker-nav-item a:hover::after,
    .ancker-nav-item a:active::after{
        top: 50px;
    }

    .ancker-title {
        font-size: 16px;
    }
}

@media (min-width: 1024px) {
    .ancker-nav {
        padding: 20px 0 40px;
        height: 260px;
    }
}




/* 追従ナビ
----------------------------*/
.sticky-nav {
  width: 100%;
  transition: .6s;
}

.sticky-nav.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  background: var(--green);
  padding: 28px 0 16px;
}
/* メニューが追従していない時の高さを浮かす調整*/
.sticky-nav.is-static {
  position: absolute;
  z-index: 5;
}

@media (min-width: 501px) {
    .sticky-nav.is-fixed {
      top: 0;
      left: calc(50% - 250px);
      max-width: 501px;
    }
}

@media (min-width: 560px) {
    .sticky-nav.is-fixed {
      top: 26px;
    }
}

@media (min-width: 767px) {
    .sticky-nav {
        margin: 0 auto;
    }
    .sticky-nav.is-fixed .ancker-nav-item{
         margin: 0 1%;
    }
}


/* price */
.price-off {
    font-weight: bold;
    font-size: 18px;
    line-height: 1.3;
}

.price-off .max {
    font-size: 12px;
    font-weight: bold;
}

.price-off .num {
    font-size: 25px;
    color: var(--pink);
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    padding: 0 1px 0 2px;
}

.price-off .per {
    color: var(--pink);
    font-family: "Oswald", sans-serif;
    font-weight: 700;
}

.price-off .off {
    font-size: 13px;
    color: var(--pink);
    font-weight: bold;
}

@media (max-width: 340px) {
    .price-off {
        font-size: 16px;
    }

    .price-off .max {
        font-size: 16px;
    }

    .price-off .num {
        font-size: 28px;
        padding: 0 1px 0 2px;
    }
}

@media (min-width: 501px) {
    .price-off .max {
        font-size: 18px;
    }

    .price-off .num {
        font-size: 34px;
        padding: 0 1px 0 2px;
    }
    .price-off .off {
        font-size: 18px;
    }
}


/* ticket */
.ticket {
    box-sizing: border-box;
    background: var(--white);
    border: 2px solid var(--ticketBorder);
    border-radius: 10px;
    padding: 34px 10px 32px;
    position: relative;
}

.ticket-link {
    display: block;
    width: 100%;
    cursor: pointer;
    color: var(--black);
}

.ticket-link:hover {
    opacity: 1;
    color: var(--black);
}

.ticket-label {
    position: absolute;
    top: -10px;
    left: 10px;  
}

.ticket-label .in {
    background: var(--blue);
    padding: 0px 24px 10px 14px;
    position: relative;
    display: inline-block;
    width: 140px;
    height: 28px;
    font-size: 18px;
    text-align: left;
    clip-path: polygon(0% 0%, 100% 0%, 95% 48%, 100% 100%, 0% 100%);
}

.ticket-name {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
}

.ticket-price .num {
    font-size: 30px;
    line-height: 1.2;
}

.ticket-price .yen {
    font-size: 20px;
    line-height: 1.2;
}

.ticket-price .off {
    font-size: 22px;
    line-height: 1.2;
}


.ticket.s-size::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 18px;
    height: 42px;
    display: inline-block;
    transform: translateY(-50%);
    border-radius: 0 100% 100% 0% / 50%;
    border: 2px solid var(--ticketBorder);
    border-left: none;
    left: -1.9px;
    background: var(--yellow);
}


.ticket.l-size {
    padding: 10px 12px;
}

/*半円で重ねる*/
.ticket.l-size::before,
.ticket.l-size::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 33px;
    height: 89px;
    display: inline-block;
    transform: translateY(-50%);
    background: var(--yellow);
    border: 2px solid var(--ticketBorder);
}

/*半円で重ねる 左*/
.ticket.l-size::before {
    border-radius: 0 100% 100% 0% / 50%;
    border-left: none;
    left: -2px;
    width: 31px;
    height: 90px;
}

/*半円で重ねる 右*/
.ticket.l-size::after {
    border-radius: 100% 0 0 100% / 50%;
    border-right: none;
    right: -2px;
}

.ticket.l-size .ticket-label {
    top: -3px;
    left: 36px;
}

.ticket.l-size .ticket-label .in {
    width: fit-content;
    height: 100px;
    text-align: center;
    clip-path: polygon(0% 0%, 100% 0, 120% 100%, 50% 80%, 0% 94%);
    padding: 0px 8px 10px 8px;
}

.ticket.l-size .ticket-price .num {
    font-size: 56px;
}

.ticket.l-size .np {
    font-size: 28px;
}

.ticket-subject {
    font-size: 11px;
    line-height: 1.6;
}

.ticket.check-obj .img-check {
    position: absolute;
    top: -20px;
    right: 12px;
}


@media (max-width: 340px) {
    .ticket.s-size-sale {
        padding: 26px 3% 8px;
    }
    
    .ticket.l-size .ticket-label {
        left: 32px;
    }
    
    .ticket-price {
        padding-left: 16%;
    }
    .ticket.l-size .ticket-price .num {
        font-size: 50px;
    }
    
    .ticket.l-size .np {
        font-size: 20px;
    }
    
    .ticket.l-size .ticket-label .in {
        height: 93px;
    }
}

@media (min-width: 501px) {    
    /* ticket */
    .ticket {
        border-radius: 10px;
        padding: 34px 10px 32px;
    }
    .ticket-label {
        top: -10px;
        left: 10px;  
    }

    .ticket-label .in {
        padding: 0px 24px 10px 14px;
        width: 140px;
        height: 28px;
        font-size: 18px;
    }

    .ticket-name {
        font-size: 14px;
    }

    .ticket-price .num {
        font-size: 40px;
    }

    .ticket-price .yen {
        font-size: 20px;
    }

    .ticket-price .off {
        font-size: 22px;
    }

    .ticket.s-size::before {
        width: 22px;
        height: 46px;
        left: -2px;
    }

    .ticket.l-size {
        padding: 20px 10px;
    }

    .ticket.l-size::before,
    .ticket.l-size::after {
        width: 34px;
        height: 89px;
    }

    /*半円で切り抜き 左*/
    .ticket.l-size::before {
        left: -2px;
        width: 31px;
        height: 90px;
    }

    /*半円で切り抜き 右*/
    .ticket.l-size::after {
        border-right: none;
        right: -2px;
    }

    .ticket.l-size .ticket-label {
        top: -3px;
        left: 60px;
    }

    .ticket.l-size .ticket-label .in {
        width: fit-content;
        height: 110px;
        padding: 0px 8px 10px 8px;
    }

    .ticket.l-size .ticket-price .num {
        font-size: 56px;
    }

    .ticket.l-size .np {
        font-size: 33px;
    }

    .ticket.check-obj .img-check {
        top: -20px;
        right: 12px;
    }

    .ticket.check-obj .img-check{
        right: 60px;
    }
}

    /* animation */
    .js-scrollIn .ticket.check-obj .img-check img{
        animation: check-kakukaku 2s 1s infinite alternate;
    }

    @keyframes check-kakukaku {
        6% {
            transform: rotate(0deg);
        }
        12% {
            transform: rotate(8deg);
        }
        18% {
            transform :rotate(0deg);
        }
        24% {
            transform: rotate(6deg);
        }
        30% {
            transform: rotate(0deg);
        }
        100% {
            transform: rotate(0deg);
        }
    }



/* MV
----------------------------------------*/
.mv-area {
    overflow: hidden;
    position: relative;
    background: var(--yellow);
}

.mv-wrap {
  min-height: 100%;
  padding: 60px 16px 64px;
  position: relative;
  background: url("/static/img/campaign/willtra/bg-mv.png") repeat top/ contain;
}

.mv-limit-text {
    transform: rotate(-5deg);
    border-radius: 50%;
    line-height: 1.2;
    font-weight: bold;
    position: relative;
}

.mv-limit-text span {
    display: inline-block;
    position: relative;
    padding: 0 10px;
    font-size: 14px;
}

.mv-limit-text span::before,
.mv-limit-text span::after {
    content: '';
    position: absolute;
    display: inline-block;
    width: 2px;
    height: 32px;
    background: var(--black);
}

.mv-limit-text span::before{
    top: 0;
    left: -8px;
    transform: rotate(-30deg);
}

.mv-limit-text span::after{
    top: 0;
    right: -8px;
    transform: rotate(30deg);
}

/* sale obi */
.pink-sale-obj.-mv {
    -webkit-backface-visibility: hidden;/*バグ対策ここから*/
    backface-visibility: hidden;
    filter: blur(0);
    -webkit-filter: blur(0);
    perspective: 1000;
    -webkit-perspective: 1000;/*バグ対策ここまで*/
    width: 550px;
    height: 30px;
    left: -3px;
    transform: rotate(-4deg);
    background: url(/static/img/campaign/willtra/text-sale-white.svg) repeat-x center center/ 140%;
    background-color: var(--pink);
}
.white-sale-obj {
    -webkit-backface-visibility: hidden;/*バグ対策ここから*/
    backface-visibility: hidden;
    filter: blur(0);
    -webkit-filter: blur(0);
    perspective: 1000;
    -webkit-perspective: 1000;/*バグ対策ここまで*/
    position: absolute;
    width: min(100%, 1080px);
    width: 110%;
    max-width: 1080px;
    height: 30px;
    background: url(/static/img/campaign/willtra/text-sale-pink.svg) repeat-x center center/ 180%;
    background-color: var(--white);
    animation: saleObjLoop 300s linear infinite;
}
.pink-sale-obj.-one { 
    top: 3px;
}
.pink-sale-obj.-three {
    bottom: 20px;
}
.white-sale-obj.-mv.-two {
    top: 5px;
    left: 0;
    z-index: 2;
    transform: rotate(5deg);
}

@media (max-width: 340px) {
    .mv-limit-text span {
        font-size: 13px;
    }
}

@media (min-width: 501px) {
    .mv-limit-text span {
        font-size: 16px;
        line-height: 1.4;
    }
   .mv-wrap {
         padding: 60px 30px 54px;
    }
    
    .pink-sale-obj.-mv {
        height: 36px;
    }
    
    .white-sale-obj {
        height: 36px;
        background-size: 150%;
    }
    
    .white-sale-obj.-mv.-two {
        top: 10px;
        left: -6px;
    }
}


/* Sale
----------------------------------------*/
.sale-area {
  background-color: var(--blue-2);
  position: relative;
  z-index: 0;
  overflow: hidden;
  padding-bottom: 90px;
}

.sale-area::before {
    content: '';
    position: absolute;
    z-index: 1;
    top: 50px;
    right: -6px;
    display: inline-block;
    width: 96px;
    height: 116px;
    background: url(/static/img/campaign/willtra/img-nagoya-a.png) no-repeat center center / cover;
    animation: pcNagoyaKakukaku 4s linear infinite;
}

.sale-heading {
    position: relative;
    z-index: 2;
}

.sale-heading .en {
    width: 70%;
}

.sale-label-detaile span{
    display: inline-block;
    font-size: 12px;
}

.sale-focus .sale-item-list > li {
    width: 100%;
}

.sale-list .sale-plan:nth-child(odd){
    padding-right: .25rem;
    
}
.sale-list .sale-plan:nth-child(even){
    padding-left: .25rem;
}
.sale-list .sale-plan {
    width: 50%;
    margin-top: 1.5rem;
}
.sale-list .sale-plan:first-child,
.sale-list .sale-plan:nth-child(2) {
    margin-top: 0;
}


/* sale ticket */
.ticket.s-size-sale {
    padding: 26px 4px 4px;
}

.ticket.s-size-sale .ticket-label {
    top: -17px;
}

.ticket.s-size-sale .ticket-label .in{
    background: var(--pink);
    padding: 0 24px 30px 32px;
    width: 112px;
    height: 34px;
    font-size: 24px;
    clip-path: polygon(0% 0%, 100% 0%, 90% 48%, 100% 100%, 0% 100%);
}

.ticket.s-size-sale .np {
    line-height: 0;
    position: relative;
}
.ticket.s-size-sale .np::before {
    content: '最大';
    position: absolute;
    bottom: 14px;
    left: -26px;
    font-size: 12px;
    color: var(--white);
}


/*fugure*/
.pos-figure-1 {
    position: absolute;
    z-index: 2;
    top: 37px;
    left: 5px;
}
.pos-figure-1::before {
    content: '';
    display: block;
    width: 56px;
    height: 115px;
    background: url(/static/img/campaign/willtra/img-human-1.svg) no-repeat center center / 100%;
    transform: rotate(15deg);
}


@media (max-width: 340px) {
    /* sale ticket */
    .ticket.s-size-sale {
        padding: 26px 3% 8px;
    }
}

@media (min-width: 501px) {
/*
    .sale-area {
        padding-bottom: 120px;
    }
*/

    .sale-area::before {
        content: none;
    }

    .sale-label-detaile span {
        font-size: 14px;
    }
    
    /* sale ticket */
    .ticket.s-size-sale {
        padding: 24px 10px 10px;
    }

}

/*セール エリア切り替え時 カラー*/
.sale-focus li.is-active .area-button {
    background: var(--yellow);
    color: var(--black);
}

.plan-price .num {
    font-size: 26px;
}

.plan-price span {
    font-weight: 700;
}

.plan-price .base-price {
    text-decoration: line-through;
    font-size: 13px;
}

.plan-price .num .small {
    font-size: 11px;
}

.plan-price.campaign-price .c-price {
    font-size: 24px;
    margin-left: 1%;
}

@media (max-width: 340px) {
    .plan-price .num {
        font-size: 26px;
    }

    .plan-price .base-price {
        font-size: 10px;
    }

    .plan-price .num .small {
        font-size: 11px;
    }

    .plan-price.campaign-price .c-price {
        font-size: 18px;
    }
}

@media (min-width: 501px) {
    .plan-price .num {
        font-size: 26px;
    }

    .plan-price .base-price {
        font-size: 16px;
    }
    
    .plan-price .num .small {
        font-size: 12px;
    }

    .plan-price.campaign-price .c-price {
        font-size: 30px;
        margin-left: 1%;
    }
}


/* Coupon
----------------------------------------*/
.coupon-area {
    background-color: var(--yellow);
    position: relative;
/*    overflow: hidden;*/
    padding-bottom: 30px;
}

.coupon-area::before {
    content: '';
    position: absolute;
    z-index: 0;
    top: 66px;
    left: -30px;
    display: inline-block;
    width: 112px;
    height: 110px;
    transform: rotate(38deg);
    background: url(/static/img/campaign/willtra/img-hakata.png) no-repeat center center / cover;
}

.coupon-heading {
    position: relative;
    z-index: 2;
}

.coupon-heading .en {
    width: 92%;
}

.title-coupon img{
    transition: .2s;
}

/* coupon ticket */
.ticket.s-size-coupon {
    padding: 26px 1% 8px;
/*  background: url("/static/img/campaign/willtra/bg-ticket-s-size.svg") no-repeat top/ contain;
    border: none;*/
    border: 2px solid var(--ticketBorder);
}

/*coupon list*/
.focus-item-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
/*
.focus-item-list li:nth-child(odd) {
    padding-left: 1%;
}
.focus-item-list li:nth-child(even) {
    padding-right: 1%;
}
*/
.coupon-item {
    width: 50%;
    margin: 0 0 30px 0;
    padding: 0 1%;
}


/* ご利用方法 モーダル */
.coupon-use {
    background: rgb(from var(--green) r g b / 0.8);
    background: rgb(64, 237, 162, 0.8);
}

.coupon-use .modal-dialog {
    margin: 3.75rem auto 1.75rem;
}

.coupon-use .modal-content {
    margin: auto;
    width: 90%;
    border-radius: 20px;
    border: 1px solid var(--black);
}

.coupon-use .close {
    position: relative;
    top: -5.7rem;
    right: -1.8rem;
    background: var(--yellow);
    border-radius: 5px;
    border: 2px solid var(--black);
    opacity: 1;
    padding: 0.5rem;
}

.coupon-use h3 {
    background: linear-gradient(to bottom, transparent 60%, var(--yellow) 60%,var(--yellow) 100%);
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

.coupon-use .modal-header {
    border: none;
    display: block;
    margin: auto;
    padding: 2rem 1rem 0.5rem;
}

.coupon-use .modal-footer {
    border-top: none;
    justify-content: center;
}

.coupon-use .btn-close {
    color: var(--white);
    border-radius: 30px;
    background: var(--black);
    margin: auto;
    width: 60%;
    padding: 1rem 2rem;
    cursor: pointer;
}

.coupon-step {
    counter-reset: stepNum;
    list-style: none;
}

.coupon-step li {
    display: block;
    position: relative;
    margin-bottom: 80px;
}

.coupon-step li::before {
    counter-increment: stepNum;
    content: counter(stepNum);
    position: absolute;
    left: -6px;
    border-radius: 100%;
    background: var(--black);
    color: var(--white);
    font-size: 14px;
    line-height: 1;
    width: 1.4rem;
    height: 1.4rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.coupon-step li::after {
    content: '\f0d7';
    display: block;
    position: absolute;
    bottom: -5.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 5rem;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--black);
}

.coupon-step li:last-child {
    margin-bottom: 0;
}

.coupon-step li:last-child::after {
    content: none;
}

.coupon-use .coupon-step-text {
    font-size: 14px;
    font-weight: 500;
    padding-left: 20px;
}

.pos-figure-2 {
    position: absolute;
    z-index: 2;
    top: -50px;
    right: 30px;
    width: 100px;
    height: 100px;
    background: var(--yellow);
    border-radius: 100%;
    padding: 22px;
}
.pos-figure-2::before {
    content: '';
    position: absolute;
    display: block;
    width: 56px;
    height: 57px;
    background: url('/static/img/campaign/willtra/img-check.svg') no-repeat center center/ 100%;
    animation: check-kakukaku 2s 1s infinite alternate;
}
.pos-figure-3 {
    position: absolute;
    z-index: 2;
    top: 86px;
    right: 0;
}
.pos-figure-3::before {
    content: '';
    display: block;
    width: 83px;
    height: 68px;
    background: url('/static/img/campaign/willtra/img-uchiwa-2.svg') no-repeat center center/ 100%;
}



@media (max-width: 330px) {
    .ticket.s-size-coupon {
        padding: 22px 1% 8px;
    }
    .ticket.s-size-coupon .ticket-name {
        font-size: 11px;
    }
    .ticket.s-size-coupon .label-list {
        margin-top: 14px;
    }
    .ticket.s-size-coupon .ticket-label .in {
        width: 116px;
        padding: 2px 6px 6px 8px;
        font-size: 16px;
    }
    .ticket.s-size-coupon .ticket-price {
        margin-bottom: 12px;
    }
    .ticket.s-size-coupon .ticket-price .num {
        font-size: 24px;
    }
    .ticket.s-size-coupon .ticket-price .yen {
        font-size: 12px;
    }
    .ticket.s-size-coupon .ticket-price .off {
        font-size: 14px;
    }
}

@media (min-width: 501px) {
    .coupon-area {
        background: none;
        background-color: var(--yellow);
        padding-top: 60px;
        padding-bottom: 75px;
    }
    
    .coupon-area::before {
        content: none;
    }

    /* coupon ticket */
    .ticket.s-size-coupon {
        padding: 26px 1% 10px;
    }
    
    /*ご利用方法モーダル*/
    .coupon-use .close {
        top: -5.7rem;
        right: -4rem;
    }
    
    .coupon-step li::before {
        width: 1.4rem;
        height: 1.4rem;
        left: -6px;
    }
}

/*
@media (min-width: 768px) {

    
}
*/



/* animation */
.js-scrollIn .title-coupon img {
    animation: topBottomBounce 3s infinite;
}
@keyframes topBottomBounce {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0px);
    }
}


/* focus-list　絞り込み表示
---------------------------*/
.focus-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}
.focus-list li {
    width: 32%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 5px 1% 5px auto;
}
.focus-list li:nth-child(3) {
    margin-right: 0;
}
.focus-list li:last-child {
    margin-right: 0;
}

/*クーポンエリアボタン*/
.coupon-focus li.is-active .area-button {
  background: var(--blue-2);
  color: var(--black);
}

.focus-item {
  display: flex;
  flex-wrap: wrap;
}
.focus-item li {
  border: 2px solid #fff;
  width: calc(100% / 6);
  padding: 40px 20px;
  background: #eee;
  text-align: center;
}
.focus-item li[data-item="kanto"] {
  background: #F7D1D1;
}
.focus-item li[data-item="kansai"] {
  background: #D1EDF7;
}
.focus-item li[data-item="chukyushu"] {
  background: #D1F7D8;
}
.focus-item li[data-item="kanto"] {
  background: #F7D1D1;
}
.focus-item li[data-item="tokai"] {
  background: #D1EDF7;
}
.focus-item li[data-item="tohokuriku"] {
  background: #D1F7D8;
}


/* Campaign
----------------------------------------------*/
.campaign-area {
    background: linear-gradient(180deg, var(--yellow) 0%, var(--yellow) 110px, var(--blue-2) 110px, var(--blue-2) 100%);
    position: relative;
    z-index: 0;
    padding-top: 100px;
}
.campaign-area::before {
    content: '';
    position: absolute;
    top: -46px;
    left: 0;
    right: 0;
    width: 100%;
    height: 210px;
    display: block;
    background: url('/static/img/campaign/willtra/campaign-head-bg.svg') no-repeat top center/ 100%;
}

.campaign-area .lead {
    font-size: 13px;
}

.campaign-heading {
    margin-bottom: 6px;
}

.campaign-heading .en img {
    transform: rotate(-6deg);
/*    animation: poyoyon 2.5s running;*/
}
.campaign-heading-img {
    width: 94%;
    text-align: center;
    margin: auto;
}
.campaign-heading-img img {
    opacity: 0;
}
.campaign-title {
    font-size: 18px;
    line-height: 1;
    font-weight: bold;
}
.campaign-item {
    text-align: left;
}
.campaign-item dt{
    font-size: 14px;
}
.campaign-item dd{
    font-size: 12px;
}

.box-border {
    border-radius: 25px;
    border: 2px solid var(--black);
    background: var(--white);
    padding: 30px 20px;
    position: relative;
    z-index: 3;
}

/*btn*/
.btn-black {
    padding: 20px 10px;
    color: var(--white);
    position: relative;
    background: var(--black);
    border-radius: 35px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    width: 100%;
    max-width: 330px;
}
.btn-black:hover {
    transition: 0.3s;
    color: var(--white);
    opacity: 0.9;
}
.btn-black::after {
    content: '\f105';
    position: absolute;
    color: var(--white);
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-family: "Font Awesome 5 Free";
    font-size: 16px;
    transition: 0.3s;
}
.btn-black:hover::after {
    right: 12px;
}

/*集中線*/ 
.copy-line { 
    display: inline-block; 
    position: relative; 
    font-size: 14px; 
    font-weight: 700; 
    padding: 0 20px; 
} 
.copy-line::before, 
.copy-line::after { 
    content: ''; 
    position: absolute; 
    display: inline-block; 
    width: 3px; 
    height: 56%; 
    bottom: -8px;
    border-radius: 50px; 
    background: var(--black);
    animation: blinking 1s ease-in-out infinite alternate;
} 
.copy-line:before { 
    left: 3px; 
    transform: translateX(-50%) rotate(-38deg); 
}
.copy-line::after{ 
    right: 3px; 
    transform: translateX(-50%) rotate(38deg); 
}

/* アニメーション */
@keyframes poyoyon {
  0%, 40% {
    transform: skew(0deg, 0deg);
  }
  5% {
    transform: skew(5deg, 5deg);
  }
  10% {
    transform: skew(-4deg, -4deg);
  }
  15% {
    transform: skew(3deg, 3deg);
  }
  20% {
    transform: skew(-2deg, -2deg);
  }
  25% {
    transform: skew(1deg, 1deg);
  }
  30% {
    transform: skew(-0.6deg, -0.6deg);
  }
  35% {
    transform: skew(0.3deg, 0.3deg);
  }
}

@keyframes blinking { 
    0% {
        opacity: 0;
    }
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


/*figure*/
.campaign-figure {
    margin: auto;
    text-align: center;
}
.pos-figure-4 {
    position: relative;
}
.pos-figure-4::before {
    content: '';
    position: absolute;
    z-index: 0;
    top: -78px;
    left: -3px;
    display: block;
    width: 55px;
    height: 142px;
    transform: rotate(15deg);
    background: url('/static/img/campaign/willtra/img-human-1.svg') no-repeat center center/ 100%;
}


@media (min-width: 501px) {
    .campaign-area {
        padding-top: 124px;
    }
    .campaign-area .lead {
        font-size: 14px;
    }
    .campaign-area::before {
        top: -82px;
    }
    .campaign-heading {
        margin-bottom: 16px;
    }
    .campaign-title {
        font-size: 24px;
    }
    .pos-figure-4::before {
        top: -117px;
        left: -3px;
        display: block;
        width: 78px;
        height: 178px;
    }
}

.js-scrollIn .campaign-heading-img img {
    opacity: 1;
    /*animation: campZoom 0.4s ease-in running;*/
}

/* animation settings
------------------------*/
@keyframes campZoom {
    0% {
        opacity: 0;
        transform: scale(0, 0);
    }
    100% {
        opacity: 1;
        transform: scale(1.2,1.2);
    }
}

/* キャンペーン終了
-----------------------------------------*/
.end-cpn a {
    position: relative;
    pointer-events: none;
}
.end-cpn a::before {
    content: 'Xキャンペーンは終了しました！';
    position:absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    padding: 26px 10px;
    /* display: block; */
    font-size: 14px;
    font-weight: bold;
    color: var(--white);
    background: rgba(51, 51, 51, 0.8);
    border-radius: 10px;
}

@media (min-width: 767px) {
    .end-cpn a::before {
        left: 5px;
        right: 0;
        bottom: 0;
        width: 97%;
        height: 100%;
        padding: 34px 10px;
        font-size: 14px;
        font-weight: bold;
        color: var(--white);
    }
}

.end-cpn-contents {
    position: relative;
}
.end-cpn-contents::before {
    content: 'Xキャンペーンは終了いたしました!';
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    transform: rotate(-5deg);
    color: var(--white);
    font-size: 20px;
    font-weight: bold;
}
.end-cpn-contents::after {
    content: '';
    position: absolute;
    z-index: 1;
    top: -18px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 99%;
    padding: 100px 10px 100px;
    display: block;
    background: rgba(51, 51, 51, 0.85);
}

@media (min-width: 767px) {
    .end-cpn-contents::before {
        top: 83px;
        font-size: 22px;
    }
    .end-cpn-contents::after {
        top: -30px;
        width: 100%;
        height: 99%;
        padding: 142px 10px 100px;
    }


}




/* Notice
----------------------------------------------*/
.notice-area {
  background: url('/static/img/campaign/willtra/bg-notice.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--yellow);
}

.notice-list {
    width: 94%;
    max-width: 384px;
    margin: 0 auto;
}

.notice-list dt {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 8px;

}

.notice-item {
    margin-top: 24px;
}

.notice-det-list li,
.notice-attention-list li {
    margin-top: 8px;
    display: block;
    font-size: 12px;
    font-weight: 500;
    text-align: left;
    position: relative;
    padding-left: 14px;
    line-height: 1.5;
}

.notice-det-list li::before {
    content: '・';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 12px;
}
.notice-attention-list li::before {
    content: '※';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 12px;
}

.notice-ttl-middle {
    font-size: 13px;
    text-align: left;
    margin-bottom: 8px;
}

.notice-text {
    font-size: 12px;
    font-weight: 500;
    text-align: left;
}


@media (min-width: 501px) {
    p.notice-text {
        font-size: 12px;
    }

    .notice-list {
        width: 82%;
    }
}


/* Sns
----------------------------------------------*/
.sns-area {
  background: var(--blue-2);
  padding: 30px 0;
}

/* animation */
.anm-blind .anm-blind-wrap {
  position: relative;
  display: inline-block;
  margin-top: 5px;
}
.js-scrollIn .anm-blind .anm-blind-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  background: linear-gradient(to right, var(--yellow) 0%, var(--yellow) 50%,var(--yellow) 100%);
  animation: anm-blind 2.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.anm-blind .anm-blind-wrap .in {
  color: var(--black);
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
  padding: 5px 15px 3px;
  position: relative;
  z-index: 1;
}

@keyframes anm-blind {
  0% {
    opacity: 0;
    transform: scaleX(0) translateX(-5%);
  }
  30% {
    transform: scaleX(1) translateX(0);
  }
  100% {
    transform: scaleX(1) translateX(0);
  }
  30%, 100% {
    opacity: 1;
  }
}


/*sns icon*/
.sns-list {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(96%, 406px);
    width: 96%;
    max-width: 406px;
    margin: 0 auto;
}

.sns-list li {
    width: calc(100% / 4);
    margin: 0 3%;
}



/*202505 JCBキャンペーン用
---------------------------------------------*/
.other-area {
    background-color: var(--yellow);
}
.other-area .copy-line {
    font-size: 16px;
    margin-bottom: 12px;
}
.other-area .copy-line::before,
.other-area .copy-line::after {
    animation: none;
    bottom: 4px;
}

.bnr-link {
    display: block;
    width: 100%;
    transition: 0.3s;
}
.bnr-link:hover {
    transform: translateY(3px);
    opacity: 1;
}






/* PC settings
---------------------------------------------*/
.pc-willer-obj,
.pc-photo-obj,
.pc-carry-obj,
.pink-sale-obj.-pc,
.pc-object-item,
.pc-dot-list,
.pc-area-list,
.blob,
.pc-oshi-obj-1,
.pc-oshi-obj-2,
.pc-oshi-obj-3 {
    display: none;
}


/* pink sale obi base*/
.pink-sale-obj {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -webkit-filter: blur(0);
    filter: blur(0);
    perspective: 1000;
    position: absolute;
    width: min(100%, 1080px);
    width: 110%;
    max-width: 1080px;
    height: 36px;
    background: url(/static/img/campaign/willtra/text-sale-white.svg) repeat-x center center/ 160%;
    background-color: var(--pink);
    animation: saleObjLoop 500s linear infinite;
}

.pink-sale-obj.-pc {
    background-size: 100%;
}


@media(min-width: 560px) {

    /* PC frame 
    -----------------------------------*/
    .pc-frame-top,
    .pc-frame-bottom {
        width: 100%;
        height: 30px;
        background: var(--green);
    }
    .pc-frame-top {
        position: sticky;
        top: -2px;
        z-index: 6;
    }
    .pc-frame-bottom {
        position: fixed;
        bottom: 0;
        z-index: 15;
    }

    .pc-frame-side {
        width: 100%;
        height: 100%;
        position: relative;
    }

    /* side SALE obi */
    .pc-frame-side::before,
    .pc-frame-side:after {
        content: '';
        position: fixed;
        top: 0;
        width: 20px;
        height: 100vh;
        margin: 0 5px;
        display: block;
        background: url(/static/img/campaign/willtra/bg-text-sale.svg) repeat-y center / 100%;
        background-color: var(--green);
    }
    .pc-frame-side::before {
        z-index: 16;
        left: 0;
        animation: pcBgSideLeft 300s linear infinite;
    }
    .pc-frame-side::after {
        z-index: 10;
        right: 0;
        animation: pcBgSideRight 300s linear infinite;
    }
    

    /* BG*
    --------------------------------*/
    .pc-bg-wrapper {
        background: var(--green);
        display: grid;
        grid-template-columns: 1fr repeat(2, 47vw) 1fr;
        grid-template-rows: 1fr;
        grid-column-gap: 0px;
        grid-row-gap: 0px;
        position: fixed;
        z-index: 1;
        top: 0;
        left: 0;
        width: min(100vw, 100%);
        width: 100vw;
        max-width: 100%;
        height: 100vh;
        padding: 0 32px;/* saleの帯分 */
    }
    
     /*BG in*/
    .pc-bg-content-in {
        background-image: linear-gradient(rgb(246, 246, 246) 1px, transparent 1px), linear-gradient(to right, rgb(246, 246, 246) 1px, transparent 1px);
        background-size: 20px 20px;
        background-color: var(--white);
        background-position: -14px 14px;
        position: relative;
        width: 100%;
    }
}

@media (min-width: 769px) {

    /* PC BG
    ----------------------------------*/
    .pc-bg-wrapper {
        grid-template-columns: 0 repeat(2, 50%) 0;
    }

     /*BG in*/
    .pc-bg-content-in {
        overflow: hidden;
    }

    /* PC BG Inside 
    -------------------------------*/
    /* Photo */
    .pc-photo-obj {
        display: none;
    }


    /* area list */
    .pc-area-list {
        display: block;
        position: absolute;
        top: 28vh;
        right: 6.5%;
        width: min(16vw, 213px);
        width: 16vw;
        /*max-width: 213px;*/
    }
    
    /* carry obj */
    .pc-carry-obj {
        display: block;
        position: absolute;
        z-index: 2;
        bottom: 5vh;
        right: 10%;
        width: min(6.27vw, 82px);
        width: 6.27vw;
        /*max-width: 82px;*/
    }

    /*  willer obj */
    .pc-willer-obj {
        display: block;
        position: absolute;

        bottom: 16vh;
/*        left: calc(50% - 103px);
        height: 12.7vw;
        width: min(12.7vw, 256px);
*/
        left: calc(50% - 150px);
        height: 16.7vw;
        width: min(16.7vw, 256px);
        /*max-width: 256px;*/
        background: url(/static/img/campaign/willtra/bg-ico-willer.svg) no-repeat center center /100%;
    }

    .pc-willer-obj img {
        width: 80%;
        position: relative;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        animation:  pcWillerIcoRotate 30s linear infinite;
    }
    
    /*pink sale-obj */
    .pink-sale-obj.-pc {
        display: block;
        bottom: 3vw;
        right: -10px;
        transform: rotate(-10deg);
        height: 30px;
    }
    

}

@media (min-width: 1024px) {
    
    /* PC BG Inside 
    -------------------------------*/
    /*  willer obj */
    .pc-willer-obj {
        left: calc(50% - 96px);
    }

    /*202505 推し活イラスト*/
    .pc-oshi-obj-1,
    .pc-oshi-obj-2,
    .pc-oshi-obj-3 {
         display: block;
    }
    .pc-oshi-human,
    .pc-oshi-item,
    .pc-oshi-kirakira,
    .pc-oshi-love{
        position: fixed;
        z-index: 3;
    }

    .pc-oshi-human img,
    .pc-oshi-item img,
    .pc-oshi-kirakira img,
    .pc-oshi-love img{
        width: inherit;
        max-width: 100%;
    }

    /*人物*/
    .pc-oshi-human.-two {
        top: 13.5vh;
        right: calc(50% - 400px);
        width: 6.8vw;
        transform: rotate(10deg);
    }
    .pc-oshi-human.-one {
        position: absolute;
        top: 18vh;
        right: calc(50% - 50px);
        width: 5vw;
    }
    
    .pc-oshi-human.-two img{
        animation: humanKakukaku 4s linear infinite;
    }
    .pc-oshi-human.-one img{
        animation: yurayura ease-in-out 2.5s infinite;
    }
    
    /*推し活アイテム*/
    .pc-oshi-item.-pen {
        top: 36vh;
        right: calc(50% - 345px);
        width: 7vw;
    }
    .pc-oshi-item.-bag {
        top: 46vh;
        right: calc(50% - 400px);
        width: 6vw;
    }
    .pc-oshi-item.-photo {
        top: 57vh;
        right: calc(50% - 320px);
        width: 5.6vw;
    }
    .pc-oshi-item.-uchiwa {
        bottom: 30vh;
        left: calc(50% - 430px);
        width: 80px;
        z-index: 0;
    }
    .pc-oshi-item.-human3 {
        bottom: 14vh;
        left: calc(50% - 380px);
        width: 4vw;
    }
    
    /*ハート*/
    .pc-oshi-wrap {
        position: relative;
    }
    .pc-oshi-love {
        right: calc(50% - 430px);
    }
    .pc-oshi-love.-one {
        bottom: 16vh;
        width: 9vw;
        transform: rotate(-10deg);
    }
    .pc-oshi-love.-two {
        bottom: 24vh;
        width: 7vw;
        transform: rotate(-10deg);
    }
    .pc-oshi-love.-three {
        bottom: 27vh;
        width: 6vw;
        transform: rotate(-10deg);
    }
    .pc-oshi-love.-two img {
        animation: 1s heartBigsmall2 1s linear infinite alternate;
    }
    .pc-oshi-love.-three img {
        animation: 1s heartBigsmall3 1.5s linear infinite alternate;
    }
    
    /*キラキラ*/
    .pc-oshi-kirakira-wrap {
        position: relative;
    }
    .pc-oshi-kirakira-wrap.-one img{
        top: 10vh;
        right: calc(50% - 31vw);
    }
    .pc-oshi-kirakira-wrap.-two img{
        top: 25vh;
        left: calc(50% - 31vw);
    }
    .pc-oshi-kirakira-wrap.-three img{
        bottom: 15vh;
        left: calc(50% - 31vw);
    }
    .pc-oshi-kirakira-wrap.-four img{
        bottom: 25vh;
        left: calc(50% - 31vw);
    }
    .pc-oshi-kirakira {
        position: absolute;
    }
    .pc-oshi-kirakira-wrap.-one .pc-oshi-kirakira.-one {
        right: calc(50% - 80px);
        top: 27vh;
        width: 1.5vw;
    }
    .pc-oshi-kirakira-wrap.-one .pc-oshi-kirakira.-two {
        right: calc(50% - 50px);
        top: 30vh;
        width: 1vw;
    }
    .pc-oshi-kirakira-wrap.-two .pc-oshi-kirakira.-one {
        left: calc(50% - -12px);
        top: 65vh;
        width: 1vw;
    }
    .pc-oshi-kirakira-wrap.-two .pc-oshi-kirakira.-two {
        left: calc(50% - -10px);
        top: 69vh;
        width: 0.8vw;
    }
    .pc-oshi-kirakira-wrap.-three .pc-oshi-kirakira.-one {
        right: 2vw;
        top: 74vh;
        width: 1vw;
    }
    .pc-oshi-kirakira-wrap.-three .pc-oshi-kirakira.-two {
        right: 1vw;
        top: 78vh;
        width: 0.8vw;
    }
    .pc-oshi-kirakira-wrap.-four .pc-oshi-kirakira.-one {
        left: 5vw;
        top: 14vh;
        width: 1.5vw; 
    }
    .pc-oshi-kirakira-wrap.-four .pc-oshi-kirakira.-two {
        left: 3vw;
        top: 16vh;
        width: 1vw; 
    }
    .pc-oshi-kirakira.-one img {
        animation: 1s kirakiraBig 1.5s linear infinite alternate;
    }
    .pc-oshi-kirakira.-two img {
        animation: 1s kirakiraSmall 1.5s linear infinite alternate;
    }
}

@media(min-width: 1100px) {
    
    /* PC BG
    -------------------------------*/
    .pc-bg-wrapper {
        grid-template-columns: 1fr repeat(2, 520px) 1fr;
    }
    
    /*BG Out*/
    .pc-bg-content-out {
        position: relative;
        display: block;
        overflow: hidden;
        background: var(--lightYellow);
    }
    .pc-bg-content-out.-left {
        border-right: 1px solid var(--black);
    }
    .pc-bg-content-out.-right {
        border-left: 1px solid var(--black);
    }

    .pc-bg-content-out {
        position: relative;
    }
    
    /* PC BG Inside 
    -------------------------------*/
    /* Photo */
    .pc-photo-obj {
        display: block;
        position: relative;
        top: 18.5vh;
        left: 14vw;
        width: 8.03vw;
        transform: rotate(19deg);
    }
    
    .pc-photo-obj::after {
        content: "";
        position: absolute;
        z-index: -1;
        left: 1.8vw;
        top: 2.4vh;
        width: min(6.84vw, 135px);
        height: min(4.95vw, 95px);
        display: inline-block;
        background: var(--blue-2);
    }
        
    .pc-photo-obj.-yellow {
        top: -10vh;
        left: 14vw;
        width: 10.03vw;
        width: min(10.03vw, 165px);
        transform: rotate(-11deg);
    }
    
    .pc-photo-obj.-yellow::after{
        top: 2.6vh;
        left: 1vw;
        width: min(14.84vw, 150px);
        height: min(11.95vw, 95px);
        background: var(--yellow);
    }
    
    .pc-photo-obj.-green {
        width: min(8.84vw, 165px);
        height: min(6.95vw, 116px);
        top: -49vh;
        left: 24%;
        transform: rotate(-15deg);
        z-index: 0;
    }
    
    .pc-photo-obj.-green::after {
        top: 0.8vh;
        left: -0.5vw;
        width: min(7.84vw, 135px);
        height: min(6.95vw, 95px);
        background: var(--green);
    }

    /* area list */
    .pc-area-list {
        top: 45vh;
        right: 6vw;
        width: 8vw;
    }
    
    /* carry obj */
    .pc-carry-obj {
        bottom: 3vw;
        right: 3vw;
        width: 3.27vw;
    }

    /*  willer obj */
    .pc-willer-obj {
        left: calc(50% - 100px);
        bottom: 14vh;
        height: 14.7vw;
        width: min(14.7vw, 256px);
        /* width: 10.7vw;
        height: 10.7vw; */
    }

    .pc-willer-obj img {
        width: 80%;
        top: 50%;
        left: 50%;
    }
    
    /*pink sale-obj */
    .pink-sale-obj.-pc {
        bottom: 3vw;
        right: -10px;
        height: 30px;
    }

    /* PC Bg blob */
    .blob {
        display: block;
        position: absolute;
        z-index: 0;
    }

    .blob.-left {
        top: 0;
        transform: rotate(180deg) scale(2, 2);
    }
    .blob.-right {
        bottom: 0;
    }

    #blob-left {
        animation: blob-left 6s ease-in-out infinite;
    }

    #blob-right {
        animation: blob-right 6s ease-in-out infinite;
    }
    
    /*202505 推し活イラスト*/
    /*人物*/
    .pc-oshi-human.-two {
        top: 9vh;
        right: calc(50% - 430px);
        width: 7.5vw;
        transform: rotate(10deg);
    }
    .pc-oshi-human.-one {
        position: absolute;
        right: calc(50% - 2vw);
        width: 5vw;
    }
    .pc-oshi-item.-human3 {
        left: calc(50% - 406px);
    }
    .pc-oshi-item.-pen {
        top: 36vh;
        right: calc(50% - 375px);
    }
    .pc-oshi-item.-bag {
        right: calc(50% - 460px);
    }
    .pc-oshi-item.-photo {
        top: 55vh;
        right: calc(50% - 345px);
    }
    
    /*キラキラ*/
    .pc-oshi-kirakira-wrap.-four .pc-oshi-kirakira.-one {
        left: calc(50% - 170px);
        top: 18vh;
    }
    .pc-oshi-kirakira-wrap.-four .pc-oshi-kirakira.-two {
        left: calc(50% - 200px);
        top: 23vh;
    }
}

@media (min-width: 1280px) {

    /* PC BG Inside
    --------------------------------------------------*/
    .pc-willer-obj {
        bottom: 6vw;
    }

    /* PC BG Out side
    -------------------------------------------------*/
    /* PC object */
    .pc-object {
        position: relative;
    }
    .pc-object-item {
        display: block;
        position: fixed;
        z-index: 2;
    }
    .pc-object-item.-osaka {
        display: none;
    }
    .pc-object-item.-lemon {
        width: 10vw;
        bottom: 16vh;
        left: 2%;
        /*max-width: 178px;*/
    }
    .pc-object-item.-hiroshima {
        width: 10vw;;
        bottom: 22px;
        left: calc(50% - 560px);
        /*max-width: 253px;*/
    }
    .pc-object-item.-nagoya {
        width: 11vw;
        top: 10vh;
        right: calc(50% - 580px);
        /*max-width: 234px;*/
    }
    .pc-object-item.-nagoya img {
        animation: pcNagoyaKakukaku 4s linear infinite;
    }
    .pc-object-item.-hakata {
        width: 12vw;
        bottom: 17vw;
        right: calc(50% - 610px);
        /* max-width: 203px;*/
    }
    .pc-object-item.-tokyo {
        display: none;
    }
    

    /*推し活イラスト*/
    .pc-oshi-human.-two {
        right: calc(50% - 500px);
    }

    .pc-oshi-item.-bag {
        right: calc(50% - 450px);
    }
    .pc-oshi-item.-uchiwa {
        bottom: 32vh;
        left: calc(50% - 480px);
    }


    .pc-oshi-kirakira-wrap.-four .pc-oshi-kirakira.-one {
        top: 21vh;
        left: calc(50% - 170px);
    }
    .pc-oshi-kirakira-wrap.-four .pc-oshi-kirakira.-two {
        top: 24vh;
        left: calc(50% - 187px);
    }

    /*ハート*/
    .pc-oshi-love {
        right: calc(50% - 440px);
    }

   /* PC dot */
    .pc-dot-list {
        display: block;
    }
    .pc-dot-list.-left {
        left: 10%;
    }
    .pc-dot-list.-right {
        right: 10%;
    }
    .pc-dot-item{
        position: fixed;
        z-index: 3;
    }
    .pc-dot-item.-l-one {
        width: 1%;
        top: 18.5%;
        left: 4%;
        max-width: 21px;
    }
    .pc-dot-item.-l-two {
        width: 3%;
        top: 10%;
        left: 17%;
        max-width: 14px;
    }
    .pc-dot-item.-l-three {
        width: 1.2%;
        top: 56%;
        left: 3%;
        max-width: 28px;
    }
    .pc-dot-item.-l-four {
        width: 1%;
        bottom: 9%;
        left: 4%;
        max-width: 21px;
    }
    .pc-dot-item.-r-one {
        width: 4%;
        top: 24%;
        right: 3%;
        max-width: 21px;
    }
    .pc-dot-item.-r-two {
        width: 1%;
        top: 32%;
        right: calc(50% - 550px);
        max-width: 16px;
    }
    .pc-dot-item.-r-three {
        width: 1%;
        top: 44%;
        right: 16%;
        max-width: 28px;
    }
    .pc-dot-item.-upToDown img {
        animation: pcUpToDown 8s linear infinite;
    }
    .pc-dot-item.-downToUp {
        animation: pcDownToUp 6s linear infinite;
    }
}

@media (min-width: 1360px) {

    /* PC BG Out side
    -------------------------------------------------*/
    /* PC object */

    .pc-object-item.-hiroshima {
        left: calc(50% - 608px);
    }

    .pc-object-item.-osaka {
        display: block;
        width: 12vw;
        top: 1vw;
        left: 1.5vw;
    }
    .pc-object-item.-tokyo {
        display: block;
        z-index: 13;
        width: 20vw;
        bottom: -10%;
        right: -32px;
    }


   /* PC dot */
    .pc-dot-list {
        display: block;
    }
    .pc-dot-list.-left {
        left: 10%;
    }
    .pc-dot-list.-right {
        right: 10%;
    }
    .pc-dot-item{
        position: fixed;
        z-index: 3;
    }
    .pc-dot-item.-l-one {
        width: 1%;
        top: 18.5%;
        left: 4%;
        max-width: 21px;
    }
    .pc-dot-item.-l-two {
        width: 3%;
        top: 10%;
        left: 17%;
        max-width: 14px;
    }
    .pc-dot-item.-l-three {
        width: 1.2%;
        top: 56%;
        left: 3%;
        max-width: 28px;
    }
    .pc-dot-item.-l-four {
        width: 1%;
        bottom: 9%;
        left: 4%;
        max-width: 21px;
    }
    .pc-dot-item.-r-one {
        width: 4%;
        top: 24%;
        right: 3%;
        max-width: 21px;
    }
    .pc-dot-item.-r-two {
        width: 1%;
        top: 32%;
        right: calc(50% - 550px);
        max-width: 16px;
    }
    .pc-dot-item.-r-three {
        width: 1%;
        top: 44%;
        right: 16%;
        max-width: 28px;
    }
    .pc-dot-item.-upToDown img {
        animation: pcUpToDown 8s linear infinite;
    }
    .pc-dot-item.-downToUp {
        animation: pcDownToUp 6s linear infinite;
    }

    /* 2025推し活イラスト*/
    .pc-oshi-item.-human3 {
        left: calc(50% - 410px);
    }
    /*推し活イラスト*/
    .pc-oshi-human.-two {
        right: calc(50% - 500px);
    }

    .pc-oshi-item.-bag {
        right: calc(50% - 450px);

    }

    .pc-oshi-item.-pen {
        top: 36vh;
        right: calc(50% - 380px);
    }
    .pc-oshi-item.-bag {
        right: calc(50% - 450px);
    }
    .pc-oshi-item.-photo {
        right: calc(50% - 340px);
    }

    /*キラキラ*/
    .pc-oshi-kirakira-wrap.-four .pc-oshi-kirakira.-one {
        top: 16vh;
        left: calc(50% - 174px);
    }
    .pc-oshi-kirakira-wrap.-four .pc-oshi-kirakira.-two {
        top: 22vh;
        left: calc(50% - 188px);
    }
}

@media (min-width: 1560px) {

    /* PC BG
    -------------------------------*/
    .pc-bg-wrapper {
        grid-template-columns: 1fr repeat(2, 520px) 1fr;
    }
    
    /* PC BG Inside 
    -------------------------------*/
    /* Photo */
    .pc-photo-obj {
        top: 6vh;
        left: 11.5vw;
        width: 7.03vw;
    }
    
    .pc-photo-obj::after {
        top: 1.2vh;
    }
    
    .pc-photo-obj.-yellow {
        top: -7vh;
        left: 48%;
        width: 10.03vw;
        width: min(10.03vw, 165px);
    }
    
    .pc-photo-obj.-green {
        top: -43vh;
        left: 23%;
        width: 9.03vw;
        width: min(10.84vw, 169px);
    }
    
    .pc-photo-obj.-yellow::after {
        top: 2vh;
        left: 0.5vw;
        width: min(16.84vw, 165px);
        height: min(5.95vw, 115px);
    }
    
    .pc-photo-obj.-green::after {
        top: 3.8vh;
        left: -0.4vw;
        width: min(10.84vw, 169px);
    } 

    /* area list */
    .pc-area-list {
        top: 22vw;
        right: 6vw;
        width: 10vw;
    }
    
    /* carry obj */
    .pc-carry-obj {
        bottom: 3vw;
        right: 3vw;
        width: 3.27vw;
    }

    /*  willer obj */
    .pc-willer-obj {
        bottom: 5vw;
        left: 33%;
    }

    /* PC BG Out side
    -------------------------------------------------*/
    /* PC object */
    .pc-object-item.-osaka {
        width: 13vw;
        top: 1vw;
        left: 2.5vw;
        /*max-width: 344px;*/
    }
    .pc-object-item.-hiroshima {
        width: 12vw;
        bottom: 22px;
        left: calc(50% - 642px);
        max-width: 180px;
    }
    .pc-object-item.-tokyo {
        z-index: 13;
        width: 23vw;
        bottom: -10%;
        right: -32px;
    }
    .pc-object-item.-hakata {
        width: 10vw;
        bottom: 15vw;
        right: 12vw;
    }
    .pc-object-item.-nagoya {
        max-width: 210px;
    }

    
    /* PC dot */
    .pc-dot-item{
        z-index: 3;
    }
    .pc-dot-item.-l-one {
        width: 1%;
        top: 16vh;
        left: 4%;
        max-width: 21px;
    }
    .pc-dot-item.-l-two {
        width: 2%;
        top: 10%;
        left: 14.5vw;
        max-width: 12px;
    }
    .pc-dot-item.-l-three {
        width: 1.2%;
        top: 56%;
        left: 13vw;
        max-width: 28px;
    }
    .pc-dot-item.-r-two {
        right: calc(50% - 600px);
        max-width: 13px;
    }

    .pc-dot-item.-upToDown img {
        animation: pcUpToDown 8s linear infinite;
    }
    .pc-dot-item.-downToUp {
        animation: pcDownToUp 8s linear infinite;
    }
    
    
    /* blob*/
    .blob.-left {
        transform: rotate(180deg) scale(2, 2);
    }

    .blob.-right {
        bottom: 0;
        transform: scale(2, 2);
    }
    
    /*推し活*/
    .pc-oshi-item.-uchiwa {
        bottom: 33vh;
        left: calc(50% - 480px);
        width: 5.6vw;
    }

    .pc-oshi-item.-human3 {
        bottom: 14vh;
        left: calc(50% - 420px);
        width: 4vw;
    }
    .pc-oshi-item.-pen {
        top: 36vh;
        right: calc(50% - 400px);
    }
    .pc-oshi-item.-bag {
        right: calc(50% - 490px);
    }
    .pc-oshi-item.-photo {
        right: calc(50% - 360px);
    }

    /*キラキラ*/
    .pc-oshi-kirakira-wrap.-two .pc-oshi-kirakira.-two {
        left: calc(50% - -20px);
        top: 68vh;
        width: 0.8vw;
    }
    .pc-oshi-kirakira-wrap.-two .pc-oshi-kirakira.-one{
        left: calc(50% - 10px);
        top: 70vh;
        width: 1vw;
    }
    .pc-oshi-kirakira-wrap.-four .pc-oshi-kirakira.-one {
        top: 12vh;
        left: calc(50% - 160px);
    }
    .pc-oshi-kirakira-wrap.-four .pc-oshi-kirakira.-two {
        top: 14vh;
        left: calc(50% - 200px);
    }

    /*ハート*/
    .pc-oshi-love.-one{
        bottom: 12vh;
    }
    .pc-oshi-love.-two{
        bottom: 20vh;
    }
    .pc-oshi-love.-three{
        bottom: 24vh;
    }
}

@media (min-width: 1800px) {
    /* PC BG  
    -------------------------------*/
    .pc-bg-wrapper {
        grid-template-columns: 1fr repeat(2, 32vw) 1fr;
    }

    .pc-bg-wrapper img,
    .pc-object-wrapper img,
    .pc-bg-content-out img,
    .pc-bg-content-in img {
        width: 100%;
    }
    
    /*2025 推し活イラスト*/
    .pc-oshi-human img,
    .pc-oshi-item img,
    .pc-oshi-kirakira img {
        width: inherit;
        max-width: 100%;
    }
    
    /* PC BG Inside 
    -------------------------------*/
    /* Photo */
    .pc-photo-obj {
        top: 18vh;
    }
    
    .pc-photo-obj::after {
        width: 6.84vw;
        height: 4.95vw;
    }
    
    .pc-photo-obj.-yellow::after {
        top: 1.4vh;
    }
    
    .pc-area-list {
        top: 40vh;
        width: 9vw;
        right: 7vw;
    }
    
    .pc-carry-obj {
        width: 5.27vw;
    }
    
     /*  willer obj */
    .pc-willer-obj {
        left: 12vw;
    }

    .pc-willer-obj img{
        width: 80%;
    }
    
    .pc-photo-obj::after {
        width: 6.84vw;
        height: 4.95vw;
        left: 12px;
        right: 15px;
    }
    
    .pc-photo-obj.-yellow::after {
        top: 1.4vh;
    }
    
    .pc-area-list {
        top: 40vh;
        width: 9vw;
        right: 7vw;
    }
    
    .pc-carry-obj {
        width: 5.27vw;
    }
    
     /*  willer obj */
    .pc-willer-obj {
        left: calc(50% - 50px);
    }

    .pc-willer-obj img{
        width: 80%;
    }
    
    /* PC BG Out side
    -------------------------------------------------*/
    /* PC object */
    .pc-object-item.-tokyo {
        right: -1.3vw;
    }
    .pc-object-item.-nagoya {
        right: calc(50% - 33vw);
    }

    /*2025推し活*/
    .pc-oshi-human.-two {
        top: 18vh;
        right: calc(50% - 28vw);
    }
    .pc-oshi-item.-uchiwa {
        bottom: 30vh;
        left: calc(50% - 30vw);
    }
    .pc-oshi-love {
        right: calc(50% - 27vw)
    }
    .pc-oshi-love.-one{
        bottom: 16vh;
    }
    .pc-oshi-love.-two {
        bottom: 25vh;
    }
    .pc-oshi-love.-three {
        bottom: 28vh;
    }
}

@media (min-width: 1900px) {

    /* PC BG Out side
    -------------------------------------------------*/
    /* PC object */
    .pc-object-item.-nagoya {
        right: calc(50% - 36vw);
        top: 14vh;
    }

    /*PC dot*/
    .pc-dot-item.-r-one {
        top: 8%;
    }
    .pc-dot-item.-r-two {
        right: calc(50% - 38vw);
    }

    /*2025推し活*/
    .pc-oshi-human.-two {
        top: 12vh;
        right: calc(50% - 31vw);
    }
}


/* animation settings
------------------------*/

@keyframes pcNagoyaKakukaku {
    6% {
        transform: rotate(0deg);
    }
    12% {
        transform: rotate(8deg);
    }
    18% {
        transform :rotate(0deg);
    }
    24% {
        transform: rotate(6deg);
    }
    30% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(0deg);
    }
}
@keyframes pcUpToDown {
    0% {
        transform: translateY(0);
    }
    10% {
        transform: translateY(6px);
    }
    30% {
        transform: translateY(0px);
    }
    60% {
        transform: translateY(3px);
    }
    80% {
        transform: translateY(-2px);
    }
    100% {
        transform: translateY(0);
    }
}
@keyframes pcDownToUp {
    0% {
        transform: translateY(0);
    }
    10% {
        transform: translateY(-8px);

    }
    30% {
        transform: translateY(0px);
    }
    60% {
        transform: translateY(-2px);
    }
    80% {
        transform: translateY(2px);
    }
    100% {
        transform: translateY(0);
    }
}
@keyframes pcBgSideLeft {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 -1000vw;
    }
}
@keyframes pcBgSideRight {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 1000vw;
    }
}

@keyframes pcWillerIcoRotate {
    0% {
        transform: translate(-50%, -50%) rotate(0);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
@keyframes saleObjLoop {
    0% {
        background-position: center center;
    }
    100% {
        background-position: 1000vw center;
    }
}
@keyframes blob-left {
    0% {
        d: path("M0 60 Q 25 40, 50 60 T 100 60 V 150 H 0 Z");
    }
    25% {
        d: path("M0 50 Q 25 80, 50 50 T 100 80 V 150 H 0 Z");
    }
    50% {
        d: path("M0 60 Q 25 90, 50 60 T 100 90 V 150 H 0 Z");
    }
    75% {
        d: path("M0 70 Q 25 40, 50 70 T 100 40 V 150 H 0 Z");
    }
    100% {
        d: path("M0 60 Q 25 40, 50 60 T 100 60 V 150 H 0 Z");
    }
}
@keyframes blob-right {
    0% {
        d: path("M0 90 Q 25 40, 50 60 T 120 60 V 150 H 0 Z");
    }
    25% {
        d: path("M0 50 Q 25 80, 50 50 T 130 100 V 150 H 0 Z");
    }
    50% {
        d: path("M0 60 Q 25 150, 50 60 T 100 90 V 150 H 0 Z");
    }
    75% {
        d: path("M0 100 Q 35 80, 50 70 T 100 40 V 150 H 0 Z");
    }
    100% {
        d: path("M0 60 Q 35 40, 50 60 T 100 60 V 150 H 0 Z");
    }
}

/*推し活アニメーション*/
@keyframes yurayura {
    0% {
        transform: rotate(55deg);
    }
    50% {
      transform: rotate(35deg);
    }
    100% {
      transform: rotate(55deg);
    }
}

@keyframes humanKakukaku {
    6% {
        transform: rotate(0deg);
    }
    12% {
        transform: rotate(6deg);
    }
    18% {
        transform :rotate(0deg);
    }
    24% {
        transform: rotate(5deg);
    }
    30% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

@keyframes kirakiraBig {
     0% {
        transform: scale(1.0);
    }
    50% {
      transform: scale(1.3);
    }
    100% {
       transform: scale(1.0);
    }   
}

@keyframes kirakiraSmall {
    0% {
        transform: scale(1.5);
    }
    50% {
      transform: scale(1.0);
    }
    100% {
       transform: scale(1.5);
    }   
}

@keyframes heartBigsmall2 {
  0% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes heartBigsmall3 {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}


/* PC gnav
---------------------------------------------*/
.pc-nav {
    display: none;
}

@media (min-width: 1024px){
    .pc-nav {
        display: block;
        transition: 0.4s;
        width: 100%;
        max-width: 100%;
        margin-top: 20vh;
        position: relative;
        z-index: 1;
    }

    .pc-nav-item {
        display: block;
    }

    .pc-nav-link {
        display: block;
        width: 100%;
        padding: 13px 1.5% 10px 6%;
        background: var(--lightYellow);
        color: var(--black);
        /* transition: .3s; */
        position: relative;
        border-top: 1px solid var(--black);
    }

    .pc-nav-item:last-of-type .pc-nav-link {
        border-bottom: 1px solid var(--black);
    }
    
    .pc-nav-item:last-of-type .pc-nav-link .pc-nav-link .en {
        max-width: 26%;
    }

    .pc-nav-link:hover {
        opacity: 1;
        background: var(--yellow);
        /* transition: .3s; */
        color: var(--black);
    }

    .pc-nav-link:hover::before {
        content: '';
        position: absolute;
        top: 16px;
        left: 1%;
        display: inline-block;
        width: 21px;
        height: 21px;
        background: url(/static/img/campaign/willtra/ico-link-pink-arrow.svg) no-repeat center center/100%;
    }
    .js-current.pc-nav-link {
        background: var(--yellow);
    }

    .pc-nav-link span {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        padding: 0 2%;
    }

    .pc-nav-link .en {
        max-width: 36%;
    }
    
    .pc-nav-link .en {
        max-width: 36%;
    }
    .pc-nav-link .jp {
        font-size: 14px;
        font-weight: bold;
        margin-top: 6px;
    }
}

@media (min-width: 1100px){
    .pc-nav {
        margin-top: 20vh;
    }
    .pc-nav-item:first-child .en {
        max-width: 24%;
    }
    
    .pc-nav-item:nth-child(2) .en {
        max-width: 36%;
    }
    
    .wrapper .pc-nav-item:nth-child(3) .en {
        max-width: 30%;
    }

    .teaser-wrapper .pc-nav-item:nth-child(3) .en,
    .end-wrapper .pc-nav-item:nth-child(3) .en{
        max-width: 22%;
    }
    .pc-nav-item:nth-child(4) .en {
        max-width: 22%;
    }
}

@media (min-width: 1600px){
    .pc-nav {
        margin-top: 20vh;
    }
}


/*本公開前　ティザー用 
-----------------------------------------------------*/
.teaser-wrapper .pc-frame-top,
.teaser-wrapper .pc-frame-bottom{
    z-index: 4;
}

.teaser-wrapper .pc-frame-side,
.teaser-wrapper .pc-object-item.-tokyo {
    z-index: 3;
}

.teaser-wrapper .pc-frame-side::before,
.teaser-wrapper .pc-frame-side::after,
.teaser-wrapper .pc-willer-obj img,
.teaser-wrapper .white-sale-obj,
.teaser-wrapper .pink-sale-obj,
.teaser-wrapper .pc-object-item.-nagoya img,
.teaser-wrapper #blob-left,
.teaser-wrapper #blob-right {
    animation: none;
}

.teaser-wrapper .content-wrapper {
    top: 0;
    bottom: 0;
}

.teaser-wrapper .content-main {
    background: var(--yellow);
}

.teaser-bg {
    position: fixed;
    z-index: 4;
    inset: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100vw;
    height: 100%;
    min-height: 100vh;
    overflow: hidden;
    background: rgba(51, 51, 51, 0.92);   
}

@media(min-width: 560px) {
    .teaser-wrapper .content-wrapper {
        height: 100%;
        top: 0;
        bottom: 0;
        margin-top: -32px;
    }
}

/* Teset MV
----------------------------------------*/
.mv-area.teaser-mv {
    background: url("/static/img/campaign/willtra/bg-main-dot.png") repeat top/ cover;
}

.teaser-mv .mv-wrap {
  background: none;
}

.teaser-mv img {
    display: block;
    width: 96%;
    margin: auto;
}

.teaser-mv .mv-wrap {
    position: relative;
}

.teaser-mv .mv-wrap::before {
    content: '';
    position: absolute;
    z-index: 2;
    display: inline-block;
    width: 121px;
    height: 70px;
    right: 24px;
    bottom: -32px;
    background: url("/static/img/campaign/willtra/bus-illust.svg")  no-repeat top center/ 100%;
}

.teaser-check {
    width: 90%;
    margin: auto;
    position: relative;
}

.teaser-text {
    font-size: 15px;
    letter-spacing: 0;
    line-height: 1.3;
}

.teaser-premire-link {
    color: var(--black);
    text-decoration: underline;
}
.teaser-premire-link:hover {
    color: var(--black);
}

.teaser-figure {
    position: absolute;
    z-index: 2;
}
.teaser-figure.item01 {
    top: -10px;
    right: 60px;
}
.teaser-figure.item01 img {
    width: 64px;
    height: 54px;
}
.teaser-figure.item02 {
    top: -82px;
    right: 0;
}
.teaser-figure.item02 img {
    width: 60px;
    height: 120px;
}

@media (max-width: 340px) {
    .teaser-text {
        font-size: 13px;
    }
}

@media (min-width: 501px) {
    .teaser-mv .mv-wrap::before {
        width: 149px;
        height: 86px;
        right: 50px;
        bottom: -45px;
    }
    
    .teaser-text {
        font-size: 16px;
    }
}

@media (min-width: 768px) {
    .teaser-figure.item01 {
        top: -10px;
        right: 70px;
    }
    .teaser-figure.item01 img {
        width: 80px;
        height: 64px;
    }
    .teaser-figure.item02 img {
        top: -60px;
    }
    .teaser-figure.item02 img {
        width: 70px;
        height: 140px;
    }
}

/* end 終了対応
-----------------------------------------------*/

/* PC Background
-----------------------------------------*/
.end-wrapper .end-bg { /*終了対応時は完全透過させる*/
    position: fixed;
    z-index: 4;
    inset: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100vw;
    height: 100%;
    min-height: 100vh;
    overflow: hidden;
    background: rgba(51, 51, 51, 0);   
}


@media(min-width: 560px) {
    .end-wrapper .content-wrapper {
        height: 100%;
        top: 0;
        bottom: 0;
        margin-top: -32px;
    }
}


/* メインコンテンツ
-----------------------------------*/
.end-wrapper .content-main {
    min-height: 100%;
    background-color: var(--yellow);
    background: url("/static/img/campaign/willtra/bg-main-dot.png") no-repeat top center/ cover;
}

@media (min-width: 1920px) {
    .end-wrapper .mv-area.teaser-mv {
        padding-bottom: 80px;
    }
    .end-wrapper .content-main {
        height: 100%;
        min-height: 100vh;
    }
}


/* MV
--------------------------------*/
.end-wrapper .mv-area.teaser-mv {
    padding-bottom: 30px;
}

.end-wrapper .teaser-mv .mv-wrap {
    padding: 70px 16px 80px;
    margin-top: 18px;
}
.end-wrapper .teaser-mv .mv-wrap::before {
    content: none;
}

.end-wrapper .white-sale-obj.-mv.-two {
    left: -5px;
}
.end-wrapper .pink-sale-obj.-mv.-three {
    bottom: 20px;
    z-index: 5;
}
.end-wrapper .white-sale-obj.-mv.-four {
   bottom: 13px;
   left: -25px;
   transform: rotate(4deg); 
}

@media (min-width: 501px) {
    .end-wrapper .mv-area.teaser-mv {
        padding-bottom: 50px;
    }
    
    .end-wrapper .teaser-mv .mv-wrap {
        margin-top: 40px;
        padding: 80px 16px 78px;
    }
    
    .end-wrapper .pink-sale-obj.-mv.-three {
       bottom: 4px;
    }
    .end-wrapper .white-sale-obj.-mv.-four {
       bottom: 6px;
       left: -25px;
       transform: rotate(4deg); 
    }
    
    .end-wrapper .mv-limit-text span::before,
    .end-wrapper .mv-limit-text span::after{
        top: 12px;
    }
}

@media (min-width: 1024px) {
    .end-wrapper .teaser-mv .mv-wrap {
        margin-top: 40px;
        padding: 90px 16px 80px;
    }
    .end-wrapper .white-sale-obj.-mv.-three {
       bottom: -6px;
    }
    .end-wrapper .white-sale-obj.-mv.-four {
       bottom: -10px;
    }
}

@media (min-width: 1100px) {
    .end-wrapper .teaser-mv .mv-wrap {
        padding: 100px 16px 80px;
    }
    
    .end-wrapper .pink-sale-obj.-mv.-one {
        top: 26px;
    }
    .end-wrapper .white-sale-obj.-mv.-two {
        top: 36px;
    }
    .end-wrapper .pink-sale-obj.-mv.-three {
        bottom: -4px;
    }
    .end-wrapper .white-sale-obj.-mv.-four {
       bottom: -10px;
    }
}

/* reccomend
-------------------------*/
.end-wrapper .reccomend-area {
    padding: 0 0 60px;
}

.end-wrapper .reccomend-copy {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

.end-wrapper .reccomend-copy span {
    display: inline-block;
    position: relative;
    padding: 0 10px;
}

.end-wrapper .reccomend-copy span::before,
.end-wrapper .reccomend-copy span::after {
    content: '';
    position: absolute;
    display: inline-block;
    width: 2px;
    height: 32px;
    background: var(--black);
}

.end-wrapper .reccomend-copy span::before {
    top: 0;
    left: -8px;
    transform: rotate(-30deg);
}

.end-wrapper .reccomend-copy span::after {
    top: 0;
    right: -8px;
    transform: rotate(30deg);
}

.button-wrap {
    width: 80%;
    max-width: 400px;
    text-align: center;
    margin: 16px auto 0;
}

.button-green {
    display: block;
    width: stretch;
    width: 100%;
    color: var(--black);
    font-size: 16px;
    text-align: center;
    padding: 10px 16px;
    border: 2px solid var(--black);
    border-radius: 50px;
    background: var(--green);
    position: relative;
}
.button-green:hover {
    opacity: 1;
    transition: 0.3s;
    color: var(--white);
}

.button-green::after {
    content: '\f054';
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--black);
}

@media (max-width: 340px) {
    .end-wrapper .reccomend-copy {
        font-size: 14px;
    }
}

@media (min-width: 501px) {
    .end-wrapper .reccomend-area {
        padding: 20px 0 50px;
    }


    .end-wrapper .reccomend-copy {
        font-size: 20px;
    }
    
}

/*　一般ページのみ
----------------------------------------------------*/
@media (min-width: 768px){
    /* 開催中のみ*/
    #willtra .wrapper .pc-nav {
        margin-top: 22vh;
    }
}
@media (min-width: 1100px)and (max-width: 1200px) {
    
    /*ナビ
    ----------------------------*/
    #willtra .pc-nav-link .jp {
        font-size: 12px;
    }
    
    /*object 
    --------------------------*/
    #willtra .pc-willer-obj{
        bottom: 9vh;
        left: 32%;
    }
    #willtra .pc-nav-link {
        padding: 8px 1.5% 8px 6%;
    }
    #willtra .pc-object-item.-hiroshima {
        width: 10vw;
        bottom: 24px;
    }
    
    /*推し活イラスト*/
    #willtra .pc-oshi-kirakira-wrap.-four .pc-oshi-kirakira.-two {
        left: calc(50% - 180px);
        top: 14vh;
    }
    #willtra .pc-oshi-kirakira-wrap.-four .pc-oshi-kirakira.-two {
        left: calc(50% - 200px);
        top: 21vh;
    }
}

@media (min-width: 1360px) {
    /*推し活*/
    #willtra .pc-oshi-item.-uchiwa {
        bottom: 30vh;
    }
}

@media (min-width: 1560px) {
    /*推し活*/
    #willtra .pc-oshi-item.-uchiwa {
        bottom: 36vh;
    }
}

/*プレミア会員用
-----------------------------------------------*/
/*anker nav
--------------------------*/
#willtra-premier .ancker-nav {
    height: 30vw;
}

@media (min-width: 501px) {
    #willtra-premier　.ancker-nav {
        height: 150px;
    }
}

@media (min-width: 1024px) {
    #willtra-premier .ancker-nav {
        height: 140px;
    }
}

/* Coupon
----------------------------------------*/
@media (min-width: 501px) {
    #willtra-premier .coupon-area {
        padding-bottom: 30px;
    }
}


/* PC gnav
---------------------------------------------*/
@media (min-width: 1100px) {
    #willtra-premier .wrapper .pc-nav-item:nth-child(3) .en {
        max-width: 24%;
    }
}

/*　PC　Background
------------------------------------------------------*/

@media (min-width: 1360px) {
    
    /*推し活イラスト*/
    #willtra-premier .pc-oshi-item.-uchiwa {
        bottom: 37vh;
    }
    
    /*キラキラ*/
    #willtra-premier .pc-oshi-kirakira-wrap.-four .pc-oshi-kirakira.-one {
        top: 21vh;
        left: calc(50% - 190px);
    }
    #willtra-premier .pc-oshi-kirakira-wrap.-four .pc-oshi-kirakira.-two {
        top: 24vh;
        left: calc(50% - 212px);
    }
}

@media (min-width: 1560px) {
        
    /*area
    ----------------------*/
    #willtra-premier .pc-object-item.-hiroshima {
        left: calc(50% - 660px);
    }
}
