body{
    font-size: 1.4375rem;
}

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

.sp{display: block;}
.pc{display: none;}
@media only screen and (min-width:768px){
    .sp{display: none;}
    .pc{display: block !important;}
}


/* フェードイン(初期値) */
.js-fadeIn {
    opacity: 0; /* 最初は非表示 */
    transform: translateY(30px); /* 下に30pxの位置から */
    transition: opacity .8s, transform .8s; /* 透過率と縦方向の移動を0.8秒 */
  }
  /* フェードイン(スクロールした後) */
  .js-fadeIn.is-inview {
    opacity: 1; /* 表示領域に入ったら表示 */
    transform: translateY(0); /* 30px上に移動する */
    transition-delay: .5s; /* フェード開始を0.5秒遅らせる */
  }

/* フェードライト(初期値) */
.js-fadeRight {
    opacity: 0; /* 最初は非表示 */
    transform: translateX(-30px); /* 横に30pxの位置から */
    transition: opacity .8s, transform .8s; /* 透過率と縦方向の移動を0.8秒 */
}
/* フェードイン(スクロールした後) */
.js-fadeRight.is-inview {
    opacity: 1; /* 表示領域に入ったら表示 */
    transform: translateX(0); /* 30px上に移動する */
    transition-delay: .5s; /* フェード開始を0.5秒遅らせる */
}
h1{
    font-size: 2.375rem;
}
h2{
    font-size: 2rem;
}
h3{
    font-size: 1.6875rem;
}
span.hl{
    /*font-size: 2.5625rem;*/
    font-size: 3.5625rem;
}
span.note{
    font-size: 1.2rem;
    line-height: 1.5;
}
span.yen-size{
    font-size: 1.2rem;
}
span.tax-size{
    font-size: 1.125rem;
}

/*ご予約はこちら*/
a.reserve {
	display: block;
    justify-content: space-between;
    align-items: center;
	text-align: center;
	text-decoration: none;
	width: 300px;
	margin: 1em auto 0px;
	padding: 1rem 4rem;
	background: #c83c28;
	border-radius: 5px;
	position: relative;
	transition: 0.5s;
    color: #fff;
}
a.reserve::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0em;
	transform: translateY(-50%);
	width: 30px;
	height: 1px;
	background-color: #fff;
    transition: 0.5s;
}
a.reserve:hover::after {
    right: -1em;
}

/*マイページ*/
a.mypage,
a.shop,
a.password {
	display: block;
    justify-content: space-between;
    align-items: center;
	text-align: center;
	text-decoration: none;
	width: 200px;
	margin: 1.5em auto 0px;
	padding: 1rem 4rem;
	background: #fff3a0;
	border-radius: 5px;
	position: relative;
	transition: 0.5s;
}
a.mypage::after,
a.shop::after,
a.password::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0em;
	transform: translateY(-50%);
	width: 30px;
	height: 1px;
	background-color: #beb1a0;
    transition: 0.5s;
}
a.mypage:hover::after,
a.shop:hover::after,
a.password:hover::after  {
    right: -1em;
}


.mv::before{
    content: '';
    background-color: #333;
}

.head{
    max-width: calc(100% - 40px);
    margin: 0 auto;
}
.head p{
    margin: 3em auto;
}
.head img{
    margin: 0 auto;
    -webkit-backface-visibility: hidden;
    height: 8%;
    max-width: 430px;
}

.head img:not(:last-child){
    margin-bottom: 3em;
}

