@charset "utf-8";
html {
    font-size: 62.5%;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 60px;
    background-color: #fff;
    color: #091526;
    font-family: "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
    font-size: 10px;
    font-size: 1.0rem;
    line-height: 1.5;
    width: 100%;
    -webkit-text-size-adjust: 100%; /* sp 横表示対応 */
    word-wrap: break-word; /* 英文自動折り返し */
    overflow-x: hidden;
    overflow-y: scroll;
}
body::-webkit-scrollbar {
    width: 5px;
    background-color: #F4F5F6;
}
body::-webkit-scrollbar-thumb {
    background-color: #929292;
}
*, *:before, *:after {
    box-sizing: border-box;
}
main {
    display: block;
}
fieldset {
    display: contents;
}
label {
    display: inline-block;
}
a[href^="tel:"]:hover {
    cursor: default;
    opacity: 1.0;
}
a {
    opacity: 1;
    text-decoration: none;
    color: #000;
}
a:not(#pageTop) {
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: 0.3s;
}
a:hover {
    opacity: 0.8;
    filter: alpha(opacity=80);
    -moz-opacity: 0.8;
}
img, iframe {
    max-width: 100%;
    vertical-align: bottom;
}
img {
    height: auto;
}
table th, table td {
    word-break: break-all;
}
figure a {
    display: inline-block;
}
/** ===========================================================================
 * heading
 ** ======================================================================== */
.c-heading {
    display: inline-block;
    padding-left: 20px;
    position: relative;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(81, 81, 81, .1);
    color: #929292;
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: 700;
}
.c-heading::before {
    content: "";
    display: block;
    width: 10px;
    height: 100%;
    background-color: #929292;
    border-radius: 5px;
    position: absolute;
    top: 0;
    left: 0;
}
.c-heading:not(:last-child) {
    margin-bottom: 15px;
}
.c-heading.large {
    font-size: 28px;
    font-size: 2.8rem;
}
.c-heading.sm {
    font-size: 20px;
    font-size: 2.0rem;
}
.c-heading.sm::before {
    width: 5px;
}
.c-heading.red {
    color: #ff7f7f;
}
.c-heading.red::before {
    background-color: #ff7f7f;
}
.c-heading.orange {
    color: #ffbf7f;
}
.c-heading.orange::before {
    background-color: #ffbf7f;
}
.c-heading.yellow {
    color: #ffff7f;
    -webkit-text-stroke-color: rgba(255,255,0,.25);
}
.c-heading.yellow::before {
    background-color: #ffff7f;
}
.c-heading.green {
    color: #7fff7f;
}
.c-heading.green::before {
    background-color: #7fff7f;
}
.c-heading.blue {
    color: #7f7fff;
}
.c-heading.blue::before {
    background-color: #7f7fff;
}
.c-heading.pink {
    color: #ff7fff;
}
.c-heading.pink::before {
    background-color: #ff7fff;
}
.c-heading-icon {
    font-size: 20px;
    font-size: 2.0rem;
    font-weight: 700;
}
.c-heading-icon.sm {
    font-size: 14px;
    font-size: 1.4rem;
}
.c-heading-icon:not(:last-child) {
    margin-bottom: 10px;
}
.c-heading-icon i {
    margin-right: .5em;
}
.c-heading-icon.orange i {
    color: #ffbf7f;
}
.c-heading-icon.green i {
    color: #7fff7f;
}
.c-heading-icon.purple i {
    color: #BF7FFF;
}
/** ===========================================================================
 * text
 ** ======================================================================== */
.c-text {
    font-size: 16px;
    font-size: 1.6rem;
}
.c-textalign-center {
    text-align: center;
}
/** ===========================================================================
 * btn
 ** ======================================================================== */
