@charset "UTF-8";

html {
    font-size: 100%;
}

body {
    background-color: #D04B36;
    color: #f7f6f3;
    font-size: 1rem;
    font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

li {
    list-style: none;
}

.wrapper {
    max-width: 1200px;
    padding: 0 16px;
    margin: 0 auto;
}

h2 {
    text-align: center;
    margin-bottom: 42px;
    color: #333;
    font-weight: 500;
    font-size: 3rem;
    font-family: "Oswald", serif;
}

.meta {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 10px;
    align-items: center;
}

.date,
.cate {
    font-size: 0.875rem;
    margin-right: 10px;
}

.cate-list {
    display: flex;
}

.cate {
    color: #f7f6f3;
    padding: 3px 5px;
}

.cate a {
    color: #f7f6f3;
}

.cate.marketing {
    background-color: #f48d07;
}

.cate.sales {
    background-color: #0c8bfb;
}

.cate.recruit {
    background-color: #ee1a64;
}

.cate.management {
    background-color: #d2a903;
}

.cate.method {
    background-color: #2d940d;
}

.cate.uncategorized {
    background-color: #a7a7a7;
}

.hashtag {
    font-size: 0.75rem;
    margin-right: 5px;
    margin-bottom: 0.5em;
    padding: 0.3em 0.7em;
    color: #555;
    display: inline-block;
    text-decoration: none;
    border: 1px solid;
    border-radius: 1em;
}

.hashtag a {
    color: #555;
}

.hashtag::before {
    content: '#';
}

.article-title {
    font-size: 1.25rem;
    margin: 10px 0 15px 0;
}

.article-txt {
    background: #fff;
    padding: 15px;
}

.breadCrumb {
    font-size: 0.875rem;
    margin-top: 20px;
    padding: 16px;
}

.breadCrumb span {
    display: inline-block;
    margin: 0 2px;
}

.breadCrumb a {
    color: #f7f6f3;
}

.breadCrumb a span {
    text-decoration: underline;
}

.nav-links {
    text-align: center;
    margin-bottom: 70px;
}

.page-numbers {
    display: inline-block;
    padding: .5em 1em;
    text-decoration: none;
    color: #3B4043;
    font-size: 0.875rem;
}

.nav-links ul {
    display: flex;
    justify-content: center;
}

.nav-links ul li:not(.current) {
    border: 1px solid #ddd;
}

.page-numbers.current {
    color: #FFFFFF;
    border: 1px solid #3197ee;
    background-color: #3197ee;
}

.pagetop-btn {
    text-align: center;
    padding-bottom: 60px;
}

.pagetop-btn a {
    color: #333;
    font-size: 0.875rem;
    text-decoration: underline;
}

.error-text {
    font-size: 0.875rem;
    text-align: center;
    margin-bottom: 60px;
}

.error-text a {
    color: #333;
    text-decoration: underline;
}

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

#header {
    width: 100%;
    background-color: #D04B36;
}

#header .site-title {
    text-align: center;
    padding-top: 22px;
    padding-bottom: 7px;
}

#header .site-title a {
    display: block;
    width: 180px;
    margin: 0 auto;
}

#header .logo-img {
    width: 100%;
}

#header .description {
    font-size: .8rem;
    font-weight: 500;
    color: #f7f6f3;
    margin-bottom: 5px;
}

#navi ul {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background: #333;
}

#navi li {
    font-size: 0.875rem;
    font-weight: 500;
    padding: 10px 28px;
}

#navi li:hover {
    cursor: pointer;
}

#navi li:hover {
    background: #3197ee;
}

.menu-item a {
    align-items: center;
    display: flex;
    justify-content: center;
    color: #f7f6f3;
}

/* ---------------------------------------------- */
/* ハンバーガーメニュー */
/* ------------------------- */
#header-hamburger {
    width: 80px;
    height: 30px;
    margin-left: auto;
    position: fixed;
    z-index: 110;
    top: 30px;
    right: -5px;
    display: none;
}

/* ----------------- */
/* 三本線 */
/* ----------------- */
#header-hamburger span {
    display: inline-block;
    background: #fff;
    width: 50%;
    height: 2px;
    transition: all .4s;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