.course-area{
    position: relative;
    margin-top: 0em;
    padding: 11em 0 5em;
    background: url(../images/mag/lp2601_happybag/bg-01sp.jpg) no-repeat top center / cover;
}
.course-area::before{
    content: '';
    background-color: rgb(51 51 51 / 70%);
    position: absolute;
    top: 2%;
    z-index: 1;
    width: 100%;
    height: 98%;
}
.course-area::after {
    content: '販売期間は終了しました';
    color: #fff;
    font-size: 1.8rem;
    letter-spacing: 1px;
    top: 45%;
    position: absolute;
    left: 50%;
    z-index: 2;
    transform: translateX(-50%);
}
.course-area .course-head{
    margin-bottom: 6em;
}
.course-area .course-head .ribbon-img{
    margin: 0 auto;
    padding: 0 40px;
}
.course-area .course-head h2{
    color: #c83c28;
    text-align: center;
    margin: 1em 0 ;
    letter-spacing: 1px;
    line-height: 1.5;
    font-family: "Noto Serif JP", serif, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝";
    font-size: 3.5625rem;
}
.course-area .course-head ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1em 0.5em;
    margin-bottom: 1em;
}
.course-area .course-head ul:nth-child(1){
    margin-bottom: 1em;
}
@media only screen and (min-width:500px){
    .course-area .course-head ul{
        max-width: 700px;
        margin: 0 auto;
        gap: 1em 1.5em;
    }
}
.course-area .course-head ul li{
    width: 85%;
}
@media only screen and (min-width:768px){
    .course-area .course-head ul:nth-child(1) li{
        width: calc((100%/ 2) - 2em);
    }
    .course-area .course-head ul li{
    width: 96%;
}
}
.course-area .course-head ul li img{
    width: 100%;
}

/*コース*/
.course-area .m-course{
    margin: 0em auto 4.5em;
    padding: 0em 1.5em 2em 1.5em;
    width: calc(100% - 40px);
    background-color: #fff;
    border-radius: 5px;
}

.course-area .m-course:nth-child(1){
    border: 1px solid #3eadc5;
}
.course-area .m-course:nth-child(2){
    border: 1px solid #304675;
}
.course-area .m-course:nth-child(3){
    border: 1px solid #C2584A;
}
.course-area .m-course:nth-child(4){
    border: 1px solid #D4B987;
}

.course-area .m-course:last-child{
    margin-bottom: 0;
}
.course-area .m-course .course-h{
    position: relative;
    top: -2em;
}
.course-area .m-course .course-h img{
    width: 98%;
    max-width: 400px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.course-area .m-course .course-h span.txt{
    font-size: 1.6875rem;
}

.course-area .m-course .menu{
    margin-top: -1em;
    padding: 3em 0 0 0;
}
.course-area .m-course .menu p.normal-price{
    text-align: center;
    font-weight: 600;
    margin-top: 3em;
}
.course-area .course-wrap .m-course:nth-of-type(1) .menu p.normal-price{
    color: #3eadc5;
}
.course-area .course-wrap .m-course:nth-of-type(2) .menu p.normal-price{
    color: #304675;
}
.course-area .course-wrap .m-course:nth-of-type(3) .menu p.normal-price{
    color: #c83c28;
    padding: 0em 0 0 0;
}
.course-area .course-wrap .m-course:nth-of-type(4) .menu p.normal-price{
    color: #d4b987;
    padding: 0em 0 0 0;
}

.course-area .course-wrap .m-course .menu ul{
    list-style: none;
    margin: 1em 0 1em;
}
.course-area .course-wrap .m-course .menu ul > li{
    position: relative;
    padding-left: 13px;
}
.course-area .course-wrap .m-course .menu ul > li::before {
    position: absolute;
    top: 1.1em;
    left: 0px;
    transform: translateY(-75%) rotate(45deg);
    width: 0.4em;
    height: 0.7em;
    content: "";
}
.course-area .course-wrap .m-course:nth-of-type(1) .menu ul > li::before {
    border-bottom: 1px solid #3eadc5;
    border-right: 1px solid #3eadc5;
}
.course-area .course-wrap .m-course:nth-of-type(2) .menu ul > li::before {
    border-bottom: 1px solid #304675;
    border-right: 1px solid #304675;
}
.course-area .course-wrap .m-course:nth-of-type(3) .menu ul > li::before {
    border-bottom: 1px solid #c83c28;
    border-right: 1px solid #c83c28;
}
.course-area .course-wrap .m-course:nth-of-type(4) .menu ul > li::before {
    border-bottom: 1px solid #d4b987;
    border-right: 1px solid #d4b987;
}
.course-area .course-wrap .m-course .menu ul > li + li {
    margin: 3px 0px 0px;
}
.course-area .course-wrap .m-course .menu ul li > ul {
    margin-top: 0;
}
.course-area .course-wrap .m-course .menu ul > li.album{
    padding-left: 0;
}
.course-area .course-wrap .m-course .menu ul > li.album::before{
    border: unset;
}

.course-area .course-wrap .m-course .menu p.option{
    display: inline-block;
    font-size: 1.2rem;
    margin-bottom: 1em;
    line-height: 1.8;
    padding: 1em;
    background-color: #f3f1ec;
}
.course-area .course-wrap .m-course .menu span.note{
    display: block;
}
.course-area .course-wrap .m-course .menu a{
    border-bottom: 1px dotted #333;
    padding-bottom: 2px;
    margin-right: 0.5em;
}

.off__area{
    text-align: center;
    max-width: 500px;
    width: 92%;
    margin: 2em auto 0;
    padding: 2em 0;
}
.off__area h3{
    font-size: 1.6rem;
    margin-bottom: 2em;

    position: relative;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #333;
}
.off__area h3::before{
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) skew(-25deg);
    height: 15px;
    width: 10px;
    border-right: 1px solid #333;
    background-color: #fff;
    content: "";
}
.off__area h3 span{
    color: #c83c28;
}
.off__area img{
    margin: 0 auto;
}
.off__area .item-btn{
    display: block;
    margin-top: 1em;
    position: relative;
}
.off__area .item-btn span{
    position: absolute;
    top: 25%;
    margin-left: 10px;
    width: 10px;
    height: 10px;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    transform: rotate(135deg);
}


