:root {
    --primary: #e0340d;
    --primaryDirect: #007bc7;
    --primaryDensai: #f29100;
    --primaryGaitame: #432b8c;
    --secondary: #94252a;
    --secondaryDirect: #0b318f;
    --secondaryDensai: #eb6120;
    --secondaryGaitame: #a64a97;
    --choco: #40220F;
    --crimson: #C11920;
    --tertiary: #ffeded;
    --company: #3157b8;
    --txtColor: #000;
    --txtLink: #009de0;
    --borderColor: #bfc9cd;
    --borderColorSecondary: #b6b6b5;
    --bgColor: #fff;
    --bgColorSecondary: #f2f1ee;
    --bgColorTertiary: #f5f5f5;
    --bgColorTh: #e0ded6;
    --bgColorThSub: #f2f1ee;
    --gradient: #e7380d 0%, #94252a 100%;
    --gradientCorporate: #3157b8 0%, #122f79 100%;
    --gradientDirect: #007bc7 0%, #0b318f 100%;
    --gradientDensai: #eb6120 0%, #f29100 100%;
    --gradientGaitame: #a64a97 0%, #432b8c 100%;
    --white: #fff;
    --black: #333;
    --gray: #b6b6b5;
    --fontFamily: "Noto Sans JP", "ヒラギノ角 Pro W3", "Hiragino Kaku Pro W3", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    --fontFamilyEn: "Roboto", sans-serif;
    --fontFamilySecond: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    --txtSizeSp: 1.4rem;
    --txtSizePc: 1.6rem;
    --lineHeight: 1.75;
    --lineHeightTitle: 1.5;
    --letterSpacing: 0.01em;
    --fixedWidth: 1160px;
    --fixedWidthLarge: 1366px;
    --fixedWidthSmall: 375px;
    --fixedWidthSmallInside: 345px;
    --zIndexLv0: 0;
    --zIndexLv1: 1;
    --zIndexLv2: 10;
    --zIndexLv3: 100;
    --zIndexLv4: 1000;
    --zIndexLv5: 10000;
    --breakTabLength: 768;
    --breakPcLength: 1025;
    --breakPcLength1235: 1235
}

/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}


/* custome css  */
.bg-content {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
    height: 100vh;
    background: url(../../assets/images/project/bg_content.png) center 0 / cover no-repeat;
}
.page2 .bg-content {
    background: url(../../assets/images/project/bg_content_02.png) center 0 / cover no-repeat;
}

[data-content-fixed] {
    box-sizing: content-box;
    max-width: var(--fixedWidthSmall);
    padding-inline: 0;
    margin-inline: auto;
    padding-block: 0;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.kv-01 {
    background-color: #FFFCDE;
    padding-bottom: 56px;
}

.kv-01 h2 {
    margin: -47px auto 20px;
}  

.l-content h2 {
    color: var(--white);
    width: var(--fixedWidthSmallInside); 
    background-color: var(--primary);
    border-radius: 30px;
    font-size: 24px;
    font-weight: bold;
    line-height: 48px;
    text-align: center;
    position: relative;
}

.l-content h2::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0; 
    height: 0; 
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 10px solid var(--primary);
}

.kv-01 >p {
    font-size: 22px;
    font-weight: bold;
    line-height: 36px;
    text-align: center;
}

.kv-01 p.desc {
    margin-bottom: 13px;
}

.kv-01 p.note {
    width: 183px;
    background-color: #FFEF24;
    color: var(--primary);
    margin: 0 auto 27px;
}
.condition__list {
    padding: 0 16px;
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
}

.condition__label {
   line-height: 22px;
   color: var(--primary);
   font-weight: bold;
   width: fit-content;
   margin: 0 auto 11px;
   position: relative;
}
.condition__label::before {
    content: "";
    position: absolute;
    width: 7px;
    height: 14px;
    bottom: 2px;
    left: -15.5px;
    background: url(../../assets/images/i_slash_l.svg) no-repeat;
    background-size: 100%;
}

.condition__label::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 14px;
    bottom: 2px;
    right: -15.5px;
    background: url(../../assets/images/i_slash_r.svg) no-repeat;
    background-size: 100%;
}

.condition__info {
    border: solid 1.5px var(--primary);
    border-radius: 11px;
    box-shadow: var(--primary) 1.95px 1.95px 2.6px;
    padding-bottom: 15px;
    background-color: var(--white);
}

.condition__info .ttl {
    margin-bottom: 15px;
}

.condition__item {
    transform: translateY(30px);
    opacity: 0;
    transition: all 1s ease-in-out;
}

.condition__item.fade-in {
    transform: translateY(0);
    opacity: 1;
}

.condition__item:nth-child(2) .condition__info .ttl {
    margin-bottom: 1px;
}

