/* ================================================================================= */
/* CSSリセット・ノーマライズ・基本スタイル */
/* ================================================================================= */
@charset "UTF-8";

*,:after,:before {
    box-sizing: border-box
}

abbr,address,article,aside,audio,b,blockquote,body,canvas,caption,cite,code,dd,del,details,dfn,div,dl,dt,em,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,p,pre,q,samp,section,small,span,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,ul,var,video {
    background: transparent;
    border: 0;
    font-size: 100%;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline
}

body {
    line-height: 1
}

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
    display: block
}

nav ul {
    list-style: none
}

blockquote,q {
    quotes: none
}

blockquote:after,blockquote:before,q:after,q:before {
    content: "";
    content: none
}

a {
    background: transparent;
    font-size: 100%;
    margin: 0;
    padding: 0;
    vertical-align: baseline
}

ins {
    text-decoration: none
}

ins,mark {
    background-color: #ff9;
    color: #000
}

mark {
    font-style: italic;
    font-weight: 700
}

del {
    text-decoration: line-through
}

abbr[title],dfn[title] {
    border-bottom: 1px dotted;
    cursor: help
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

hr {
    border: 0;
    border-top: 1px solid #ccc;
    display: block;
    height: 1px;
    margin: 1em 0;
    padding: 0
}

input,select {
    vertical-align: middle
}

body {
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    color: #292929;
    font-family: Noto Sans JP,sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75
}

body.is-active {
    overflow: hidden
}

@media only screen and (min-width: 768px) {
    body {
        font-size:1.125rem;
        line-height: 1.6666666667
    }
}

html {
    scroll-behavior: smooth;
}

@media only screen and (max-width: 375px) {
    html {
        font-size:4.2666666667vw
    }
}

* {
    line-height: inherit
}

.en {
    font-family: Poppins,sans-serif
}

picture {
    display: block
}

img {
    height: auto;
    max-width: 100%;
    vertical-align: middle;
    width: 100%
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity .4s ease
}

h1,h2,h3,h4,h5 {
    font-weight: inherit
}

ul {
    list-style: none
}

button,input,select,textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: none;
    border-radius: 0;
    font: inherit;
    outline: none;
    padding: 0
}

input[type=checkbox],input[type=radio] {
    display: none
}

button,input[type=button],input[type=submit],label,select {
    cursor: pointer
}

select::-ms-expand {
    display: none
}

input::-webkit-input-placeholder {
    color: #777
}

input::placeholder {
    color: #777
}

input:-ms-input-placeholder {
    color: #777
}

input::-ms-input-placeholder {
    color: #777
}

/* ================================================================================= */
/* ユーティリティスタイル */
/* ================================================================================= */
@media only screen and (min-width: 1000px) {
    .only-sp {
        display:none!important
    }
}

@media only screen and (max-width: 999px) {
    .only-pc {
        display:none!important
    }
}

.nowrap {
    white-space: nowrap
}

.inner {
    margin: 0 auto;
    padding-left: 3.75rem;
    padding-right: 3.75rem
}

@media only screen and (min-width: 768px) {
    .inner {
        max-width:81.25rem;
        padding-left: 3.75rem;
        padding-right: 3.75rem
    }
}

/* ================================================================================= */
/* コンポーネントスタイル */
/* ================================================================================= */
/* ーーーーーーーーーーーーーーーーーー */
/* 汎用コンポーネント(c-) */
/* ーーーーーーーーーーーーーーーーーー */
.c-inner {
    margin: 0 auto;
    /* max-width: 82.5rem; */
    /* padding-left: 1.25rem; */
    /* padding-right: 1.25rem */
    padding-left:3.75rem;
    padding-right: 3.75rem;
}

@media only screen and (min-width: 768px) {
    .c-inner {
        padding-left:3.75rem;
        padding-right: 3.75rem;
    }
}

.c-section {
    padding-bottom: 3.75rem;
    padding-top: 3.75rem
}

@media only screen and (min-width: 768px) {
    .c-section {
        padding-bottom:5rem;
        padding-top: 5rem
    }
}

.c-img {
    display: block;
    overflow: hidden;
    -webkit-perspective: 1000;
    perspective: 1000;
    position: relative
}

.c-img,.c-img img {
    width: 100%;
    z-index: 0
}

.c-img img {
    height: 100%;
    left: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    transition: all .4s ease
}

.c-en {
    color: #a6a6a6;
    font-family: Poppins,sans-serif;
    font-size: .75rem;
    font-weight: 800;
    line-height: 1.5;
    margin-bottom: .25rem;
    text-transform: uppercase
}

@media only screen and (min-width: 768px) {
    .c-en {
        font-size:1.25rem;
        line-height: 1.5
    }
}

.c-ttl {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4583333333;
    margin-bottom: 2.5rem
}

.c-ttl.-white {
    color: #fff
}

@media only screen and (min-width: 768px) {
    .c-ttl {
        font-size:2.375rem;
        line-height: 1.4473684211;
        margin-bottom: 3.75rem
    }
}

.c-txt {
    font-size: 1rem;
    font-weight: 400
}

.c-txt.-white {
    color: #fff
}

@media only screen and (min-width: 768px) {
    .c-txt {
        font-size:1.125rem;
        line-height: 1.6666666667
    }
}

.c-contents {
    min-width: 375px;
    transition: .3s ease-out;
    transition-property: opacity,-webkit-transform;
    transition-property: opacity,transform;
    transition-property: opacity,transform,-webkit-transform
}

@media only screen and (max-width: 767.999px) {
    .c-contents.is-active {
        opacity:0;
        pointer-events: none
    }
}

/* ーーーーーーーーーーーーーーーーーー */
/* topコンポーネント(c-top) */
/* ーーーーーーーーーーーーーーーーーー */
.c-top {
    color: #fff;
    height: 21.1875rem;
    padding-top: 6.875rem
}

@media only screen and (min-width: 768px) {
    .c-top {
        height:37.25rem;
        padding-top: 16.1875rem
    }
}

.c-top__head {
    align-items: flex-end;
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem
}

@media only screen and (min-width: 768px) {
    .c-top__head {
        gap:3.75rem;
        margin-bottom: 3.75rem
    }
}

.c-top__ttl {
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.4666666667
}

@media only screen and (min-width: 768px) {
    .c-top__ttl {
        font-size:3.75rem;
        line-height: 1.45
    }
}

.c-top__en {
    bottom: .375rem;
    color: #a6a6a6;
    font-size: .5625rem;
    font-weight: 800;
    line-height: 1.3333333333;
    padding-left: .9375rem;
    position: relative
}

@media only screen and (min-width: 768px) {
    .c-top__en {
        bottom:.4375rem;
        font-size: 1.25rem;
        line-height: 1.75rem;
        padding-left: 1.875rem
    }
}

.c-top__en:before {
    background: #a6a6a6;
    content: "";
    height: 1rem;
    left: .3125rem;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%,-50%) rotate(33deg);
    transform: translate(-50%,-50%) rotate(33deg);
    width: 1px
}

@media only screen and (min-width: 768px) {
    .c-top__en:before {
        height:2.125rem
    }
}

.c-top__copy {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.6
}

.c-top__copy a {
    color: #0f0;
    transition: .3s ease-out;
    transition-property: opacity
}

@media (hover: hover) {
    .c-top__copy a:hover {
        opacity:.7
    }
}

/* ーーーーーーーーーーーーーーーーーー */
/* courseコンポーネント(c-course) */
/* ーーーーーーーーーーーーーーーーーー */
.c-course {
    background: #f2fff2;
    border: 3px solid #0f0;
    border-radius: .375rem;
    padding: .8125rem
}

@media only screen and (min-width: 768px) {
    .c-course {
        align-items:center;
        border-width: .25rem;
        display: flex;
        gap: 2.6875rem;
        padding: 1.75rem 2.5rem 1.75rem 1.75rem;
        position: relative
    }
}

.c-course__ttl {
    align-items: flex-start;
    display: flex;
    gap: .75rem;
    margin-bottom: 1.4375rem
}

@media only screen and (min-width: 768px) {
    .c-course__ttl {
        flex-direction:column;
        gap: 1rem;
        margin-bottom: 0
    }
}

@media only screen and (min-width: 1000px) {
    .c-course__ttl {
        flex-direction:row
    }
}