/*写真*/
.photo-image{
    width: 100%;
    max-width: 800px;
    margin: 5em auto 2em;
}

.flow-head{
    padding-bottom: 3em;
}

/*期間*/
.flow{
    padding: 1em 0 2em;
    margin: 0 auto;
    background: url(../images/mag/lp2401_happybag/bg-01.jpg) no-repeat top center / cover;
}

.flow h2{
    font-size: 3rem;
}

.flow h3{
    line-height: 1.5;
    text-align: center;
    margin: 3em 0 1em;
}
.flow ul.reserveFlow-btn{
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    column-gap: 5px;
    margin-bottom: 5em;
}
.flow ul.reserveFlow-btn li{
    position: relative;
    background-color: #ddb728;
    border-radius: 5px;
    color: #fff;
    width: 33%;
}
.reserveFlow-btn li a{
    display: block;
    width: 100%;
    padding: 5px 12px;
}
.flow ul.reserveFlow-btn li a::after{
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    top: 50%;
    right: 13px;
    transform: translateY(-50%);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 7px solid #fff;
}
.flow ul.reserveFlow-btn li a:hover::after{
    top: 52%;
}
.flow .web-reserveFlow img{
    margin: 0 auto;
}
.flow h2{
    font-family: "Noto Serif JP", serif, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝";
    margin-top: 2em;
    text-align: center;
    line-height: 1.5;
}
.flow h2 span.reserve{
    color: #c83c28;
}
.flow .column{
    position: relative;
    background-color: #fff;
    border-radius: 5px;
    padding: 4em 15px 2em;
    margin: 4em 0;
}
.flow .column:nth-of-type(1){
    margin-top: 5em;
}
.flow .column::before{
    position: absolute;
    content: '';
    width: 82px;
    height: 79px;
    top: 0;
    left: 50%;
    transform: translate(-50%,-50%);
}
.flow .column:nth-of-type(1):before{
    background: url(../images/mag/lp2401_happybag/step-01.png) no-repeat top center / contain;
}
.flow .column:nth-of-type(2):before{
    background: url(../images/mag/lp2401_happybag/step-02.png) no-repeat top center / contain;
}
.flow .column:nth-of-type(3):before{
    background: url(../images/mag/lp2401_happybag/step-03.png) no-repeat top center / contain;
}
.flow .column:nth-of-type(4):before{
    background: url(../images/mag/lp2401_happybag/step-04.png) no-repeat top center / contain;
}
.flow .column:nth-of-type(5):before{
    background: url(../images/mag/lp2401_happybag/step-05.png) no-repeat top center / contain;
}
.flow .column:nth-of-type(6):before{
    background: url(../images/mag/lp2401_happybag/step-06.png) no-repeat top center / contain;
}

