@charset "UTF-8";

/*  =============================================================

ヘッダー(ナビゲーション)

============================================================= */
#gnav-sp,
#gnav-sp-fixed {
    display: none;
}

header {
    font-weight: bold;
}

.headerWrap {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.h-mainlogo br {
    display: none;
}

.h-mainlogo a {
    height: 64px;
    line-height: 64px;
    cursor: pointer;
    font-size: var(--f4);
    letter-spacing: 5px;
}

.site-description {
    font-size: 13px;
    letter-spacing: 0px;
    padding: 0 5px;
    vertical-align: top;
}

.menu ul {
    display: flex;
}

.menu li {
    padding: 6px 0;
    line-height: 22px;
}

.menu li a {
    color: var(--gray);
    position: relative;
    transition: .5s;
    padding-bottom: 6px;
}

.menu li a::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    content: '';
    width: 0;
    height: 1px;
    background-color: var(--gray);
    transition: .5s;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.menu li a:hover::after {
    width: 100%;
}

.menu li:not(:last-of-type) {
    margin-right: 20px;
}

/* 採用情報へ */
.menu li.saiyo {
    padding: 6px 12px;
    background: linear-gradient(325deg, rgba(175, 169, 255, 1) 0%, rgb(147, 208, 154) 50%, rgb(195, 219, 19) 100%);
    background: -webkit-linear-gradient(325deg, rgba(175, 169, 255, 1) 0%, rgb(147, 208, 154) 50%, rgb(195, 219, 19) 100%);
    border-radius: 50vh;
    display: inline-block;
    transition: .5s;
}

.menu li.saiyo a {
    /* position: static; */
    color: #fff;
    align-items: center;
    display: inline-flex;
    padding-bottom: 0;
}

.menu li.saiyo:hover {
    filter: brightness(107%);
    transition: .5s;
}

.menu li.saiyo a::after {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    position: static;
    content: "";
    background: url(../img/icon-external-link.png) no-repeat;
    background-size: contain;
    width: 20px;
    height: 22px;
    margin-left: 4px;
    display: inline-block;
}

/*  固定ナビ
---------------------------------------------*/
#fixedHeader {
    position: fixed;
    /* text-align: left; */
    top: 0;
    left: 0;
    width: 100vw;
    max-width: none;
    margin: 0;
    background: rgba(255, 255, 255, 0.9);
    color: #616161;
    z-index: 9;
    /* padding: 8px 16px; */
    opacity: 0;
}

.headerWrap#fixedHeader {
    padding: 0;
}

#fixedHeader .menu li.saiyo {
    margin-right: 16px;
}

#fixedHeader h1 {
    margin-left: 16px;
}


#fixedHeader.DownMove {
    position: fixed;
    width: 100vw;
    animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#fixedHeader.UpMove {
    position: fixed;
    width: 100vw;
    animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-100px);
    }
}

/*  ナビゲーションレスポンシブ対応
---------------------------------------------*/
@media screen and (max-width: 920px) {
    .headerWrap {
        padding: 8px 16px 0;
    }

    .menu ul {
        font-size: 14px;
    }

    .h-mainlogo br {
        display: block;
    }

    .site-description {
        padding: 0;
        margin: 0;
    }

    .h-mainlogo a {
        height: 20px;
        line-height: 20px;
    }

    .komadoLogo {
        margin-left: 16px;
    }

    .headerWrap#fixedHeader {
        padding: 12px 0 0;
    }
}

