@charset "UTF-8";

:root {
    --color-primary: #e0143d;
    --color-beige: #fff8df;
    --main-color: #231815;
}

html {
    scroll-padding-top: var(--scroll-padding);
}

body {
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", sans-serif;
    font-weight: 600;
}


@media screen and (min-width:768px) {
    .sp-show {
        display: none;
    }
}

@media screen and (max-width:767px) {
    .sp-hide {
        display: none;
    }
}

.inner {
    padding: 0 2rem;
    margin: 0 auto;
    max-width: 1044px;
}

@media screen and (max-width:767px) {
    .inner {
        padding: 0 1.25rem;
        max-width: 100%;
    }
}


.inner--sm {
    max-width: 870px;
}

.inner--wide {
    max-width: 1164px;
}

a {
    transition: all .3s ease-in;
}

a.underline {
    color: var(--color-primary);
    text-decoration: underline;
}

sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    top: -0.5em;
    vertical-align: baseline;
}

/* ------------------------------------------------------------------------------------------
*
    header
*
------------------------------------------------------------------------------------------ */

#header {
    display: flex;
    position: fixed;
    top: 28px;
    right: 40px;
    width: 257px;
    max-width: 100%;
    flex-direction: column;
}



@media screen and (min-width: 881px) {
    #header {
        transform: translate3d(0, 30px, 0);
        opacity: 0;
        transition: transform 0.6s ease, opacity 0.6s ease;
    }

    #header.show {
        transform: translateY(0);
        opacity: 1;
        z-index: 2;
    }
}

#header .pff-logo {
    display: none;
}


#header .pff-header {
    display: flex;
    border: 5px solid var(--color-primary);
    background-color: rgba(255, 248, 223, .9);
}

@media (hover: hover) {
    .pff-header a:hover {
        opacity: .75;
    }
}

#header .pff-header__in {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 4px;
    padding: 1.25rem .75rem 1rem;
    border: 1.35px solid var(--color-primary);
}

#header .logo {
    padding-left: .1rem;
}

.gnav {
    margin-top: 1.13rem;
    padding-left: .1rem;
}

.gnav li a {
    padding: .2rem 0;
    display: block;
    color: var(--color-primary);
    font-size: .77rem;
    font-weight: 800;
}

.gnav>ul>li>a:before {
    display: inline-block;
    content: "";
    margin-right: .2rem;
    width: 10px;
    height: 10px;
    background-color: var(--color-primary);
    border-radius: 50%;
}

.gnav ul>li>ul li a {
    padding-left: .88rem;
    text-indent: -.88rem;
    font-weight: 600;
    font-size: .7rem;
}


#header .nav-btm {
    margin-top: .5rem;
    border-top: 2px dotted var(--color-primary);
}

.nav-btm ul {
    margin-top: .6rem;
    display: flex;
}

.nav-btm li {
    width: 33.33%;
}

.nav-btm li:not(:first-child) {
    border-left: 1px dotted var(--color-primary);
}