.condition__info p {
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
    color: var(--primary);
    text-align: center;
    margin-bottom: 23px;
}
.condition__item:nth-child(2) .condition__info p {
    margin-bottom: 12px;
}
.condition__info p.hasBgColor {
    background-color: #FFF9B1;
    color: var(--black);
    margin: 0 9px 8px;
    padding: 10px 0 8px;
}
.condition__item:nth-child(2) .condition__info p.hasBgColor {
    margin-bottom: 11px;
}
.condition__info p span {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.condition__info a {
    margin: 0 11px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    line-height: 24.5px;
    border-bottom: solid 1px #B6B6B5;
    padding-bottom: 9px;
}

.condition__info a span {
    display: flex;
    align-items: center;
}

.kv-01 h3 {
    margin: 0 auto 38px;
    position: relative;
    padding: 0 10px 4px;
    letter-spacing: -3.5px;
}

.l-content h3 {
    width: fit-content;
    border-bottom: solid 2px var(--primary);
    font-size: 22px;
    line-height: 32px;
    font-weight: bold;
    padding: 0 16px 4px;
}

h2.reduceTitle {
    width: fit-content;
    border-bottom: solid 2px var(--primary);
    font-size: 22px;
    line-height: 32px;
    font-weight: bold;
    background-color: transparent;
    color: var(--black);
    border-radius: 0;
    padding: 0 16px 4px;
}

h2.reduceTitle span {
    font-size: 26px;
}

h2.reduceTitle::after {
    content: none;
}

.kv-01 h3::before {
    content: "";
    position: absolute;
    background: url(../../assets/images/project/img_object_01.png) no-repeat;
    background-size: 100%;
    width: 91px;
    height: 88px;
    top: -19px;
    left: -91px;
}

.kv-01 h3::after {
    content: "";
    position: absolute;
    background: url(../../assets/images/project/img_object_02.png) no-repeat;
    background-size: 100%;
    width: 58px;
    height: 94px;
    top: -20px;
    right: -77px;
}

.kv-01 ul {
    padding: 0 15px;
}

.kv-01 ul li {
    font-size: 14px;
    line-height: 24px;
    display: flex;
    align-items: flex-start;
}

.kv-01 ul li span {
    color: var(--primary);
    font-size: 12px;
}

.kv-01 ul li.note {
    font-size: 12px;
    line-height: 21px;
}

.kv-02 {
    background: var(--white);
    padding: 34px 0 67px;
    position: relative;
}

.bgBottom::after {
    content: "";
    width: 100%;
    height: 88px;
    background: url(../../assets/images/project/img_object_03.png) no-repeat;
    background-size: 100%;
    bottom: -18px;
    left: 0;
    position: absolute;
    z-index: 3;
}

.kv-02 h2 {
    line-height: 41px;
    margin: 0 auto;
    padding-bottom: 4px;
    margin-bottom: 27px;
}

.kv-02 p.desc {
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    margin-bottom: -5px;
}

.kv-02 .img-contain {
    width: 357px;
    margin-left: 8px;
    margin-bottom: 1px;
}

.kv-02 h3 {
    margin: 0 auto 30px;
}

.kv-02 .slick-slide {
    margin: 0 11px;
}

.kv-03 {
    background-color: #FFFCDE;
    padding: 21px 0 65px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.kv-03 h2 {
    margin: 0 0 17px;
}
.kv-03 .img-contain {
    width: var(--fixedWidthSmallInside);
    margin-bottom: 17px;
}
.kv-com p.desc {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.kv-com p span {
    color: var(--primary);
}

.kv-com p.desc span{
    font-size: 22px;
    font-weight: bold;
}

.kv-com p.desc span.none-upsize {
    font-size: 14px;
    font-weight: normal;
}

.kv-com p.guide {
    font-size: 16px;
    line-height: 28px;
    font-weight: 500;
    margin-bottom: 14px;
    text-align: center;
}
.kv-03 .video-contain {
    width: 311px;
    margin-bottom: 34px;
}

.kv-03 .kv3-slick {
    width: 100%;
    margin-bottom: 25px;
}

.kv-03 .slick-slide {
    width: var(--fixedWidthSmall);
    height: 300px;
    padding: 0 15px;
    margin-bottom: 15px;
}

.kv-03 .kv3-step {
    height: 100%;
    padding: 20px 0 20px 17px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.15) 3px 3px 10px;
}

.kv-03 .kv3-step .ttl {
    font-size: 24px;
    line-height: 33px;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 25px;
}



.kv-03 .kv3-step .ttl span {
    font-size: 18px;
    font-weight: bold;
    line-height: 44px;
}

.kv-03 .kv3-step .ttl.special {
    width: 315px;
    background-color: var(--tertiary);
    color: var(--primary);
    margin-bottom: 20px;
}

.kv-03 .kv3-step .step-content {
    display: flex;
    align-items: center;
}

.kv-03 .kv3-step p.desc {
    margin-bottom: 26px;
    width: 152px;
    font-size: 16px;
    text-align: left;
}

.kv-03 .kv3-step p,
.kv-03 .kv3-step p span{
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    text-align: center;
}

.kv-03 .kv3-step p.desc span {
    font-size: 18px;
    font-weight: bold;
    line-height: 24px;
    color: #707070;
    display: inline-block;
    text-align: left;
    margin-bottom: 14px;
}

.kv-03 .step-image {
    width: 148px;
}

.kv-03 .custome-dots {
    display: flex;
    flex-direction: row-reverse;
}
.kv-03 .custome-dots .slick-dots {
    display: flex;
    align-items: center;
    gap: 10px;
}
.kv-03 .custome-dots .slick-dots li {
    line-height: 0;
}
.kv-03 .custome-dots .slick-dots button {
    font-size: 0;
    padding: 0;
    border: none;
    width: 16px;
    height: 16px;
    background-color: var(--borderColorSecondary);
    border-radius: 50%;
}

.kv-03 .custome-dots .slick-dots .slick-active button {
    background-color: var(--primary);
}

.kv-03 .custome-dots .control-autoPlay {
    width: 16px;
    height: 20px;
    padding: 0;
    border: none;
    background: transparent;
    position: relative;
    margin-left: 10px;
    background: url(../../assets/images/i_stop.svg) no-repeat;
    background-size: 100% 100%;
}


.kv-03 .custome-dots .control-autoPlay.isPause {
    background: url(../../assets/images/i_play.svg) no-repeat;
    background-size: 100% 100%;
}




.kv-03 .slick-arrow {
    position: absolute;
    bottom: -50px;
    border: 0;
    background: url(../../assets/images/i_arrow_circle.svg) no-repeat;
    width: 30px;
    height: 30px;
    background-size: 100%;
    font-size: 0;
}

.kv-03 .slick-arrow.slick-next {
    right: 14px;
    transform: rotate(180deg);
}

.kv-03 .slick-arrow.slick-prev {
    left: 14px;
}

.kv-04 {
    background-color: var(--white);
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 27px 15px 68px;
    position: relative;
}

.kv-04 h2 {
    margin-bottom: 14px;
}

.kv-04 .img-contain {
    width: var(--fixedWidthSmallInside);
    margin-bottom: 12px;
}

.kv-04 p.desc {
    line-height: 29px;
    margin-bottom: 8px;
}

.kv-04 p.note {
    font-size: 12px;
    line-height: 21px;
    margin-bottom: 28px;
}

.c-tabs {
    width: 100%;
}

.c-tabs .c-tabs_nav{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.c-tabs .c-tabs_nav button {
    background-color: var(--white);
    border: solid 1px #B6B6B5;
    border-radius: 16px 16px 0 0;
    width: 170.5px;
    height: 69px;
    border-bottom: none;
    font-size: 14px;
    font-weight: bold;
    line-height: 24px;
    color: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
}

.c-tabs .c-tabs_nav button.is-checked {
    background-color: var(--primary);
    color: var(--white);
}

.c-tabs_panels .c-tabs_panel.is-checked {
    display: block;
}

.c-tabs_panels .c-tabs_panel {
    display: none;
}

.c-tabs_panels {
    box-shadow: rgba(0, 0, 0, 0.15) 0 2px 10px;
    border-top: solid 1px var(--primary);
    padding: 7px 23px 36px;
}

.c-tabs_panels ul {
    margin-bottom: 17px;
}

.c-tabs_panels ul li {
    display: flex;
    align-items: center;
    padding: 13px 0 11px;
    border-bottom: 1px solid var(--primary);
    position: relative;
}

.c-tabs_panels ul li:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0; 
    height: 0; 
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 10px solid var(--primary);
}

.c-tabs_panels ul li>span {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
}

.c-tabs_panels ul li>span:first-child{
    color: var(--white);
    background-color: var(--primary);
    display: inline-block;
    width: 61px;
    height: 61px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.c-tabs_panels ul li span span {
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
}

.c-tabs_panels ul li:nth-child(2) {
    padding-bottom: 13px;
}

.c-tabs_panels #tab-panel01 ul li:nth-child(3) {
    padding: 13px 0 13px;
}


.c-tabs_panels #tab-panel01 ul li:nth-child(3) span:nth-child(2) {
    margin-top: -19px;
}

.c-tabs_panels ul li span:nth-child(3) {
    position: absolute;
}

.c-tabs_panels #tab-panel01 ul li > span:nth-child(3) {
    width: 51px;
    right: -5px;
    top: 19px;
}

