/* common */
@font-face {
    font-family: 'S-CoreDream-8Heavy';
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/SCDream/S-CoreDream-8Heavy.woff') format('woff');
}

@font-face {
    font-family: 'S-CoreDream-6Bold';
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/SCDream/S-CoreDream-6Bold.woff') format('woff');
}

@font-face {
    font-family: 'S-CoreDream-5Medium';
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/SCDream/S-CoreDream-5Medium.woff') format('woff');
}

@font-face {
    font-family: 'S-CoreDream-4Regular';
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/SCDream/S-CoreDream-4Regular.woff') format('woff');
}

p {
    line-height: 1.8rem;
}

a:focus {
    outline: 0;
}

.auto-container {
    position: static;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 900px;
    height: 100%;
    margin: 0 auto;
}

.franchise {
    position: relative;
    width: 100%;
    height: 100%;
    background: #fff;
}

.franchise section {
    position: relative;
    padding: 100px 0;
    background: #fff;
}

.tit-franchise {
    padding-bottom: 15px;
    color: #3e3e58;
    font-family: 'S-CoreDream-8Heavy';
    font-size: 30px;
    font-weight: 600;
}

.desc-franchise {
    color: #3e3e58;
    font-size: 18px;
}

.btn-franchise {
    display: inline-block;
    margin-top: 30px;
    color: #fff;
    font-size: 25px;
    border-bottom: 1px solid #fff;
}