#header-hamburger span:nth-of-type(1) {
    top: 0;
}

#header-hamburger span:nth-of-type(2) {
    top: 12px;
}

#header-hamburger span:nth-of-type(3) {
    top: 24px;
}

#header-hamburger::after {
    content: '';
    display: block;
    height: 60px;
    width: 60px;
    background: #3197ee;
    position: fixed;
    top: 15px;
    right: 5px;
    z-index: -1;

}

/* ------------------ */
/* ×印 */
/* ------------------ */
#header-hamburger.active span:nth-of-type(1) {
    top: 12px;
    left: 25%;
    transform: rotate(-45deg);
    width: 50%;
}

#header-hamburger.active span:nth-of-type(2) {
    opacity: 0;
}

#header-hamburger.active span:nth-of-type(3) {
    top: 12px;
    left: 25%;
    transform: rotate(45deg);
    width: 50%;
}

#header-hamburger.active span {
    background-color: #f7f6f3;
}

/* ----------------------------------------------- */
/* メニューウィンドウ */
/* -------------------------- */
#hamburger-window {
    background-color: #333333;
    transition: 0.8s;
    text-align: center;
    visibility: hidden;
    position: fixed;
    top: 0;
    right: -100vw;
    z-index: 100;
    width: 40%;
    height: 100vh;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/*スクロールバー非表示（Chrome・Safari）*/
.content::-webkit-scrollbar {
    display: none;
}

#hamburger-window.open {
    visibility: visible;
    right: 0;
}

.hamburger-window__link {
    display: block;
    margin: 0 auto;
    width: 100%;
}

.hamburger-window__link:first-child .acordion-btn {
    border-top: 1px solid #f7f6f3;
}

.hamburger-window__link:last-child {
    border-bottom: 1px solid #f7f6f3;
}

.nav-btn {
    display: flex;
    align-items: center;
    border-top: 1px solid #f7f6f3;
    padding: 4%;
    color: #f7f6f3;
}


/* ----------------------------------
アコーディオン部分
--------------------- */
.acordion-menu-wrapper {
    background-color: rgba(187, 18, 18, 0);
}

.acordion-btn {
    display: flex;
    align-items: center;
    padding: 4%;
    color: #f7f6f3;
}

.acordion-btn::after {
    content: '\2b';
    font-weight: 900;
    font-family: "Font Awesome 6 Free";
    display: inline-block;
    position: absolute;
    right: 5%;
    width: 10px;
    aspect-ratio: 1/1;
    color: #f7f6f3;
}

.acordion-btn.is-open::after {
    content: '\f068';
}

.hamburger-window__nav-list {
    margin-top: 100px;
    margin-bottom: 10px;
}

.acordion>.acordion__item {
    position: relative;
    text-align: left;
    width: 100%;
    background-color: #dfdfdf;
    /* 閉じている状態 */
    border-top: 0 #ccc solid;
    line-height: 0;
    /* 閉じるアニメーション */
    transition:
        border-top .1s ease-out,
}

.acordion.is-open>.acordion__item {
    background: #fff;
    /* 開いている状態 */
    border-top: 1px #ccc solid;
    /* 開くアニメーション */
    transition:
        border-top .1s ease-out,
}

.acordion.is-open>.acordion__item:first-child {
    border-top: none;
}

.acordion.is-open>.acordion__item::after {
    content: '\f054';
    font-weight: 900;
    font-family: "Font Awesome 6 Free";
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 10%;
    width: 10px;
    aspect-ratio: 1/1;
    color: #333;
}

.acordion>.acordion__item>.acordion__link {
    color: #333;
    display: block;
    padding-left: 7%;
    /* 閉じている状態 */
    padding-top: 0;
    padding-bottom: 0;
    line-height: 0;
    opacity: 0;
    visibility: hidden;
    /* 閉じるアニメーション */
    transition:
        padding-top .3s ease-out,
        padding-bottom .3s ease-out,
        line-height .3s ease-out,
        opacity .1s linear,
        visibility .1s linear;
}