.c-tabs_panels ul li span span {
    padding-left: 10px;
    position: relative;
}
.c-tabs_panels ul li > span > span::before {
    content: "※";
    position: absolute;
    left: 0;
}

.c-tabs_panels #tab-panel02 ul li:nth-child(1) span:nth-child(2) {
    margin-top: -46px;
}

.c-tabs_panels #tab-panel02 ul li > span:nth-child(3) {
    width: 103px;
    right: -14px;
    top: 1px;
}
.c-tabs_panels #tab-panel02 ul li:nth-child(3) {
    padding: 14px 0 12px;
}

.c-tabs_panel p {
    font-size: 14px;
    line-height: 23px;
    color: var(--primary);
    font-weight: bold;
    text-align: center;
    margin-bottom: 16px;
}

.c-tabs_panel a {
    width: 100%;
}

a.btn-blank {
    background-color: var(--primary);
    color: var(--white);
    font-size: 16px;
    line-height: 42px;
    font-weight: bold;
    border-radius: 24px;
    display: inline-block;
    text-align: center;
    position: relative;
    border: solid 1px var(--primary);
}

a.btn-blank::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 16px;
    background: url(../../assets/images/i_arrow_link.svg) no-repeat;
    width: 10px;
    height: 9px;
    background-size: 100%;
    filter: brightness(0) invert(1);
}
a.btn-blank:hover {
    background-color: #fff;
    color: var(--primary) ;
}

