/* --------------------
 Sports
-------------------- */
.main {
    overflow-x: clip;
}

:root {
    --color-7ccca9: #7ccca9;
    --color-ffae42: #ffae42;
}

.menu {
    align-items: stretch;
    display: flex;
    flex-flow: row wrap;
    gap: 32px 30px;
    justify-content: center;
    margin: 0 auto 70px;
    max-width: calc(930px + var(--c-pad)*2);
    padding: 50px var(--c-pad) 0;
    position: relative;
    width: 100%;
    z-index: 1;
}

.menu__item {
    color: inherit;
    display: block;
    flex: 0 0 100%;
    text-decoration: none;
    transform: translateZ(0);
}

@media (min-width: 768px) {
    .menu__item {
        flex: 0 0 calc(50% - 15px);
    }
}

.menu__item__main {
    background: var(--color-white);
    border-radius: 10px;
    box-shadow: 2px 2px 2px rgba(var(--color-black-rgb), 0.3);
    height: 100px;
    margin: 0 0 8px;
    overflow: hidden;
    padding: 8px;
    position: relative;
    transition: opacity 0.35s var(--cubic) 0s;
    width: 100%;
}

@media (min-width: 992px) {
    .menu__item__main {
        margin: 0 0 12px;
        padding: 10px;
    }
}

.menu__item__main__fig {
    bottom: 0;
    left: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
}

.menu__item__main__fig img {
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.35s var(--cubic) 0s;
    width: 100%;
}

.menu__item__main:before {
    background-color: var(--color-white);
    bottom: 0;
    -webkit-clip-path: polygon(0 0, 57% 0, 50% 100%, 0 100%);
    clip-path: polygon(0 0, 57% 0, 50% 100%, 0 100%);
    content: "";
    display: block;
    left: 0;
    opacity: 0.8;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}

.menu__item__main__label {
    background-color: #000;
    border-radius: 20px;
    color: var(--color-white);
    display: inline-block;
    font-size: var(--fs11);
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.2;
    margin: 0 0 4px;
    padding: 5px 10px;
    position: relative;
    width: -webkit-fit-content;
    width: fit-content;
    z-index: 1;
}

@media (min-width: 992px) {
    .menu__item__main__label {
        font-size: var(--fs12);
        margin: 0 0 4px;
    }
}

.menu__item__main__title {
    color: var(--color-dark-gray);
    font-size: var(--fs14);
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.5;
    margin: 0;
    padding: 0 0 0 4px;
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .menu__item__main__title {
        font-size: var(--fs15);
        padding: 0 0 0 10px;
    }
}

.menu__item__main__title em {
    font-size: var(--fs18);
    font-style: normal;
    font-weight: inherit;
    line-height: 1.5;
}

@media (min-width: 992px) {
    .menu__item__main__title em {
        font-size: var(--fs20);
    }
}

.menu__item__main__title img {
    display: inline-block;
    margin-left: 4px;
    transform: translateY(-1px);
    vertical-align: middle;
    width: 11px;
}

.menu__item__note p {
    color: var(--color-gray);
    font-size: var(--fs12);
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.33;
    margin: 0;
}

.menu__item:focus .menu__item__main {
    opacity: 0.75;
}

.menu__item:focus .menu__item__main__fig img {
    transform: scale(1.05);
}

@media (hover: hover) and (pointer: fine) {
    .menu__item:hover .menu__item__main {
        opacity: 0.75;
    }

    .menu__item:hover .menu__item__main__fig img {
        transform: scale(1.05);
    }
}

.menu__item--contact .menu__item__main__label {
    background-color: var(--color-orange);
}

.menu__item--sports .menu__item__main__label {
    background-color: var(--color-red);
}

.overview {
    margin: 0 auto 80px;
    padding: 0 var(--c-pad);
    width: 100%;
}

@media (min-width: 768px) {
    .overview {
        margin: 0 auto 100px;
    }
}

.overview__title {
    color: var(--color-teal);
    font-size: var(--fs22);
    font-weight: 500;
    letter-spacing: 0.3em;
    line-height: 1.92;
    margin: 0 0 10px;
    text-align: center;
}

@media (min-width: 768px) {
    .overview__title {
        font-size: var(--fs26);
    }
}

.overview__content p {
    color: var(--color-dark-gray);
    font-size: var(--fs14);
    font-weight: 300;
    letter-spacing: 0.03em;
    line-height: 1.62;
    margin: 0;
    text-align: center;
}

@media (min-width: 768px) {
    .overview__content p {
        font-size: var(--fs16);
    }
}

@media (min-width: 992px) {
    .overview__content p {
        font-size: var(--fs18);
    }
}

.use {
    margin: 0 0 80px;
    position: relative;
}

@media (min-width: 768px) {
    .use {
        margin: 0 0 100px;
    }
}

.use-container {
    margin: 0 auto;
    padding: 30px var(--c-pad) 50px;
    position: relative;
    width: 100%;
    z-index: 1;
}