.acordion.is-open>.acordion__item>.acordion__link {
    display: block;
    padding: 4% 4% 4% 7%;
    line-height: 1.5;
    opacity: 1;
    visibility: visible;
    /* 開くアニメーション */
    transition:
        padding-top .3s ease-out,
        padding-bottom .3s ease-out,
        line-height .3s ease-out,
        opacity .1s linear,
        visibility .1s linear;
}

/*-------------------------------------------
記事のポップアップ部分
-------------------------------------------*/
input[id^="popup"] {
    display: none;
}

div[id^="overlay"] {
    visibility: hidden;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 70;
    width: 100%;
    height: 100%;
}

div[id^="window"] {
    width: 88%;
    height: 75%;
    padding: 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #f7f6f3;
    box-shadow: 0px 0px 20px -6px rgba(0, 0, 0, 0.6);
    z-index: 90;
    opacity: 0;
}

.bg_gray {
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 80;
}

/* 閉じるボタン */
.btn-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    z-index: 100;
    cursor: pointer;
}

.btn-close:hover {
    opacity: 0.7;
}

.btn-close span,
.btn-close span::before {
    display: block;
    height: 2px;
    width: 25px;
    background: #333;
}

.btn-close span {
    transform: rotate(45deg);
}

.btn-close span::before {
    content: "";
    position: absolute;
    bottom: 0;
    transform: rotate(-90deg);
}

input[id^="popup"]:checked~div[id^="overlay"] {
    visibility: visible;
}

input[id^="popup"]:checked~div[id^="overlay"] div[id^="window"] {
    animation: fadein 500ms forwards;
    animation-timing-function: ease-in-out;
}

@keyframes fadein {
    100% {
        opacity: 1;
    }
}

.txt-label {
    cursor: pointer;
    overflow: hidden;
    background: #fff;
}

.txt-label:hover {
    opacity: .8;
}

.link-btn {
    position: relative;
    display: inline-block;
    padding-left: 14px;
}

.link-btn a {
    font-size: 0.875rem;
    color: #333;
    text-decoration: underline;
}

.link-btn a:hover {
    text-decoration: none;
}

.link-btn::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 8px;
    border-color: transparent transparent transparent #D04B36;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -6px;
}

.article {
    position: relative;
}

.excerpt-text {
    font-size: .875rem;
}

/*-------------------------------------------
pickup
-------------------------------------------*/
#pickup {
    padding-top: 60px;
    margin-bottom: 120px;
    color: #333;
}

.pickup-title {
    color: #f7f6f3;
}

.swiper-slide {
    box-sizing: border-box;
}

.swiper-container {
    margin-inline: auto;
    max-width: 1200px;
    position: relative;
}

.swiper {
    max-width: 1200px;
}

.swiper-button-next,
.swiper-button-prev {
    --swiper-navigation-color: #333;
}

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

.swiper-pagination {
    bottom: -60px !important;
}

.swiper-pagination-bullet {
    background-color: #333;
    margin: 0 10px !important;
    width: 10px;
    height: 10px;
}

.swiper-button-next,
.swiper-button-prev {
    top: initial !important;
    bottom: -71px !important;
}

.swiper-button-prev {
    left: 35%;
}

.swiper-button-next {
    right: 35%;
}

/*-------------------------------------------
container
-------------------------------------------*/
#container {
    background: #f7f6f3;
    color: #333;
    position: relative;
}

.main-title {
    padding-top: 40px;
}