.flow .column .reserve{
    width: 200px;
    margin-top: 1.5em;
}
.flow .column .shop{
    width: 200px;
    margin-top: 1.5em;
}
.flow .column img{
    width: 100%;
    max-width: 400px;
    margin: 1.5em auto 0;
    image-rendering: -webkit-optimize-contrast;
}
.flow .web-reserveFlow .column:nth-child(3) img{
    width: 100px;
}
.flow .web-reserveFlow .column:nth-child(5) img,
.flow .tel-reserveFlow .column:nth-child(3) img,
.flow .counter-reserveFlow .column:nth-child(3) img{
    width: 100%;
}
.flow .column span.note{
    display: block;
    margin-top: 1em;
}
.flow .web-reserveFlow .column .c-title{
    display: inline-block;
    border-bottom: 1px solid #c83c28;
    margin-top: 1.5em;
}

.l-inner.item-area{
    margin: 5em 0;
}
h2.c-ttl__line{
    margin-bottom: 2em;
}
.c-list-plan{
    width: calc(100% - 40px);
    margin: 2em auto 0;
}
.c-list-plan__item:last-of-type{
    border-bottom: 1px solid #333;
}

/*キャンペーンバナー*/
.cam-area{
    padding: 3em 0 4em;
    background-color: #fcfbf7;
}
.cam-bnr{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 20px;
    width: 92%;
    margin: 2em auto 0em;
}

/*詳細*/
.detail-area{
    margin: 0 auto;
    padding: 5em 0 ;
    background: url(../images/mag/lp2401_happybag/bg-02.jpg) no-repeat top center / cover;
}

.detail-area .table {
    width: calc(100% - 40px);
    display: table;
    border-collapse: collapse;
    margin: 0 auto;
    font-size: 1.2rem;
}
.detail-area .table .tr {
    display: table-row;
}
.detail-area .table .th,
.detail-area .table .td {
    display: table-cell;
    border: 1px solid #333;
    padding: 10px;
}
.detail-area .table .th{
    width: 150px;
    padding: 10px 10px 5px 10px;
}
.detail-area .table .td{
    width: 420px;
    padding: 10px 10px 10px 10px;
}

/*リミテーションスタジオ*/
.limitation-studio{
    padding: 5em 0 ;
    background-color: #fff8fb;
    letter-spacing: 1px;
}
.limitation-studio h2{
    text-align: center;
    line-height: 1.5;
    letter-spacing: 2px;
}
.limitation-studio h2 .hl{
    color: #ff79b8;
}
.limitation-studio img.limit-period{
    width: 70%;
}
.limitation-studio img{
    margin: 3em auto;
    width: 90%;
}
.limitation-studio .theme{
    text-align: center;
}
.limitation-studio .theme h2{
    font-family: Ovo, serif;
    color: #ff78b8;
    font-size: 2.375rem;
    margin: 1em 0 0;
    line-height: 1;
}
.limitation-studio .theme h2:nth-of-type(2){
    margin-top: 0.5em;
}
.limitation-studio .theme p.txt{
    font-size: 1.4375rem;
    margin: 2em 0 1px;
    line-height: 2;
    text-align: left;
    display: inline-block;
}
.limitation-studio .reserve{
    margin-top: 3em;
}
.limitation-studio .reserve::after{
    width: 50px;
}
a.check{
	display: block;
    justify-content: space-between;
    align-items: center;
	text-align: center;
	text-decoration: none;
	width: 300px;
	margin: 1.5em auto 0px;
	padding: 1rem 4rem;
	background: #fff3a0;
	border-radius: 5px;
	position: relative;
	transition: 0.5s;
}
a.check::after{
	position: absolute;
    content: '';
    width: 0;
    height: 0;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 10px solid #333;
    transition: .2s;
}
a.check:hover::after{
    top: 46%;
}