a.btn-blank:hover::after {
    filter: invert(28%) sepia(99%) saturate(5275%) hue-rotate(6deg) brightness(96%) contrast(90%);
}


.kv-05 {
    background-color: #FFFCDE;
    padding: 18px 15px 59px;
    position: relative;
}

.kv-05 h2 {
    color: var(--primary);
    background-color: transparent;
    width: 100%;
    border-radius: 0;
    margin-bottom: 9px;
    z-index: 4;
}
.kv-05 h2::after {
    content: "";
    background: url(../../assets/images/project/img_object_01.png) no-repeat;
    background-size: 100%;
    width: 91px;
    height: 88px;
    position: absolute;
    top: -40px;
    right: -58px;
    left:auto;
    border: none;
    z-index:4;
}

.kv-05 h2::before {
    content: "";
    background: url(../../assets/images/project/img_object_06.png) no-repeat;
    background-size: 100%;
    width: 85px;
    height: 88px;
    position: absolute;
    top: -41px;
    left: -8px;
    z-index: 3;
}

/*
.c-accordion {
    width: 100%;
    position: relative;
    z-index: 4;
}

.c-accordion details{
    border-bottom: solid 1px #B6B6B5;
}

.c-accordion .accord-tag{
    font-size: 16px;
    line-height: 28px;
    padding: 16px;
    font-weight: bold;
    background-color: var(--tertiary);
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.c-accordion .c-accordion_item:nth-child(4) .accord-tag {
    padding-bottom: 22px;
}

.c-accordion .accord-tag::marker {
    content: none;
}

.c-accordion .accord-tag span {
    background: url(../../assets/images/i_plus.svg) no-repeat;
    width: 20px;
    height: 20px;
    background-size: 100% 100%;
    flex-shrink: 0;
    margin-left: 8px;
}

.c-accordion .accord-tag.extend span {
    background: url(../../assets/images/i_minus.svg) no-repeat;
    background-size: 100% 100%;
}

.c-accordion .desc {
    background-color: var(--white);
    padding: 18px 16px 25px;
}

.c-accordion .desc p {
    font-size: 14px;
    line-height: 24px;
}

.c-accordion .desc p.note {
    font-size: 12px;
}

.c-accordion .desc ul li span.dot {
    color: var(--primary);
    font-size: 12px;
}

.c-accordion .desc ul li span.index {
    color: var(--primary);
}
.c-accordion .desc ul li span:nth-child(3) {
    padding-left: 15px;
    display: inline-block;
}
*/

.kv-06 {
    padding: 38px 0 60px;
    background-color: var(--tertiary);
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.kv-06::before {
    position: absolute;
    content: "";
    top: -43px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url(../../assets/images/project/img_object_07.png) no-repeat, 
                url(../../assets/images/project/img_object_08.png) no-repeat;
    background-size: 69px 100px, 88px 88px;
    background-position: top left 29px, top 15px right 14px;
    z-index: 4;
}

.kv-06 h2{
    margin-bottom: 37px;
    line-height: 45px;
    position: relative;
    z-index: 5;
}

.download-block {
    width: 100%;
    background-color: var(--primary);
    padding: 56px 14px 67px;
    margin-bottom: 27px;
}

.download-block .dlw-ttl {
    width: 310px;
    margin-bottom: 26px;
}

.qr-contain {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--white);
    border-radius: 14px;
    padding: 13.5px 10px;
    margin-bottom: 14px;
}

.qr-contain p {
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 11px;
}

.qr-contain .qr-item {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 50%;
}

.qr-contain .qr-item:first-child {
    border-right: 1px solid #707070;
}

.qr-contain .qr-item a:nth-child(2) {
    width: 99px;
    margin-bottom: 12px;
}

.qr-contain .qr-item.android a:nth-child(2) {
    width: 121px;
}

.qr-contain .qr-item img {
    width: 108px;
}

.dlw-note {
    display: flex;
    align-items: center;
}
.dlw-note p {
    width: 50%;
    font-size: 12px;
    line-height: 21px;
    color: var(--white);
}

.dlw-note p:last-child {
    padding-left: 8px;
}