.flex {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-column {
    flex-basis: 50%;
}

.text-column {
    flex-basis: 50%;
    text-align: center;
}

.text-column em {
    display: block;
    padding-bottom: 10px;
    color: #fe6a84;
    font-size: 25px;
    font-weight: bold;
}

.text-column em img {
    position: relative;
    top: -2px;
    width: 30px;
    margin-right: 10px;
}

@media screen and (max-width: 767px) {
    .text-column {
        flex-basis: 100%;
    }

    .image-column {
        flex-basis: 100%;
        padding-top: 30px;
    }

    .flex {
        flex-direction: column;
    }

    .tit-franchise {
        font-size: 25px;
    }

    .desc-franchise {
        font-size: 16px;
    }
}

/* header */
.header {
    position: absolute;
    z-index: 10;
    width: 100%;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.header .header-logo {
    position: absolute;
    z-index: 1;
    top: 20px;
    left: 20px;
    width: 185px;
    height: 25px;
    color: #ff6350;
    font-size: 20px;
    font-weight: bold;
    background: url("../image/company/logo.png") no-repeat;
}

.header-hide {
    transform: translateY(-100px);
}

.franchise .header .header-logo {
    background: url(../image/company/logo.png) no-repeat;
}

.header .nav {
    float: right;
    padding: 20px;
    font-size: 16px;
}

.header .nav .nav-list > li {
    float: left;
    padding-left: 20px;
}

.header .nav .nav-list > li > a {
    position: relative;
    display: block;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    line-height: 25px;
}

.full-nav {
    position: fixed;
    top: 0;
    left: 0;
    visibility: hidden;
    overflow: hidden;
    width: 100%;
    height: 0;
    -webkit-transition: opacity .35s, visibility .35s, height .35s;
    transition: opacity .35s, visibility .35s, height .35s;
    opacity: 0;
    font-family: 'Roboto', sans-serif;
    background: #141414;
}

.full-nav.open {
    position: absolute;
    z-index: 1;
    visibility: visible;
    height: 100%;
    opacity: 1;
}

.full-nav.open li {
    -webkit-animation: fadeInRight .5s ease forwards;
    animation: fadeInRight .5s ease forwards;
    -webkit-animation-delay: .35s;
    animation-delay: .35s;
}

.full-nav.open li:nth-of-type(2) {
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
}

.full-nav.open li:nth-of-type(3) {
    -webkit-animation-delay: .45s;
    animation-delay: .45s;
}

.full-nav.open li:nth-of-type(4) {
    -webkit-animation-delay: .50s;
    animation-delay: .50s;
}

.full-nav nav {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
    font-family: 'S-CoreDream-6Bold';
    font-size: 200%;
}

.full-nav ul {
    position: relative;
    display: inline-block;
    height: 100%;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.full-nav ul li {
    position: relative;
    display: block;
    min-height: 50px;
    padding-bottom: 50px;
    opacity: 0;
}

.full-nav ul li:last-child {
    padding-bottom: 0;
}

.full-nav ul li a {
    position: relative;
    display: block;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    line-height: 150%;
}

.full-nav ul li a:hover:after, .full-nav ul li a:focus:after, .full-nav ul li a:active:after {
    width: 100%;
}

.full-nav ul li a:after {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    content: '';
    -webkit-transition: .35s;
    transition: .35s;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background: #fff;
}

.full-nav-btn {
    position: absolute;
    z-index: 100;
    top: 22px;
    right: 20px;
    display: none;
    width: 30px;
    height: 20px;
    cursor: pointer;
    -webkit-transition: opacity .25s ease;
    transition: opacity .25s ease;
}

.full-nav-btn:hover {
    opacity: .7;
}

.full-nav-btn.active .top {
    -webkit-transform: translateY(11px) translateX(0) rotate(45deg);
    transform: translateY(6px) translateX(0) rotate(45deg);
    background: #fff;
}

.full-nav-btn.active .middle {
    opacity: 0;
    background: #fff;
}

.full-nav-btn.active .bottom {
    -webkit-transform: translateY(-11px) translateX(0) rotate(-45deg);
    transform: translateY(-11px) translateX(0) rotate(-45deg);
    background: #fff;
}

.full-nav-btn span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    cursor: pointer;
    -webkit-transition: all .35s ease;
    transition: all .35s ease;
    background: #fff;
}

.full-nav-btn span:nth-of-type(2) {
    top: 8px;
}

.full-nav-btn span:nth-of-type(3) {
    top: 17px;
}

@media screen and (max-width: 991px) {
    .header {
        position: static;
    }

    .header .nav {
        display: none;
    }

    .full-nav-btn {
        display: block;
    }

    .header-hide {
        transform: none;
    }
}

/* franchise-key-visual */
.franchise .franchise-key-visual {
    position: relative;
    z-index: 0;
    height: 100%;
    padding: 0;
    background-size: cover;
}

.franchise .franchise-key-visual:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: rgba(254, 142, 161, 0.2);
}

.franchise .franchise-key-visual .auto-container {
    flex-direction: column;
    justify-content: center;
    padding: 0 15px;
}

.franchise-key-visual h2 {
    align-self: flex-start;
    color: #fff;
    font-family: 'S-CoreDream-8Heavy';
    font-weight: 900;
}

.franchise-key-visual h2 > span.visual-txt-1 {
    display: block;
    margin-bottom: 30px;
    font-family: 'S-CoreDream-5Medium';
    font-size: 30px;
}

.franchise-key-visual h2 > span.visual-txt-2, .franchise-key-visual h2 > span.visual-txt-3, .franchise-key-visual h2 > span.visual-txt-4 {
    display: block;
    word-break: keep-all;
    font-size: 60px;
    line-height: 70px;
}

.franchise-key-visual .highlight {
    position: relative;
    top: 3px;
    color: #ff8499;
    font-size: 70px;
}

.franchise-key-visual .btn-franchise {
    align-self: flex-start;
    padding: 8px 17px;
    color: #fff;
    font-size: 20px;
    border-bottom: 0;
    border-radius: 20px;
    background: #ef6a81;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-pagination-bullet-active {
    background: #fff;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #fff;
}

.slide-1 {
    text-align: left;
    background: url(../image/franchise/visual_02.jpg) 50% 50% no-repeat;
    background-size: cover;
}

.slide-2 {
    text-align: left;
    background: url(../image/franchise/visual_01.jpg) 50% 50% no-repeat;
    background-size: cover;
}

.swiper-button-prev {
    left: 0;
    background: url("../image/icons/arr-pre.png") center center no-repeat;
}

.swiper-button-next {
    right: 0;
    background: url("../image/icons/arr-next.png") center center no-repeat;
}

.swiper-button-next, .swiper-button-prev {
    width: 50px;
    height: 70px;
    opacity: .25;
    background-color: #000;
}

@media screen and (max-width: 767px) {
    .franchise .franchise-key-visual .auto-container {
        justify-content: center;
    }

    .franchise-key-visual h2, .franchise-key-visual .btn-franchise {
        align-self: center;
    }

    .franchise .franchise-key-visual h2 {
        text-align: center;
    }

    .franchise-key-visual h2 > span.visual-txt-1 {
        font-size: 22px;
        font-weight: 500;
    }

    .franchise-key-visual h2 > span.visual-txt-2, .franchise-key-visual h2 > span.visual-txt-3, .franchise-key-visual h2 > span.visual-txt-4 {
        font-size: 40px;
        line-height: 55px;
    }

    .franchise-key-visual .highlight {
        font-size: 45px;
    }

    .swiper-button-next, .swiper-button-prev {
        display: none;
    }

    .franchise .franchise-key-visual {
        height: 100%;
    }

    .swiper-button-next, .swiper-button-prev {
        display: none;
    }
}

@media screen and (max-width: 375px) {
    .franchise-key-visual h2 > span.visual-txt-1 {
        font-size: 20px;
    }

    .franchise-key-visual h2 > span.visual-txt-2, .franchise-key-visual h2 > span.visual-txt-3 {
        font-size: 38px;
    }

    .franchise-key-visual .highlight {
        font-size: 44px;
    }
}

@media screen and (max-height: 767px) {
    .swiper-button-next, .swiper-button-prev {
        display: none;
    }

    .btn-franchise {
        margin-left: 25px;
    }
}

/* franchise-number-wrap */
.franchise .franchise-number-wrap {
    position: relative;
    padding: 100px 15px;
    text-align: center;
    background: url("../image/franchise/number_bg.jpg") center no-repeat;
    background-size: cover;
}

.franchise .franchise-number-wrap:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(0, 0, 0, .8);
}