.c-btn {
    display: inline-block;
    min-width: 250px;
    padding: 10px;
    padding-left: calc(10px + 1em);
    background: #fff;
    border: 1px solid #808080;
    border-radius: 5px;
    position: relative;
    text-align: center;
    color: #808080;
    font-size: 24px;
    font-size: 2.4rem;
    transition: .3s;
    cursor: pointer;
}
.c-btn::before {
    content: "";
    display: block;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    background: conic-gradient(#ff7f7f, #ffff7f, #7fff7f, #7f7fff, #ff7fff, #ff7f7f);
    mix-blend-mode: color;
    position: absolute;
    top: -1px;
    left: -1px;
    z-index: 2;
    pointer-events: none;
    transition: .3s;
}
.c-btn:hover::before {
    transform: rotate(720deg);
}
.c-btn i[class^="fa"] {
    line-height: 1.25;
    position: absolute;
    left: 10px;
    z-index: 1;
}
/** more */
.c-more__link {
    padding: 3px 20px 3px 10px;
    background-color: #929292;
    border-radius: 10px;
    position: relative;
    color: #fff;
    font-size: 10px;
    font-size: 1.0rem;
    line-height: 1;
}
.c-more__link::before {
    content: "";
    display: block;
    width: .75em;
    height: .8em;
    border-top: .4em solid transparent;
    border-bottom: .4em solid transparent;
    border-left: .75em solid #fff;
    position: absolute;
    top: 0;
    right: 5px;
    bottom: 0;
    margin: auto;
}
/** ===========================================================================
 * container
 ** ======================================================================== */
.container, .container-fluid {
    max-width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    margin-right: auto;
    margin-left: auto;
}
.container {
    width: 1440px;
}
/** ===========================================================================
 * header
 ** ======================================================================== */
.header {
    width: 100%;
    height: 60px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: rgba(255, 255, 255, .95);
    box-shadow: 0 3px 6px rgba(81, 81, 81, .15);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    transition: .3s;
}
.header:hover {
    background-color: rgba(255, 255, 255, 1);
}
.header .container-fluid {
    display: flex;
    align-items: center;
    max-height: 100%;
}
.header-logo__link {
    display: block;
}
.header-nav {
    margin-left: auto;
}
/** nav
 ** ======================================================================== */
.nav-body {
    display: flex;
    align-items: center;
}
.nav {
    background: linear-gradient(90deg, #ff7f7f, #ffff7f, #7fff7f, #7f7fff, #ff7fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}
.nav::before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ff7f7f, #ffff7f, #7fff7f, #7f7fff, #ff7fff);
    position: absolute;
    bottom: 0;
    left: 0;
    mix-blend-mode: color;
    transition: .3s;
}
.nav-group {
    display: flex;
    margin: -10px;
}
.nav-group-item {
    padding: 10px;
}
.nav-link {
    display: inline-block;
    border-bottom: 1px double transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(81, 81, 81, .25);
    font-size: 20px;
    font-size: 2.0rem;
    font-weight: 700;
}
.nav-link:hover, .nav-link.current {
    border-bottom: 1px solid rgba(128, 128, 128, .5);
    opacity: 1;
}
/** SNS */
.nav-sns:not(:first-child) {
    margin-left: 40px;
}
.nav-sns-group {
    display: flex;
    align-items: center;
    margin: -7.5px;
}
.nav-sns-group-item {
    padding: 7.5px;
}
.nav-sns-link {
    font-size: 20px;
    font-size: 2.0rem;
}
.nav-sns-link i {
    transition: .3s;
}
.nav-sns-link:hover {
    opacity: 1;
}
.nav-sns-link:hover i {
    transform: skewX(-15deg);
}
.nav-sns-link .fa-youtube {
    color: #c4302b;
}
/** toggle btn */
.nav-btn__toggle {
    display: none;
}
.nav-btn {
    display: none;
    width: 30px;
    height: 30px;
    position: relative;
    cursor: pointer;
}
.nav-btn span {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #929292;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    transition: .3s;
}
.nav-btn span:nth-child(1) {
    top: 15%;
}
.nav-btn span:nth-child(2) {
    top: 0;
    bottom: 0;
}
.nav-btn span:nth-child(3) {
    bottom: 15%;
}
.nav-btn__toggle:checked ~ .nav-btn span:nth-child(1), .nav-btn__toggle:checked ~ .nav-btn span:nth-child(3) {
    top: 0;
    bottom: 0;
}
.nav-btn__toggle:checked ~ .nav-btn span:nth-child(1) {
    transform: rotate(-675deg);
}
.nav-btn__toggle:checked ~ .nav-btn span:nth-child(2) {
    width: 0;
    transform: rotate(360deg);
    opacity: 0;
}
.nav-btn__toggle:checked ~ .nav-btn span:nth-child(3) {
    transform: rotate(675deg);
}
@media screen and (max-width: 920px) {
    .nav {
        background: linear-gradient(#ff7f7f, #ffff7f, #7fff7f, #7f7fff, #ff7fff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .nav::before {
        display: none;
    }
    .nav-btn {
        display: block;
    }
    .nav-body {
        flex-direction: column;
        width: 100%;
        height: 0;
        padding-right: 15px;
        padding-left: 15px;
        background-color: rgba(255, 255, 255, .95);
        position: absolute;
        top: 100%;
        left: 0;
        overflow: hidden;
        transition: .3s;
    }
    .nav-btn__toggle:checked ~ .nav-body {
        height: calc(100vh - 100%);
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .nav-group {
        flex-direction: column;
        align-items: center;
    }
    .nav-link {
        font-size: 24px;
        font-size: 2.4rem;
    }
    .nav-sns:not(:first-child) {
        margin-top: auto;
        margin-left: auto;
    }
}
/** ===========================================================================
 * main
 ** ======================================================================== */
.main {
    flex: 1 1 auto;
    padding-bottom: 150px;
    position: relative;
}
.c-row {
    display: flex;
    flex-direction: row-reverse;
}
.c-row.noreverse {
    flex-direction: row;
}
.c-main {
    flex: 1 1 auto;
}
.c-side {
    flex-shrink: 0;
    width: 320px;
    max-width: 100%;
    margin-right: 40px;
}
.c-side-cards__group {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}
.c-side-cards__group-item {
    width: 100%;
    padding: 10px;
    background-color: #fff;
}
.c-side__none {
    text-align: center;
    font-size: 14px;
    font-size: 1.4rem;
}
@media screen and (max-width: 1023px) {
    .c-row, .c-row.noreverse {
        flex-direction: column;
    }
    .c-main:not(:first-child), .c-side:not(:first-child) {
        margin-top: 50px;
    }
    .c-side {
        width: 100%;
        margin-right: auto;
        margin-left: auto;
    }
    .c-side-cards__group-item {
        width: 33.333%;
    }
}
@media screen and (max-width: 767px) {
    .c-side-cards__group-item {
        width: 50%;
    }
}
@media screen and (max-width: 479px) {
    .c-side-cards__group-item {
        width: 100%;
    }
}
/** ===========================================================================
 * footer
 ** ======================================================================== */
.footer {
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: #F4F5F6;
    overflow: hidden;
}
.footer .container-fluid {
    display: flex;
    align-items: center;
}
.footer-nav-group {
    display: flex;
    align-items: center;
    margin: -7.5px;
}
.footer-nav-group-item {
    padding: 7.5px;
}
.footer-nav-link {
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 700;
}
.footer-copyright {
    display: block;
    margin-left: auto;
    font-size: 12px;
    font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
    .footer {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .footer .container-fluid {
        flex-direction: column;
    }
    .footer-copyright {
        margin-top: 20px;
        margin-right: auto;
    }
}
/** ===========================================================================
 * パンくず
 ** ======================================================================== */
.aioseo-breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 15px;
    margin-bottom: 30px;
    font-size: 14px;
    font-size: 1.4rem;
}
.aioseo-breadcrumbs * {
    color: #929292;
}
.aioseo-breadcrumbs a:hover {
    text-decoration: underline;
    opacity: 1;
}
.aioseo-breadcrumb-separator:not(:first-child) {
    margin-left: .5em;
}
.aioseo-breadcrumb-separator:not(:last-child) {
    margin-right: .5em;
}
.aioseo-breadcrumbs > *:last-child {
    font-weight: 700;
}
/** ===========================================================================
 * 下層タイトル
 ** ======================================================================== */
.c-page-title {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(81, 81, 81, .25);
    color: #929292;
    font-size: 50px;
    font-size: 5.0rem;
    font-weight: 700;
    letter-spacing: .1em;
}
.c-page-title.red {
    color: #ff7f7f;
}
.c-page-title.orange {
    color: #ffbf7f;
}
.c-page-title.yellow {
    color: #ffff7f;
}
.c-page-title.green {
    color: #7fff7f;
}
.c-page-title.blue {
    color: #7f7fff;
}
.c-page-title.pink {
    color: #ff7fff;
}
.c-page-sub-title {
    color: #929292;
    font-size: 28px;
    font-size: 2.8rem;
}
.c-page-title:not(:last-child), .c-page-sub-title:not(:last-child) {
    margin-bottom: 30px;
}
/** ===========================================================================
 * いいね
 ** ======================================================================== */
.wpulike .wp_ulike_general_class {
    flex-direction: row-reverse;
    font-size: 16px;
    font-size: 1.6rem;
}
.wpulike-animated-heart button.wp_ulike_btn {
    box-shadow: 0 5px 30px rgba(255, 193, 255, .4) !important;
}
.wpulike-animated-heart button.wp_ulike_btn.wp_ulike_btn_is_active {
    background-color: #FFC1FF !important;
}
.wpulike-animated-heart .count-box {
    color: #FFC1FF !important;
}
.wpulike-animated-heart .wpulike-svg-heart {
    fill: #FFC1FF !important;
}
.wpulike-animated-heart button.wp_ulike_btn.wp_ulike_btn_is_active .wpulike-svg-heart {
    fill: #fff !important;
}
/** ===========================================================================
 * CARD
 ** ======================================================================== */
.c-card {
    display: block;
    width: 100%;
    background-color: #fff;
    border: 2px dotted #CED3D9;
    border-radius: 10px;
    position: relative;
}
.c-card:hover {
    opacity: 1;
}
.c-card::before {
    content: "";
    display: block;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    background: conic-gradient(#ff7f7f, #ffff7f, #7fff7f, #7f7fff, #ff7fff, #ff7f7f);
    mix-blend-mode: color;
    position: absolute;
    top: -1px;
    left: -1px;
    pointer-events: none;
    transition: .3s;
}
.c-card:hover::before {
    background: conic-gradient(#7f7fff, #ff7fff, #ff7f7f, #ff7f7f, #ffff7f, #7fff7f);
}
.c-card > * {
    position: relative;
    z-index: 2;
}
.c-card-thumb {
    width: 100%;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.c-card-body {
    padding: 5px 10px;
}
.c-card-heading {
    display: inline-block;
    padding-right: .5em;
    position: relative;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: .1em;
}
.c-card-heading span {
    position: relative;
    z-index: 2;
}
.c-card-heading::before {
    content: "";
    display: block;
    width: 0;
    height: .75em;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #ff7f7f);
    opacity: .5;
    transition: 1s;
}
.c-card:hover .c-card-heading::before {
    width: 100%;
    background: linear-gradient(90deg, #ff7f7f, #ffff7f, #7fff7f);
}
.c-card-date {
    display: block;
    font-size: 12px;
    font-size: 1.2rem;
}
.c-card-except {
    margin-top: 5px;
    max-height: 3em;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 12px;
    font-size: 1.2rem;
    letter-spacing: .05em;
}
/** ===========================================================================
 * POSTS
 ** ======================================================================== */
.c-posts-group {
    margin: -10px;
}
.c-posts-group-item {
    padding: 10px;
    background-color: #fff;
}
.c-posts-card {
    display: block;
    padding: 15px;
    background-color: #fff;
    border: 2px dotted #CED3D9;
    border-radius: 10px;
    position: relative;
}
.c-posts-card-data {
    display: flex;
}
.c-posts-card-data-user {
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
}
.c-posts-card-data-name {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1;
}
.c-posts-card-data-name span {
    display: inline-block;
    margin-left: .5em;
    color: #929292;
    font-size: 12px;
    font-size: 1.2rem;
}
.c-posts-card-data-date {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    font-size: 1.2rem;
}
.c-posts-card-heading {
    font-size: 20px;
    font-size: 2.0rem;
    font-weight: 700;
}
.c-posts-card-heading:not(:first-child) {
    margin-top: 10px;
}
.c-posts-card:hover .c-posts-card-heading {
    text-decoration: underline;
}
.c-posts-card-tags:not(:first-child) {
    margin-top: 10px;
}
.c-posts-card-good {
    display: flex;
    align-items: center;
    position: absolute !important;
    top: 15px;
    right: 15px;
    color: #FFC1FF;
    font-size: 16px;
    font-size: 1.6rem;
}
.c-posts-card-good .wpulike {
    padding: 0;
}
.c-posts-card-good .wpulike-animated-heart .count-box {
    margin: auto;
}
.c-posts-card-good .wpulike-animated-heart button.wp_ulike_btn {
    display: none;
}
.c-posts-card__link, .c-posts-card.nonelink::before {
    content: "";
    display: block;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    background: conic-gradient(#7f7fff, #ff7fff, #ff7f7f, #ff7f7f, #ffff7f, #7fff7f);
    position: absolute;
    top: -1px;
    left: -1px;
    mix-blend-mode: color;
}
.c-posts-card > *:not(.c-posts-card__link) {
    position: relative;
    z-index: 1;
}
.c-posts-card:not(.nonelink) > *:not(.c-posts-card__link) {
    pointer-events: none;
}
/** ===========================================================================
 * tags
 ** ======================================================================== */
.c-tags {
    background-color: #fff;
    position: relative;
}
.c-tags::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(-90deg, #ffff7f, #7fff7f, #7f7fff, #ff7fff, #ff7f7f);
    position: absolute;
    top: 0;
    left: 0;
    mix-blend-mode: color;
    pointer-events: none;
}
.c-tags__group {
    display: flex;
    flex-wrap: wrap;
    margin: -2.5px;
}
.c-tags__group-item {
    padding: 2.5px;
}
.c-tags__link {
    display: block;
    padding: .25em .5em;
    background-color: #f2f2f2;
    border-radius: .25em;
    color: #929292;
    pointer-events: auto;
    opacity: .99;
    transition: 0s;
}
.c-tags__link:hover {
    opacity: 1;
}
/** ===========================================================================
 * form
 ** ======================================================================== */
.c-form {
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
}
.c-form:not(:first-child) {
    margin-top: 30px;
}
.c-form-flow {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.c-form-flow::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #ff7f7f, #ffff7f, #7fff7f, #7f7fff, #ff7fff);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    mix-blend-mode: color;
}
.c-form-flow-item {
    position: relative;
    z-index: 3;
}
.c-form-flow-item:not(:last-child) {
    display: flex;
    flex: 1 1 auto;
}
.c-form-flow-item:last-child, .c-form-flow-item span {
    width: 80px;
}
.c-form-flow-item span {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    background-color: #aaa;
    border-radius: 50%;
    z-index: 2;
    margin-left: auto;
    text-align: center;
    color: #fff;
    font-size: 30px;
    font-size: 3.0rem;
    font-weight: 700;
}
.c-form-flow-item span.c-font-flow__fs3 {
    font-size: 22px;
    font-size: 2.2rem;
}
.c-form-flow-item span.c-font-flow__fs5 {
    font-size: 18px;
    font-size: 1.8rem;
}
.c-form-flow-item:not(:last-child)::before {
    content: "";
    display: block;
    flex: 1 1 auto;
    height: 8px;
    border-top: 8px dotted #aaa;
    margin: auto 5px;
}
.c-form-flow-item.current, .c-form-flow-item.current ~ .c-form-flow-item {
    z-index: 1;
}
.c-form-flow-item.error::after {
    content: "\f00d";
    height: 1em;
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc((100% - 80px) / 2);
    margin: auto;
    color: #ff0000;
    font: var(--fa-font-solid);
    font-size: 40px;
    line-height: 1;
    transform: translateX(-50%);
}
.c-form-flow-item.error + .c-form-flow-item.current {
    z-index: 3;
}
.c-form-flow-item.error + .c-form-flow-item span {
    background-color: #ff0000;
}
.c-form-area {
    padding: 30px;
    background-color: #f2f2f2;
    border-radius: 10px;
}
.c-form-area:not(:first-child) {
    margin-top: 30px;
}
.c-form-text {
    text-align: center;
    font-size: 14px;
    font-size: 1.4rem;
}
.c-form-text:not(:first-child) {
    margin-top: 30px;
}
.c-form-text:not(:last-child) {
    margin-bottom: 15px;
}
.c-form-group:not(:first-child) {
    margin-top: 15px;
}
.c-form-group dd {
    margin-top: 5px;
}
.c-form-label {
    font-size: 16px;
    font-size: 1.6rem;
}
.c-form-label.required {
    color: #FF7F7F;
}
.c-form-label.required span {
    display: inline-block;
    padding: .25em .5em;
    background-color: #FF7F7F;
    border-radius: 3px;
    margin-right: .5em;
    color: #fff;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1;
}
.c-form-control {
    display: block;
    width: 100%;
    padding: .5em;
    background: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-size: 1.6rem;
}
.c-form-control:focus {
    outline: none;
    background: #fff;
}
.c-form-confirm {
    display: block;
    width: 100%;
    font-size: 16px;
    font-size: 1.6rem;
}
.c-form-confirm tbody, .c-form-confirm th, .c-form-confirm td {
    display: block;
}
.c-form-confirm tr {
    display: flex;
}
.c-form-confirm tr:not(:first-child) {
    margin-top: 15px;
}
.c-form-confirm th, .c-form-confirm td {
    padding: .5em;
}
.c-form-confirm th {
    width: 10em;
    text-align: left;
    vertical-align: middle;
}
.c-form-confirm td {
    flex: 1 1 auto;
    min-height: 2.5em;
    background: #fff;
    border-radius: 5px;
    font-size: 16px;
    font-size: 1.6rem;
}
.c-form-submit {
    display: flex;
    justify-content: center;
}
.c-form-submit:not(:first-child) {
    margin-top: 20px;
}
.c-form-submit__back {
    min-width: 150px;
    margin-right: 30px;
}
/** ===========================================================================
 * comment
 ** ======================================================================== */
.comments-area {
    font-size: 16px;
    font-size: 1.6rem;
}
.comments-area:not(:first-child) {
    margin-top: 30px;
}
*:not(h2) + .comment:not(:first-child) {
    margin-top: 15px;
}
.comments-title {
    margin-bottom: 10px;
    font-size: 20px;
    font-size: 2.0rem;
}
.children {
    padding-left: 30px;
    position: relative;
    margin-top: 15px;
}
.children::before {
    content: "";
    display: block;
    width: 5px;
    height: 100%;
    background-color: #929292;
    border-radius: 2px;
    position: absolute;
    top: 0;
    left: 0;
}
.comment-body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 15px;
    background-color: #f2f2f2;
    border-radius: 10px;
}
.comment-author {
    display: flex;
    align-items: center;
    margin-right: auto;
    font-size: 12px;
    font-size: 1.2rem;
}
.comment-author img {
    width: 30px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
}
.comment-meta {
    margin-bottom: auto;
    color: #929292;
    font-size: 12px;
    font-size: 1.2rem;
}
.comment-body > p {
    width: 100%;
    margin-top: 10px;
    font-size: 16px;
    font-size: 1.6rem;
}
.reply {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin-top: 5px;
}
.comment-reply-link, .form-submit .submit {
    display: block;
    padding: .25em 1em;
    background-color: #929292;
    border-radius: 1em;
    border: none;
    color: #fff;
    font-size: 14px;
    font-size: 1.4rem;
    cursor: pointer;
}
.c-comments-send-btn i:not(:first-child) {
    margin-left: .5em;
}
.c-comments-send-btn i:not(:last-child) {
    margin-right: .5em;
}
/* form */
.comment-respond {
    display: block;
    padding: 15px;
    background-color: #f2f2f2;
    border-radius: 10px;
}
.comment-respond:not(:first-child) {
    margin-top: 10px;
}
.comment-list + .comment-respond {
    margin-top: 50px;
}
.comment-reply-title {
    margin-bottom: 10px;
    color: #929292;
    font-size: 20px;
    font-size: 2.0rem;
}
.comment-notes {
    margin-bottom: 5px;
    font-size: 14px;
    font-size: 1.4rem;
}
.logged-in-as {
    margin-bottom: 5px;
    font-size: 14px;
    font-size: 1.4rem;
}
.required-field-message, .comment-form-comment label {
    display: none;
}
.comment-form-author, .comment-form-email, .comment-form-url {
    display: flex;
    align-items: center;
    margin-top: .5em;
}
.comment-form-author {
    margin-top: 2em;
}
.comment-form-author label, .comment-form-email label, .comment-form-url label {
    width: 5em;
    font-size: 14px;
    font-size: 1.4rem;
}
.comment-form input[type="text"], .comment-form textarea {
    display: block;
    width: 100%;
    padding: .5em;
    background: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-size: 1.6rem;
}
.comment-form-comment textarea {
    height: 150px;
}
.comment-form-cookies-consent {
    display: flex;
    align-items: center;
    margin-top: 1em;
    font-size: 12px;
    font-size: 1.2rem;
}
.form-submit {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}
.form-submit .submit {
    background-color: #091526;
}
/** ===========================================================================
 * MEMBERS
 ** ======================================================================== */
.c-members-card {
    display: flex;
    align-items: flex-start;
    width: 100%;
    padding: 15px 20px;
    background-color: #fff;
    border: 2px dotted #CED3D9;
    border-radius: 10px;
    position: relative;
}
.c-members-card::before {
    content: "";
    display: block;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    background: conic-gradient(#ff7f7f, #ffff7f, #7fff7f, #7f7fff, #ff7fff, #ff7f7f);
    mix-blend-mode: color;
    position: absolute;
    top: -1px;
    left: -1px;
    pointer-events: none;
    transition: .3s;
}
.c-members-card__link {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}
.c-members-card > *:not(.c-members-card__link) {
    position: relative;
    z-index: 2;
}
.c-members-card__icon {
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
}
.c-members-card__name {
    font-size: 16px;
    font-size: 1.6rem;
    letter-spacing: .1em;
}
.c-members-card__name span {
    display: inline-block;
    margin-left: .5em;
    color: #929292;
    font-size: 12px;
    font-size: 1.2rem;
}
.c-members-card-sns:not(:first-child) {
    margin-top: 5px;
}
.c-members-card-sns__group {
    display: flex;
    flex-wrap: wrap;
    margin: -5px;
}
.c-members-card-sns__group-item {
    padding: 5px;
}
.c-members-card-sns__link {
    display: block;
    font-size: 16px;
    font-size: 1.6rem;
}
.c-members-card-tags:not(:first-child) {
    margin-top: 10px;
}
@media screen and (max-width: 767px) {
    .c-members-card__icon {
        width: 60px;
    }
}
/** ===========================================================================
 * author
 ** ======================================================================== */
.t-author-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    border: 2px dotted #CED3D9;
    border-radius: 10px;
    position: relative;
}
.t-author-card::before {
    content: "";
    display: block;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    background: conic-gradient(#ff7f7f, #ffff7f, #7fff7f, #7f7fff, #ff7fff, #ff7f7f);
    mix-blend-mode: color;
    position: absolute;
    top: -1px;
    left: -1px;
    pointer-events: none;
}
.t-author-card-icon {
    border-radius: 50%;
    overflow: hidden;
}
.t-author-card-name {
    text-align: center;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 700;
}
.t-author-card-name span {
    display: block;
    color: #CED3D9;
    font-size: 12px;
    font-size: 1.2rem;
}
.t-author-card-name:not(:first-child) {
    margin-top: 10px;
}
.t-author-card-description {
    font-size: 14px;
    font-size: 1.4rem;
}
.t-author-card-description:not(:first-child) {
    margin-top: 10px;
}
.t-author-card-sns:not(:first-child) {
    margin-top: 10px;
}
.t-author-card-sns__group {
    display: flex;
    flex-wrap: wrap;
    margin: -7.5px;
}
.t-author-card-sns__group-item {
    padding: 7.5px;
}
.t-author-card-sns__link {
    font-size: 16px;
    font-size: 1.6rem;
}
.t-author-card > *:not(.t-author-card-hr) {
    position: relative;
}
.t-author-card-hr {
    width: 100%;
    height: 1px;
    background-color: #CED3D9;
}
.t-author-card-hr:not(:first-child) {
    margin-top: 15px;
}
.t-author-card-hr:not(:last-child) {
    margin-bottom: 15px;
}
.t-author-card-info {
    display: flex;
    justify-content: center;
    font-size: 16px;
    font-size: 1.6rem;
}
.t-author-card-info table th::after {
    content: "：";
}
.t-author-tags:not(:first-child) {
    margin-top: 20px;
}
.t-author-posts:not(:first-child) {
    margin-top: 50px;
}
/** ===========================================================================
 * archive
 ** ======================================================================== */
/** ===========================================================================
 * archive public
 ** ======================================================================== */
.t-archive-public__group {
    display: flex;
    flex-wrap: wrap;
    margin: -15px -26.5px;
}
.t-archive-public__group-item {
    width: 25%;
    padding: 15px 26.5px;
}
@media screen and (max-width: 1023px) {
    .t-archive-public__group-item {
        width: 33.333%;
    }
}
@media screen and (max-width: 767px) {
    .t-archive-public__group-item {
        width: 50%;
    }
}
@media screen and (max-width: 479px) {
    .t-archive-public__group-item {
        width: 100%;
    }
}
/** ===========================================================================
 * archive forum
 ** ======================================================================== */
.t-archive-forum__group {
    margin: -10px;
}
.t-archive-forum__group-item {
    padding: 10px;
}
.t-thread__title {
    font-size: 20px;
    font-size: 2.0rem;
    font-weight: 700;
}
.t-thread__except {
    color: #929292;
    font-size: 16px;
    font-size: 1.6rem;
}
.t-thread__except:not(:first-child) {
    margin-top: 10px;
}
.t-thread-data {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.t-thread-data:not(:first-child) {
    margin-top: 20px;
}
.t-thread-tabs {
    margin-top: auto;
    margin-right: auto;
}
.t-thread-date {
    margin-right: 20px;
    color: #929292;
    font-size: 14px;
    font-size: 1.4rem;
}
.t-thread-userdata {
    display: flex;
    align-items: center;
}
.t-thread-userdata__icon {
    border-radius: 50%;
    overflow: hidden;
    margin-right: 5px;
}
.t-thread-userdata__name {
    color: #929292;
    font-size: 14px;
    font-size: 1.4rem;
}
.t-sub-thread .t-thread {
    padding: 10px;
}
.t-sub-thread .t-thread__title {
    font-size: 16px;
    font-size: 1.6rem;
}
.t-sub-thread .t-thead-data:not(:first-child) {
    margin-top: 10px;
}
.t-sub-thread .t-thead-date, .t-sub-thread .t-thread-userdata__name {
    font-size: 12px;
    font-size: 1.2rem;
}
.t-sub-thread .t-thread-userdata__icon {
    width: 30px;
}
@media screen and (max-width: 767px) {
    .t-thread-data {
        flex-wrap: wrap;
    }
    .t-thread-tabs {
        width: 100%;
    }
}
/** ===========================================================================
 * wp pagenavi
 ** ======================================================================== */
.wp-pagenavi {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}
.wp-pagenavi .current, .wp-pagenavi .page {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    padding: 5px;
    background-color: #F4F5F6;
    border-radius: 50%;
    margin: 10px;
    text-align: center;
    font-size: 11px;
    font-size: 1.1rem;
}
.wp-pagenavi .current, .wp-pagenavi .page:hover {
    background-color: #929292;
    color: #fff;
    opacity: 1;
}
.wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink, .wp-pagenavi .first, .wp-pagenavi .last {
    margin: 5px;
    color: #CED3D9;
    font-size: 20px;
    font-size: 2.0rem;
}
.wp-pagenavi .previouspostslink:hover, .wp-pagenavi .nextpostslink:hover, .wp-pagenavi .first:hover, .wp-pagenavi .last:hover {
    color: #929292;
    opacity: 1;
}
.wp-pagenavi .pages {
    margin: 10px;
    color: #929292;
    font-size: 16px;
    font-size: 1.6rem;
}