@media screen and (max-width: 680px) {
    .sky {
        padding-top: 24px;
    }

    .menu li,
    .menu li.saiyo {
        display: none;
    }

    #gnav-sp,
    #gnav-sp-fixed {
        position: relative;
        display: inherit;
    }

    .nav-unshown {
        display: none;
    }

    #nav-open,
    #nav-open-fixed {
        position: absolute;
        top: -46px;
        right: 16px;
        display: inline-block;
        width: 30px;
        height: 22px;
        z-index: 99;
    }

    #nav-open-fixed {
        top: -16px;
    }

    #nav-open span,
    #nav-open span:before,
    #nav-open span:after,
    #nav-open-fixed span,
    #nav-open-fixed span:before,
    #nav-open-fixed span:after {
        position: absolute;
        height: 3px;
        width: 25px;
        border-radius: 3px;
        background: #555;
        display: block;
        content: '';
        cursor: pointer;
    }

    #nav-open span:before,
    #nav-open-fixed span:before {
        bottom: -8px;
    }

    #nav-open span:after,
    #nav-open-fixed span::after {
        bottom: -16px;
    }

    #nav-close,
    #nav-close-fixed {
        display: none;
        position: fixed;
        z-index: 99;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: black;
        opacity: 0;
        transition: .3s ease-in-out;
    }

    #nav-content,
    #nav-content-fixed {
        overflow: auto;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9999;
        width: 90%;
        max-width: 330px;
        height: 100vh;
        background: #fff;
        /* transition: .3s ease-in-out; */
        -webkit-transform: translateX(-105%);
        transform: translateX(-105%);
    }

    #nav-content .ttl,
    #nav-content-fixed .ttl {
        margin-top: 20px;
        font-size: 1.7em;
        font-weight: bold;
        text-align: center;
        letter-spacing: .2em;
    }

    #nav-content li a,
    #nav-content-fixed li a {
        margin: 0 10px;
        padding: 15px;
        display: block;
        border-bottom: 1px dotted #ffba00;
        font-size: 1.2em;
        font-weight: bold;
        text-align: center;
    }

    #nav-input:checked~#nav-close,
    #nav-input-fixed:checked~#nav-close-fixed {
        display: block;
        opacity: .5;
    }

    #nav-input:checked~#nav-content,
    #nav-input-fixed:checked~#nav-content-fixed {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
        box-shadow: 6px 0 25px rgba(0, 0, 0, .15);
    }
}

/*  =============================================================

フロートうぉん

============================================================= */
.flortWon {
    display: block;
    position: fixed;
    bottom: 75px;
    right: 2%;
    max-width: 200px;
    width: 12vw;
    animation: 6s fuwafuwa infinite;
    filter: saturate(130%);
}

.flortWonArea .flortWon:first-of-type {
    z-index: 3;
}

.flortWonArea .flortWon:last-of-type {
    z-index: 2;
}

.flortWonArea .flortWon:first-of-type:hover {
    opacity: 0;
}



@keyframes fuwafuwa {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}


@media screen and (max-width: 1000px) {
    .flortWon {
        display: none;
    }
}


/*  =============================================================

記事一覧

============================================================= */
/* --- 一覧ヨコ --- */
.box-cont-list {
    padding: 0;
    line-height: 1.4;
    margin-bottom: 20px;
    margin-top: 64px;
}


.ul-cont-list {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, calc(33.3333% - 8px));
    column-gap: 12px;
    row-gap: 16px;
    max-width: 1100px;
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

/* --- ↓関連記事 / タグでのぞく のみ↓ --- */
.box-cont-list.related {
    width: 96%;
    margin-left: auto;
    margin-right: auto;
}

.feature .box-cont-list.related {
    width: 84%;
    margin-bottom: 64px;
}

.oneday .box-cont-list.related {
    width: 90%;
}

.related .ul-cont-list {
    width: 100%;
}

.tag .related .ul-cont-list {
    width: 90%;
}

.related .imgWrap {
    position: relative;
}

.related .imgWrap::before {
    position: absolute;
    content: "";
    filter: saturate(120%);
    z-index: 2;
    right: -15%;
    bottom: 0;
    width: 40%;
    height: 40%;
    background: no-repeat;
}

.related .wonjima .imgWrap::before,
.related .int01m .imgWrap::before,
.related .int02k .imgWrap::before,
.related .int03r .imgWrap::before {
    background-image: url(../img/icon_interview.svg);
}

.related .oneday .imgWrap::before {
    background-image: url(../img/icon_oneday.svg);
}

.related .career .imgWrap::before {
    background-image: url(../img/icon_career.svg);
}

/* --- ↑関連記事のみ↑ --- */

.ul-cont-list>li {
    text-align: center;
    border-radius: 16px;
    background-color: var(--lightgray01);
    font-size: 14px;
    vertical-align: top;
    padding: 20px 8px;
    transition: .5s;
}

.ul-cont-list>li:hover {
    transform: scale(1.02);
    transition: .5s;
}

.ul-cont-list>li .imgWrap {
    position: relative;
    max-width: 220px;
    /* max-height: 154px; */
    width: 80%;
    aspect-ratio: 4 / 3;
    /* height: 10.5vw; */
    height: auto;
    margin: 0 auto 12px;
    padding: 0;
}

.ul-cont-list>li .imgWrap::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    box-shadow: inset -4px 6px 6px rgba(0, 0, 0, 0.2);
    border-radius: 50vh;
}

.ul-cont-list>li .imgWrap img {
    border-radius: 50vh;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* max-width: 220px;
    max-height: 154px;
    width: 15vw;
    height: 10.5vw;
    object-fit: fill; */
}


.ul-cont-list>li h3.ttl-lecture {
    margin: 0 auto;
    /* min-width: 80%; */
    max-width: 80%;
}