.c-course__ttl .label {
    align-items: center;
    background: linear-gradient(180deg,#00d300 0,#00af00);
    border-radius: .25rem;
    color: #fff;
    display: inline-flex;
    font-size: .875rem;
    font-weight: 700;
    justify-content: center;
    letter-spacing: 0;
    min-height: 1.875rem;
    min-width: 5rem
}

@media only screen and (min-width: 768px) {
    .c-course__ttl .label {
        font-size:1.125rem;
        min-height: 2.5rem;
        min-width: 6.5rem
    }
}

.c-course__ttl .txt {
    align-items: center;
    display: flex;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
    min-height: 1.875rem
}

@media only screen and (min-width: 768px) {
    .c-course__ttl .txt {
        font-size:1.75rem;
        min-height: 2.5rem
    }
}

.c-course__img {
    aspect-ratio: 303/180;
    margin: 0 auto;
    max-width: 25rem;
    width: 100%
}

@media only screen and (min-width: 768px) {
    .c-course__img {
        aspect-ratio:279/221;
        margin: 0;
        max-width: 17.4375rem;
        position: absolute;
        right: 2.75rem;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%)
    }
}

.c-course__img-box {
    display: none
}

@media only screen and (min-width: 768px) {
    .c-course__img-box {
        aspect-ratio:279/221;
        display: block;
        flex: 0 0 auto;
        width: 17.4375rem
    }
}

.c-course__list {
    border-top: 2px solid #e8e8e8;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.1875rem;
    padding-top: 1.1875rem
}

@media only screen and (min-width: 768px) {
    .c-course__list {
        margin-top:1.4375rem;
        padding-top: 1.4375rem
    }
}

.c-course__item {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: .5rem
}

@media only screen and (min-width: 768px) {
    .c-course__item {
        gap:1rem
    }
}

@media only screen and (min-width: 1000px) {
    .c-course__item {
        flex-direction:row
    }
}