.main-wrapper {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

main {
    width: 70%;
}

main article {
    margin-bottom: 30px;
}

.article-wrap {
    padding: 0 16px;
    font-size: 0.875rem;
}

article h1 {
    font-size: 1.25rem;
    margin-bottom: 6px;
}

article h2 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

article h3 {
    font-size: 1.15rem;
    margin-bottom: 6px;
}

article h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

article p {
    margin-bottom: 20px;
    line-height: 1.5;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.alignright {
    float: right;
    margin-left: 1.5em;
}

.alignleft {
    float: left;
    margin-right: 1.5em;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.nav-prev,
.nav-next {
    margin-bottom: 3px;
}

.nav-next {
    text-align: end;
}

.related-books {
    font-family: "Oswald", serif;
    font-size: 1.5rem;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

.related-post-wrap ul li {
    background: #fff;
}

.related-post-wrap img {
    display: block;
    margin: 0 auto;
}

.related-post-title {
    color: #333;
    font-weight: bold;
    font-size: 1rem;
    padding: 1em;
}

.view-more {
    position: relative;
    border: none;
    border-bottom: 1px solid #666;
    width: fit-content;
    margin: 10px auto 60px auto;
}

.view-more a {
    color: #333;
    font-size: 0.875rem;
}

.view-more a::after {
    content: ">";
    margin-left: 20px;
}

/*-------------------------------------------
aside
-------------------------------------------*/
#sidebar {
    width: 30%;
    height: auto;
    padding: 20px;
    background: #333;
    right: 0;
    color: #f7f6f3;
}

#sidebar a {
    color: #f7f6f3;
}

#sidebar ul {
    border-bottom: solid 1px #777;
}

#sidebar li {
    font-size: 0.875rem;
    border-top: solid 1px #777;
    padding: 20px;
}

#sidebar .menu-item a {
    justify-content: left;
}

.cat-item-2 a::before {
    content: '■';
    color: #f48d07;
    margin-right: 3px;
}

.cat-item-3 a::before {
    content: '■';
    color: #0c8bfb;
    margin-right: 3px;
}

.cat-item-8 a::before {
    content: '■';
    color: #ee1a64;
    margin-right: 3px;
}

.cat-item-9 a::before {
    content: '■';
    color: #d2a903;
    margin-right: 3px;
}

.cat-item-12 a::before {
    content: '■';
    color: #2d940d;
    margin-right: 3px;
}

.cat-item-1 a::before {
    content: '■';
    color: #a7a7a7;
    margin-right: 3px;
}

.widgettitle {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
    color: #f7f6f3;
}

.tagcloud {
    padding: 0 20px;
}

.tag-cloud-link {
    font-size: 0.875rem !important;
    margin-right: 5px;
    margin-bottom: 0.5em;
    padding: 0.3em 0.7em;
    color: #555;
    display: inline-block;
    text-decoration: none;
    border: 1px solid;
    border-radius: 1em;
}

.tag-cloud-link::before {
    content: '#';
}

.widget_categories,
.widget_tag_cloud,
.widget_archive {
    margin-bottom: 60px;
}

.author {
    text-align: center;
}

.author-img img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 25px;
}

.author .profile {
    text-align: left;
    margin-bottom: 20px;
    font-size: 0.875rem;
}

.about-list {
    text-align: left;
    margin-bottom: 20px;
    font-size: 0.875rem;
}

.arrow {
    position: relative;
    display: inline-block;
    padding-left: 14px;
    margin-bottom: 8px;
}

.arrow {
    text-decoration: underline;
}

.arrow:hover {
    text-decoration: none;
}

.arrow::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 8px;
    border-color: transparent transparent transparent #f7f6f3;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -6px;
}

.sns-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.sns-icon-img {
    width: 30px;
    margin: 0 12px 0 12px;
}

/* ----------------------------------
検索窓
--------------------- */
.search {
    padding-top: 20px;
}

.search-field .wp-block-search__inside-wrapper {
    display: flex;
    flex-wrap: nowrap;
    margin: 0 auto;
    margin-bottom: 60px;
}

.search-field .wp-block-search__input {
    min-height: 1.5em;
    padding: 0.2em;
    border: 1px solid #333;
    border-radius: 0.2em;
    flex-grow: 1;
    min-width: 3em;
    background: #fff;
}

.search-field .wp-block-search__button {
    background-color: #D04B36;
    color: #FFFFFF;
    border: none;
    border-radius: 0.2em;
    fill: #FFFFFF;
    padding: 0.375em 0.625em;
    margin-left: 0.625em;
    word-break: keep-all;
}

.search-Noresult {
    text-align: center;
    margin-bottom: 60px;
}

/*-------------------------------------------
footer
-------------------------------------------*/
#footer {
    background-color: #D04B36;
    font-size: 0.875rem;
}