.nav-btm__item {
    padding: 0 .5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.nav-btm__item img {
    margin-bottom: .2rem;
    width: auto;
    height: 24px;
}

.nav-btm__item span {
    display: inline-flex;
    width: 100%;
    background-color: var(--color-primary);
    text-align: center;
    color: #fff;
    font-size: 8px;
    justify-content: center;
}

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

    body.menu-open {
        overflow: hidden;
    }

    #header {
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 17.2vw;
        z-index: 2;
    }

    .pff-humburger-menu,
    .pff-humburger-close {
        display: flex;
        position: absolute;
        top: 0;
        right: 0;
        width: 21vw;
        height: 17.2vw;
        background-color: var(--color-primary);
        flex-direction: column;
        gap: 2vw;
        justify-content: center;
        align-items: center;
    }

    .pff-humburger-menu.pff-humburger-menu--open {
        background-color: var(--color-beige);
    }

    .pff-humburger-menu.pff-humburger-menu--open span {
        background-color: var(--color-primary);
    }

    .pff-humburger-menu span,
    .pff-humburger-close span {
        display: block;
        width: 10.7vw;
        height: 2px;
        background: #fff;
    }

    .pff-humburger-close {
        background-color: var(--color-beige);
    }

    .pff-humburger-close span {
        background-color: var(--color-primary);
    }

    .pff-humburger-close span:nth-child(1) {
        rotate: -45deg;
        translate: .4vw 1vw;
    }

    .pff-humburger-close span:nth-child(2) {
        rotate: 45deg;
        translate: .4vw -1.5vw;
    }

    #header .pff-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        opacity: 0 !important;
        box-sizing: border-box;
        border: 0;
        background-color: var(--color-primary);
        overflow-y: auto;
        visibility: hidden !important;
        transform: translateY(40px);
        transition:
            opacity .8s ease,
            transform .8s cubic-bezier(.22, .61, .36, 1);
        z-index: 1500;
    }

    #header .pff-header.opened {
        opacity: 1 !important;
        transform: translateY(0);
        visibility: visible !important;
    }

    #header .pff-header .logo {
        display: none;
    }

    .gnav {
        margin-top: 80px;
        height: 70vh;
        overflow-y: auto;
    }

    .gnav>ul {
        padding-bottom: 3rem;
    }

    .gnav>ul>li>a:before {
        background-color: var(--color-beige);
    }

    .gnav li a {
        padding: .3rem 0;
        color: var(--color-beige);
        font-size: 1.13rem;
    }

    .gnav ul>li>ul li a {
        font-size: .9rem;
    }


    #header .nav-btm {
        display: none;
    }

    .nav-btm__item span {
        background-color: var(--color-beige);
        color: var(--color-primary);
    }
}


.pff-social-icon {
    margin-top: .5rem;
    margin-right: 5rem;
    width: 100%;
}

.pff-social-icon ul {
    display: flex;
    column-gap: 5px;
}

.pff-social-icon li {
    width: 60px;
}

.pff-social-icon li img {
    width: 100%;
}

.pff-social-icon li a {
    transition: all .3s ease-in;
}

.pff-social-icon li:not(.ico_line) a {
    display: inline-flex;
    text-align: center;
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 50%;
    color: var(--color-primary);
    justify-content: center;
    align-items: center;
}

.pff-social-icon i {
    font-size: 2rem;
}


@media(hover: hover) {
    .pff-social-icon a:hover {
        opacity: .5;
    }
}

@media screen and (max-width:880px) {
    .pff-social-icon {
        position: absolute;
        right: 23vw;
        margin: 0;
        padding-top: 0;
        display: flex;
        width: 43vw;
        height: 100%;
        align-items: center;
    }

    .pff-social-icon ul {
        column-gap: 3px;
    }

    .pff-social-icon li {
        width: 10vw;
    }

    .pff-social-icon li:not(.ico_line) a {
        width: 10vw;
        height: 10vw;
    }

    .pff-social-icon i {
        font-size: 6vw;
    }

}

@media screen and (min-width:768px) and (max-width:880px) {
    #header {
        height: 55px;
    }

    .pff-humburger-menu,
    .pff-humburger-close {
        width: 67px;
        height: 55px;
        gap: 6px;
    }

    .pff-humburger-menu span,
    .pff-humburger-close span {
        width: 34px;
        height: 2px;
    }

    .pff-humburger-close span:nth-child(1) {
        translate: 1px 5px;
    }

    .pff-humburger-close span:nth-child(2) {
        translate: 1px -4.5px;
    }

    .pff-social-icon {
        right: 73px;
        width: 137px;
    }

    .pff-social-icon li {
        width: 32px;
    }

    .pff-social-icon li:not(.ico_line) a {
        width: 32px;
        height: 32px;
    }

    .pff-social-icon i {
        font-size: 19px;
    }
}



.ds-slider {
    position: relative;
}

.ds-slider .swiper:not(.swiper-initialized) .swiper-wrapper {
    flex-wrap: nowrap;
}


.ds-slider .swiper:not(.swiper-initialized) .swiper-slide {
    flex-shrink: 1;
    width: auto;
}


.ds-slider .swiper:not(.swiper-initialized) .swiper-slide img {
    width: 100%
}