.c-course__item .label {
    align-items: center;
    background: linear-gradient(180deg,#2d3139 0,#50545a 50%,#2d3139);
    border-radius: .25rem;
    color: #fff;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: .875rem;
    font-weight: 700;
    height: 1.875rem;
    justify-content: center;
    letter-spacing: 0;
    min-width: 5rem;
    width: auto
}

@media only screen and (min-width: 768px) {
    .c-course__item .label {
        font-size:1.125rem;
        min-height: 2.5rem;
        min-width: 6.5rem
    }
}

.c-course__item .txt {
    color: #292929;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.5555555556;
    margin-bottom: -1px;
    margin-top: -1px
}

@media only screen and (min-width: 768px) {
    .c-course__item .txt {
        align-items:center;
        display: flex;
        flex: 1 1 auto;
        font-size: 1.375rem;
        line-height: 1.4545454545;
        min-height: 2.5rem
    }
}

/* ーーーーーーーーーーーーーーーーーー */
/* 背景コンポーネント(c-bg) */
/* ーーーーーーーーーーーーーーーーーー */
.c-bg {
    background-color: #F0E9D6;
    bottom: 0;
    height: 100vh;
    height: calc(var(--vh)*100);
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: -1
}

.c-bg__inner {
    display: flex;
    height: 100%;
    -webkit-perspective: 1000px;
    perspective: 1000px
}

/* .c-bg__item {
    flex: 0 0 auto;
    position: relative;
    -webkit-transform: translateZ(300px);
    transform: translateZ(300px);
    width: 25%
} */

/* .c-bg__item:after,.c-bg__item:before {
    background: #454545;
    bottom: 0;
    height: 100%;
    position: absolute;
    top: 0;
    width: 1px
} */

/* .c-bg__item:before {
    content: "";
    left: 0
} */

/* .c-bg__item:last-child:after {
    content: "";
    right: 0
} */

/* ーーーーーーーーーーーーーーーーーー */
/* fvコンポーネント(c-fv) */
/* ーーーーーーーーーーーーーーーーーー */
.c-fv__inner {
    color: #fff;
    display: flex;
    flex-direction: column;
    height: 21.1875rem;
    padding-bottom: 1.25rem;
    padding-top: 3.125rem
}

@media only screen and (min-width: 768px) {
    .c-fv__inner {
        height: 25rem;
        padding-bottom: 1.75rem;
        padding-top: 6.5rem
    }
}

.c-fv__box {
    align-items: flex-end;
    display: flex;
    gap: 2rem
}

@media only screen and (min-width: 768px) {
    .c-fv__box {
        gap:3.75rem;
        padding-top: 1.4375rem
    }
}

.c-fv__box-ttl {
    color: #000;
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.4666666667
}

@media only screen and (min-width: 768px) {
    .c-fv__box-ttl {
        font-size:3.75rem;
        line-height: 1.45
    }
}

.c-fv__box-en {
    color: #a6a6a6;
    font-size: .5625rem;
    font-weight: 900;
    line-height: 1.3333333333;
    margin-bottom: .375rem;
    padding-left: .9375rem;
    position: relative
}

@media only screen and (min-width: 768px) {
    .c-fv__box-en {
        font-size:1.25rem;
        line-height: 1.4;
        margin-bottom: .4375rem;
        padding-left: 1.875rem
    }
}

.c-fv__box-en:before {
    aspect-ratio: 10/15;
    background: url(../img/single/line-sp.png) no-repeat 50%/100% auto;
    content: "";
    left: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: .625rem
}

@media only screen and (min-width: 768px) {
    .c-fv__box-en:before {
        aspect-ratio:19/29;
        background: url(../img/single/line-pc.png) no-repeat 50%/100% auto;
        width: 1.1875rem
    }
}

.c-fv__head {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    justify-content: center
}

@media only screen and (min-width: 768px) {
    .c-fv__head {
        gap:1.25rem
    }
}

.c-fv__ttl {
    color: #000;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.4285714286
}

@media only screen and (min-width: 768px) {
    .c-fv__ttl {
        font-size:2.875rem;
        line-height: 1.4347826087
    }
}

.c-fv__date {
    color: #a6a6a6;
    display: none;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
    padding-left: 2rem;
    position: relative
}

.c-fv__date:before {
    aspect-ratio: 1/1;
    background: url(../img/single/clock.png) no-repeat 50%/100% auto;
    content: "";
    left: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1.25rem
}

@media only screen and (min-width: 768px) {
    .c-fv__date {
        display:block
    }
}

/* ーーーーーーーーーーーーーーーーーー */
/* authorコンポーネント(c-author) */
/* ーーーーーーーーーーーーーーーーーー */
.c-author {
    background: #2d3139;
    color: #fff;
    padding: 1rem
}

@media only screen and (min-width: 768px) {
    .c-author {
        padding:1.5rem
    }
}

.c-author__ttl {
    border-bottom: 1px solid #fff;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.4444444444;
    margin-bottom: 1rem;
    padding-bottom: .9375rem;
    padding-left: 2rem;
    position: relative
}

@media only screen and (min-width: 768px) {
    .c-author__ttl {
        font-size:1.375rem;
        line-height: 1.4545454545;
        margin-bottom: 1.5rem;
        padding-bottom: 1.4375rem;
        padding-left: 2.25rem
    }
}

.c-author__ttl:before {
    aspect-ratio: 1/1;
    background: url(../img/single/edit.png) no-repeat 50%/100% auto;
    content: "";
    left: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1.25rem
}

@media only screen and (min-width: 768px) {
    .c-author__ttl:before {
        width:1.5rem
    }
}

.c-author__head {
    align-items: center;
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem
}

@media only screen and (min-width: 768px) {
    .c-author__head {
        gap:1.5rem;
        margin-bottom: 1.25rem
    }
}

.c-author__img {
    aspect-ratio: 1/1;
    border-radius: 50%;
    flex: 0 0 auto;
    overflow: hidden;
    width: 5rem
}

.c-author__name {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5
}

@media only screen and (min-width: 768px) {
    .c-author__name {
        font-size:1.125rem;
        line-height: 1.4444444444
    }
}

.c-author__txt {
    font-size: .875rem;
    font-weight: 400;
    line-height: 1.8571428571
}

@media only screen and (min-width: 768px) {
    .c-author__txt {
        font-size:1rem;
        line-height: 1.75
    }
}

/* ーーーーーーーーーーーーーーーーーー */
/* パンくずリストコンポーネント(c-breadcrumb) */
/* ーーーーーーーーーーーーーーーーーー */
.c-breadcrumb {
    -ms-overflow-style: none;
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    overflow: auto;
    scrollbar-width: none;
    white-space: nowrap
}

.c-breadcrumb::-webkit-scrollbar {
    display: none
}

.c-breadcrumb__inner {
    display: flex;
    font-size: .75rem;
    font-weight: 400;
    line-height: 1.4166666667
}

@media only screen and (min-width: 768px) {
    .c-breadcrumb__inner {
        font-size:.875rem;
        line-height: 1.4285714286
    }
}

.c-breadcrumb__inner a {
    transition: .3s ease-out;
    transition-property: opacity
}

@media (hover: hover) {
    .c-breadcrumb__inner a:hover {
        opacity:.7
    }
}

/* ーーーーーーーーーーーーーーーーーー */
/* buttonコンポーネント(c-btn) */
/* ーーーーーーーーーーーーーーーーーー */
.c-btn {
    align-items: center;
    background: #2d3139;
    border-radius: 2.1875rem;
    color: #fff;
    display: inline-flex;
    font-size: 0.9rem;
    font-weight: 700;
    gap: 1rem;
    line-height: 1.4444444444;
    letter-spacing: 0.075rem;
    min-height: 4.375rem;
    padding-top: 1rem;
    padding-right: 2rem;
    padding-bottom: 1.3rem;
    padding-left: 2rem;
    position: relative;
    transition: .3s ease-out;
    transition-property: background;
    width: 100%;
    justify-content: center;
}

@media only screen and (min-width: 768px) {
    .c-btn {
        font-size: 1.125rem;
        max-width:18.75rem
    }

    .c-btn.-lg {
        max-width: 22.5rem
    }
}

.c-btn__box {
    text-align: center
}

.c-btn .icon {
    align-items: center;
    display: inline-flex
}

.c-btn .arrow {
    position: absolute;
    right: 1.75rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

@media only screen and (min-width: 768px) {
    .c-btn .arrow {
        right: 2.75rem;
    }
}

@media (hover: hover) {
    .c-btn:hover {
        background-color: #adadad;
    }
}

/* ーーーーーーーーーーーーーーーーーー */
/* cardコンポーネント(c-card) */
/* ーーーーーーーーーーーーーーーーーー */
@media only screen and (max-width: 767px) {
    .c-card {
        border-top: 1px solid #d5d5d5;
        padding: 2rem 0;
    }

    .c-card:last-child {
        border-bottom: 1px solid #d5d5d5
    }
}

@media only screen and (min-width: 768px) {
    .c-card {
        flex:0 0 auto;
        width: calc(33.33333% - 1.25rem);
    }
}

.c-card:first-child .c-card__img.-popular:before {
    background: url(../img/single/first.png) no-repeat 50%/100% auto
}

.c-card:nth-child(2) .c-card__img.-popular:before {
    background: url(../img/single/second.png) no-repeat 50%/100% auto
}

.c-card:nth-child(3) .c-card__img.-popular:before {
    background: url(../img/single/third.png) no-repeat 50%/100% auto
}

.c-card__link {
    transition: .3s ease-out;
    transition-property: opacity
}

@media (hover: hover) {
    .c-card__link:hover {
        opacity:.7
    }

    .c-card__link:hover .c-card__img img {
        -webkit-transform: translate(-50%,-50%) scale(1.1);
        transform: translate(-50%,-50%) scale(1.1)
    }
}

.c-card__img {
    aspect-ratio: 335/220;
    border-radius: .375rem;
    margin-bottom: 1rem
}

@media only screen and (min-width: 768px) {
    .c-card__img {
        aspect-ratio:380/250;
        margin-bottom: 1.5rem
    }
}

.c-card__img img {
    transition: .3s ease-out;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform,-webkit-transform
}

.c-card__img.-popular {
    position: relative
}

.c-card__img.-popular:before {
    aspect-ratio: 54/64;
    content: "";
    left: 1.5rem;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 3.375rem;
    z-index: 1
}

.c-card__date {
    color: #a6a6a6;
    display: block;
    font-size: .9rem;
    line-height: 1.7;
    font-weight: 700;
    margin-bottom: .5625rem
}

@media only screen and (min-width: 768px) {
    .c-card__date {
        font-size:.9rem;
        line-height: 1.4;
        margin-bottom: .8125rem
    }
}

.c-card__ttl {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 700;
    max-height: 3.25rem;
    overflow: hidden;
    text-overflow: ellipsis
}

@media only screen and (min-width: 768px) {
    .c-card__ttl {
        font-size:1.1rem;
        line-height: 1.4
    }
}

/* ーーーーーーーーーーーーーーーーーー */
/* sidebarコンポーネント(c-sidebar) */
/* ーーーーーーーーーーーーーーーーーー */
.c-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2.5rem
}

@media only screen and (min-width: 768px) {
    .c-sidebar {
        flex:1 0 auto;
        margin-top: 0;
        width: 22.5rem
    }
}

.c-sidebar__block-ttl {
    border-bottom: 2px solid #000;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4583333333;
    margin-bottom: 2rem;
    padding-bottom: .375rem
}

@media only screen and (min-width: 768px) {
    .c-sidebar__block-ttl {
        margin-bottom:1.5rem;
        padding-bottom: .5rem
    }
}

.c-sidebar__category {
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

@media only screen and (min-width: 768px) {
    .c-sidebar__category {
        gap:1.25rem
    }
}

.c-sidebar__category-ttl {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: .75rem
}

@media only screen and (min-width: 768px) {
    .c-sidebar__category-ttl {
        font-size:1.125rem;
        line-height: 1.4444444444;
        margin-bottom: 1rem
    }
}

.c-sidebar__category-list {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem .75rem
}

.c-sidebar__category-item {
    background: #292929;
    border-radius: 1rem;
    color: #fff;
    font-size: .875rem;
    font-weight: 700;
    line-height: 1.4285714286;
    padding: .375rem .75rem;
    transition: .3s ease-out;
    transition-property: opacity
}

@media (hover: hover) {
    .c-sidebar__category-item:hover {
        opacity:.7
    }
}

@media only screen and (min-width: 768px) {
    .c-sidebar__category-item {
        font-size:1rem;
        line-height: 1.5;
        padding: .25rem .75rem
    }
}

.c-sidebar__article {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

@media only screen and (min-width: 768px) {
    .c-sidebar__article {
        gap:1.25rem
    }
}

.c-sidebar__article-item:first-child .c-sidebar__article-img.-popular:before {
    background: url(../img/single/first.png) no-repeat 50%/100% auto
}

.c-sidebar__article-item:nth-child(2) .c-sidebar__article-img.-popular:before {
    background: url(../img/single/second.png) no-repeat 50%/100% auto
}

.c-sidebar__article-item:nth-child(3) .c-sidebar__article-img.-popular:before {
    background: url(../img/single/third.png) no-repeat 50%/100% auto
}

.c-sidebar__article-link {
    align-items: center;
    display: flex;
    gap: .75rem
}

.c-sidebar__article-img {
    aspect-ratio: 114/75;
    border-radius: .375rem;
    flex: 0 0 auto;
    position: relative;
    width: 7.125rem
}

.c-sidebar__article-img.-popular:before {
    aspect-ratio: 64/75;
    content: "";
    left: .75rem;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 2rem;
    z-index: 1
}

.c-sidebar__article-body {
    margin-bottom: -.1875rem
}

.c-sidebar__article-date {
    color: #a6a6a6;
    display: block;
    font-size: .625rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: .5625rem
}

@media only screen and (min-width: 768px) {
    .c-sidebar__article-date {
        font-size:.75rem;
        line-height: 1.4166666667
    }
}

.c-sidebar__article-ttl {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    font-size: .75rem;
    font-weight: 700;
    line-height: 2;
    max-height: 3rem;
    overflow: hidden;
    text-overflow: ellipsis
}

@media only screen and (min-width: 768px) {
    .c-sidebar__article-ttl {
        font-size:.875rem;
        line-height: 1.8571428571;
        max-height: 3.25rem
    }
}

/* ーーーーーーーーーーーーーーーーーー */
/* paginationコンポーネント(c-pagination) */
/* ーーーーーーーーーーーーーーーーーー */
.c-pagination {
    margin-top: 1.8125rem
}

@media only screen and (min-width: 768px) {
    .c-pagination {
        margin-top:2.375rem
    }
}

.c-pagination__list {
    align-items: center;
    display: flex;
    gap: .5rem;
    justify-content: center
}

.c-pagination__next,.c-pagination__prev {
    flex: 0 0 auto;
    height: 2.5rem;
    width: 2.5rem
}

.c-pagination__next a,.c-pagination__prev a {
    background: #666f81;
    border-radius: .25rem;
    cursor: pointer;
    display: flex;
    height: 100%;
    transition: .3s ease-out;
    transition-property: opacity;
    width: 100%
}

@media (hover: hover) {
    .c-pagination__next a:hover,.c-pagination__prev a:hover {
        opacity:.7
    }
}

.c-pagination__next {
    margin-left: .5rem
}

.c-pagination__prev {
    margin-right: .5rem;
    -webkit-transform: scale(-1);
    transform: scale(-1);
    transform: rotate(180deg);
}

.arrow.-prev{
    padding-left: 0.85rem;
    margin-top: 0.25rem;
}

.arrow.-next{
    padding-left: 0.85rem;
    margin-top: 0.25rem;
}

.c-pagination__dot {
    font-size: 1.0625rem;
    font-weight: 700
}

.c-pagination__num {
    flex: 0 0 auto;
    height: 2.5rem;
    width: 2.5rem
}

.c-pagination__num a,.c-pagination__num span {
    align-items: center;
    border-radius: .25rem;
    display: flex;
    font-size: 1.0625rem;
    font-weight: 700;
    height: 100%;
    justify-content: center;
    width: 100%
}

.c-pagination__num a {
    background: #f7f7f7;
    color: #292929
}

.c-pagination__num span {
    background: #2d3139;
    color: #fff
}

/* ================================================================================= */
/* レイアウトスタイル */
/* ================================================================================= */
/* ーーーーーーーーーーーーーーーーーー */
/* headerレイアウト(l-header) */
/* ーーーーーーーーーーーーーーーーーー */
.l-header {
    background: transparent;
    position: fixed;
    transition: -webkit-backdrop-filter .4s ease;
    transition: backdrop-filter .4s ease;
    transition: backdrop-filter .4s ease,-webkit-backdrop-filter .4s ease;
    transition: .3s ease-out;
    transition-property: background-color;
    width: 100%;
    z-index: 100;
    transition: background-color 0.3s ease-out, transform 0.4s ease-out;
}

@media only screen and (max-width: 1279px) {
    .l-header {
        background: #DEC299;
    }
}

.l-header,.l-header:before {
    left: 0;
    pointer-events: none;
    top: 0
}

.l-header:before {
    background: #DEC299;
    bottom: 0;
    content: "";
    position: absolute;
    right: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    transition: .3s ease-out;
    transition-property: opacity,-webkit-transform;
    transition-property: transform,opacity;
    transition-property: transform,opacity,-webkit-transform;
    z-index: -1
}

.l-header.is-active:before {
    -webkit-transform: translateY(0);
    transform: translateY(0)
}

.l-header.is-active.is-menu-open:before {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%)
}

.l-header.is-hidden {
    /* Y軸(垂直方向)に-100%移動して画面外へ */
    transform: translateY(-100%);
}

.l-header__inner {
    align-items: center;
    display: flex;
    height: 4.375rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem
}

@media only screen and (min-width: 768px) {
    .l-header__inner {
        --header-inner-height:0px;
        gap: 1.5rem;
        /* height: 9.875rem; */
        /* height: calc(9.875rem - var(--header-inner-height)); */
        justify-content: space-between;
        padding-left: 3.75rem;
        padding-right: 3.75rem;
        transition: .3s ease-out;
        transition-property: height
    }
}

@media only screen and (min-width: 1280px) {
    .l-header__inner {
        height: 9.875rem;
        height: calc(9.875rem - var(--header-inner-height));
    }
}

.l-header__logo {
    aspect-ratio: 150/30;
    cursor: pointer;
    max-width: 9.375rem;
    pointer-events: auto;
    transition: .3s ease-out;
    transition-property: opacity;
    transition-property: opacity,max-width;
    width: 100%;
    z-index: 11
}

@media (hover: hover) {
    .l-header__logo:hover {
        opacity:.7
    }
}

@media only screen and (min-width: 768px) {
    .l-header__logo {
        --header-height:0px;
        max-width: 12.625rem;
        width: calc(12.625rem - var(--header-height))
    }
}

.l-header__logo svg {
    height: 100%;
    transition: width .3s ease-out;
    width: 100%
}

.l-header__hamburger {
    background: #DEC299;
    border-radius: 2px;
    cursor: pointer;
    height: 1.875rem;
    margin-left: auto;
    outline: none;
    pointer-events: auto;
    position: relative;
    width: 1.875rem;
    z-index: 11
}

@media only screen and (min-width: 1280px) {
    .l-header__hamburger {
        display:none
    }
}

.l-header__hamburger.is-active ._bar {
    background: transparent
}

.l-header__hamburger.is-active ._bar:before {
    top: 0;
    -webkit-transform: translate(-50%) rotate(-45deg);
    transform: translate(-50%) rotate(-45deg)
}

.l-header__hamburger.is-active ._bar:after {
    top: 0;
    -webkit-transform: translate(-50%) rotate(45deg);
    transform: translate(-50%) rotate(45deg)
}

.l-header__hamburger ._bar {
    background: #292929;
    height: 2px;
    left: 50%;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 1.25rem
}

.l-header__hamburger ._bar:after,.l-header__hamburger ._bar:before {
    background: #292929;
    content: "";
    height: 2px;
    left: 50%;
    position: absolute;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
    transition: .3s ease-out;
    transition-property: top,-webkit-transform;
    transition-property: transform,top;
    transition-property: transform,top,-webkit-transform;
    width: 1.25rem
}

.l-header__hamburger ._bar:before {
    top: .375rem
}

.l-header__hamburger ._bar:after {
    top: -.375rem
}

.l-header__menu {
    left: 0;
    opacity: 0;
    overflow: auto;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 0;
    transition: .3s ease-out;
    transition-property: opacity
}

@media only screen and (min-width: 1280px) {
    .l-header__menu {
        opacity:1;
        pointer-events: auto;
        position: static
    }
}

.l-header__menu.is-active {
    background: #DEC299;
    opacity: 1;
    padding: 0 3rem;
    pointer-events: auto;
    z-index: 10
}

.l-header__menu-inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-top: 6.375rem
}

@media only screen and (min-width: 1280px) {
    .l-header__menu-inner {
        align-items:center;
        display: flex;
        gap: 4.9375rem;
        padding: 0
    }
}

.l-header__nav {
    margin: 0 auto;
    margin-bottom: 2rem;
    width: 12.5rem
}

@media only screen and (min-width: 1280px) {
    .l-header__nav {
        margin: 0 auto;
        margin-bottom:0;
        width: auto
    }
}

.l-header__nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 3.25rem;
    justify-content: center;
}