/*トップページへ*/
a.toppage {
	display: block;
    justify-content: space-between;
    align-items: center;
	text-align: center;
	text-decoration: none;
	width: 300px;
	margin: 20px auto 0px;
	padding: 1rem 4rem;
    border: 1px solid #beb1a0;
	border-radius: 10px;
	position: relative;
	transition: 0.5s;
}
a.toppage::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0em;
	transform: translateY(-50%);
	width: 50px;
	height: 1px;
	background-color: #beb1a0;
    transition: 0.5s;
}
a.toppage:hover::before {
    left: -1em;
}


@media only screen and (min-width:768px){
    h1{
        font-size: 2.375rem;
    }
    h2{
        font-size: 2.875rem;
    }
    h3{
        font-size: 2.375rem;
    }
    span.hl{
        font-size: 3.3125rem;
    }
    .head .txt{
        width: 500px;
        margin: 0 auto;
    }

    .course-area{
        background: url(../images/mag/lp2601_happybag/bg-01.jpg) no-repeat top center / cover;
    }

    .course-area .m-course {
        margin: 4em auto 0;
        padding: 1em 1.5em 2em 2.5em;
        background-color: #fff;
        width: 800px;
    }
    .course-area .course-head span.note {
        display: none;
    }

    .course-area .m-course .menu p.normal-price {
        text-align: left;
        margin-top: 6%;
    }
    .course-area .course-wrap .m-course .menu ul {
        margin: 2em 0 1em;
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        flex-direction: row;
    }
    .course-area .course-wrap .m-course .menu ul li{
        width: 50%;
    }

    .course-area .course-wrap .m-course .menu ul li > ul{
        margin: 0;
        display: block;
    }
    .course-area .course-wrap .m-course .menu ul li > ul li{
        width: auto;
    }
    .course-area .course-wrap .m-course .menu ul li > ul > li + li{
        margin: 0;
    }

    .course-area .m-course .course-h img{
        width: 100%;
        left: 21%;
    }

    .flow {
        background: url(../images/mag/lp2401_happybag/bg-03.jpg) no-repeat top center / cover;
    }

    .flow .period {
        display: block;
        justify-content: center;
        column-gap: 20px;
        width: 75%;
        max-width: 500px;
        margin: 0 auto;
    }
    .flow .period::before{
        content: unset;
    }
    .flow .period .payment {
        border: none;
        padding: 0;
        margin: 0 auto 2em;
    }

    .flow ul.reserveFlow-btn {
        width: 80%;
        margin: 0 auto 5em;
        column-gap: 20px;
    }
    .reserveFlow-btn li a{
        padding: 5px 20px;
        font-size: 1.6875rem;
    }
    .flow img.ribbon-img{
        margin: 0 auto;
    }
    .flow h2 {
        margin-top: 1em;
    }

    .flow .flow-wrap{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: stretch;
        margin-top: 3em;
        column-gap: 1.5em;
    }
    .flow .column {
        margin: 2em 0;
        width: calc(100% / 2 - 20px);
        display: flex;
        flex-direction: column;
    }

    .flow .column:nth-of-type(1){
        margin: 2em 0;
    }
    .flow .web-reserveFlow .column:nth-of-type(6) img{
        width: 90%;
        margin-top: auto;
    }
    .flow .tel-reserveFlow .column:nth-of-type(4) img{
        width: 90%;
        margin-top: auto;
    }
    .flow .tel-reserveFlow,
    .flow .counter-reserveFlow{
        margin-top: 5em;
    }
    .flow .counter-reserveFlow .column{
        margin: 2em 0 1.5em;
    }
    .web-flow .column:nth-of-type(5),
    .tel-reserveFlow .column:nth-of-type(3),
    .counter-reserveFlow .column:nth-of-type(3){
        width: 93%;
        margin: 0 10px 0 auto;
        padding: 2em 0 2em 5em;
    }
    .flow .web-flow .column:nth-of-type(5):before,
    .flow .tel-reserveFlow .column:nth-of-type(3):before,
    .flow .counter-reserveFlow .column:nth-of-type(3):before {
        top: 50%;
        left: 0%;
        transform: translate(-50%,-50%);
    }
    .web-flow .column:nth-of-type(5) img,
    .tel-reserveFlow .column:nth-of-type(3) img,
    .counter-reserveFlow .column:nth-of-type(3) img{
        display: none !important;
    }

    /*商品*/
    .c-list-plan {
        width: calc(100% - 60px);
    }
    .c-list-plan__wrap{
        display: flex;
        justify-content: space-between;
    }
    .c-list-plan__article{
        justify-content: flex-start;
        column-gap: 20px;
    }
    .c-list-plan__article__img + .c-txt-sub{
        width: 59%;
    }
    .c-txt-sub {
        font-size: 1.4375rem;
        letter-spacing: 0;
    }
    .c-list-plan__info__desc {
        font-size: 1.2rem;
    }

    /*キャンペーンバナー*/
    .cam-bnr{
        flex-wrap: nowrap;
        flex-direction: row;
        gap: 20px;
    }
    .cam-bnr > div{
        width: 50%;
    }

    /*詳細*/
    .detail-area .table {
        width: calc(100% - 60px);
        font-size: 1.5rem;
    }
    .limitation-studio img.limit-period{
        width: 60%;
    }

    .limitation-studio .theme h2 {
        font-size: 2.875rem;
    }
    
    .limitation-studio .theme p.txt{
        width: 500px;
        margin: 2em auto 0;
        text-align: center;
    }

}