.ds-slider .swiper:not(.swiper-initialized)+.swiper-controls {
    display: none;
}

@media screen and (min-width: 768px) {
    .ds-slider .swiper:not(.swiper-initialized).slider-wrap .swiper-wrapper {
        flex-wrap: wrap;
        margin-bottom: -16px
    }

    .ds-slider .swiper:not(.swiper-initialized).slider-wrap[data-slide="3"] .swiper-slide {
        min-width: 290px;
        margin-bottom: 16px
    }

    .ds-slider .swiper:not(.swiper-initialized)[data-slide="3"] .swiper-slide {
        width: 33.3333333333%
    }

    .ds-slider .swiper:not(.swiper-initialized)[data-slide="4"] .swiper-slide {
        width: 25%
    }

    .ds-slider .swiper:not(.swiper-initialized)[data-slide="6"] .swiper-wrapper {
        flex-wrap: wrap
    }

    .ds-slider .swiper:not(.swiper-initialized)[data-slide="6"] .swiper-slide {
        width: 16.6666666667%;
        min-width: 160px
    }

    .ds-slider .swiper:not(.swiper-initialized)[data-sp-only]>.swiper-wrapper {
        flex-wrap: wrap;
        margin-top: -40px
    }

    .ds-slider .swiper:not(.swiper-initialized)[data-sp-only] .swiper-slide {
        margin-top: 40px
    }
}

@media screen and (max-width: 767px) {
    .ds-slider .swiper:not(.swiper-initialized)[data-sp-slide="2"] .swiper-slide {
        width: 50%
    }
}


.pff-scroll-slider {
    padding: 2rem 0;
    background-color: #fff;
}

.pff-scroll-slider.bg-pink {
    background-color: rgba(224, 20, 61, .45);
}

.pff-scroll-slider .scroll-slider {
    overflow: hidden;
}

.pff-scroll-slider .scroll-slider .swiper-wrapper {
    transition-timing-function: linear;
}

.pff-scroll-slider .scroll-slider .swiper-slide {
    width: 9.5%;
}

.pff-scroll-slider .scroll-slider .swiper-slide img {
    width: 100%;
}

.pff-scroll-slider .scroll-slider .swiper-slide a {
    display: block;
    width: 100%;
}


/* ------------------------------------------------------------------------------------------
*
    common-parts
*
------------------------------------------------------------------------------------------ */
.pff-app-wrapper {
    position: relative;
    background-color: var(--color-primary);
}

.pff-section-container {
    width: calc(100% - 297px);
}

.pff-section-container .inner {
    position: relative;
}

@media screen and (max-width:880px) {
    .pff-section-container {
        width: 100%;
    }

    .pff-section-container .inner {
        left: 0;
    }
}

@media screen and (min-width:768px) and (max-width:880px) {
    .pff-section-container .inner {
        left: 0;
    }
}

.pff-hero-section {
    width: 100%;
    min-height: 468px;
    background-color: var(--color-primary);
    position: fixed;
}

.pff-hero-section .pg-title {
    padding: 6rem 0;
}

.pff-hero-section .pg-title img {
    max-width: 300px;
    margin: 0 auto;
}

@media screen and (max-width:767px) {
    .pff-hero-section {
        margin-top: 17.2vw;
    }

    .pff-hero-section .pg-title {
        padding: 30vw 0;
    }

    .pff-hero-section .pg-title img {
        max-width: 70%;
        margin: 0 auto;
    }
}

@media screen and (min-width:768px) and (max-width:880px) {
    .pff-hero-section {
        margin-top: 55px;
    }
}

.pg-title-char {
    position: relative;
    margin: 0 auto;
    width: 500px;
}

.pg-title-vertical-wrap {
    display: flex;
    position: absolute;
    top: -86px;
    left: -13px;
    right: 0;
    justify-content: center;
}

.pg-title-vertical-group {
    display: flex;
    align-items: flex-start;
    gap: 0;
    flex-wrap: wrap;
}

.pg-title-en {
    margin-top: 0;
    margin-right: 3px;
    writing-mode: vertical-rl;
    letter-spacing: .5px;
    color: #fff;
    font-size: 1.13rem;
}