@media (min-width: 768px) {
    .use-container {
        padding: 40px var(--c-pad) 95px;
    }
}

.use__head {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    margin: 0 0 16px;
    padding: 28px 0 20px;
    position: relative;
}

@media (min-width: 768px) {
    .use__head {
        margin: 0 0 20px;
        padding: 44px 0 32px;
    }
}

@media (min-width: 992px) {
    .use__head {
        padding: 52px 0 36px;
    }
}

.use__head__frame {
    bottom: 0;
    left: -4px;
    pointer-events: none;
    position: absolute;
    right: auto;
    top: 0;
    width: 160px;
    z-index: 0;
}

@media (min-width: 768px) {
    .use__head__frame {
        left: -8px;
        width: 200px;
    }
}

@media (min-width: 1240px) {
    .use__head__frame {
        left: -36px;
    }
}

.use__head__frame span {
    bottom: 0;
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.use__head__frame span:before, .use__head__frame span:after {
    background-color: #cae7df;
    bottom: auto;
    content: "";
    display: block;
    height: 19px;
    left: auto;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    position: absolute;
    right: auto;
    top: auto;
    width: 29px;
}

@media (min-width: 768px) {
    .use__head__frame span:before, .use__head__frame span:after {
        height: 26px;
        width: 40px;
    }
}

.use__head__frame span:nth-child(1):before {
    left: 0;
    -webkit-mask-image: url(../images/commons/com-frame-left-top.svg);
    mask-image: url(../images/commons/com-frame-left-top.svg);
    top: 0;
}

.use__head__frame span:nth-child(1):after {
    -webkit-mask-image: url(../images/commons/com-frame-right-top.svg);
    mask-image: url(../images/commons/com-frame-right-top.svg);
    right: 0;
    top: 0;
}

.use__head__frame span:nth-child(2):before {
    bottom: 0;
    left: 0;
    -webkit-mask-image: url(../images/commons/com-frame-left-bottom.svg);
    mask-image: url(../images/commons/com-frame-left-bottom.svg);
}

.use__head__frame span:nth-child(2):after {
    bottom: 0;
    -webkit-mask-image: url(../images/commons/com-frame-right-bottom.svg);
    mask-image: url(../images/commons/com-frame-right-bottom.svg);
    right: 0;
}

.use__head__title {
    align-items: baseline;
    display: flex;
    flex-flow: row nowrap;
    gap: 0 12px;
    justify-content: flex-start;
}

@media (min-width: 768px) {
    .use__head__title {
        gap: 0 20px;
    }
}

.use__head__title__en {
    color: var(--color-teal);
    font-family: var(--ff-josefin-sans);
    font-size: 1.6875rem;
    letter-spacing: 0;
    line-height: 1;
    margin: 0;
}

@media (min-width: 768px) {
    .use__head__title__en {
        font-size: 2.625rem;
    }
}

.use__head__title__ja {
    color: var(--color-teal);
    font-size: var(--fs12);
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1;
    margin: 0;
}

@media (min-width: 768px) {
    .use__head__title__ja {
        font-size: var(--fs18);
    }
}

.use__list {
    align-items: flex-start;
    display: flex;
    flex-flow: row wrap;
    gap: 40px var(--c-pad);
    justify-content: flex-start;
}

@media (min-width: 768px) {
    .use__list {
        gap: 50px 40px;
    }
}

.use__list__item {
    width: calc(50% - var(--c-pad)*0.5);
}

@media (min-width: 768px) {
    .use__list__item {
        width: calc(33.33333% - 26.66667px);
    }
}

.use__list__item__fig {
    margin: 0 0 12px;
}

.use__list__item__fig img {
    aspect-ratio: 307/202;
    height: auto;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.use__list__item__title {
    font-size: var(--fs16);
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.46;
    margin: 0 0 8px;
}

@media (min-width: 768px) {
    .use__list__item__title {
        font-size: var(--fs20);
        margin: 0 0 12px;
    }
}

.use__list__item__content p {
    font-size: var(--fs14);
    font-weight: 300;
    letter-spacing: 0.03em;
    line-height: 1.62;
    margin: 0;
}

@media (min-width: 768px) {
    .use__list__item__content p {
        font-size: var(--fs16);
    }
}

.flow {
    margin: 0 0 80px;
}

@media (min-width: 768px) {
    .flow {
        margin: 0 0 110px;
    }
}

@media (min-width: 992px) {
    .flow {
        margin: 0 0 155px;
    }
}

.flow-container {
    margin: 0 auto;
    padding: 0 var(--c-pad);
    position: relative;
    width: 100%;
    z-index: 1;
}

.flow__head {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    margin: 0 0 16px;
    padding: 28px 0 20px;
    position: relative;
}

@media (min-width: 768px) {
    .flow__head {
        margin: 0 0 28px;
        padding: 44px 0 32px;
    }
}

@media (min-width: 992px) {
    .flow__head {
        padding: 52px 0 36px;
    }
}

.flow__head__frame {
    bottom: 0;
    left: -4px;
    pointer-events: none;
    position: absolute;
    right: auto;
    top: 0;
    width: 160px;
    z-index: 0;
}

@media (min-width: 768px) {
    .flow__head__frame {
        left: -8px;
        width: 200px;
    }
}

@media (min-width: 1240px) {
    .flow__head__frame {
        left: -36px;
    }
}

.flow__head__frame span {
    bottom: 0;
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.flow__head__frame span:before, .flow__head__frame span:after {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: auto;
    content: "";
    display: block;
    height: 19px;
    left: auto;
    position: absolute;
    right: auto;
    top: auto;
    width: 29px;
}

@media (min-width: 768px) {
    .flow__head__frame span:before, .flow__head__frame span:after {
        height: 26px;
        width: 40px;
    }
}

.flow__head__frame span:nth-child(1):before {
    background-image: url(../images/commons/com-frame-left-top.svg);
    left: 0;
    top: 0;
}

.flow__head__frame span:nth-child(1):after {
    background-image: url(../images/commons/com-frame-right-top.svg);
    right: 0;
    top: 0;
}

.flow__head__frame span:nth-child(2):before {
    background-image: url(../images/commons/com-frame-left-bottom.svg);
    bottom: 0;
    left: 0;
}

.flow__head__frame span:nth-child(2):after {
    background-image: url(../images/commons/com-frame-right-bottom.svg);
    bottom: 0;
    right: 0;
}

.flow__head__title {
    align-items: baseline;
    display: flex;
    flex-flow: row nowrap;
    gap: 0 12px;
    justify-content: flex-start;
}

@media (min-width: 768px) {
    .flow__head__title {
        gap: 0 20px;
    }
}

.flow__head__title__en {
    color: var(--color-teal);
    font-family: var(--ff-josefin-sans);
    font-size: 1.6875rem;
    letter-spacing: 0;
    line-height: 1;
    margin: 0;
}

@media (min-width: 768px) {
    .flow__head__title__en {
        font-size: 2.625rem;
    }
}

.flow__head__title__ja {
    color: var(--color-teal);
    font-size: var(--fs12);
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1;
    margin: 0;
}

@media (min-width: 768px) {
    .flow__head__title__ja {
        font-size: var(--fs18);
    }
}

.flow__item-wrapper {
    align-items: flex-start;
    display: flex;
    flex-flow: row wrap;
    gap: 30px 30px;
    justify-content: flex-start;
    margin: 0 auto;
    padding: 0 10px 0 0;
    width: 100%;
}

@media (min-width: 768px) {
    .flow__item-wrapper {
        gap: 30px 60px;
        padding: 0 30px 0 0;
    }
}

@media (min-width: 992px) {
    .flow__item-wrapper {
        gap: 30px 80px;
    }
}

.flow__item {
    flex: 0 0 calc(50% - 15px);
    position: relative;
}

@media (min-width: 768px) {
    .flow__item {
        flex: 0 0 calc(33.33333% - 40px);
    }
}

@media (min-width: 992px) {
    .flow__item {
        flex: 0 0 calc(33.33333% - 53.33333px);
    }
}

.flow__item__angle {
    aspect-ratio: 255/140;
    content: "";
    display: block;
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    z-index: 1;
}

.flow__item__angle:after {
    background-color: var(--color-teal);
    bottom: 0;
    -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    content: "";
    height: 21px;
    left: auto;
    margin: auto 0;
    position: absolute;
    right: -20.25px;
    top: 0;
    width: 11px;
}

@media (min-width: 768px) {
    .flow__item__angle:after {
        height: 30px;
        right: -37.5px;
        width: 15px;
    }
}

@media (min-width: 992px) {
    .flow__item__angle:after {
        right: -47.5px;
    }
}

.flow__item__number {
    border-radius: 5px;
    margin: 0 0 12px;
    overflow: hidden;
    position: relative;
}

@media (min-width: 768px) {
    .flow__item__number {
        border-radius: 10px;
    }
}

.flow__item__number:before {
    background-color: var(--color-white);
    bottom: -1px;
    -webkit-clip-path: polygon(0 0, 58.8235294118% 0, 43.137254902% 100%, 0 100%);
    clip-path: polygon(0 0, 58.8235294118% 0, 43.137254902% 100%, 0 100%);
    content: "";
    display: block;
    left: -1px;
    opacity: 0.8;
    position: absolute;
    right: -1px;
    top: -1px;
    z-index: 0;
}

.flow__item__number__fig {
    overflow: hidden;
    width: 100%;
}

.flow__item__number__fig img {
    aspect-ratio: 255/140;
    height: auto;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.flow__item__number__text {
    align-items: stretch;
    bottom: 0;
    color: var(--color-teal);
    display: flex;
    flex-flow: column nowrap;
    font-family: var(--ff-josefin-sans);
    font-size: var(--fs10);
    justify-content: center;
    left: 0;
    padding: 8px 0 0;
    position: absolute;
    text-align: center;
    top: 0;
    width: 70px;
}

@media (min-width: 768px) {
    .flow__item__number__text {
        width: 100px;
    }
}

@media (min-width: 992px) {
    .flow__item__number__text {
        width: 120px;
    }
}

.flow__item__number__text span {
    display: block;
    font-family: var(--ff-josefin-sans);
    font-size: var(--fs12);
    letter-spacing: 0;
    line-height: 1;
    margin: 0 0 4px;
}

@media (min-width: 768px) {
    .flow__item__number__text span {
        font-size: var(--fs14);
        margin: 0 0 8px;
    }
}

.flow__item__number__text em {
    display: block;
    font-family: var(--ff-josefin-sans);
    font-size: var(--fs40);
    font-style: normal;
    font-weight: inherit;
    letter-spacing: 0;
    line-height: 1;
}

@media (min-width: 768px) {
    .flow__item__number__text em {
        font-size: 3rem;
    }
}

@media (min-width: 992px) {
    .flow__item__number__text em {
        font-size: 3.1875rem;
    }
}

.flow__item__title {
    font-size: var(--fs16);
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.46;
    margin: 0 0 10px;
}

@media (min-width: 768px) {
    .flow__item__title {
        font-size: var(--fs20);
    }
}

.flow__item__content p {
    font-size: var(--fs14);
    font-weight: 300;
    letter-spacing: 0.03em;
    line-height: 1.62;
    margin: 0;
}

@media (min-width: 768px) {
    .flow__item__content p {
        font-size: var(--fs16);
    }
}

.flow__item__content p a {
    color: var(--color-teal);
    font-weight: 500;
    text-decoration: underline;
    -webkit-text-decoration-color: currentColor;
    text-decoration-color: currentColor;
    transition: -webkit-text-decoration-color 0.35s var(--cubic) 0s;
    transition: text-decoration-color 0.35s var(--cubic) 0s;
    transition: text-decoration-color 0.35s var(--cubic) 0s, -webkit-text-decoration-color 0.35s var(--cubic) 0s;
}

.flow__item__content p a:focus {
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
}

@media (hover: hover) and (pointer: fine) {
    .flow__item__content p a:hover {
        -webkit-text-decoration-color: transparent;
        text-decoration-color: transparent;
    }
}

.method {
    margin: 0 0 80px;
}

@media (min-width: 768px) {
    .method {
        margin: 0 0 110px;
    }
}

@media (min-width: 992px) {
    .method {
        margin: 0 0 160px;
    }
}

.method-container {
    margin: 0 auto;
    padding: 0 var(--c-pad);
    position: relative;
    width: 100%;
    z-index: 1;
}

.method__head {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    margin: 0 0 40px;
    padding: 28px 0 20px;
    position: relative;
}

@media (min-width: 768px) {
    .method__head {
        margin: 0 0 50px;
        padding: 44px 0 32px;
    }
}

@media (min-width: 992px) {
    .method__head {
        padding: 52px 0 36px;
    }
}

.method__head__frame {
    bottom: 0;
    left: -4px;
    pointer-events: none;
    position: absolute;
    right: auto;
    top: 0;
    width: 160px;
    z-index: 0;
}

@media (min-width: 768px) {
    .method__head__frame {
        left: -8px;
        width: 200px;
    }
}

@media (min-width: 1240px) {
    .method__head__frame {
        left: -36px;
    }
}

.method__head__frame span {
    bottom: 0;
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.method__head__frame span:before, .method__head__frame span:after {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: auto;
    content: "";
    display: block;
    height: 19px;
    left: auto;
    position: absolute;
    right: auto;
    top: auto;
    width: 29px;
}

@media (min-width: 768px) {
    .method__head__frame span:before, .method__head__frame span:after {
        height: 26px;
        width: 40px;
    }
}

.method__head__frame span:nth-child(1):before {
    background-image: url(../images/commons/com-frame-left-top.svg);
    left: 0;
    top: 0;
}

.method__head__frame span:nth-child(1):after {
    background-image: url(../images/commons/com-frame-right-top.svg);
    right: 0;
    top: 0;
}

.method__head__frame span:nth-child(2):before {
    background-image: url(../images/commons/com-frame-left-bottom.svg);
    bottom: 0;
    left: 0;
}

.method__head__frame span:nth-child(2):after {
    background-image: url(../images/commons/com-frame-right-bottom.svg);
    bottom: 0;
    right: 0;
}

.method__head__title {
    align-items: baseline;
    display: flex;
    flex-flow: row nowrap;
    gap: 0 12px;
    justify-content: flex-start;
}

@media (min-width: 768px) {
    .method__head__title {
        gap: 0 20px;
    }
}

.method__head__title__en {
    color: var(--color-teal);
    font-family: var(--ff-josefin-sans);
    font-size: 1.6875rem;
    letter-spacing: 0;
    line-height: 1;
    margin: 0;
}

@media (min-width: 768px) {
    .method__head__title__en {
        font-size: 2.625rem;
    }
}

.method__head__title__ja {
    color: var(--color-teal);
    font-size: var(--fs12);
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1;
    margin: 0;
}

@media (min-width: 768px) {
    .method__head__title__ja {
        font-size: var(--fs18);
    }
}

.method__content {
    margin: 0 0 40px;
}

@media (min-width: 768px) {
    .method__content {
        margin: 0 0 44px;
    }
}

.method__content p {
    font-size: var(--fs14);
    font-weight: 300;
    letter-spacing: 0.03em;
    line-height: 1.62;
    margin: 0;
}

@media (min-width: 768px) {
    .method__content p {
        font-size: var(--fs16);
    }
}

.method__list {
    align-items: flex-start;
    display: flex;
    flex-flow: row wrap;
    gap: 40px var(--c-pad);
    justify-content: flex-start;
    margin: 0 0 52px;
}

@media (min-width: 768px) {
    .method__list {
        gap: 36px 40px;
    }
}

.method__list__item {
    width: calc(50% - var(--c-pad)*0.5);
}

@media (min-width: 768px) {
    .method__list__item {
        width: calc(33.33333% - 26.66667px);
    }
}

.method__list__item__fig {
    margin: 0 0 12px;
}

@media (min-width: 768px) {
    .method__list__item__fig {
        margin: 0 0 16px;
    }
}

.method__list__item__fig img {
    aspect-ratio: 307/202;
    height: auto;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.method__list__item__title {
    font-size: var(--fs14);
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.82;
    margin: 0 0 5px;
}

@media (min-width: 768px) {
    .method__list__item__title {
        font-size: var(--fs16);
    }
}

.method__list__item__content p {
    font-size: var(--fs14);
    font-weight: 300;
    letter-spacing: 0.03em;
    line-height: 1.62;
    margin: 0;
}

@media (min-width: 768px) {
    .method__list__item__content p {
        font-size: var(--fs16);
    }
}

.category {
    margin: 0 0 80px;
}

@media (min-width: 768px) {
    .category {
        margin: 0 0 110px;
    }
}

@media (min-width: 992px) {
    .category {
        margin: 0 0 145px;
    }
}

.category-container {
    margin: 0 auto;
    padding: 0 var(--c-pad);
    position: relative;
    width: 100%;
    z-index: 1;
}

.category__head {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    margin: 0 0 40px;
    padding: 28px 0 20px;
    position: relative;
}

@media (min-width: 768px) {
    .category__head {
        margin: 0 0 50px;
        padding: 44px 0 32px;
    }
}

@media (min-width: 992px) {
    .category__head {
        padding: 52px 0 36px;
    }
}

.category__head__frame {
    bottom: 0;
    left: -4px;
    pointer-events: none;
    position: absolute;
    right: auto;
    top: 0;
    width: 160px;
    z-index: 0;
}

@media (min-width: 768px) {
    .category__head__frame {
        left: -8px;
        width: 200px;
    }
}

@media (min-width: 1240px) {
    .category__head__frame {
        left: -36px;
    }
}

.category__head__frame span {
    bottom: 0;
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.category__head__frame span:before, .category__head__frame span:after {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: auto;
    content: "";
    display: block;
    height: 19px;
    left: auto;
    position: absolute;
    right: auto;
    top: auto;
    width: 29px;
}

@media (min-width: 768px) {
    .category__head__frame span:before, .category__head__frame span:after {
        height: 26px;
        width: 40px;
    }
}

.category__head__frame span:nth-child(1):before {
    background-image: url(../images/commons/com-frame-left-top.svg);
    left: 0;
    top: 0;
}

.category__head__frame span:nth-child(1):after {
    background-image: url(../images/commons/com-frame-right-top.svg);
    right: 0;
    top: 0;
}

.category__head__frame span:nth-child(2):before {
    background-image: url(../images/commons/com-frame-left-bottom.svg);
    bottom: 0;
    left: 0;
}

.category__head__frame span:nth-child(2):after {
    background-image: url(../images/commons/com-frame-right-bottom.svg);
    bottom: 0;
    right: 0;
}

.category__head__title {
    align-items: baseline;
    display: flex;
    flex-flow: row nowrap;
    gap: 0 12px;
    justify-content: flex-start;
}

@media (min-width: 768px) {
    .category__head__title {
        gap: 0 20px;
    }
}

.category__head__title__en {
    color: var(--color-teal);
    font-family: var(--ff-josefin-sans);
    font-size: 1.6875rem;
    letter-spacing: 0;
    line-height: 1;
    margin: 0;
}

@media (min-width: 768px) {
    .category__head__title__en {
        font-size: 2.625rem;
    }
}

.category__head__title__ja {
    color: var(--color-teal);
    font-size: var(--fs12);
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1;
    margin: 0;
}

@media (min-width: 768px) {
    .category__head__title__ja {
        font-size: var(--fs18);
    }
}

.category__content {
    margin: 0 0 40px;
}

.category__content p {
    font-size: var(--fs14);
    font-weight: 300;
    letter-spacing: 0.03em;
    line-height: 1.62;
    margin: 0;
}

@media (min-width: 768px) {
    .category__content p {
        font-size: var(--fs16);
    }
}

.category__list {
    align-items: flex-start;
    display: flex;
    flex-flow: row wrap;
    gap: var(--c-pad);
    justify-content: flex-start;
    margin: 0 0 52px;
}

@media (min-width: 768px) {
    .category__list {
        gap: 30px 16px;
    }
}

.category__list__item {
    position: relative;
    width: calc(50% - var(--c-pad)*0.5);
}

@media (min-width: 768px) {
    .category__list__item {
        width: calc(25% - 12px);
    }
}

@media (min-width: 992px) {
    .category__list__item {
        width: calc(20% - 12.8px);
    }
}

.category__list__item__fig img {
    aspect-ratio: 185/104;
    height: auto;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.category__list__item__title {
    bottom: 0;
    color: var(--color-white);
    font-size: var(--fs12);
    font-weight: 500;
    left: 0;
    letter-spacing: 0.1em;
    line-height: 1.4;
    margin: 0;
    overflow: hidden;
    padding: 8px 4px;
    position: absolute;
    right: 0;
    top: auto;
    z-index: auto;
}

@media (min-width: 768px) {
    .category__list__item__title {
        font-size: var(--fs14);
    }
}

.category__list__item__title:before {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0.9) 100%);
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    mix-blend-mode: multiply;
    opacity: 0.8;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
}

.category__list__item__title span {
    display: block;
    position: relative;
    z-index: 1;
}

.photog {
    margin: 0 auto 80px;
    width: calc(100% - var(--c-pad)*2);
}

@media (min-width: 768px) {
    .photog {
        margin: 0 auto 110px;
    }
}

@media (min-width: 992px) {
    .photog {
        margin: 0 auto 150px;
    }
}

.photog-container {
    background-color: var(--color-white);
    border-radius: 25px;
    margin: 0 auto;
    padding: 40px var(--c-pad);
    width: 100%;
}

@media (min-width: 768px) {
    .photog-container {
        border-radius: 50px;
        padding: 40px var(--c-pad) 90px;
    }
}

.photog__head {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    margin: 0 0 40px;
    padding: 28px 0 20px;
    position: relative;
}

@media (min-width: 768px) {
    .photog__head {
        margin: 0 0 70px;
        padding: 44px 0 32px;
    }
}

@media (min-width: 992px) {
    .photog__head {
        padding: 52px 0 36px;
    }
}

.photog__head__frame {
    bottom: 0;
    left: 0;
    margin: 0 auto;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    width: 160px;
    z-index: 0;
}

@media (min-width: 768px) {
    .photog__head__frame {
        width: 200px;
    }
}

.photog__head__frame span {
    bottom: 0;
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.photog__head__frame span:before, .photog__head__frame span:after {
    background-color: var(--color-mint);
    bottom: auto;
    content: "";
    display: block;
    height: 19px;
    left: auto;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    position: absolute;
    right: auto;
    top: auto;
    width: 29px;
}

@media (min-width: 768px) {
    .photog__head__frame span:before, .photog__head__frame span:after {
        height: 26px;
        width: 40px;
    }
}

.photog__head__frame span:nth-child(1):before {
    left: 0;
    -webkit-mask-image: url(../images/commons/com-frame-left-top.svg);
    mask-image: url(../images/commons/com-frame-left-top.svg);
    top: 0;
}

.photog__head__frame span:nth-child(1):after {
    -webkit-mask-image: url(../images/commons/com-frame-right-top.svg);
    mask-image: url(../images/commons/com-frame-right-top.svg);
    right: 0;
    top: 0;
}

.photog__head__frame span:nth-child(2):before {
    bottom: 0;
    left: 0;
    -webkit-mask-image: url(../images/commons/com-frame-left-bottom.svg);
    mask-image: url(../images/commons/com-frame-left-bottom.svg);
}

.photog__head__frame span:nth-child(2):after {
    bottom: 0;
    -webkit-mask-image: url(../images/commons/com-frame-right-bottom.svg);
    mask-image: url(../images/commons/com-frame-right-bottom.svg);
    right: 0;
}

.photog__head__title {
    align-items: center;
    display: flex;
    flex-flow: column nowrap;
    gap: 8px 12px;
    justify-content: center;
}

@media (min-width: 768px) {
    .photog__head__title {
        align-items: baseline;
        flex-direction: row;
        gap: 0 20px;
        justify-content: flex-start;
    }
}

.photog__head__title__en {
    color: var(--color-teal);
    font-family: var(--ff-josefin-sans);
    font-size: 1.6875rem;
    letter-spacing: 0;
    line-height: 1;
    margin: 0;
}

@media (min-width: 768px) {
    .photog__head__title__en {
        font-size: 2.625rem;
    }
}

.photog__head__title__ja {
    color: var(--color-teal);
    font-size: var(--fs12);
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1;
    margin: 0;
}

@media (min-width: 768px) {
    .photog__head__title__ja {
        font-size: var(--fs18);
    }
}

.photog__profile {
    align-items: flex-start;
    display: flex;
    flex-flow: row wrap;
    gap: 20px 0;
    margin: 0 auto 60px;
    width: 100%;
}

@media (min-width: 768px) {
    .photog__profile {
        margin: 0 auto 100px;
    }
}

.photog__profile__fig {
    flex: 0 0 100%;
    text-align: center;
}

@media (min-width: 768px) {
    .photog__profile__fig {
        flex: 0 0 50%;
    }
}

.photog__profile__fig img {
    width: 100%;
}

.photog__profile__main {
    flex: 0 0 100%;
}

@media (min-width: 768px) {
    .photog__profile__main {
        flex: 0 0 50%;
        padding: 0 0 0 30px;
    }
}

.photog__profile__main__item {
    margin: 0 0 24px;
}

@media (min-width: 768px) {
    .photog__profile__main__item {
        margin: 0 0 30px;
    }
}

.photog__profile__main__item:last-child {
    margin-bottom: 0;
}

.photog__profile__main__item__en {
    color: rgba(var(--color-teal-rgb), 0.8);
    font-size: var(--fs22);
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.3;
    margin: 0 0 4px;
}

@media (min-width: 768px) {
    .photog__profile__main__item__en {
        font-size: var(--fs24);
    }
}

@media (min-width: 992px) {
    .photog__profile__main__item__en {
        font-size: var(--fs26);
    }
}

.photog__profile__main__item__ja {
    font-size: var(--fs14);
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.56;
    margin: 0;
}

@media (min-width: 768px) {
    .photog__profile__main__item__ja {
        font-size: var(--fs15);
    }
}

@media (min-width: 992px) {
    .photog__profile__main__item__ja {
        font-size: var(--fs16);
    }
}

.photog__works {
    margin: 0 auto;
    width: 100%;
}

.photog__works__title {
    border-bottom: 1px solid var(--color-jade);
    font-size: var(--fs18);
    font-weight: 700;
    letter-spacing: 0.2em;
    line-height: 1.4;
    margin: 0 0 20px;
    padding: 4px 0 12px 40px;
    position: relative;
}

@media (min-width: 768px) {
    .photog__works__title {
        font-size: var(--fs20);
        padding: 4px 0 12px 46px;
    }
}

.photog__works__title:before {
    background-image: url(../images/icons/icon-symbol.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: block;
    height: 31px;
    left: 0;
    position: absolute;
    top: 0;
    width: 27px;
}

@media (min-width: 768px) {
    .photog__works__title:before {
        height: 34px;
        width: 30px;
    }
}

.photog__works__list {
    align-items: flex-start;
    display: flex;
    flex-flow: row wrap;
    gap: var(--c-pad) var(--c-pad);
    justify-content: flex-start;
    margin: 0 0 20px;
}

@media (min-width: 768px) {
    .photog__works__list {
        gap: 28px;
    }
}

.photog__works__list__item {
    width: calc(50% - var(--c-pad)*0.5);
}

@media (min-width: 768px) {
    .photog__works__list__item {
        width: calc(25% - 21px);
    }
}

.photog__works__list__item img {
    aspect-ratio: 228/150;
    height: auto;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.photog__works__detail {
    align-items: stretch;
    display: flex;
    flex-flow: row wrap;
    gap: 0 40px;
}

@media (min-width: 992px) {
    .photog__works__detail {
        gap: 0 60px;
    }
}

.photog__works__detail__item {
    flex: 0 0 100%;
}

@media (min-width: 768px) {
    .photog__works__detail__item {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (min-width: 992px) {
    .photog__works__detail__item {
        flex: 0 0 calc(50% - 30px);
    }
}

.photog__works__detail__item ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.photog__works__detail__item ul > li {
    font-size: var(--fs14);
    font-weight: 300;
    letter-spacing: 0.03em;
    line-height: 1.75;
    margin: 0;
    padding: 0 0 0 12px;
    position: relative;
}

@media (min-width: 768px) {
    .photog__works__detail__item ul > li {
        font-size: var(--fs16);
        padding: 0 0 0 20px;
    }
}

.photog__works__detail__item ul > li:last-child {
    margin-bottom: 0;
}

.photog__works__detail__item ul > li:before {
    background-color: var(--color-black);
    border-radius: 50%;
    content: "";
    display: block;
    height: 3px;
    left: 0;
    position: absolute;
    top: 10px;
    width: 3px;
}

@media (min-width: 768px) {
    .photog__works__detail__item ul > li:before {
        height: 4px;
        left: 2px;
        top: 12px;
        width: 4px;
    }
}

.design {
    margin: 0 0 80px;
}

@media (min-width: 768px) {
    .design {
        margin: 0 0 110px;
    }
}

.design-container {
    margin: 0 auto;
    padding: 0 var(--c-pad);
    position: relative;
    width: 100%;
    z-index: 1;
}

.design__head {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    margin: 0 0 40px;
    padding: 28px 0 20px;
    position: relative;
}

@media (min-width: 768px) {
    .design__head {
        margin: 0 0 50px;
        padding: 44px 0 32px;
    }
}

@media (min-width: 992px) {
    .design__head {
        padding: 52px 0 36px;
    }
}

.design__head__frame {
    bottom: 0;
    left: -4px;
    pointer-events: none;
    position: absolute;
    right: auto;
    top: 0;
    width: 160px;
    z-index: 0;
}

@media (min-width: 768px) {
    .design__head__frame {
        left: -8px;
        width: 200px;
    }
}

@media (min-width: 1240px) {
    .design__head__frame {
        left: -36px;
    }
}

.design__head__frame span {
    bottom: 0;
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.design__head__frame span:before, .design__head__frame span:after {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: auto;
    content: "";
    display: block;
    height: 19px;
    left: auto;
    position: absolute;
    right: auto;
    top: auto;
    width: 29px;
}

@media (min-width: 768px) {
    .design__head__frame span:before, .design__head__frame span:after {
        height: 26px;
        width: 40px;
    }
}

.design__head__frame span:nth-child(1):before {
    background-image: url(../images/commons/com-frame-left-top.svg);
    left: 0;
    top: 0;
}

.design__head__frame span:nth-child(1):after {
    background-image: url(../images/commons/com-frame-right-top.svg);
    right: 0;
    top: 0;
}

.design__head__frame span:nth-child(2):before {
    background-image: url(../images/commons/com-frame-left-bottom.svg);
    bottom: 0;
    left: 0;
}

.design__head__frame span:nth-child(2):after {
    background-image: url(../images/commons/com-frame-right-bottom.svg);
    bottom: 0;
    right: 0;
}

.design__head__title {
    align-items: baseline;
    display: flex;
    flex-flow: row nowrap;
    gap: 0 12px;
    justify-content: flex-start;
}

@media (min-width: 768px) {
    .design__head__title {
        gap: 0 20px;
    }
}

.design__head__title__en {
    color: var(--color-teal);
    font-family: var(--ff-josefin-sans);
    font-size: 1.6875rem;
    letter-spacing: 0;
    line-height: 1;
    margin: 0;
}

@media (min-width: 768px) {
    .design__head__title__en {
        font-size: 2.625rem;
    }
}

.design__head__title__ja {
    color: var(--color-teal);
    font-size: var(--fs12);
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1;
    margin: 0;
}

@media (min-width: 768px) {
    .design__head__title__ja {
        font-size: var(--fs18);
    }
}

.design__content {
    margin: 0 0 40px;
}

@media (min-width: 768px) {
    .design__content {
        margin: 0 0 44px;
    }
}

.design__content p {
    font-size: var(--fs14);
    font-weight: 300;
    letter-spacing: 0.03em;
    line-height: 1.62;
    margin: 0;
}

@media (min-width: 768px) {
    .design__content p {
        font-size: var(--fs16);
    }
}

.design__list {
    align-items: flex-start;
    display: flex;
    flex-flow: row wrap;
    gap: 40px var(--c-pad);
    justify-content: flex-start;
    margin: 0;
}

@media (min-width: 768px) {
    .design__list {
        gap: 36px 40px;
    }
}

.design__list__item {
    width: calc(50% - var(--c-pad)*0.5);
}

@media (min-width: 768px) {
    .design__list__item {
        width: calc(33.33333% - 26.66667px);
    }
}

.design__list__item__fig {
    margin: 0 0 12px;
}

@media (min-width: 768px) {
    .design__list__item__fig {
        margin: 0 0 16px;
    }
}

.design__list__item__fig img {
    aspect-ratio: 307/202;
    height: auto;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.design__list__item__title {
    font-size: var(--fs14);
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.82;
    margin: 0 0 5px;
}

@media (min-width: 768px) {
    .design__list__item__title {
        font-size: var(--fs16);
    }
}

.design__list__item__content p {
    font-size: var(--fs14);
    font-weight: 300;
    letter-spacing: 0.03em;
    line-height: 1.62;
    margin: 0;
}

@media (min-width: 768px) {
    .design__list__item__content p {
        font-size: var(--fs16);
    }
}