@media only screen and (min-width:961px){
    .course-area .m-course .course-h img{
        left: 14%;
    }

}

@media only screen and (min-width:1000px){
    .l-content{
        width: 1000px;
        margin: 6em auto 0;
    }
    .inner {
        max-width: calc(100% - 60px);
    }
    .head img {
        height: 10%;
        max-height: 100px;
    }

    .course-area .course-wrap .m-course:nth-of-type(odd) {
        margin: 4em 0 2em 7em;
        width: calc(100% - 20em);
    }
    .course-area .course-wrap .m-course:nth-of-type(even) {
        margin: 4em 0em 2em 13em;
        width: calc(100% - 20em);
    }

    .photo-image {
        margin: 5em auto;
        width: calc(90% - 60px);
    }
    .photo-image img{
        width: 100%;
    }
    .flow .period {
        width: calc(60% - 33px);
    }
    .flow ul.reserveFlow-btn {
        width: 60%;
    }
    .reserveFlow-btn li a{
        padding: 9px 25px;
    }
    .flow ul.reserveFlow-btn li::after{
        top: 50%;
        right: 25px;
        transform: translateY(-50%);
    }

    .flow .column {
        margin: 2em 0;
        width: calc(100% / 3 - 20px);
    }

    .flow .tel-reserveFlow .column:nth-of-type(4){
        width: 94%;
        margin: 0 10px 0 auto;
        padding: 2em 0 2em 5em;
    }
    .flow .tel-reserveFlow .column:nth-of-type(4):before {
        top: 50%;
        left: 0%;
        transform: translate(-50%,-50%);
    }
    .flow .tel-reserveFlow .column:nth-of-type(4) img{
        display: none !important;
    }
    .flow .flow-wrap:nth-of-type(3){
        flex-wrap: nowrap;
    }
    .web-flow .column:nth-of-type(5),
    .tel-reserveFlow .column:nth-of-type(3),
    .counter-reserveFlow .column:nth-of-type(3){
        width: calc(100% / 3 - 20px);
        margin: 2em 0 1.5em;
        padding: 4em 15px 2em;
    }
    .flow .web-flow .column:nth-of-type(5):before,
    .flow .tel-reserveFlow .column:nth-of-type(3):before,
    .flow .counter-reserveFlow .column:nth-of-type(3):before {
        top: 0%;
        left: 50%;
        transform: translate(-50%,-50%);
    }
    .web-flow .column:nth-of-type(5) img.pc,
    .tel-reserveFlow .column:nth-of-type(3) img.pc,
    .counter-reserveFlow .column:nth-of-type(3) img.pc{
        display: block !important;
    }

    .c-list-plan__item:nth-last-child(2) {
        border-bottom: 1px solid #333;
    }

    .detail-area .table {
        width: calc(100% - 15em);
    }
    .detail-area .table .th {
        width: 17%;
        padding: 10px 20px;
    }
    .detail-area .table .td {
        width: 85%;
        padding: 10px 20px;
    }

    .limitation-studio img.limit-period {
        width: 50%;
    }
}