.kv-06 h3 {
    margin: 0 auto 33px;
}

.app-func {
    padding: 0 15px;
    margin-bottom: 34px;
}

.app-func-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.app-func-list:first-child {
    margin-bottom: 7px;
}

.app-func-list li span{
    font-size: 14px;
    line-height: 34px;
    background-color: var(--white);
    border: solid 1px #B6B6B5;
    border-radius: 8px;
    width: 94px;
    display: flex;
    justify-content: center;
}

.app-func-list li:last-child span{
    width: 145px;
}

.app-func-list li:nth-child(2) span{
    margin: 0 6px;
}

.kv-06 a {
    width: 345px;
    margin: 0 auto;
    letter-spacing: -1.5px;
    z-index: 4;
}

.kv-07 {
    position: relative;
    background-color: #fffcde;
    padding: 34px 15px 10px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.kv-07::before {
    position: absolute;
    content: "";
    top: -41px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url(../../assets/images/project/img_object_09.png) no-repeat, 
                url(../../assets/images/project/img_object_10.png) no-repeat;
    background-size: 89px 100px, 58px 88px;
    background-position: top left 27px, top 5px right 19px;
    z-index: 4;
}

.kv-07 h2 {
    z-index: 5;
    line-height: 45px;
    margin-bottom: 34px;
}

.content-flexible {
    background-color: var(--white);
    border-top: solid 1px #B6B6B5;
    border-bottom: solid 1px #B6B6B5;
    padding: 19px 15px 25px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.content-flexible .content {
    min-height: 241px;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    margin-bottom: 22px;

}

.content-flexible .content p {
    font-size: 14px;
    line-height: 24.5px;
}
.content-flexible .content p.note {
    font-size: 12px;
}
.content-flexible .content p span.dot {
    color: var(--primary);
}
.content-flexible .content p span.note {
    font-size: 12px;
}

.kv-07 .txt-flexible {
    font-size: 16px;
    line-height: 28px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 6px;
}

.kv-07 .btn-flexible {
    border: none;
    background: transparent;
    padding: 0;
    transform: rotate(-90deg);
    cursor: pointer;
    transition: all 0.3s linear;
}

.kv-07 .btn-flexible.extend {
    transform: rotate(-270deg);
}

.kv-08 {
    background-color: #FFFCDE;
    padding: 18px 15px 44px;
    position: relative;
}

.kv-08 h2 {
    color: var(--primary);
    background-color: transparent;
    line-height: 33px;
    margin-bottom: 14px;
}

.kv-08 h2::after {
    content: none;
}

.kv-08 .c-card {
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.15) 3px 3px 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.kv-08 .c-card .c-card-info-ttl{
    width: 100%;
    background-color: #FF8900;
    line-height: 30px;
    font-size: 14px;
    color: var(--white);
    text-align: center;
    border: none;
    padding: 0;
}

.kv-08 .c-card .c-card-info-copy {
    padding: 8px 0 10px;
    background-color: var(--white);
}

.kv-08 .c-card .c-card-info-copy p {
    font-size: 14px;
    line-height: 24.5px;
    padding: 0 12.5px;
    display: flex;
}
.kv-08 .c-card .c-card-info-copy p.no-padding {
    padding: 0;
    text-align: center;
    justify-content: center;
}
.kv-08 .c-card .c-card-info-copy p.note {
    font-size: 12px;
    line-height: 21px;
    padding: 14.5px;
    margin-top: -5px;
    letter-spacing: -1px;
}

.kv-08 .c-card .c-card-info-copy p span {
    color:#FF8900;
}

.kv-08 .c-card:nth-child(2) {
    margin-bottom: 22px;
}

.kv-08 .c-card:nth-child(3),
.kv-08 .c-card:nth-child(4) {
    margin-bottom: 29px;
}

.kv-08 .c-card:nth-child(5) {
    margin-bottom: 25px;
}

.kv-08 .c-card:nth-child(6) {
    margin-bottom: 30px;
}

.kv-08 .c-card:nth-child(3) .c-card-info-copy {
    padding: 18px 0 3px;
}

.kv-08 .c-card:nth-child(4) .c-card-info-copy {
    padding: 18px 0;
}
.kv-08 .c-card:nth-child(6) .c-card-info-copy {
    padding: 11px 0 14px;
}

.kv-08 .c-card:nth-child(7) .c-card-info-copy {
    padding: 19px 0 25px;
}

.kv-09 {
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: var(--white);
    padding: 26px 15px 83px;
}

.kv-09 h2 {
    color: var(--primary);
    background-color: transparent;
    line-height: 33px;
    margin-bottom: 18px;
}

.kv-09 h2::after {
    content: none;
}

.kv-09 .c-card {
    width: 100%;
    background-color: #FFFCDE;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.15) 3px 3px 10px;
    padding: 20px 23px 26px;
 
}

.kv-09 .c-card:nth-child(2) {
    margin-bottom: 30px;
}

.kv-09 .c-card .c-card-info {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.kv-09 .c-card h3 {
    border: none;
    padding: 0;
    font-size: 20px;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 18px;
}

.kv-09 .c-card-info-copy p {
    text-align: center;
}

.kv-09 .c-card-info-copy p.txt {
    font-size: 16px;
    line-height: 22px;
    font-weight: bold;
    margin-bottom: -4px;
}

.kv-09 .c-card-info-copy p.phone-number{
    font-size: 34px;
    line-height: 49px;
    font-weight: bold;
    align-items: center;
    display: flex;
    margin-bottom: 13px;
}

.kv-09 .c-card-info-copy p.phone-number span {
    display: flex;
    align-items: center;
}

.kv-09 .c-card-info-copy p.sub-txt {
    font-size: 14px;
    font-weight: 600;
}

.kv-09 .c-card-info-copy p.timer {
    font-size: 14px;
}
.kv-09 .c-card-info-copy p.timer span {
    font-size: 12px;
}

.kv-09 .c-card-info-copy {
    width: 100%;
}

.kv-09 .c-card a {
    width: 100%;
}

/* page2 style start */
.kv-10 {
    margin-bottom: -57px;
    background: rgb(241,225,198);
    background: linear-gradient(90deg, rgba(241,225,198,1) 0%, rgba(244,232,212,1) 25%, rgba(249,243,231,1) 50%, rgba(252,249,244,1) 75%, rgba(252,248,241,1) 100%);
}
.kv-11 {
    padding: 0 15px;
    display: flex;
    align-items: center;
    flex-direction: column;
    background: rgb(241,225,198);
    background: linear-gradient(90deg, rgba(241,225,198,1) 0%, rgba(244,232,212,1) 25%, rgba(249,243,231,1) 50%, rgba(252,249,244,1) 75%, rgba(252,248,241,1) 100%);
}
.kv-11 h2{
    border-radius: 0;
    width: 192px;
    height: 50px;
    font-size: 24px;
    margin-bottom: -30px;
    font-family: var(--fontFamilySecond);
    background-color: transparent;
    z-index: 2;
}
.kv-11 h2::after {
    content: none;
}
.interest {
    background: url(../../assets/images/project/img_tag_bg_01.png) no-repeat;
    background-size: 348px 514px;
    width: 100%;
    padding: 41px 16px 34px;
}
.interest::after {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
/*box-shadow: rgba(0, 0, 0, 0.15) 3px 3px 10px;*/
  z-index: -1;
}

.interest-ratio {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 7px;
}

.interest-ratio li {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 5px;
    margin-bottom: 5px;
}

.interest-ratio li:not(:last-child) {
    border-bottom: solid 1px var(--choco);
    padding-bottom: 7px;
    margin-bottom: 9px;
}
.interest-ratio li img {
    width: 275.5px;
}
.interest p {
    line-height: 19px;
    margin-bottom: 2px;
    width: 297px;
    margin-left: 8px;
}
.interest .note {
    width: 312px;
    letter-spacing: -1px;
}

.kv-12 {
    background: rgb(241,225,198);
    background: linear-gradient(90deg, rgba(241,225,198,1) 0%, rgba(244,232,212,1) 25%, rgba(249,243,231,1) 50%, rgba(252,249,244,1) 75%, rgba(252,248,241,1) 100%);
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 30px 15px 85px;
    font-family: var(--fontFamilySecond);
}

.kv-12 h2 {
    width: 297px;
    height: 47px;
    padding: 0;
    margin-bottom: -26px;
    z-index: 2;
}

.bonuses {
    background: url(../../assets/images/project/img_tag_bg_02.png) no-repeat;
    background-size: 345px 1131px;
    width: 100%;
    padding: 62px 6px 32px;
}
.benefit {
    display: flex;
    align-items: center;
    flex-direction: column;
}
.benefit h3 {
    background: url(../../assets/images/project/img_ttl_bg.png) no-repeat;
    width: 277px;
    height: 108px;
    background-size: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: none;
    font-size: 25px;
    line-height: 34px;
    color: var(--choco);
    margin-bottom: 30px;
    padding-top: 13px;
}

.benefit h3 span {
    font-size: 40px;
}
.benefit > p:first-of-type {
    width: 265px;
    margin-bottom: 14px;
}
.benefit:nth-child(3) > p:first-of-type {
    width: 298px;
    margin-bottom: 17px;
}
.benefit .quantity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}
.benefit .quantity > span {
    width: 94px;
    display: inline-block;
}
.benefit .quantity p {
    width: 146px;
}
.catalogue {
    width: 275px;
    margin-bottom: 9px;
}
.gifts {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 37px;
}

.benefit:nth-child(3) .gifts {
    margin-bottom: 52px;
}
.gifts p{
    width: 280px;
    margin-bottom: -15px;
}
.gifts a {
    font-size: 24px;
    color: var(--crimson);
    text-align: center;
}

.benefit:nth-child(3) {
    margin-bottom: 13px;
}

.benefit:nth-child(3) .gifts p{
    width: 180px;
    margin-bottom: -29px;
}
.benefit:nth-child(3) .gifts p span {
    font-size: 61px;
}

.benefit:nth-child(3) .quantity {
    margin-bottom: 16px;
}

.kv-12 .slick-slide {
    width: 196px;
    margin: 0 15px 52px;
}

.bonuses .note {
    font-size: 15px;
    line-height: 20px;
    color: var(--choco);
    padding: 0 16px;
}

.kv-13 {
    background-color: var(--white);
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 34px 0 31px;
}

.kv-13 h2 {
    background-color: #FFEF24;
    font-size: 16px;
    line-height: 28px;
    color: var(--primary);
    border-radius: 0;
    width: 305px;
    padding: 13px 0;
    margin-bottom: 20px;
}

p.hasSlash {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 7px;
    position: relative;
    padding: 0 20px;
}

p.hasSlash::before {
    content: "";
    background: url(../../assets/images/i_slash_l.svg) no-repeat;
    width: 9.5px;
    height: 19.5px;
    background-size: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-30%);
    left: 0;
}
p.hasSlash::after {
    content: "";
    background: url(../../assets/images/i_slash_r.svg) no-repeat;
    width: 9.5px;
    height: 19.5px;
    background-size: 100%;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-30%);
}