.pg-title-vertical {
    display: inline-flex;
    margin: 0 3px;
    padding: 7px 4px 10px;
    background: #fff;
    border-radius: 0;
    box-sizing: border-box;
    box-shadow: none;
    color: var(--main-color);
    font-size: 1.4375rem;
    font-weight: 800;
    line-height: 1.07;
    letter-spacing: -2px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
}

.pg-title-vertical .horizon:not(.horizon--lh) {
    margin-top: .3rem;
    writing-mode: horizontal-tb;
}

.pg-title-vertical--sm {
    font-size: .95rem;
    letter-spacing: inherit;
}



@media screen and (max-width: 767px) {
    .pg-title-vertical-wrap {
        top: -11rem;
        min-height: 253px;
    }

    .pg-title-char {
        width: auto;
        margin: 0 -1.25rem;
    }

    .pg-title-char img {
        margin: 0 auto;
        max-width: 375px;
    }

    .pg-title-en {
        white-space: nowrap;
    }
}



.pff-m-content-wrap {
    position: relative;
    padding-top: 380px;
}

.pff-m-content {
    background-color: var(--color-beige);
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
}


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

    .pff-m-content {
        border-top-left-radius: 10vw;
        border-top-right-radius: 10vw;
    }

    .pff-m-content-wrap {
        padding-top: 120vw;
    }
}

.pff-section {
    padding: 5rem 0;
}


@media screen and (min-width:768px) and (max-width:880px) {
    .pff-m-content-wrap {
        position: relative;
        padding-top: 480px;
    }
}


/* ------------------------------------------------------------------------------------------
*
    title
*
------------------------------------------------------------------------------------------ */


.heading2 {
    font-size: 1.2rem;
    font-weight: 800;
}

.heading3 {
    font-size: 1.1rem;
    font-weight: 800;
}

.heading3--char img {
    margin: 0 auto;
    max-width: 100px;
}


@media screen and (max-width:767px) {
    .heading3 {
        font-size: .8rem;
    }

    .heading3--char img {
        max-width: 71px;
    }
}

.heading5 {
    color: #000;
    font-size: 1rem;
}

.bg-mark {
    display: inline;
    background-color: var(--color-primary);
    color: #fff;
    line-height: 1;
}

/* ------------------------------------------------------------------------------------------
*
    space
*
------------------------------------------------------------------------------------------ */
.mt-0 {
    margin-top: 0 !important;
}

.mt-5 {
    margin-top: .3rem !important;
}

.mt-10 {
    margin-top: .6rem !important;
}

.mt-20 {
    margin-top: 1.25rem !important;
}

.mt-30 {
    margin-top: 1.88rem !important;
}

.mt-40 {
    margin-top: 2.5rem !important;
}

.mt-50 {
    margin-top: 3.125rem !important;
}

.mt-60 {
    margin-top: 3.75rem !important;
}

.mt-70 {
    margin-top: 4.375rem !important;
}

.mt-70 {
    margin-top: 5rem !important;
}


@media screen and (min-width: 768px) {
    .mt-pc-10 {
        margin-top: .6rem !important;
    }

    .mt-pc-20 {
        margin-top: 1.25rem !important;
    }

    .mt-pc-30 {
        margin-top: 1.88rem !important;
    }

    .mt-pc-40 {
        margin-top: 2.5rem !important;
    }

    .mt-pc-50 {
        margin-top: 3.125rem !important;
    }

    .mt-pc-60 {
        margin-top: 3.75rem !important;
    }

    .mt-pc-70 {
        margin-top: 4.375rem !important;
    }

    .mt-pc-70 {
        margin-top: 5rem !important;
    }

}