.franchise .franchise-number-wrap .num-franchise, .franchise .franchise-number-wrap > span {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    color: #fff;
    font-family: 'S-CoreDream-8Heavy';
    font-size: 50px;
    font-weight: 600;
}

.franchise .franchise-number-wrap p {
    position: relative;
    word-break: keep-all;
    color: #fff;
}

/* franchise-benefit-wrap */
.franchise .franchise-benefit-wrap {
    overflow: hidden;
    padding: 0;
}

.franchise-benefit-txt {
    position: relative;
    display: flex;
    float: left;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 50%;
    height: 700px;
    padding: 0 70px;
}

.franchise-benefit-txt > span {
    color: #ececec;
    font-size: 75px;
    font-weight: bold;
}

.franchise-benefit-txt h3 {
    margin-bottom: 20px;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
}

.franchise-benefit-txt > h3 > span {
    word-break: keep-all;
}

.franchise-benefit-txt p {
    text-align: center;
    word-break: keep-all;
    font-size: 16px;
}

.franchise-benefit-img {
    position: relative;
    display: flex;
    float: right;
    align-items: center;
    width: 50%;
    height: 700px;
}

.franchise-benefit-img:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
}

.franchise-benefit-img img {
    position: absolute;
    z-index: 1;
    left: -70px;
    width: 100%;
    max-width: 500px;
    border: 20px solid #fff;
}

.benefit-even .franchise-benefit-img {
    float: left;
}

.benefit-even .franchise-benefit-txt {
    float: right;
}

.benefit-even .franchise-benefit-img img {
    right: -70px;
    left: auto;
}

.franchise-benefit-txt.txt-01 h3 {
    color: #ff8499;
}

.franchise-benefit-txt.txt-02 h3 {
    color: #ff5a7f;
}

.franchise-benefit-txt.txt-03 h3 {
    color: #ff8a67;
}

.franchise-benefit-txt.txt-04 h3 {
    color: #fe5051;
}

.franchise-benefit-img.img-01 {
    background: url("../image/franchise/benefit_01_bg.jpg") center no-repeat;
    background-size: cover;
}

.franchise-benefit-img.img-01:before {
    background: rgba(255, 132, 153, 0.85);
}

.franchise-benefit-img.img-02 {
    background: url("../image/franchise/benefit_02_bg.jpg") center no-repeat;
    background-size: cover;
}

.franchise-benefit-img.img-02:before {
    background: rgba(253, 71, 113, 0.85);
}

.franchise-benefit-img.img-03 {
    background: url("../image/franchise/benefit_03_bg.jpg") center no-repeat;
    background-size: cover;
}

.franchise-benefit-img.img-03:before {
    background: rgba(255, 138, 103, 0.85);
}

.franchise-benefit-img.img-04 {
    background: url("../image/franchise/benefit_04_bg.jpg") center no-repeat;
    background-size: cover;
}

.franchise-benefit-img.img-04:before {
    background: rgba(253, 89, 89, 0.85);
}

@media screen and (min-width: 1200px) {
    .franchise-benefit-txt > h3 > span {
        display: block;
        word-break: keep-all;
    }

    .franchise-benefit-txt > p > span {
        display: block;
    }
}

@media screen and (max-width: 991px) {
    .franchise .franchise-benefit-wrap {
        display: block;
        background: #f9f9f9;
    }

    .franchise .franchise-benefit-wrap.benefit-even {
        background: #fff;
    }

    .franchise-benefit-txt, .franchise-benefit-img {
        width: 100%;
        height: auto;
        padding: 20px;
    }

    .franchise-benefit-img {
        padding-top: 0;
        background: transparent !important;
    }

    .franchise-benefit-img:before {
        display: none;
    }

    .franchise-benefit-img img {
        position: relative;
        left: auto;
        display: block;
        margin: 0 auto;
        border: 15px solid #fff;
    }

    .benefit-even .franchise-benefit-img img {
        right: auto;
        border-color: #f9f9f9;
    }
}

@media screen and (max-width: 767px) {
    .franchise-benefit-txt > span {
        font-size: 50px;
    }

    .franchise-benefit-txt > h3 {
        font-size: 24px;
    }
}

/* franchise-service-wrap */
.franchise .franchise-service-wrap {
    text-align: center;
    background: #f2f7fb;
}