.kv-13  p:first-of-type img {
    vertical-align: super;
}

.kv-13 h2::after {
    content: none;
    
}
h3.kv-ttl.page2 {
    background-color: var(--primary);
    line-height: 45px;
    font-size: 24px;
    border-radius: 4px;
    color: var(--white);
    width: var(--fixedWidthSmallInside);
    padding: 0;
    text-align: center;
    border: none;
}
.kv-13 h3 {
    margin-bottom:31px;
}
.kv-13 .imgContain {
    width: 95.5px;
    position: relative;
    left: 14px;
    margin-bottom: 10px;
}
.kv-13 .desc {
    font-size: 16px;
    line-height: 24.5px;
    text-align: center;
}

.kv-13 .desc span {
    color: var(--primary);
}

.kv-06.page2::before {
    content: none;
}

.kv-14 {
    padding: 24px 0 0;
}

.kv-14 h3 {
    border-bottom: none;
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 10px;
    margin-bottom: 10px;
}
.kv-14 a {
    margin-bottom: 38px;
} 

.kv-14 .qr-contain {
    /* padding-bottom: 0; */
    margin-bottom: 9px;
}

.kv-14 .download-block {
    padding-bottom: 54px;
    margin-bottom: 0;
}

.kv-15 {
    background-color: var(--white);
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 34px 10px 54px;
}