@media screen and (max-width: 767px) {
    .mt-sp-0 {
        margin-top: 0 !important;
    }

    .mt-sp-10 {
        margin-top: .6rem !important;
    }

    .mt-sp-20 {
        margin-top: 1.25rem !important;
    }

    .mt-sp-30 {
        margin-top: 1.88rem !important;
    }

    .mt-sp-40 {
        margin-top: 2.5rem !important;
    }

    .mt-sp-50 {
        margin-top: 3.125rem !important;
    }

    .mt-sp-60 {
        margin-top: 3.75rem !important;
    }

    .mt-sp-70 {
        margin-top: 4.375rem !important;
    }

    .mt-sp-80 {
        margin-top: 5rem !important;
    }
}

.pt-0 {
    padding-top: 0 !important;
}

@media screen and (max-width: 767px) {
    .pt-sp-0 {
        padding-top: 0 !important;
    }
}


.ds-box {
    margin-top: 1.875rem;
}

.ds-box--size-s {
    margin-top: 1.25rem;
}

.ds-box--size-xs {
    margin-top: .6rem;
}

.ds-box--size-ms {
    margin-top: 2rem;
}


.ds-box--size-m {
    margin-top: 2.5rem;
}

@media screen and (max-width: 767px) {
    .ds-box--size-m {
        margin-top: 2rem;
    }
}

.ds-box--size-xl {
    margin-top: 4rem;
}

.ds-box--size-xxl {
    margin-top: 5rem;
}

.bd-box {
    border: 1px solid var(--main-color);
    padding: .5rem;
}

/* ------------------------------------------------------------------------------------------
*
    ds-text
*
------------------------------------------------------------------------------------------ */

.ds-text {
    font-size: .75rem;
    line-height: 1.85;
}

.ds-text--size-m {
    font-size: .88rem;
    line-height: 2;
}

.ds-text--size-l {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    line-height: 2;
}


.ds-text-lead {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 2;
}

.ds-text-lead--size-m {
    font-size: 1rem;
}


@media screen and (max-width:767px) {
    .ds-text-lead {
        margin-top: 1.5rem;
        font-size: .75rem;
        line-height: 2;
    }

    .ds-text-lead--size-m {
        font-size: .75rem;
    }

}

.ds-text-caution {
    margin-top: 1.5rem;
    color: #333;
    font-size: .88rem;
}

@media screen and (max-width:767px) {
    .ds-text-caution {
        font-size: .75rem;
    }
}


.t-center {
    text-align: center;
}

@media screen and (min-width: 768px) {
    .t-pc-center {
        text-align: center;
    }
}

@media screen and (max-width: 767px) {
    .t-sp-center {
        text-align: center;
    }
}

.t-color-primary {
    color: var(--color-primary);
}


.justify-end {
    justify-content: flex-end;
}

.align-vertical-btm {
    align-items: flex-end;
}

.t-bold {
    font-weight: 800;
}


/* ------------------------------------------------------------------------------------------
*
    grid
*
------------------------------------------------------------------------------------------ */
.ds-grid {
    display: flex;
    width: 100%;
}

.ds-grid--wrap {
    flex-wrap: wrap;
}

.ds-grid--center {
    justify-content: center;
}


.ds-grid--3col {
    gap: 1.5rem;
}

.ds-grid--3col>* {
    width: 33%;
}


.ds-grid--2col {
    gap: 2rem;
}

.ds-grid--2col>* {
    width: 50%;
}

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

    .ds-grid--sp-wrap {
        flex-wrap: wrap;
    }

    .ds-grid--sp-1col {
        flex-direction: column;
    }

    .ds-grid--sp-1col>* {
        width: 100%;
    }


    .ds-grid--sp-2col {
        gap: 1rem;
    }

    .ds-grid--sp-1col>* {
        width: 100%;
    }
}


.pff-media-text {
    display: flex;
    flex-wrap: wrap;
}

.pff-media-text .pff-media {
    width: 253px;
}


.pff-media-text__content {
    padding-left: .88rem;
    width: calc(100% - 253px);
}


/* ------------------------------------------------------------------------------------------
*
    button
*
------------------------------------------------------------------------------------------ */
.c-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: .4rem .4rem;
    min-width: 278px;
    min-height: 37px;
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 40px;
    box-sizing: border-box;
    color: var(--color-beige);
    font-size: .8rem;
    font-weight: 800;
    transition: all .3s ease-in;
}