@media only screen and (min-width: 1280px) {
    .l-header__nav-list {
        gap:.5rem 3.75rem
    }
}

.l-header__nav-item {
    flex: 0 0 auto;
    min-width: 3.5rem;
}

@media only screen and (min-width: 1280px) {
    .l-header__nav-item {
        min-width:auto;
        white-space: nowrap
    }
}

.l-header__nav-link {
    color: #000;
    font-family: Stack Sans Headline,Noto Sans JP,sans-serif;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.4285714286;
    letter-spacing: 0.08rem;
    pointer-events: auto;
    transition: .3s ease-out;
    transition-property: color
}

@media (hover: hover) {
    .l-header__nav-link:hover {
        color:#fff
    }
}

.l-header__sns {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
}

@media only screen and (min-width: 1280px) {
    .l-header__sns {
        display:none
    }
}

.l-header__sns-item {
    aspect-ratio: 1/1;
    border-radius: .25rem;
    flex: 0 0 auto;
    overflow: hidden;
    transition: .3s ease-out;
    transition-property: box-shadow,-webkit-transform;
    transition-property: transform,box-shadow;
    transition-property: transform,box-shadow,-webkit-transform;
    width: 2.5rem
}

@media (hover: hover) {
    .l-header__sns-item:hover {
        box-shadow:0 0 10px hsla(0,0%,100%,.4);
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px)
    }
}

.l-header__nav-sub {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 3.25rem;
    margin-bottom: 1.75rem;
    justify-content: center;
}

@media only screen and (min-width: 1280px) {
    .l-header__nav-sub {
        display:none
    }
}

.l-header__nav-sub--item {
    color: #000;
    flex: 0 0 auto;
    font-size: .9rem;
    line-height: 1.7;
    transition: .3s ease-out;
    transition-property: color
}

@media only screen and (min-width: 1000px) {
    .l-header__nav-sub--item {
        font-size: 1.1rem;
        line-height: 1.4;
    }
}

@media (hover: hover) {
    .l-header__nav-sub--item:hover {
        color:#fff
    }
}

.l-header__hr {
    background: #fff;
    height: 1px;
    margin: 2rem auto;
    width: 100%
}

@media only screen and (min-width: 1280px) {
    .l-header__hr {
        display:none
    }
}