.kv-15 h3 {
    margin-bottom: 34px;
}
.kv-15 .imgContain {
    width: 142px;
    margin-bottom: 23px;
}
.kv-15 .desc {
    font-size: 16px;
    margin-bottom: 26px;
}
.kv-15 a {
    width: 299px;
    margin-bottom: 20px;
}

.kv-16 {
    padding: 25px 0 85px;
    background-color: var(--bgColorSecondary);
}

.kv-16 h3{
    margin-bottom: 34px;
}

.kv-17 {
    background: rgb(241,225,198);
    background: linear-gradient(90deg, rgba(241,225,198,1) 0%, rgba(244,232,212,1) 25%, rgba(249,243,231,1) 50%, rgba(252,249,244,1) 75%, rgba(252,248,241,1) 100%);
    padding: 35px 15px 0;
}

.kv-17::before {
    content: none;
}

.kv-17 h3 {
    margin-bottom: 19px;
}

.kv-17 .content-flexible {
    width: 100%;
    padding: 34px 11.5px 30px;
}
.kv-17 .content-flexible .c-card-info {
    padding-bottom: 37px;
}

.kv-17 .content-flexible .c-card-info-ttl {
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    color: var(--white);
    background-color: var(--choco);
    line-height: 29px;
    padding: 0;
    border: none;
    text-align: center;
    margin-bottom: 9px;
}

.kv-17 .content-flexible .c-card-info-copy .txt {
    font-size: 16px;
    line-height: 24.5px;
}

.txt-center {
    text-align: center;
}

.kv-18 {
    background: rgb(241,225,198);
    background: linear-gradient(90deg, rgba(241,225,198,1) 0%, rgba(244,232,212,1) 25%, rgba(249,243,231,1) 50%, rgba(252,249,244,1) 75%, rgba(252,248,241,1) 100%);
    padding: 34px 15px 0;
}

.benefit-note {
    background-color: var(--white);
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.15) 3px 3px 10px;
    padding: 27px 11px;
}
.benefit-note p {
    font-size: 14px;
    line-height: 24.5px;
}

.kv-19 {
    background: rgb(241,225,198);
    background: linear-gradient(90deg, rgba(241,225,198,1) 0%, rgba(244,232,212,1) 25%, rgba(249,243,231,1) 50%, rgba(252,249,244,1) 75%, rgba(252,248,241,1) 100%);
    padding: 36px 15px 29px;
}