.c-button .circle-right {
    display: inline-flex;
    margin-left: .3rem;
    width: 22px;
    height: 22px;
    border: 2px solid var(--color-beige);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
}


.c-button .circle-right i {
    font-size: .7rem;
}

@media(hover: hover) {

    .c-button:hover {
        opacity: .75;
    }
}


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

    .c-button {
        min-width: 100%;
        min-height: 40px;
        font-size: .88rem;
    }

    .c-button .circle-right {
        width: 25px;
        height: 25px;
    }
}


.c-button--size-md {
    min-width: 280px;
    min-height: 60px;
    font-size: .75rem;
}

.c-button--black {
    border-color: var(--main-color);
    color: var(--main-color);
    background-color: var(--color-beige);
}


.c-button-outline {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: .5rem .4rem;
    min-width: 278px;
    min-height: 37px;
    background-color: var(--color-beige);
    border: 1px solid var(--color-primary);
    border-radius: 40px;
    box-sizing: border-box;
    color: var(--color-primary);
    font-size: .8rem;
    font-weight: 800;
    transition: all .3s ease-in;
}

@media(hover: hover) {

    .c-button-outline:not(:disabled):hover {
        opacity: .75;
    }
}

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

    .c-button-outline {
        min-width: 100%;
        min-height: 40px;
        font-size: .88rem;
    }
}

.c-button-outline--black {
    border-color: var(--main-color);
    color: var(--main-color);
}


.c-button-outline--black-dashed {
    border: 1px dashed var(--main-color);
    color: var(--main-color);
}

@media(hover: hover) {

    .c-button-outline--black-dashed:not(:disabled):hover,
    .c-button-outline--black:not(:disabled):hover {
        background-color: var(--main-color);
        color: #fff;
        opacity: 1;
    }
}



.button-grid {
    margin: 0 auto;
    max-width: 599px;
    flex-wrap: wrap;
    gap: .5rem .5rem;
}

.button-grid-item {
    position: relative;
}

.button-grid .number-icn {
    position: absolute;
    top: 50%;
    left: 0;
    display: flex;
    width: 45px;
    height: 45px;
    background: url(../img/number_icn.png) no-repeat;
    background-size: 100% auto;
    color: var(--color-primary);
    font-size: 1rem;
    font-weight: 800;
    justify-content: center;
    align-items: center;
    z-index: 1;
    transform: translateY(-50%);
}

.number-icn .number {
    letter-spacing: -1.5px;
}

.button-grid .c-button {
    position: relative;
    margin-left: 25px;
    padding: .4rem 2.5rem .4rem 1.4rem;
    min-width: 90.8%;
    height: 100%;
    justify-content: flex-start;

}

.button-grid .c-button .c-button__txt {
    width: calc(100% - 18px);
    text-align: right;
    font-style: italic;
}

.button-grid .c-button small {
    font-size: .88em;
    font-style: normal;
}

.button-grid .circle-right--ext {
    position: absolute;
    right: 1.4rem;
    width: 30px;
    height: 30px;
}


@media screen and (min-width:768px) {
    .button-grid.ds-grid--2col>* {
        width: calc(50% - .25rem);
    }
}

@media screen and (max-width:767px) {
    .button-grid {
        max-width: 100%;
        align-items: center;
    }

    .button-grid .button-grid-item {
        max-width: 285px;
    }

    .button-grid .c-button {
        padding: .5rem 2.5rem .5rem 1.5rem;
        font-size: .8rem;
        min-height: 60px;
    }

    .button-grid .number-icn {
        width: 50px;
        height: 50px;
    }

    .button-grid .circle-right--ext {
        width: 30px;
        height: 30px;
    }
}


.cat-btn {
    display: inline-flex;
    padding: 0 .3rem;
    background-color: var(--color-primary);
    color: var(--color-beige);
    font-size: .88rem;
}

@media screen and (max-width:767px) {
    .cat-btn {
        font-size: .75rem;
    }
}


a.card {
    text-decoration: none;
    color: #000;
    display: block;
    transition: all .3s ease-in;
}

.card__img img {
    width: 100%;
}