/* .l-header__copy {
    color: #000;
    font-size: .625rem;
    line-height: 1.5
} */

/* @media only screen and (min-width: 1280px) {
    .l-header__copy {
        display:none
    }
} */

/* ーーーーーーーーーーーーーーーーーー */
/* footerレイアウト(l-footer) */
/* ーーーーーーーーーーーーーーーーーー */
.l-footer {
    background: #DEC299;
    /* margin-bottom: 4.0625rem; */
    padding-bottom: 3.75rem;
    padding-top: 3.75rem;
    min-width: 375px;

}

@media only screen and (min-width: 768px) {
    .l-footer {
        background: #DEC299;
        /* margin-bottom:6.875rem; */
        padding-bottom: 5rem;
        padding-top: 5rem
    }

    .l-footer__inner {
        align-items: center;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        gap: 1.5rem;
        justify-content: center;
    }
}

.l-footer__copy {
    color: #000;
    font-size: .625rem;
    line-height: 1.5
}

@media only screen and (min-width: 768px) {
    .l-footer__copy {
        font-size:.75rem;
        line-height: 1.4166666667
    }
}

.l-footer__logo {
    aspect-ratio: 1/1;
    cursor: pointer;
    display: flex;
    margin: 0 auto 2.5rem auto;
    /* margin-bottom: 2.5rem; */
    max-width: 180px;
    transition: .3s ease-out;
    transition-property: opacity;
    width: 180px;
    height: 180px;
}

@media (hover: hover) {
    .l-footer__logo:hover {
        opacity:.7
    }
}

@media only screen and (min-width: 768px) {
    .l-footer__logo {
        flex:0 0 auto;
        max-width: 180px;
    }
}

.l-footer__logo svg {
    height: 100%;
    width: 100%
}

@media only screen and (min-width: 768px) {
    .l-footer__body {
        flex:0 0 auto;
        min-width: 50%
    }

    .l-footer__body-top {
        align-items: center;
        display: flex;
        gap: 2rem;
        justify-content: center;
    }
}

.l-footer__nav {
    margin: 0 auto 2rem auto;
    /* margin-bottom: 2rem; */
    width: 12.5rem
}

@media only screen and (min-width: 768px) {
    .l-footer__nav {
        margin-bottom:0;
        width: auto
    }
}

.l-footer__nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 3.25rem;
    justify-content: center;
}

@media only screen and (min-width: 768px) {
    .l-footer__nav-list {
        gap:1rem 3.75rem
    }
}

.l-footer__nav-item {
    flex: 0 0 auto;
    min-width: 3.5rem
}

@media only screen and (min-width: 768px) {
    .l-footer__nav-item {
        min-width:auto
    }
}

.l-footer__nav-link {
    color: #000;
    font-family: Stack Sans Headline,Noto Sans JP,sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4285714286;
    letter-spacing: 0.1rem;
    transition: .3s ease-out;
    transition-property: color
}

@media (hover: hover) {
    .l-footer__nav-link:hover {
        color:#fff
    }
}

.l-footer__info {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.l-footer__link-box {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
}

.l-footer__link-box-item {
    aspect-ratio: 1/1;
    border-radius: .25rem;
    flex: 0 0 auto;
    overflow: hidden;
    transition: .3s ease-out;
    transition-property: box-shadow,-webkit-transform;
    transition-property: transform,box-shadow;
    transition-property: transform,box-shadow,-webkit-transform;
    width: 2.5rem
}

@media (hover: hover) {
    .l-footer__link-box-item:hover {
        box-shadow:0 0 10px hsla(0,0%,100%,.4);
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px)
    }
}

.l-footer__nav-sub {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 3.25rem;
    margin-bottom: 1.75rem;
    justify-content: center;
}

@media only screen and (min-width: 768px) {
    .l-footer__nav-sub {
        gap:1rem 2rem
    }
}

.l-footer__nav-sub--item {
    color: #000;
    font-size: 0.9rem;
    line-height: 1.7;
    flex: 0 0 auto;
    transition: .3s ease-out;
    transition-property: color
}

@media only screen and (min-width: 1000px) {
    .l-footer__nav-sub--item {
        font-size: 1.1rem;
        line-height: 1.4;
    }
}

@media (hover: hover) {
    .l-footer__nav-sub--item:hover {
        color:#fff
    }
}

.l-footer__hr {
    background: #fff;
    height: 1px;
    margin: 2rem auto;
    width: 100%
}

@media only screen and (min-width: 768px) {
    .l-footer__hr {
        margin:1.75rem auto
    }
}

.fade-item {
    -webkit-animation-timing-function: linear(.45,1.45,.8,1);
    animation-timing-function: linear(.45,1.45,.8,1);
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    transition: 1.2s;
    transition-property: opacity,-webkit-transform;
    transition-property: opacity,transform;
    transition-property: opacity,transform,-webkit-transform
}

.fade-item.is-active {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0)
}

/* ーーーーーーーーーーーーーーーーーー */

/* footer.php */

/* ーーーーーーーーーーーーーーーーーー */
.footer {
    width: 100%;
    min-width: 335px;
    height: auto;
    font-size: 13px;
    color: #383838;
    background-color: #F8F5F0;
    display: flex;
    align-items: center;
    padding: 70px 40px 40px;
}

@media screen and (max-width: 1239px) {
    .footer {
        width: 100%;
        min-width: 335px;
        height: auto;
        font-size: 13px;
        color: #383838;
        background-color: #F8F5F0;
        display: flex;
        align-items: center;
        padding: 70px 20px 20px;
    }
}

.footer_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: auto;
}

@media screen and (max-width: 1239px) {
    .footer_inner {
        width: 100%;
        min-width: 335px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin: auto;
    }
}

.footer_logo {
    width: 230.24px;
    height: 90px;
    margin-bottom: 5px;
}

@media screen and (max-width: 1239px) {
    .footer_logo {
        width: 179.08px;
        height: auto;
        margin: 0;
    }
}

.footer_logo_area {
    margin-bottom: 40px;
}

@media screen and (max-width: 1239px) {
    .footer_logo_area {
        margin-bottom: 20px;
    }
}

.footer_nav {
    width: 100%;
    margin-bottom: 40px;
}

@media screen and (max-width: 1239px) {
    .footer_nav {
        width: 100%;
        margin-bottom: 0;
    }
}

.footer_nav ul {
    gap: 50px;
    display: flex;
    /* 折り返し許可 */
    flex-wrap: wrap;
    list-style: none;
}