.franchise-service-wrap .auto-container {
    flex-direction: column;
    max-width: 1200px;
}

.franchise-service-wrap .franchise-service-tit h3 span {
    display: block;
}

.franchise-service-wrap .franchise-service-tit p span {
    display: block;
    word-break: keep-all;
}

.franchise-service-wrap .franchise-service-contents {
    display: block;
    overflow: hidden;
    margin-top: 40px;
    padding: 0 10px;
}

.franchise-service-wrap .franchise-service-contents .franchise-service-txt {
    float: left;
    width: 25%;
    padding: 0 10px;
}

.franchise-service-wrap .franchise-service-contents .franchise-service-txt img {
    width: 100%;
}

@media screen and (max-width: 991px) {
    .franchise .franchise-service-wrap {
        padding: 50px 20px;
    }

    .franchise-service-wrap .franchise-service-contents .franchise-service-txt {
        width: 50%;
    }

    .franchise-service-wrap .franchise-service-contents > .franchise-service-txt:first-child, .franchise-service-wrap .franchise-service-contents > .franchise-service-txt:nth-child(2) {
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 767px) {
    .franchise-service-wrap .franchise-service-tit p span {
        display: inline;
    }
}

@media screen and (max-width: 575px) {
    .franchise-service-wrap .franchise-service-contents .franchise-service-txt {
        width: 100%;
    }

    .franchise-service-wrap .franchise-service-contents > .franchise-service-txt:nth-child(3) {
        margin-bottom: 15px;
    }
}

/* franchise-kit-wrap */
.franchise .franchise-kit-wrap .flex {
    width: 100%;
}

.franchise .franchise-kit-wrap img {
    width: 100%;
    max-width: 260px;
}

@media screen and (max-width: 991px) {
    .franchise .franchise-kit-wrap {
        padding: 50px 20px;
    }
}

/* franchise-link-wrap */
.franchise .franchise-link-wrap {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background: url("../image/franchise/link_bg.jpg") center no-repeat;
    background-size: cover;
}

.franchise .franchise-link-wrap:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(0, 0, 0, .8);
}

.franchise .franchise-link-wrap .tit-franchise {
    padding-bottom: 20px;
    color: #fff;
    font-family: 'S-CoreDream-8Heavy';
    font-size: 30px;
    font-weight: 600;
}

.franchise .franchise-link-wrap h3, .franchise .franchise-link-wrap .btn-wrap {
    position: relative;
    text-align: center;
    color: #fff;
}

.franchise .franchise-link-wrap .btn-wrap a {
    display: inline-block;
}

.franchise .franchise-link-wrap .franchise-outline-btn {
    margin-right: 10px;
    padding: 8px 17px;
    color: #fe6a84;
    font-size: 16px;
    border: 1px solid #fe6a84;
    border-radius: 20px;
}

.franchise .franchise-link-wrap .franchise-btn {
    padding: 8px 17px;
    color: #fff;
    font-size: 16px;
    border-radius: 20px;
    background: #ef6a81;
}

@media screen and (max-width: 991px) {
    .franchise .franchise-link-wrap {
        padding: 50px 20px;
    }

    .franchise .franchise-link-wrap .tit-franchise {
        word-break: keep-all;
        font-size: 25px;
    }
}

/* Tooltip */
[data-tooltip], [data-tooltip] *:before, [data-tooltip] *:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-kerning: auto;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

[data-tooltip]:before {
    position: absolute;
    top: -.5em;
    left: calc(50% - 5px);
    content: '';
    border: 5px solid transparent;
    border-top-color: #6d2b66;
}

[data-tooltip]:after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: auto;
    min-width: 100px;
    padding: 8px 10px;
    content: attr(data-tooltip);
    text-align: center;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    line-height: 12pt;
    border-radius: 3px;
    outline: none;
    background: #fe6a84;
}

[data-tooltip]:before, [data-tooltip]:after {
    visibility: hidden;
    transition: all .2s ease-in-out;
    pointer-events: none;
    opacity: 0;
}

[data-tooltip]:hover:before, [data-tooltip]:hover:after {
    visibility: visible;
    opacity: 1;
}

[data-tooltip][data-popover] {
    position: relative;
    margin-top: 0;
    margin-bottom: 0;
    outline: none;
}

[data-tooltip][data-popover]:before {
    top: auto;
    bottom: -10px;
    left: 52px;
    border-top-color: transparent;
    border-bottom-color: #fe6a84;
}

[data-tooltip][data-popover]:after {
    position: absolute;
    z-index: 2000;
    top: 48px;
    bottom: auto;
    left: 0;
    width: auto;
    min-width: 107px;
    padding: 8px 10px;
    white-space: normal;
}

.download-wrap [data-tooltip][data-popover]:after {
    top: 88px;
}