.kv-19 h2 {
    color: var(--crimson);
}

.kv-19 .c-card {
    padding: 23px 23px 19px;
    background-color: var(--bgColor);
    border-radius: 4px;
}

.kv-19 .c-card h3 {
    text-align: center;
    font-size: 16px;
    line-height: 26px;
    color: var(--crimson);
    margin-bottom: 13px;
}
.kv-19 .c-card-info-copy p.phone-number {
    margin-bottom: 5px;
}
.kv-09 .c-card-info-copy p.timer {
    margin-bottom: 16px;
}
.kv-19 .c-card-info-copy p.note {
    font-size: 12px;
    line-height: 19px;
    text-align: center;
}

/* page2 style end*/

.side-bar {
    position: fixed;
    top: 130px;
    left: 7.54%; /*7.54%*/
    background-color: var(--white);
    border-radius: 14px;
    width: 250px;
    padding: 16px 16px 0;
    z-index: 9;
}

.side-bar h3 {
    width: 100%;
    font-size: 18px;
    line-height: 31.5px;
    font-weight: 600;
    border-bottom-width: 1px;
    padding: 0 0 8px;
}

.sidebar-item {
    padding: 9.5px 0 10px;
    position: relative;
}

.sidebar-item::after {
    content: "";
    background: url(../../assets/images/i_arrow_d_red.svg) no-repeat;
    position: absolute;
    width: 10px;
    height: 8.5px;
    background-size: 100% 100%;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.sidebar-item a {
    font-size: 14px;
    line-height: 24px;
}

.sidebar-item a.active {
    background-color: #B6B6B5;
    color: var(--white);
}

.sidebar-item:not(:last-child) {
    border-bottom: solid 1px #B6B6B5;
}

#backToTop {
    position: fixed; 
    bottom: 295px;
    right: 20px;
    z-index: 9;
    border: none;
    background-color: transparent;
    padding: 0;
}

#backToTop img{
    /*width: 70px;
    height: 70px;*/
    width: 100px; /*なごやめし*/
    height: 100px; /*なごやめし*/

}

.navBottom {
    position: fixed;
    bottom: -172px;
    left: 0;
    width: 100%;
    z-index: 8;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 0 20px;
    gap: 55px;
    transition: all .5s ease-in-out;
}

.navBottom.active {
    bottom:0;
}

.navBottomLink {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.navBottom p {
    font-size: 16px;
    line-height: 22px;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 10px;
    width: fit-content;
    position: relative;
}

.navBottom p::before {
    content: "";
    position: absolute;
    width: 7px;
    height: 14px;
    bottom: 2px;
    left: -15.5px;
    background: url(../../assets/images/i_slash_l.svg) no-repeat;
    background-size: 100%;
}

.navBottom p::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 14px;
    bottom: 2px;
    right: -15.5px;
    background: url(../../assets/images/i_slash_r.svg) no-repeat;
    background-size: 100%;
}

.navBottom a {
    width: 299px;
}

.l-footer--simple {
    padding: 40px 0 172px;
}

.l-footer--simple::before {
    content: none;
}

.page2.l-footer--simple::before {
    content: "";
    width: 40px;
    height: 40px;
    background-color: var(--bgColorSecondary);
    position: absolute;
    top: -40px;
    left: 0;
    mask-image: radial-gradient(circle at bottom left, transparent 60%, var(--bgColorSecondary) 62%);
    -webkit-mask-image: radial-gradient(circle at bottom left, transparent 70%, var(--bgColorSecondary) 75%);
    border-radius: 0;
}
.page2.l-footer--simple::after {
    content: "";
    width: 40px;
    height: 40px;
    background-color: var(--bgColorSecondary);
    position: absolute;
    top: -40px;
    right: 0;
    mask-image: radial-gradient(circle at top left, transparent 60%, var(--bgColorSecondary) 62%);
    -webkit-mask-image: radial-gradient(circle at top left, transparent 70%, var(--bgColorSecondary) 75%);
    border-radius: 0;
}

.fade-up {
    opacity: 0;
    transform: translateY(0px);
    transition: transform .5s .3s linear , opacity .5s .3s linear;
}

.fade-up.fade {
    animation: fadeInUp 0.5s 0.3s linear forwards;
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    1% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1080px) {
    .side-bar {
        display: none;
    }
}

@media (max-width: 767px) {
    .navBottom {
        padding: 18px 10px 20px;
    }
    .navBottom p {
        font-size: 12px;
    }
    .navBottom a {
        width: 38.98vw;
    }    
    .kv-14 .qr-contain {
        padding-bottom: 0;
    }
    .pc {
        display: none;
    }
}

@media (max-width: 500px) {
    .navBottom a {
        font-size: 3.1vw;
    }    
    .navBottom a::after {
        right: 12px;
    }
}