@media screen and (max-width: 1239px) {
    .footer_nav ul {
        gap: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.footer_nav_main_list li {
    font-size: 18px;
    font-weight: 400;
    line-height: 46px;
    letter-spacing: 30%;
    justify-content: space-between;
    /* 上/左右/下 */
    margin: 0 auto 15px;
}

.footer_nav_sub_list li {
    font-size: 14px;
    font-weight: 400;
    line-height: 46px;
    letter-spacing: 3px;
    margin: 0 12px 10px;
}

@media screen and (max-width: 1239px) {
    .footer_nav_main_list li,
    .footer_nav_sub_list li {
        font-size: 16px;
        font-weight: 400;
        line-height: 46px;
        letter-spacing: 3px;
        margin: 0 auto;
    }

    .footer_nav_sub_list li {
        font-size: 16px;
        font-weight: 400;
        line-height: 46px;
        letter-spacing: 3px;
    }

    .footer_nav_main_list li:last-child,
    .footer_nav_sub_list li:last-child {
        margin-bottom: 0;
    }
}

.footer_nav_sub_list {
    justify-content: center;
    padding-top: 45px;
    margin-top: 14px;
    border-top: 1px solid #E4E4E4;
}

@media screen and (max-width: 1239px) {
    .footer_nav_sub_list {
        gap: 25px;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 20px;
        margin-top: 20px;
        border-top: 1px solid #E4E4E4;
    }
}

.footer_nav_sub_list li a {
    font-size: 14px;
    font-weight: 400;
    line-height: 46px;
    letter-spacing: 3px;
    margin: 0 12px 10px;
}

.footer_nav a {
    font-size: 18px;
    font-weight: 400;
    line-height: 46px;
    letter-spacing: 3px;
    color: #383838;
    text-decoration: none;
    transition: color 0.3s;
}

@media screen and (max-width: 1239px) {
    .footer_nav a {
        font-size: 16px;
        font-weight: 400;
        line-height: 46px;
        letter-spacing: 3px;
        color: #383838;
        text-decoration: none;
        transition: color 0.3s;
    }
}

.footer_nav a:hover {
    color: #B8A973;
    text-decoration: underline;
}

.footer_copyright {
    font-size: 12px;
    font-weight: 400;
    line-height: 46px;
    letter-spacing: 3px;
    color: #383838;
}

@media screen and (max-width: 1239px) {
    .footer_copyright {
        font-size: 12px;
        font-weight: 400;
        line-height: 46px;
        letter-spacing: 3px;
        color: #383838;
        padding-bottom: 40px;
    }
}

/* ーーーーーーーーーーーーーーーーーー */
/* fvセクション(l-fv) */
/* ーーーーーーーーーーーーーーーーーー */
.l-fv {
    background-image: url('../img/l-fv/background02.png');
    position: relative;

    /* 高さを画面幅に応じて自動調整(アスペクト比 16:9) */
    aspect-ratio: 16 / 9;
    width: 100%;
    height: 80vh;
    /* スマホなど縦長の画面では高くなりすぎないよう上限設定 */
    max-height: 100vh;
    /* 中のロゴを中央に配置するためにFlexboxを使用 */
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 375px;
}

@media only screen and (min-width: 768px) {
    .l-fv {
    background-image: url('../img/l-fv/background02.png');
    position: relative;
    /* 高さを画面幅に応じて自動調整(アスペクト比 16:9) */
    aspect-ratio: 16 / 9;
    /* スマホなど縦長の画面では高くなりすぎないよう上限設定 */
    width: 100%;
    height: 100vh;
    /* スマホなど縦長の画面では高くなりすぎないよう上限設定 */
    max-height: 100vh;
    /* 中のロゴを中央に配置するためにFlexboxを使用 */
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 375px;
}
}

.l-fv__inner {
    z-index: 1;
    /* Flexboxの子要素として振る舞うため、複雑な位置指定は不要になる */
    position: relative;
    /*
        ロゴの幅を「画面幅の70%」に設定します。
        これにより、親セクションの高さが変わるのと連動して
        ロゴのサイズもスムーズに変わります。
    */
    width: 70vw;
    /* ただし、PCなど画面が広い場合に大きくなりすぎないよう上限を設定 */
    max-width: 888px;
    /* 逆にスマホで小さくなりすぎないよう下限も設定 */
    min-width: 300px;
    padding: 6.375rem 0 2rem;
}

.l-fv__txt {
    color: #0f0;
    font-size: 1.625rem;
    font-weight: 700;
    line-height: 1.4230769231
}

@media only screen and (min-width: 768px) {
    .l-fv__txt {
        font-size:2.5rem;
        line-height: 1.45
    }
}

.l-fv__ttl {
    color: #fff;
    font-size: 4.125rem;
    line-height: 1.3939393939
}

@media only screen and (min-width: 768px) {
    .l-fv__ttl {
        font-size:6.875rem;
        line-height: 1.4090909091
    }
}

.l-fv__ttl .strong {
    color: #0f0
}

/* .l-fv__bg {
    background: url(../img/top/bg-sp.jpg) no-repeat 50%/cover;
    height: 20.625rem
} */

/* .l-fv__bg,.l-fv__bg:before {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0
} */

/* .l-fv__bg:before {
    background: rgba(0,0,0,.4);
    content: "";
    top: 0
} */

/* @media only screen and (min-width: 768px) {
    .l-fv__bg {
        background-attachment:fixed;
        background-image: url(../img/top/bg-pc.jpg);
        height: 64.453125%
    }
} */

/* ================================================================================= */
/* ページスタイル */
/* ================================================================================= */
/* ーーーーーーーーーーーーーーーーーー */
/* 共通セクションスタイル(p-section) */
/* ーーーーーーーーーーーーーーーーー */
.p-section__ttl {
    font-family: Stack Sans Headline,Noto Sans JP,sans-serif;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.4583333333;
    letter-spacing: 0.175rem;
    margin-bottom: 2.5rem;
}

@media only screen and (max-width: 999px) {
    .p-section__ttl {
        font-size:3rem;
        line-height: 1.4473684211;
        margin-bottom: 1rem;
        text-align: center
    }
}

@media only screen and (min-width: 1000px) {
    .p-section__ttl {
        font-size:4rem;
        line-height: 1.4473684211;
        margin-bottom: 3.75rem;
    }
}

/* ================================================================================= */
/* シングルページ・アーカイブページスタイル */
/* ================================================================================= */
/* ーーーーーーーーーーーーーーーーーー */
/* singleページ(l-single) */
/* ーーーーーーーーーーーーーーーーーー */
.l-single__container {
    background: #fff;
    padding: 3.75rem 1.25rem
}

@media only screen and (min-width: 768px) {
    .l-single__container {
        padding:5rem 3.75rem
    }
}

.l-single__inner {
    margin: 0 auto;
    max-width: 82.5rem
}

@media only screen and (min-width: 768px) {
    .l-single__inner {
        display:flex;
        flex-wrap: wrap;
        gap: 2.5rem
    }
}

.l-single__thumb {
    border-radius: .375rem;
    margin-bottom: 1.5rem;
    overflow: hidden
}

@media only screen and (min-width: 768px) {
    .l-single__thumb {
        margin-bottom:2.5rem
    }

    .l-single__main {
        flex: 1 1 auto;
        min-width: 25rem;
        width: calc(100% - 25rem)
    }
}

.l-single__body {
    font-size: .875rem;
    letter-spacing: 0;
    line-height: 1.8571428571;
    margin-bottom: 1.5rem
}

@media only screen and (min-width: 768px) {
    .l-single__body {
        font-size:1rem;
        line-height: 1.75;
        margin-bottom: 2.5rem
    }
}

.l-single__body>:first-child {
    margin-top: 0!important
}

.l-single__body>:last-child {
    margin-bottom: 0!important
}

.l-single__body strong {
    font-weight: 700
}

.l-single__body ol,.l-single__body p,.l-single__body ul {
    margin-bottom: 1.5rem
}

@media only screen and (min-width: 768px) {
    .l-single__body ol,.l-single__body p,.l-single__body ul {
        margin-bottom:2.5rem
    }
}

.l-single__body .rtex-highlighter-0 {
    background: linear-gradient(0deg,#fff500 .625rem,transparent 0);
    font-weight: 700
}

.l-single__body .wp-block-code {
    background: #f5fdff;
    border: 2px solid #dff1f7;
    border-radius: .375rem;
    margin-bottom: 1.25rem;
    padding: .625rem
}

@media only screen and (min-width: 768px) {
    .l-single__body .wp-block-code {
        border-width:4px;
        margin-bottom: 2.5rem;
        padding: 1.25rem
    }
}

.l-single__body h2,.l-single__body h3,.l-single__body h4,.l-single__body h5,.l-single__body h6 {
    margin-bottom: 1.25rem
}

@media only screen and (min-width: 768px) {
    .l-single__body h2,.l-single__body h3,.l-single__body h4,.l-single__body h5,.l-single__body h6 {
        margin-bottom:1.5rem
    }
}

.l-single__body h2 {
    background: #2d3139;
    border-left: .25rem solid #dfc299;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.45;
    padding: .6875rem .75rem
}

@media only screen and (min-width: 768px) {
    .l-single__body h2 {
        font-size:1.75rem;
        line-height: 1.4285714286;
        padding: .3125rem 1.25rem
    }
}

.l-single__body h3 {
    border-bottom: 2px solid #292929;
    display: inline-block;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.4444444444;
    margin-right: auto;
    padding-bottom: .25rem
}

@media only screen and (min-width: 768px) {
    .l-single__body h3 {
        font-size:1.375rem;
        line-height: 1.4545454545
    }
}

.l-single__body h4,.l-single__body h5,.l-single__body h6 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5
}

@media only screen and (min-width: 768px) {
    .l-single__body h4,.l-single__body h5,.l-single__body h6 {
        font-size:1.125rem;
        line-height: 1.4444444444
    }
}

.l-single__body ol,.l-single__body ul {
    background: #f7f7f7;
    border-radius: .375rem;
    list-style: none;
    padding: 1rem
}

@media only screen and (min-width: 768px) {
    .l-single__body ol,.l-single__body ul {
        padding:1.5rem
    }
}

.l-single__body ul li {
    font-weight: 700;
    padding-left: 1.75rem;
    position: relative
}

.l-single__body ul li:before {
    content: "●";
    left: 0;
    position: absolute;
    top: 0
}

.l-single__body ol {
    counter-reset: item
}

.l-single__body ol li {
    counter-increment: item;
    font-weight: 700;
    padding-left: 1.6875rem;
    position: relative
}

.l-single__body ol li:before {
    content: counter(item) ".";
    left: 0;
    position: absolute;
    top: 0
}

/* ーーーーーーーーーーーーーーーーーー */
/* archiveページ(l-archive) */
/* ーーーーーーーーーーーーーーーーーー */
.l-archive {
    background: #fff;
    padding-bottom: 3.75rem;
    padding-top: 3.75rem
}

@media only screen and (min-width: 768px) {
    .l-archive {
        padding-bottom:5rem;
        padding-top: 5rem
    }
}

.l-archive__inner {
    display: flex;
    flex-direction: column;
    gap: 2.5rem
}

@media only screen and (min-width: 768px) {
    .l-archive__inner {
        gap:3.75rem
    }
}

.l-archive__ttl {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4583333333;
    margin-bottom: 2rem;
    position: relative
}

.l-archive__ttl:before {
    background: #d5d5d5;
    bottom: 0;
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    right: 0;
    width: 100%
}

.l-archive__ttl .txt {
    display: inline-block;
    padding-bottom: .625rem;
    position: relative
}

.l-archive__ttl .txt:before {
    background: #2d3139;
    bottom: 0;
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    right: 0;
    width: 100%
}

@media only screen and (min-width: 768px) {
    .l-archive__ttl {
        font-size:2.375rem;
        line-height: 1.4473684211;
        margin-bottom: 2.5rem
    }
}

.l-archive__list {
    display: flex;
    flex-direction: column;
    /* gap: 1.8125rem */
}

@media only screen and (min-width: 768px) {
    .l-archive__list {
        flex-direction:row;
        flex-wrap: wrap;
        gap: 2.375rem 1.875rem
    }
}

.l-archive__category {
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

@media only screen and (min-width: 768px) {
    .l-archive__category {
        gap:1.25rem
    }

    .l-archive__category-block {
        align-items: center;
        display: flex;
        gap: 1.3125rem
    }
}

.l-archive__category-ttl {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: .75rem
}

@media only screen and (min-width: 768px) {
    .l-archive__category-ttl {
        border-right:1px solid #d5d5d5;
        flex: 0 0 auto;
        font-size: 1.375rem;
        line-height: 1.4545454545;
        margin-bottom: 0;
        width: 15.125rem
    }
}

.l-archive__category-list {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem .75rem
}

.l-archive__category-item {
    background: #292929;
    border-radius: 1rem;
    color: #fff;
    font-size: .875rem;
    font-weight: 700;
    line-height: 1.4285714286;
    padding: .375rem .75rem;
    transition: .3s ease-out;
    transition-property: opacity
}

@media (hover: hover) {
    .l-archive__category-item:hover {
        opacity:.7
    }
}

@media only screen and (min-width: 768px) {
    .l-archive__category-item {
        font-size:1rem;
        line-height: 1.5;
        padding: .25rem .75rem
    }
}

/* ーーーーーーーーーーーーーーーーーー */
/* contactセクション(p-contact) */
/* ーーーーーーーーーーーーーーーーーー */
.p-contact {
    background: #FBF7F1;
    min-width: 375px;
}

/* Google Maps */
.p-contact__map {
    aspect-ratio: 16/9;
    border-radius: 0.375rem;
    margin-bottom: 2.5rem;
    overflow: hidden;
}

@media only screen and (min-width: 768px) {
    .p-contact__map {
        margin-bottom: 3.75rem;
    }
}

.p-contact__map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* 施設情報 */
.p-contact__info {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
}

/* @media only screen and (min-width: 768px) {
    .p-contact__info {
        flex-direction: row;
        justify-content: center;
        gap: 6.25rem;
        margin-bottom: 3.75rem;
    }
} */

.p-contact__link-box {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
}

.p-contact__link-box-item {
    aspect-ratio: 1/1;
    border-radius: .25rem;
    flex: 0 0 auto;
    overflow: hidden;
    transition: .3s ease-out;
    transition-property: box-shadow,-webkit-transform;
    transition-property: transform,box-shadow;
    transition-property: transform,box-shadow,-webkit-transform;
    width: 2.5rem
}

@media (hover: hover) {
    .p-contact__link-box-item:hover {
        box-shadow:0 0 10px hsla(0,0%,100%,.4);
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px)
    }
}

.p-contact__logo {
    width: 10.5525rem;
    height: auto;
}

.p-contact__address {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.05em;
    text-align: center;
}

/* @media only screen and (min-width: 768px) {
    .p-contact__address {
        font-size: 1.125rem;
        line-height: 1.6666666667;
    }
} */

.mobile-br {
    display: inline;
}

/* @media only screen and (min-width: 768px) {
    .mobile-br {
        display: none;
    }
} */

/* 説明文 */
.p-contact__text {
    text-align: center;
    margin-bottom: 3.75rem;
}

.p-contact__text p {
    font-size: 0.9rem;
    line-height: 1.7;
}

@media only screen and (min-width: 1000px) {
    .p-contact__text p {
        font-size: 1.1rem;
        line-height: 1.4;
    }
}

/* @media only screen and (min-width: 768px) {
    .p-contact__text p {
        font-size: 1rem;
        line-height: 1.75;
    }
} */

.pc-br {
    display: none;
}

@media only screen and (min-width: 375px) {
    .pc-br {
        display: inline;
    }
}

.p-contact .p-section__ttl {
    font-family: Stack Sans Headline,Noto Sans JP,sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.4583333333;
    letter-spacing: 0.175rem;
    margin-bottom: 2.5rem;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

@media only screen and (max-width: 999px) {
    .p-contact .p-section__ttl {
        font-size: 3rem;
        line-height: 1.4473684211;
        margin-bottom: 3.75rem;
    }
}

@media only screen and (min-width: 1000px) {
    .p-contact .p-section__ttl {
        font-size: 4rem;
        line-height: 1.4473684211;
        margin-bottom: 3.75rem;
    }
}

/* ーーーーーーーーーーーーーーーーーー */
/* GAMEセクション(p-game) */
/* ーーーーーーーーーーーーーーーーーー */
.p-game {
    background: #FBF7F1;
    padding: 80px 0;
    overflow: hidden;
    min-width: 375px;
}

.p-game__list {
    display: flex;
    flex-direction: column;
    /* gap: 0px; */
    margin-bottom: 40px;
    width: 100%;
    max-width: 100%;
}

@media only screen and (min-width: 1000px) {
    .p-game__list {
        /* gap: 0px; */
        margin-bottom: 60px;
    }
}

.p-game__item {
    border-top: 1px solid #d5d5d5;
    padding: 2rem 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    /* height: 241.05px; */
    gap: 20px;
    width: 100%;
    max-width: 100%;
}

@media only screen and (min-width: 1000px) {
    .p-game__item {
        flex-direction: row;
        gap: 30px;
        align-items: flex-start;
    }
}

.p-game__item:last-child {
    border-bottom: 1px solid #d5d5d5
}

.p-game__thumbnail {
    box-sizing: border-box;
    flex: 0 0 auto;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #d9d9d9;
    display: flex;
    align-self: flex-end;
    position: relative;
    overflow: hidden;
    align-self: center;
}

@media only screen and (min-width: 1000px) {
    .p-game__thumbnail {
        width: 420px;
    }
}

.p-game__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-game__label {
    font-size: 1.5rem;
    color: #666;
    font-weight: 500;
}

.p-game__content {
    box-sizing: border-box;
    display: flex;
    flex: 1 1 0;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
    min-width: 0;
}

@media only screen and (min-width: 1000px) {
    .p-game__content {
        gap: 20px;
    }
}

.p-game__title {
    font-size: 1.75rem;
    font-weight: 900;
    margin: 0 auto;
}

@media only screen and (min-width: 1000px) {
    .p-game__title {
        flex: 2;
        font-size: 2rem;
        font-weight: 900;
        letter-spacing: 0.02em;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        margin: 0;
    }
}

.p-game__description {
    flex: 2;
    background: transparent;
    /* padding: 8px 0px; */
    gap: 8px;
}

@media only screen and (min-width: 1000px) {
    .p-game__description {
        padding: 10px 0px;
    }
}

.p-game__desc-text {
    font-size: 0.9rem;
    line-height: 1.7;
    letter-spacing: 0.3px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media only screen and (min-width: 1000px) {
    .p-game__desc-text {
        font-size: 1.1rem;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

.p-game__links {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

@media only screen and (max-width: 999px) {
    .p-game__links {
        align-self: center;
    }
}

@media only screen and (min-width: 1000px) {
    .p-game__links {
        flex-direction: row;
        gap: 16px;
    }
}

.p-game__link {
    flex: 1;
    background: transparent;
    border: 1px solid #2d3139;
    box-sizing: border-box;
    padding: 10px 20px;
    padding-right: 25px;
    padding-bottom: 12px;
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
    gap: 4px;
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: background 0.3s ease-out;
    align-self: flex-end;
}

@media only screen and (max-width: 999px) {
    .p-game__link {
        align-self: stretch;
    }
}

@media (hover: hover) {
    .p-game__link:hover {
        background: #adadad;
    }
}

.p-game__link span:first-child {
    font-size: 0.8rem;
    font-weight: 700;
}

@media only screen and (min-width: 375px) {
    .p-game__link span:first-child {
        font-size: 1rem;
    }
}

.p-game__link--more {
    color: #009dff;
    text-decoration: underline;
    transition: .3s ease-out;
    transition-property: opacity;
}

@media (hover: hover) {
    .p-game__link--more:hover {
        opacity: .7;
    }
}

.p-game__link-icon {
    width: 24px;
    height: 24px;
    margin-top: 5px;
    margin-right: 5px;
    vertical-align: middle;
}

/* .p-game__link.p-game__link--appstore {
    align-self: center;
} */

/* .p-game__link.p-game__link--googleplay {
    align-self: center;
} */

/* ーーーーーーーーーーーーーーーーーー */
/* NEWSセクション(p-news) */
/* ーーーーーーーーーーーーーーーーーー */
.p-news {
    background: #F0E9D6;
    min-width: 375px;
}

.p-news__list {
    margin-bottom: 1.25rem;
}

@media only screen and (min-width: 768px) {
    .p-news__list {
        margin-bottom:2.5rem;
    }
}

/* ーーーーーーーーーーーーーーーーーー */
/* MEMBERセクション(p-member) */
/* ーーーーーーーーーーーーーーーーーー */
/* .p-member.p-member--member.c-section {
    padding: 5rem 2.5rem;
} */

@media only screen and (min-width: 768px) {
    .p-member.p-member--member.c-section {
        padding: 5rem 2.5rem;
    }
}

.p-member {
    background: #FBF7F1;
    min-width: 375px;
}

.p-member__list {
    margin-bottom: 1.25rem;
}

@media only screen and (min-width: 1000px) {
    .p-member__list {
        margin-bottom:2.5rem;
    }
}

.p-member__item {
    border-top: 1px solid #d5d5d5;
    padding-bottom: 1.5rem;
    padding-top: 1.5rem
}

@media only screen and (min-width: 1000px) {
    .p-member__item {
        align-items:flex-start;
        display: flex;
        gap: 2rem;
        padding-bottom: 2rem;
        padding-top: 2rem
    }
}

.p-member__item:last-child {
    border-bottom: 1px solid #d5d5d5
}

.p-member__item-head {
    align-self: center;
    display: flex;
    gap: 1.25rem;
    justify-content: space-evenly;
    margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
    .p-member__item-head {
        gap:2rem;
        flex-direction: column;
    }
}

@media only screen and (min-width: 1000px) {
    .p-member__item-head {
        gap:2rem
    }
}

.p-member__item-body {
    flex: 1 1 auto;
    height: 100%;
}

@media only screen and (min-width: 1000px) {
    .p-member__item-body--top {
        /* align-items:center; */
        justify-content: space-between;
        display: flex;
        flex-wrap: wrap;
        /* gap: 1.25rem; */
        margin-bottom: 1.25rem
    }
}

.p-member__item-pic {
    aspect-ratio: 1/1;
    border-radius: 50%;
    flex: 0 0 auto;
    width: 150px;
    overflow: hidden;
}

@media only screen and (max-width: 768px) {
    .p-member__item-pic {
        align-self: center;
        text-align: center;
    }
}

.p-member__item-info {
    color: #a6a6a6;
    display: flex;
    flex-direction: column;
    font-size: 1.125rem;
    font-weight: 700;
    gap: .75rem;
    line-height: 1.4444444444;
    justify-content: space-evenly;
}

@media only screen and (max-width: 768px) {
    .p-member__item-info {
        align-self: center;
        text-align: center;
    }
}

.p-member__item-name {
    font-size: 1.25rem;
}

.p-member__item-about {
    font-size: 1.25rem;
}

@media only screen and (min-width: 1000px) {
    .p-member__item-info {
        flex-direction:row;
        font-size: 1.375rem;
        gap: 2rem;
        line-height: 1.4545454545;
        /* margin-bottom: 1.25rem */
        align-items: center;
    }
}

.p-member__item-txt {
    font-size: 0.9rem;
    line-height: 1.7;
    letter-spacing: 0.3px;
}

@media only screen and (max-width: 999px) {
    .p-member__item-txt {
        font-size: 0.9rem;
        line-height: 1.7;
        letter-spacing: 0.3px;
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

@media only screen and (min-width: 1000px) {
    .p-member__item-txt {
        font-size: 1.1rem;
        line-height: 1.4;
    }
}

.p-member__link {
    align-items: center;
    /* background: #2d3139; */
    /* border: 2px solid #0f0; */
    border-radius: .375rem;
    color: #fff;
    display: inline-flex;
    justify-content: center;
    max-width: 23.75rem;
    min-height: 3.75rem;
    transition: .3s ease-out;
    transition-property: background;
    width: 100%
}

/* PC表示時に正方形化 */
@media only screen and (min-width: 1000px) {
    .p-member__link {
        flex-direction: column;
        aspect-ratio: 1 / 1;
        width: 2.5rem;
        height: 2.5rem;
        max-width: 2.5rem;
        min-height: 2.5rem;
        /* padding: 1rem; */
        gap: 0;
        /* border-width: 2px; */
    }
}

.p-member__link-box {
    flex: 0 0 auto;
    margin-top: 1.25rem;
    text-align: center;
    display: flex;
    /* flex-direction: column; */
    gap: 1rem;
    justify-content: center;
}

@media only screen and (min-width: 1000px) {
    .p-member__link-box {
        flex-direction: row;
        gap: 0.75rem;
        margin-top: 0;
        margin-right: 0.5rem;
        width: auto;
    }
}

.p-member__link .icon {
    align-items: center;
    display: inline-flex;
    justify-content: center;
}

@media only screen and (min-width: 1000px) {
    .p-member__link .icon {
        margin-right: 0;
        margin-bottom: 0;
    }
}

.p-member__link .icon img {
    display: block;
    width: 24px;
    height: 24px;
    object-fit: contain;
}

@media only screen and (min-width: 1000px) {
    .p-member__link .icon img {
        width: 32px;
        height: 32px;
    }
}

.p-member__link .txt {
    display: none;
    font-size: 1rem;
    font-weight: 700;
    /* padding-bottom: .125rem; */
    transition: .3s ease-out;
    transition-property: color;
}

.p-member__link .arrow {
    align-items: center;
    display: none;
    margin-left: .5625rem
}

/* ーーーーーーーーーーーーーーーーーー */
/* 個別ボタンスタイル（X / Twitter） */
/* ーーーーーーーーーーーーーーーーーー */
.p-member__link--x {
    padding: 0.275rem;
}

@media (hover: hover) {
    .p-member__link--x:hover {
    }
}

/* ーーーーーーーーーーーーーーーーーー */
/* 個別ボタンスタイル（Instagram） */
/* ーーーーーーーーーーーーーーーーーー */
.p-member__link--instagram {
}

@media (hover: hover) {
    .p-member__link--instagram:hover {
    }
}

/* ーーーーーーーーーーーーーーーーーー */
/* 個別ボタンスタイル(other) */
/* ーーーーーーーーーーーーーーーーーー */
.p-member__link--other {
    padding: 0.375rem;
}

@media (hover: hover) {
    .p-member__link--other:hover {
    }
}

.p-member__link--more {
    color: #009dff;
    text-decoration: underline;
    transition: .3s ease-out;
    transition-property: opacity;
}

@media (hover: hover) {
    .p-member__link--more:hover {
        opacity: .7;
    }
}

.p-member__link .fill {
    transition: .3s ease-out;
    transition-property: fill
}

@media (hover: hover) {
    .p-member__link:hover {
        background: #adadad
    }

    .p-member__link:hover .txt {
        color: #0f0
    }

    .p-member__link:hover .fill {
        fill: #0f0
    }
}

/* ーーーーーーーーーーーーーーーーーー */
/* BRANDセクション(p-p-game p-game--brand c-section) */
/* ーーーーーーーーーーーーーーーーーー */
.p-game.p-game--brand.c-section {
    background: #F0E9D6;
}