@media (hover: hover) {
    a.card:hover {
        opacity: .75;
    }
}


.award-card {
    border: 1px solid var(--color-primary);
    border-radius: 10px;
}



.order-1 {
    order: 1;
}

.order-2 {
    order: 1;
}

.order-3 {
    order: 3;
}

@media screen and (min-width:768px) {
    .order-pc-1 {
        order: 1;
    }

    .order-pc-2 {
        order: 1;
    }

    .order-pc-3 {
        order: 3;
    }

}

.circle-right {
    display: inline-flex;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
}

.circle-right--primary {
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
}

.circle-right i {
    font-size: 1.25em;
}

.circle-right--ext {
    transform: rotate(-45deg);
}

@media screen and (max-width:767px) {
    .circle-right {
        width: 24px;
        height: 24px;
    }
}



.award-gallery-text {
    display: flex;
    flex-wrap: wrap;
    gap: 1.88rem;
    width: 100%;
}


.award-gallery-text .award-gallery {
    max-width: 44.75%;
}

.award-swiper .swiper-button-next,
.award-swiper .swiper-button-prev {
    color: #fff;
}

.award-swiper .swiper-button-next:after,
.award-swiper .swiper-button-prev:after {
    font-size: 2rem;
}

.award-gallery .figcaption {
    margin-top: .5rem;
    text-align: right;
    color: #999;
    font-size: .75rem;
}

.award-gallery-text .swiper-thumb-nav {
    margin-top: .3rem;
}

.award-gallery-text .swiper-slide img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 16/10;
}

.award-gallery-text .award-gallery-text__content {
    width: calc(55.25% - 1.88rem);
}


.award-gallery-text .mov-title {
    margin-bottom: .2rem;
    color: #000;
    font-size: 1.7rem;
    line-height: 1.1;
    font-weight: 800;
}

.award-gallery-text .mov-copy {
    margin-top: .5rem;
    padding: 0.4rem .6rem;
    background-color: var(--color-primary);
    color: var(--color-beige);
    font-size: .88rem;
    line-height: 1.3;
}

.award-gallery-text .cat-btn {
    margin-top: .5rem;
}

.award-gallery-text .mov-copy+.ds-text,
.award-gallery-text .cat-btn+.ds-text {
    margin-top: .4rem;
}

.award-gallery-text .ds-text+.mov-social-link {
    margin-top: .5rem;
}


.cast-btn .c-button-outline {
    margin-top: 1.25rem;
    min-width: 100%;
    min-height: 72px;
    font-size: 1rem;
    border-radius: 10px;
}

.cast-btn .c-button-outline span {
    margin-left: .5rem;
    font-size: .7rem;
}

@media screen and (min-width: 768px) and (max-width: 880px) {
    .award-gallery-text .award-gallery {
        max-width: 100%;
    }

    .award-gallery-text .award-gallery-text__content {
        width: 100%;
    }
}

@media screen and (min-width: 881px) and (max-width: 1024px) {
    .award-gallery-text {
        gap: 2rem;
    }

    .award-gallery-text .award-gallery-text__content {
        width: calc(51.25% - 2rem);
    }
}


@media screen and (max-width: 767px) {
    .pff-about-section {
        padding-bottom: 4rem;
    }

    .award-gallery-text {
        gap: .75rem;
    }

    .award-gallery-text .award-gallery {
        max-width: 100%;
    }

    .award-swiper .swiper-button-next:after,
    .award-swiper .swiper-button-prev:after {
        font-size: 1.5rem;
    }

    .award-gallery-text .award-gallery-text__content {
        width: 100%;
    }

    .award-gallery-text .mov-title {
        font-size: 1.25rem;
    }


    .award-gallery-text__content .ds-text {
        font-size: .7rem;
    }

    .award-gallery-text .ds-text+.ds-text--sp-size-s {
        margin-top: .75rem;
        font-size: .6rem;
    }

    .award-gallery-text .mov-copy {
        padding: 0.4rem .6rem;
        font-size: .7rem;
    }

    .award-gallery-text .cat-btn {
        padding: .4rem .5rem;
    }

    .cast-btn .c-button-outline {
        border-radius: 8px;
        min-height: 52px;
        font-size: .75rem;
    }

}