#footer .copyright {
    font-size: 0.750rem;
    text-align: center;
    padding: 10px 0;
}

/*-------------------------------------------
下層ページ
-------------------------------------------*/
.page-wrapper {
    padding: 0 16px;
    max-width: 1200px;
    margin: 0 auto;
    background: #f7f6f3;
}

.page-wrapper p {
    padding-bottom: 40px;
    color: #333;
}

.page-wrapper h3 {
    color: #333;
}

.main-title-ja {
    font-size: 2.2rem;
    font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
    padding-top: 52px;
    letter-spacing: .08rem;

}

.eyecatch {
    height: 400px;
    background: #fff;
}

.eyecatch img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.content-body {
    background: #fff;
    margin-top: 40px;
}

.content-body .article-title {
    font-size: 1.5rem;
    margin: 10px 0 30px 0;
}

.content-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.content-nav a {
    color: #333;
}

.content-tags {
    padding: 16px;
}

/*-------------------------------------------
お問い合わせフォーム
-------------------------------------------*/
.mw_wp_form {
    width: 70%;
    margin: 0 auto;
    color: #333;
}

.btn-home {
    margin: 0 auto;
    color: #333;
    text-decoration: underline;
}

.mw_wp_form span {
    display: inline-block;
    margin-bottom: 5px;
}

.mw_wp_form input,
.mw_wp_form textarea {
    border: 1px solid;
    padding: 5px;
    margin-bottom: 5px;
    width: 100%;
    background: #fff;
}

.form-txt {
    text-align: center;
}

.form-btn {
    text-align: center;
}

.confirm-submit {
    padding: 10px 20px !important;
    border: 1px solid #3197ee !important;
    background: #3197ee !important;
    color: #fff;
    width: fit-content !important;
}

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

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

    #header .site-title a {
        width: 145px;
    }

    #header .description {
        padding: 0 0 3px 3px;
        font-size: .7rem;
    }

    #hamburger-window {
        width: 100%;
    }

    #header-hamburger {
        display: block;
    }

    #navi {
        display: none;
    }

    .breadCrumb {
        font-size: 0.7rem;
    }

    /*-------------------------------------------
  記事のポップアップ部分
  -------------------------------------------*/
    .excerpt-text {
        font-size: .75rem;
        margin-bottom: 5px;
    }

    div[id^="window"] {
        height: 90%;
    }

    .view-more a {
        font-size: .75rem;
    }

    .btn-close {
        top: 3px;
        right: 3px;
    }

    .btn-close span,
    .btn-close span::before {
        width: 18px;
    }

    /*-------------------------------------------
  pickup
  -------------------------------------------*/
    #pickup {
        padding-top: 10px;
        margin-bottom: 60px;
    }

    .pickup-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    #pickup article {
        width: 100%;
        margin-bottom: 30px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        top: initial !important;
        bottom: -20px !important;
    }

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

    .swiper-button-prev {
        left: 0;
    }

    .swiper-button-next {
        right: 0;
    }

    .swiper-pagination {
        bottom: -8px !important;
    }

    .swiper-pagination-bullet {
        margin: 0 8px !important;
    }



    /*-------------------------------------------
  container
  -------------------------------------------*/
    .main-wrapper {
        flex-direction: column;
    }

    main {
        width: 100%;
    }

    .main-title {
        font-size: 2rem;
    }

    .eyecatch {
        height: 200px;
        background: #fff;
    }

    .main-title-ja {
        font-size: 1.5rem;
        margin-top: 15px;
    }

    /*-------------------------------------------
  aside
  -------------------------------------------*/
    #sidebar {
        width: 100%;
        padding: 0;
    }

    .tag-list {
        padding: 0 16px;
    }

    .profile,
    .about-list {
        padding: 0 16px;
    }

    .search-field {
        padding: 0 16px;
    }

    /*-------------------------------------------
  footer
  -------------------------------------------*/
    #footer .content {
        flex-direction: column;
    }

    #footer .item {
        width: 100%;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 587px) {
    .article-title {
        font-size: 0.95rem;
        margin: 10px 0 10px 0;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .mw_wp_form {
        width: 90%;
    }
}