.posts-count {
    position: absolute;
    left: 4px;
    top: -44px;
    color: var(--gray);
}

.posts-count span {
    font-weight: bold;
    font-size: 32px;
}

/* うぉんじま限定 */
.wonjima .posts-count span {
    color: #f18c1a;
}

.wonjima .ul-cont-list>li {
    background-color: rgb(255, 243, 227);
}

.wonjima .ul-cont-list>li .imgWrap {
    margin: 0 auto 16px;
}

.wonjima .ul-cont-list>li .imgWrap::after {
    box-shadow: none;
}

.wonjima .ul-cont-list>li .imgWrap img {
    border: #fff 4px solid;
}

/* 特集限定 */
.feature .box-cont-list {
    margin-top: 24px;
}

.feature .posts-count {
    position: unset;
    text-align: start;
    margin-bottom: 8px;
}

.feature .ul-cont-list {
    display: block;
}

.feature .ul-cont-list .theme {
    font-size: 22px;
    font-weight: bold;
    padding: 8px 24px;
    background: linear-gradient(120deg, #E96C43 0%, #C899DB 100%);
    color: #fff;
    border-radius: 16px 16px 0 0;
    display: inline-block;
    margin: 0;
}

.feature .ul-cont-list li {
    background-color: transparent;
    padding: 0;
    border-radius: unset;
    text-align: start;
}

.feature .ul-cont-list li a {
    background-color: #fceeec;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 2%;
    border-radius: 0 16px 16px 16px;
}

.feature .ul-cont-list li:not(:last-of-type) {
    margin-bottom: 24px;
}

.feature .ul-cont-list>li h3.ttl-lecture {
    margin: 0;
    max-width: unset;
    font-size: 24px;
    color: #404040;
}

.feature .ul-cont-list .imgWrap {
    margin: 0;
    border: #fff 6px solid;
    border-radius: 50vh;
    min-width: none;
    max-width: 240px;
    min-width: 160px;
    width: unset;
    flex-basis: 30%;
}

.feature .ul-cont-list li a>div {
    flex-basis: 70%;
    flex-grow: 1;
}

.feature .ul-cont-list .date {
    margin: 0;
}

/*  indexページのみ適応
---------------------------------------------*/

.index .ul-cont-list>li {
    background-color: white;
    padding: 20px 16px;
    min-width: 326px;
}

@media screen and (max-width: 1500px) {
    .index .ul-cont-list>li {
        min-width: 21vw;
    }
}

.index .box-cont-list {
    margin-top: 80px;
    margin-bottom: 0;
}

.index .ul-cont-list h3 span.shain {
    background: linear-gradient(transparent 40%, var(--shainLight) 40%);
}

.index .ul-cont-list h3 span.part {
    background: linear-gradient(transparent 40%, #e4f3ff 40%);
}

.index .ul-cont-list h3 span.intern {
    background: linear-gradient(transparent 40%, #e7f9df 40%);
}

/*  indexページのみ - New!アイコン
---------------------------------------------*/
.index .ul-cont-list>li.new {
    position: relative;
    overflow: hidden;
}

.index .ul-cont-list>li.new::before {
    position: absolute;
    content: "";
    z-index: 2;
    background-image: url(../img/new.svg);
    background-repeat: no-repeat;
    filter: drop-shadow(1px 4px 2px rgba(0, 0, 0, 0.1));
    width: 20%;
    height: 20%;
    top: 0;
    left: 10%;
}


@media screen and (max-width: 640px) {
    .index .ul-cont-list>li.new::before {
        background-image: url(../img/new__sp.svg);
        width: 20%;
        height: 40%;
        left: 0;
        filter: none;
    }
}


/*  カード類レスポンシブ対応
---------------------------------------------*/
@media screen and (max-width: 880px) {
    .ul-cont-list {
        width: 95%;
    }

    .ul-cont-list>li {
        width: unset;
        max-width: none;
    }

    /* 特集 */
    .feature .ul-cont-list>li h3.ttl-lecture {
        font-size: 18px;
    }

    .feature .ul-cont-list .theme {
        font-size: 18px;
        padding: 8px 24px;
        border-radius: 16px 16px 0 0;
    }
}

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

    .box-cont-list.related,
    .oneday .box-cont-list.related {
        width: 100%;
    }

    .feature .box-cont-list.related {
        width: 90%;
        margin: 0 auto 64px;
    }

    /* アーカイブなどのカード - 2カラム */
    .ul-cont-list {
        grid-template-columns: repeat(2, calc(50% - 6px));
        column-gap: 12px;
        row-gap: 16px;
        width: 90%;
    }

    .ul-cont-list>li h3.ttl-lecture {
        margin: 0;
        min-width: none;
        max-width: none;
        font-size: 14px;
        text-align: left;

    }

    .ul-cont-list li a span.date {
        font-size: 14px;
    }

    /* indexのカード - 1列 */
    .index .box-cont-list {
        margin-top: 24px;
    }

    .index .ul-cont-list {
        display: block;
        width: 96%;
    }

    .index .ul-cont-list>li a {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 8px;
    }

    .index .ul-cont-list>li {
        margin-bottom: 16px;
        padding: 20px 10px
    }

    .index .ul-cont-list>li:nth-child(3n) {
        margin-bottom: 0;
    }

    .index .ul-cont-list>li h3.ttl-lecture {
        font-size: 16px;
    }

    .index .ul-cont-list>li .imgWrap {
        min-width: 88px;
        max-width: 88px;
        margin: 0;
    }

}

@media screen and (max-width: 440px) {
    .feature .ul-cont-list li a {
        display: block;
        text-align: center;
    }

    .feature .ul-cont-list>li h3.ttl-lecture {
        margin: 0 auto;
        text-align: justify;
        max-width: 90%;
        line-height: 1.2;
    }

    .feature .ul-cont-list .imgWrap {
        margin: 0 auto 8px;
        min-width: none;
        width: 80%;
    }
}

/*  =============================================================

カテゴリごとの一覧

============================================================= */
/*  基準：カテゴリごと一覧ページ
---------------------------------------------*/

/* 共通 */
.category-title {
    padding: 20px 0 20px 60px;
    color: var(--gray);
}

.category-title .category-title-bg {
    background-color: #fff;
    display: inline-block;
    border-radius: 50vh;
    padding: 12px 16px 12px 24px;
}

.category-title h2 {
    position: relative;
    font-size: 40px;
    display: inline-block;
    margin-right: 6px;
}

.category-title p {
    vertical-align: text-bottom;
    font-weight: bold;
    display: inline-block;
}

.category-title h2::before {
    position: absolute;
    content: "";
    filter: saturate(120%);
    z-index: 1;
    background-repeat: no-repeat;
    background-size: contain;
}

/* インタビュー */
.category-title.interview {
    background-image: var(--interview);
}

.category-title.interview h2 {
    background: linear-gradient(193deg, rgb(255, 199, 0) 0%, rgba(219, 231, 64, 1) 50%, rgb(112, 180, 243) 100%);
    background: -webkit-linear-gradient(193deg, rgb(255, 199, 0) 0%, rgba(219, 231, 64, 1) 50%, rgb(112, 180, 243) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.category-title.interview h2::before {
    left: -52px;
    top: -21px;
    /* background: url(../img/title_interview.png) no-repeat;
    background-size: contain; */
    background-image: url(../img/title_interview.png);
    width: 64px;
    height: 72px;
}

/* 一日のようす */
.category-title.oneday {
    background-image: var(--oneday);
}

.category-title.oneday h2 {
    background: linear-gradient(193deg, rgba(255, 131, 136, 1) 0%, rgba(255, 186, 0, 1) 50%, rgb(255, 234, 0) 100%);
    background: -webkit-linear-gradient(193deg, rgba(255, 131, 136, 1) 0%, rgba(255, 186, 0, 1) 50%, rgb(255, 234, 0) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-left: 16px;
}

.category-title.oneday h2::before {
    left: -65px;
    top: -16px;
    background-image: url(../img/title_oneday.png);
    width: 70px;
    height: 72px;
}

/* キャリア */
.category-title.career {
    background-image: var(--career);
}

.category-title.career h2 {
    background: linear-gradient(193deg, rgba(175, 169, 255, 1) 0%, rgb(147, 208, 154) 50%, rgb(208, 235, 0) 100%);
    background: -webkit-linear-gradient(193deg, rgba(175, 169, 255, 1) 0%, rgb(147, 208, 154) 50%, rgb(208, 235, 0) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-left: 16px;
}

.category-title.career h2::before {
    left: -65px;
    top: -16px;
    background-image: url(../img/title_career.png);
    width: 70px;
    height: 72px;
}

/* 特集 - トップページ */
.category-title.feature-top {
    background-image: var(--feature);
}

.category-title.feature-top h2 {
    background: linear-gradient(0deg, #E96C43 0%, #FCC477 65%, #C899DB 100%);
    background: -webkit-linear-gradient(0deg, #E96C43 0%, #FCC477 65%, #C899DB 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-left: 12px;
}

.category-title.feature-top h2::before {
    left: -51px;
    top: -14px;
    background-image: url(../img/title_feature-top.svg);
    width: 58px;
    height: 68px;
}

.feature-top .theme {
    background: linear-gradient(120deg, #E96C43 0%, #C899DB 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 50vh;
    font-size: 17px;
    margin-bottom: 4px;
    vertical-align: unset;
}

@media screen and (max-width: 640px) {
    .feature-top .theme {
        font-size: 15px;
        margin-top: 4px;
    }

}

/* 特集 - 個別ページ(/category/feature/) */
.category-title.feature {
    background-image: var(--feature);
}

.category-title.feature h2::before {
    background-image: url(../img/title_feature-top.svg);
    left: -48px;
    top: -8px;
    width: 44px;
    height: 44px;
    filter: none;
}

.category-title.feature p {
    font-size: 18px;
}

.category-title.feature h2 {
    background: linear-gradient(300deg, #E96C43 0%, #FCC477 65%, #C899DB 100%);
    */ background-image: -webkit-linear-gradient(300deg, #E96C43 0%, #FCC477 65%, #C899DB 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*  indexのみ
---------------------------------------------*/
.index .category-title {
    position: relative;
    padding: 40px 0;
    color: var(--gray);
    margin-bottom: 56px;
}

.index .category-title-bg {
    position: absolute;
    left: 10%;
}


/* タグごと */
.category-title.tag .category-title-bg {
    display: inline-block;
    border-radius: 6px;
}

.category-title.tag {
    background-color: #e6f1be;
}

.category-title.tag h2 {
    color: #83B77C;
}

/* うぉんじま*/

.category-title.wonjima {
    background-color: rgb(255, 243, 227);
    padding: 32px 0 32px 68px;
}

.category-title.wonjima h2 {
    font-size: 24px;
    color: var(--gray);
    padding-left: 24px;
}

.category-title.wonjima h2::before {
    left: -35px;
    top: -11px;
    background: url(../img/icon_won.svg) no-repeat;
    background-size: contain;
    width: 48px;
    height: 48px;
}

/*  メディアクエリ
---------------------------------------------*/
@media screen and (max-width: 1680px) {
    .category-title-bg h2 {
        font-size: var(--f5);
    }

    .category-title.interview h2::before {
        left: -43px;
        top: -18px;
        width: 60px;
        height: 63px;
    }

    .category-title.oneday h2::before {
        left: -65px;
        top: -22px;
        width: 70px;
        height: 72px;
    }

    .category-title.career h2::before {
        left: -49px;
        top: -18px;
        width: 60px;
        height: 60px;
    }
}

@media screen and (max-width: 640px) {
    .category-title {
        padding: 16px 0 16px 40px;
    }

    .category-title .category-title-bg {
        display: block;
        width: fit-content;
        margin: 0 auto;
        text-align: center;
        position: static;
    }

    .category-title.tag {
        padding: 16px;
    }

    .category-title.feature {
        text-align: center;
    }
}

@media screen and (max-width: 440px) {
    .category-title {
        padding: 16px 0;
    }

    .category-title-bg h2 {
        font-size: 24px;
        margin-right: 2px;
    }

    .category-title p {
        vertical-align: baseline;
    }

    .category-title.oneday h2::before {
        left: -50px;
        top: -12px;
        width: 56px;
        height: 56px;
    }

    .category-title.feature h2::before {
        left: -44px;
        top: -10px;
        width: 40px;
        height: 40px;
    }

    .category-title.feature h2 {
        font-size: 24px;
    }
}


/*  indexのみ -　一覧をみる
---------------------------------------------*/
a.btn-more {
    transition: 1s;
    position: absolute;
    top: 76px;
    font-weight: bold;
    color: var(--gray);
    align-items: center;
    display: inline-flex;
    padding-bottom: 2px;
    border-bottom: var(--gray) solid 1px;
}

.btn-more::before {
    content: "";
    width: 20px;
    height: 22px;
    margin-right: 4px;
    display: inline-block;
}

.btn-more:hover {
    transform: translateX(6px);
    transition: 1s;
}

/* インタビュー */
.interview a.btn-more {
    left: 528px;
}

.interview .btn-more::before {
    background: url(../img/more_interview.png) no-repeat;
    background-size: contain;
}

/* 一日のようす */
.oneday a.btn-more {
    left: 514px;
}

.oneday .btn-more::before {
    background: url(../img/more_oneday.png) no-repeat;
    background-size: contain;
}

/* キャリア */
.career a.btn-more {
    left: 475px;
}

.career .btn-more::before {
    background: url(../img/more_career.png) no-repeat;
    background-size: contain;
}

/* 特集 */
.feature-top a.btn-more {
    left: 392px;
}

.feature-top .btn-more::before {
    background: url(../img/more_feature.png) no-repeat;
    background-size: contain;
}


/* まとめてメディアクエリ*/
@media screen and (max-width: 1680px) {
    .interview a.btn-more {
        top: 67px;
        left: calc(10% + 310px);
    }

    .oneday a.btn-more {
        top: 67px;
        left: calc(10% + 300px);
    }

    .career a.btn-more {
        top: 67px;
        left: calc(10% + 268px);
    }

    .feature-top a.btn-more {
        top: 67px;
        left: calc(10% + 204px);
    }

}

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

    .interview a.btn-more,
    .oneday a.btn-more,
    .career a.btn-more,
    .feature-top a.btn-more {
        position: static;
        display: flex;
        width: 105px;
        margin: 0 auto;
        padding-top: 12px;
    }
}


/*  =============================================================

ページネーション

============================================================= */
.pagination ul {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    justify-content: center;
}

.pagination a {
    width: 32px;
    height: 32px;
    line-height: 32px;
    display: block;
    padding: 8px;
    border-radius: 4px;
    margin: 0 5px;
    color: var(--gray);
    border: var(--gray) 1px solid;
}

.pagination a.is-active,
.pagination a:hover {
    background-color: var(--gray);
    color: #fff;
}

.pagination a.arrow {
    line-height: 26px;
}

/* うぉんじまアーカイブ */
.wonjima .pagination a {
    color: #f18c1a;
    border: #f18c1a 1px solid;
}

.wonjima .pagination a.is-active,
.wonjima .pagination a:hover {
    background-color: #f18c1a;
    color: #fff;
}

.wonjima .pagination span.pages {
    display: none;
}

/* レスポンシブ */
@media screen and (max-width: 640px) {
    .pagination ul {
        font-size: 18px;
    }

    .pagination ul li a {
        width: 24px;
        height: 24px;
        line-height: 24px;
    }

    .pagination ul li a.arrow {
        line-height: 20px;
    }
}


/*  =============================================================

記事の上部分

============================================================= */

.myposthead {
    text-align: center;
    margin: 32px 0;
}

.myposthead h1 {
    width: 96%;
    max-width: 740px;
    margin: 12px auto 16px;
    line-height: 1.3;
}

.wonjima .myposthead h1 {
    max-width: 90%;
}

.date {
    margin-top: 8px;
    font-weight: bold;
    color: var(--gray);
    display: block;
    font-size: var(--f1);
}

.index .date {
    margin: 8px 0;
    color: #909090;
    line-height: 1;
}

@media screen and (max-width: 640px) {
    .index .date {
        margin: 0 0 2px;
    }
}

/*  =============================================================

フッター

============================================================= */

/*  ドアと草むら
---------------------------------------------*/

.doorArea {
    padding-top: 80px;
    height: 160px;
    position: relative;
}

.door img {
    position: absolute;
    bottom: -15px;
    width: 240px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 4;
}

.door img:hover {
    cursor: pointer;
}

#door_close {
    display: block;
}

#door_open {
    display: none;
}


.grass {
    position: relative;
    max-height: 200px;
    height: 10vw;
    background-color: #D4E595;
}

.grass:before {
    position: absolute;
    left: 23px;
    bottom: 12px;
    content: "";
    background: url(../img/flower_l.png) no-repeat;
    background-size: contain;
    width: 12vw;
    height: 7vw;
    z-index: 1;
}

.grass:after {
    position: absolute;
    right: 23px;
    bottom: 12px;
    content: "";
    background: url(../img/flower_r.png) no-repeat;
    background-size: contain;
    width: 13vw;
    height: 8vw;
    z-index: 1;
}



/*  フッター
---------------------------------------------*/

footer {
    text-align: center;
}

.footerLogo {
    background-color: #83B77C;
    padding: 32px 0;
}

.footerCopyright {
    background-color: #5E9D56;
}

.mogicLogo {
    width: 120px;
    /* padding: 32px 0; */
    display: block;
    margin: 0 auto 8px;
}

.footerLogo p {
    color: #fff;
    font-weight: bold;
}

.footerLogo a:not(:has(.mogicLogo)) {
    display: inline-flex;
    margin-inline: 6px;
    flex-wrap: wrap;
}

p.copy {
    color: #fff;
    display: block;
    padding: 24px 0;
}

/************************************
 page-top
************************************/
.page-top-link {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: #fffcf7;
    color: #49423a;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s, transform 0.3s;
    z-index: 900;
}


.page-top-link .arrow-line {
    display: block;
    width: 15px;
    height: 15px;
    border-top: 2px solid #49423a;
    border-left: 2px solid #49423a;
    border-color: #49423a;
    transform: rotate(45deg);
    margin-top: 25px;
    margin-left: 22px;
    position: relative;
    z-index: 1000;
}

/*  レスポンシブ
---------------------------------------------*/

@media screen and (max-width: 440px) {
    .doorArea {
        padding-top: 40px;
        height: 120px;
    }

    .door img {
        position: absolute;
        bottom: -10px;
        width: 160px;
        left: 0;
        right: 0;
        margin: auto;
        z-index: 4;
    }

    .grass:after {
        width: 22vw;
        height: 13vw;
        bottom: 4px;
    }

    .grass {
        height: 15vw;
    }

    .mogicLogo {
        width: 96px;
        padding: 24px 0;
    }

    p.copy {
        font-size: 12px;
        padding: 12px 0;
    }
}

/*  =============================================================

サイドバー

============================================================= */
.rightCol {
    width: 30%;
    padding: 32px 12px 0;
}

.rightCol>div {
    margin-bottom: 48px;
}

@media screen and (max-width: 880px) {
    .rightCol {
        width: 90%;
        margin: 0 auto;
        padding: 0;
    }
}



/*  採用バナー・さしすせそ
---------------------------------------------*/
.box-saiyou,
.box-sasisu,
.box-sws {
    width: 100%;
    color: var(--gray);
}

.box-saiyou img,
.box-sasisu img,
.box-sws img {
    width: 90%;
    max-width: 440px;
    display: block;
    margin: 0 auto 4px;
}

.box-sasisu img {
    border: 1px solid var(--lightgray01);
}

/* ↓ PCのみ-関連記事の下の応募導線 ↓ */
.saiyou_pc {
    text-align: center;
}

.saiyou_pc img {
    width: 96%;
    max-width: 800px;
    border-radius: 4px;
}

/* ↑ PCのみ-関連記事の下の応募導線 ↑ */

.box-saiyou img:hover,
.box-sasisu img:hover,
.saiyou_pc img:hover,
.box-sws img:hover {
    filter: brightness(102%);
}

@media screen and (max-width: 880px) {
    /* .box-saiyou,.box-sasisu{
        width: 60%;
        min-width: 240px;
        margin: 0 auto;
    } */

    .box-saiyou img,
    .box-sasisu img,
    .box-sws img {
        width: 75%;
        min-width: 280px;
    }

    .saiyou_pc img {
        display: none;
    }
}



/*  タグでのぞく
---------------------------------------------*/
.sideTag {
    text-align: center;
}

.sideTag .tagWrap {
    background-color: var(--lightgray02);
    border-radius: 8px;
    padding: 24px 8px;
}

/*  うぉん
---------------------------------------------*/
.entry-wonjima {
    background-color: rgb(255, 243, 227);
    border-radius: 8px;
    padding: 16px 8px;
    text-align: center;
    line-height: 1.2;
    transition: .5s;
}

.entry-wonjima .date {
    text-align: center;
}

.entry-wonjima:hover {
    transform: scale(1.02);
}

.entry-wonjima img {
    width: 60%;
    border-radius: 50vh;
    max-width: 240px;
    height: auto;
}

.box-wonjima {
    text-align: end;
}

.entry-wonjima h3 {
    width: 90%;
    margin: 8px auto 0;
    text-align: left;
}

.won-more {
    margin-top: 8px;
    align-items: center;
    display: inline-flex;
    justify-content: end;
    text-align: end;
    border-bottom: 1px solid var(--gray);
    padding-bottom: 4px;
    transition: 1s;

}

.won-more::before {
    content: "";
    width: 12px;
    height: 16px;
    background: url(../img/more_won.svg) no-repeat;
    background-size: contain;
    margin-right: 4px;
    display: inline-block;
}

.won-more:hover {
    transform: translateX(6px);
    transition: 1s;
}

/*  ランキング
---------------------------------------------*/

ol.rank-list {
    background-color: var(--lightgray01);
    counter-reset: li;
    border-radius: 8px;
    font-weight: bold;
}

ol.rank-list>li {
    position: relative;
    margin-bottom: 0;
    padding: 12px 12px 8px;
    border-bottom: 2px solid #ffffff;
    text-align: start;
}

ol.rank-list>li::before {
    width: 32px;
    height: 32px;
    line-height: 32px;
    background: var(--gray);
    border-radius: 50vh;
    color: #fff;
    position: absolute;
    top: 12px;
    left: 8px;
    font-weight: bold;
    font-size: 1.2em;
    text-align: center;
    content: counter(li);
    counter-increment: li;
    z-index: 1;
}


ol.rank-list li a {
    margin: 0;
    padding: 4px;
    min-height: 82px;
    height: auto;
    display: flex;
    align-items: center;
    border-radius: 8px;
    transition: .5s;
}

ol.rank-list li:last-child a {
    border: none;
}

ol.rank-list li a:hover {
    background-color: var(--lightgray02);
    transition: .5s;
}

.thum-rank {
    position: relative;
    margin-right: 6px;
}

.thum-rank img {
    border-radius: 50vh;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    width: 88px;
    height: auto;
    max-width: unset;
}

.box-rank .ttl-lecture {
    font-size: 14px;
    line-height: 1.2;
}

.index .box-rank .ttl-lecture {
    font-size: 16px;
}

ol.rank-list>li:first-child::before {
    background: var(--shain);
}

/*  Instagram
---------------------------------------------*/
.instaBox {
    width: 80%;
    max-width: 440px;
    margin: 0 auto;
}

.instaUserArea {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.instaUserArea .userIcon {
    max-width: 64px;
    width: 17%;
    border-radius: 50vh;
}

.instaUserArea .accountName {
    font-size: 20px;
    font-weight: bold;
    display: inline-flex;
    line-height: 26px;
}

.instaUserArea .accountName+img {
    width: 22px;
}

.instaUserArea .accountDetail {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.2;
    text-align: justify;
}

#instaPostArea {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 16px;
}

.instaPost {
    width: 31.9%;
    opacity: 100%;
    transition: all .2s;
    position: relative;
}

.instaPost:hover {
    opacity: 85%;
    scale: 101%;
}

.instaPostImage {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
    border-radius: 3%;
}

.instaMediaIcon {
    position: absolute;
    width: 16%;
    opacity: 80%;
    top: 8px;
    right: 8px;
    filter: drop-shadow(0 0 6px rgba(0, 0, 0, .2));
}

.instaLink {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    font-weight: bold;
    border-radius: 2px;
    position: relative;
    transition: .5s;
    padding: 8px 4px;
    z-index: 1;
}

.instaLink::before,
.instaLink::after {
    content: "";
    border-radius: 2px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: .5s;
}

.instaLink::before {
    background: rgb(131, 58, 180);
    background: linear-gradient(240deg, rgba(131, 58, 180, 1) 0%, rgba(253, 29, 29, 1) 50%, rgba(252, 176, 69, 1) 100%);
}

.instaLink::after {
    background: rgb(157, 139, 104);
}

.instaLink:hover,
.instaLink:hover::after,
.instaLink:hover::before {
    scale: 101%;
}

.instaLink:hover::after {
    opacity: 0;
}

.instaLink img {
    width: 24px;
}


/*  Facebook
---------------------------------------------*/
.fbBox {
    /* width: 100%; */
    text-align: center;
}

.fbBox iframe {
    margin: 0 auto;
    /* width: 100%; */
}


@media screen and (max-width: 1400px) {
    /* .fbBox iframe{
        width: 98% !important
    } */

    .rightCol .fbBox iframe {
        width: 100%;
    }

    .fbBox {
        width: 100%;
    }
}

@media screen and (max-width: 880px) {
    .fbBox iframe {
        width: 360px !important;
    }

    .fbBox {
        width: unset;
    }
}

@media screen and (max-width: 400px) {
    .fbBox {
        width: 100%;
        position: relative;
        height: 300px !important;
    }

    .fbBox iframe {
        width: 105% !important;
        position: absolute;
        left: -2%;
    }

}

/*  コンテンツタイトル
---------------------------------------------*/
.sidebarTitle {
    text-align: center;
}

.sidebarTitle h2 {
    font-size: var(--f2);
    color: var(--gray);
    margin: 8px 0;
}

.sidebarTitle>img {
    height: 42px;
    width: auto;
}

.box-sasisu .sidebarTitle>img {
    height: 42px;
    min-width: unset;
    border: none;
}



/*  index用
---------------------------------------------*/
.sideContents {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.sideContents>div {
    width: 40%;
    margin: 0 12px;
}

.sideContents>div>div {
    margin-bottom: 32px;
}

/* .sideContents .sideTag{
    margin-bottom: 32px;
} */


@media screen and (max-width: 800px) {
    .sideContents {
        display: block;
        width: 80%;
        margin: 0 auto;
    }

    .sideContents>div {
        width: 100%;
        margin: 0;
    }

    .sideContents .sideTag {
        margin-top: 32px;
    }
}

@media screen and (max-width: 440px) {
    .sideContents {
        width: 90%;
    }

    .entry-wonjima img {
        width: 80%;
    }
}