.profile-box {
    border: 5px solid var(--color-primary);
    border-radius: 35px;
    background-color: var(--color-beige);
}

.profile-box__in {
    margin: 6px;
    padding: 1.5rem 3.125rem 1.5rem;
    border: 2px solid var(--color-primary);
    border-radius: 25px;
}

.profile-box .pff-media-text__content {
    align-self: center;
}

.profile-box .ds-text {
    margin-top: .4rem;
}


.profile-box .cat-btn {
    font-weight: 800;
}

@media screen and (max-width: 767px) {
    .profile-box {
        border-radius: 15px;
    }

    .profile-box__in {
        margin: 6px;
        padding: 1.88rem 1.25rem 1rem;
        border-radius: 10px;
    }

    .profile-box .pff-media-text {
        flex-wrap: wrap;
    }

    .profile-box .pff-media-text .pff-media {
        width: 100%;
    }

    .profile-box .pff-media-text__content {
        margin-top: 1.13rem;
        padding-left: 0;
        width: 100%;
    }

}

/* ------------------------------------------------------------------------------------------
*
    pff-t-footer
*
------------------------------------------------------------------------------------------ */

.pff-t-footer {
    position: relative;
    padding: 1px 0;
    background-color: var(--color-primary);
}

.pff-t-footer .footer-in {
    margin: 1.13rem;
    border: 1.5px solid var(--color-beige);
}

.pff-t-footer .footer-container {
    width: calc(100% - 297px);
}


.pff-t-footer .pff-ft-contact {
    position: relative;
    left: 3rem;
    max-width: 552px;
    margin: 3rem auto;
    display: flex;
    flex-wrap: wrap;
}


.pff-ft-contact .ft-logo {
    width: 116px;
}

.pff-ft-contact .ft-logo img {
    max-width: 100%;
}

.pff-ft-contact .ft-contact {
    padding-left: 1.13rem;
    width: calc(100% - 116px);
    color: var(--color-beige);
    font-size: .85rem;
    font-weight: bold;
}

.pff-ft-contact .ft-link {
    margin-top: .2rem;
    width: 100%;
}

.pff-ft-contact .ft-link a {
    transition: all .3s ease-in;
}

.pff-ft-contact .ft-link img {
    max-width: 100%;
}

@media(hover: hover) {

    .ft-link a:hover {
        opacity: .75;
    }
}

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

    .pff-t-footer .footer-in {
        margin: .5rem;
    }

    .pff-t-footer .pff-ft-contact {
        max-width: 80%;
        margin: 3.5rem auto 2.5rem;
        flex-direction: column;
    }

    .pff-ft-contact .ft-contact {
        margin-top: .6rem;
        padding-left: 0;
        width: 100%;
        font-size: .95rem;
    }

    .pff-ft-contact .ft-link {
        margin-top: .6rem;
    }
}

@media screen and (min-width:768px) and (max-width:880px) {
    .pff-t-footer .pff-ft-contact {
        left: 0;
    }
}


@media screen and (max-width:880px) {
    .pff-t-footer .footer-container {
        width: 100%;
    }

    .pff-t-footer .pff-ft-contact {
        left: 0;
    }
}

@media screen and (max-width:767px) {
    #pff-btm-link {
        position: fixed;
        bottom: 0;
        width: 100%;
        background-color: var(--color-primary);
        z-index: 9999;
        transition: transform 0.3s ease;
    }

    #pff-btm-link.hide {
        transform: translateY(100%);
    }

    #pff-btm-link .nav-btm ul {
        margin-top: 0;
        padding: .88rem 0;
    }


    #pff-btm-link .nav-btm li:not(:first-child) {
        border-left-color: var(--color-beige);
    }

    #pff-btm-link .nav-btm__item img {
        margin-bottom: .5rem;
        width: auto;
        height: 9vw;
    }


    #pff-btm-link .nav-btm__item span {
        min-width: 90px;
        width: inherit;
        font-size: .75rem;
        font-weight: 800;
    }
}
