body {
    margin-top: 61px !important;
    /*固定ヘッダー分*/
}


/*コンテンツのサイズ指定*/

.header-inner {
    box-sizing: border-box;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    padding: .8rem;
}


/*snsアイコン*/

.sns-icon-box {
    display: flex;
    margin: 10px auto;
    justify-content: center;
}

.sns-icon-box a {
    padding: 5px;
}

.sns-icon-box img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}


/*パンくずスタイル*/

.poke-breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5px 0 5px 10px;
}

.poke-bre-ul {
    display: flex;
    max-width: 1200px;
    font-size: 0.93rem;
}


/*パンくずスタイル おわり*/

p {
    text-align: justify;
}

.container:after {
    display: block;
    clear: both;
    content: '';
}


/* ヘッダーロゴ*/

.site-title-wrap {
    text-align: left;
    position: absolute;
    z-index: 5000;
}

.site-title a {
    font-weight: bold;
    line-height: 1;
    display: inline-block;
    text-decoration: none;
    padding-top: 4px;
}

.site-title a img {
    display: inline-block;
    width: auto;
    height: 30px;
    padding-left: 0.6rem;
}


/* ヘッダーロゴ　おわり*/


/* スマホ　ハンバーガーメニュー*/

.navbutton {
    display: none;
}

.fas {
    color: #1f1f1f;
}


/* ヘッダー　固定*/

.poke-header {
    z-index: 9999;
    position: fixed;
    width: 100%;
    border-bottom: 1px solid #aaa;
    background: #fff;
    top: 0;
    /* 上下の固定位置を上から0pxにする */
    left: 0;
    /* 左右の固定位置を左から0pxにする */
}


/* ヘッダー　固定　おわり*/

.header-inner {
    height: 60px;
    /* position: relative;*/
    max-width: 1200px;
    margin: 0 auto;
}


/*ヘッダーメニュークリック時 背景を暗くする*/

.hamburger-demo-cover {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -20;
    background: rgba(3, 3, 3, .5);
    display: none;
    margin-top: 61px;
}


/* ヘッダー　メニュー部*/

.header-nav-wrap {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 100%;
    padding-left: 250px;
    display: block;
    z-index: 100;
}

.header-nav {
    font-size: 0;
    width: 100%;
    display: inline-block;
    margin: 0 auto;
}

.header-nav .menu {
    text-align: center;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    width: 100%;
    align-items: center;
}

.header-nav li a,
.header-nav li p {
    font-weight: bold;
    text-decoration: none;
    position: relative;
}


/* 初期状態でサブメニューを非表示にしておく */

.header-nav .sub-menu {
    display: none;
}


/* サブメニューの境目をわかりやすくするため、一番下の項目以外下線を引いた */

.header-nav .sub-menu>.menu-item:not(:last-child) {
    border-bottom: 1px solid #eee;
}


/* サブニューのリンクタグをmenu-itemの大きさと合わせ、クリックしやすいようにした */

.header-nav .sub-menu>.menu-item a {
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 1rem 4rem;
    font-weight: 400;
    color: #1f1f1f;
}

.header-nav .sub-menu>.menu-item a:hover {
    background-color: #ddd;
}

.header-nav .sub-menu>.menu-item a::before {
    content: '';
    display: inline-block;
    position: absolute;
    vertical-align: middle;
    color: #ff7600;
    background-size: contain;
    background-image: url(/assets/images/poke_angle-right.svg);
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    left: 3rem;
    top: 50%;
    transform: translate(-50%, -50%);
}


/* サブメニューにマウスオーバーしたときリンクの背景色とテキストカラーを変更 */

.header-nav .sub-menu>.menu-item a:hover {
    background: #ccc;
    color: #1f1f1f;
}

.poke-head-botn-form {
    display: none;
}

.header-nav .menu ul {
    margin: 0;
}

.header-nav .menu li {
    position: relative;
}


/* 子カテゴリー */

.header-nav .menu li ul {
    margin: 0;
}

.header-nav .menu li ul a {
    padding-left: 2em;
}


/**************************************************sp タブレット用css************************/

@media(max-width: 940px) {
    #menu-item-15381 a {
        padding: 1.3rem 2rem;
        font-size: 1rem;
        font-weight: bold;
        display: block;
        text-decoration: none;
        position: relative;
        color: #1f1f1f;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
        height: 60px;
        background-color: #ffa;
    }

    .navbutton {
        font-size: 1.6rem;
        position: absolute;
        z-index: 999;
        top: 0;
        right: 0;
        display: inline-block;
        cursor: pointer;
        border: 0;
        background-color: transparent;
        line-height: 60px;
        width: 64px;
        height: 60px;
        padding: 0;
        background-color: #fff;
    }

    .navbutton:hover {
        background-color: #eee;
    }

    .navbutton:focus {
        outline: 0;
    }

    .header-nav-wrap {
        z-index: 999;
        top: 61px;
        /*ヘッダーの高さと合わせる*/
        left: auto;
        right: 0;
        display: none;
        width: 100%;
        margin-right: 0;
        transform: none;
        background-color: #fff;
        padding-left: 0;
        height: 1160%;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    .header-nav .menu-item-has-children {
        border-bottom: 1px solid #aaa;
    }

    .header-nav .menu-item-has-children>a,
    .header-nav .menu-item-has-children span:first-of-type {
        padding: 1.3rem 2rem;
        font-size: 1rem;
        font-weight: bold;
        display: block;
        text-decoration: none;
        position: relative;
        color: #1f1f1f;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
        height: 60px;
    }

    .header-nav li {
        display: block;
        margin-right: 0;
        font-size: 1rem;
        width: 100%;
        border-left: none;
        vertical-align: middle;
        text-align: left;
    }

    /*.header-nav li :hover {
    background-color: #eee;
}*/
    .header-nav .menu-item-has-children a:hover,
    .header-nav .menu-item-has-children span:first-of-type:hover {
        color: #1f1f1f;
        /*opacity: .6; */
    }

    .contents {
        margin-bottom: 1rem;
    }

    .site-title a {
        font-size: 2rem;
    }

    .header-nav-footer {
        display: block;
        background-color: #533F22;
        font-size: .66rem;
        margin: 0;
        padding: 10px 0 0;
        /*height: 240px;*/
        height: 100%;
        text-align: center;
        color: #fff;
        line-height: 1.2;
    }

    .header-nav-footer span {
        color: #fff;
        font-size: 1.33rem;
        position: relative;
        font-weight: 900;
        font-family: 'open sans jp';
        padding-left: 20px;
    }

    .header-nav-footer span::before {
        content: "";
        position: absolute;
        font-size: 1.33rem;
        display: inline-block;
        top: 0;
        left: -5px;
        width: 1.5rem;
        height: 1.5rem;
        background: url(/wp-content/themes/blankslate/assets/images/pokeko.svg) no-repeat;
        background-size: contain;
    }

    /*開閉ボタン*/
    .header-nav .accordionBtn {
        display: block;
        width: 100%;
        height: 60px;
        position: absolute;
        top: 0;
        right: 0;
    }

    .header-nav .accordionBtn:before {
        content: '';
        display: inline-block;
        position: absolute;
        vertical-align: middle;
        background-size: contain;
        background-image: url(/assets/images/front/plus001.svg);
        width: .8rem;
        height: .8rem;
        background-repeat: no-repeat;
        right: 25px;
        transform: translate(-50%, -50%);
        top: 50%;
    }

    .header-nav .accordionBtn.active:before {
        content: '';
        background-image: url(/assets/images/front/minus001.svg);
        width: .83rem;
        height: .86rem;
        right: 25px;
    }

    /*開閉ボタン おわり*/
}


/*パンくず*/

.bread-style {
    font-size: .8rem;
    padding: 0.5rem 0.5rem 0.3rem 1.4rem;
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.4;
}

.bread-style a {
    text-decoration: none;
    color: #ff7b00;
}


/**************************************************pc css************************/

@media screen and (min-width: 941px) {

    /*応募フォームナビボタン様スタイル*/
    .header-nav .menu-item-15381>a {
        line-height: 1.2;
        display: flex;
        text-decoration: none;
        position: relative;
        color: #ffd;
        height: 45px;
        align-items: center;
        justify-content: center;
        padding: .3rem;
        font-size: 1.28rem;
    }

    .header-nav .menu-item-15381 {
        height: 45px;
        flex: 0 1 200px;
        margin-left: .5rem;
        background-color: #FFAD1C;
        border-radius: 1rem;
        box-shadow: 0px 3px 6px #00000029;
    }

    .header-nav .menu-item-15381:hover {
        background-color: #FF7600;
    }

    /*応募フォームナビボタン様スタイル   おわり*/
    .site-title a img {
        height: 35px;
    }

    .header-nav li:hover .sub-menu {
        display: block;
    }

    .header-nav li:hover {
        background: #FFAD1C;
    }

    .header-nav-wrap {
        padding-right: 1.5rem;
        display: inline-grid;
    }

    .header-nav .menu-item-has-children>a,
    .header-nav .menu-item-has-children span:first-of-type {
        line-height: 1.2;
        display: flex;
        text-decoration: none;
        position: relative;
        color: #1f1f1f;
        height: 60px;
        align-items: center;
        justify-content: center;
        border-left: 1px solid #ddd;
        border-right: 1px solid #ddd;
        padding: .2rem;
        font-size: 1rem;
    }

    .header-nav .menu {
        display: flex;
        height: 60px;
    }

    /* リストの記号を消去 */
    .header-nav .menu-item {
        list-style-type: none;
    }

    /* サブメニューをabsoluteにするため、親メニューをrelativeに */
    .header-nav .menu-item-has-children {
        font-size: .8rem;
        height: 60px;
        flex: 0 1 163px;
        margin-left: -1px;
    }

    /* 親メニューにマウスオーバーしたときにカーソルを変更 */
    .header-nav .menu-item-has-children:hover {
        cursor: pointer;
    }

    .header-nav .menu-item-has-children a:hover {
        color: #fff;
    }

    /* 子を持つ親メニューにマウスオーバーしたときサブメニューを表示 */
    .header-nav .menu-item-has-children:hover .sub-menu {
        display: block;
    }

    /* サブメニューをabsoluteにして親メニューの下に配置。スタイルは適宜調整してください */
    .header-nav .sub-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.2);
        padding: 0;
    }

    .header-nav .sub-menu>.menu-item a {
        padding: 1rem 0;
        color: #1f1f1f;
    }

    .poke-signup-but-header {
        float: right;
        margin: 18px 0 0 46px;
    }

    .poke-signup-but-header a {
        min-width: 180px;
        height: 50px;
        line-height: 50px;
        display: inline-block;
        height: 55px;
        line-height: 55px;
        min-width: 220px;
        color: #fff;
        text-align: center;
    }

    .poke-head-botn-form {
        width: 140px;
        display: inline-block;
        position: absolute;
        right: 20px;
        top: 15px;
    }

    .poke-head-botnm {
        background: transparent linear-gradient(270deg, #FFCA74 0%, #FFAD1C 49%, #FCC257 100%) 0% 0% no-repeat padding-box;
        box-shadow: 0px 3px 6px #00000029;
        border-radius: 40px;
        padding: .8rem;
        width: 100%;
    }

    .poke-head-botnm-p {
        font-size: .8rem;
        color: #ffffff;
        font-weight: 700;
        text-align: center;
        position: relative;
        line-height: 0.7;
        /* top     : 3px; */
    }

    .header-nav-footer {
        display: none;
    }

    .header-nav {
        max-width: 1200px;
        /* padding-left: 130px;*/
    }
}

@media(max-width: 1200px) {
    .contents {
        float: none;
        width: 100%;
        margin-right: 0;
    }
}

@media screen and (min-width: 1201px) {
    .header-nav .menu-item-has-children {
        font-size: 1rem;
    }

    .header-nav .menu {
        text-align: center;
        flex-wrap: nowrap;
        justify-content: space-evenly;
        width: 100%;
        align-items: center;
        max-width: 1080px;
        margin: 0 auto;
    }

    .header-nav>.menu>li>ul {
        width: 200px;
    }

    .header-nav>.menu>li>ul>li {}

    .header-nav .sub-menu>.menu-item a::before {
        display: none;
    }
}

/** line cb設置後のボタン***/
.cb-sigbtn-midasi {
    text-align: center;
    font-size: 4.5vw;
    margin-top: 1rem;
    position: relative;
    display: inline-block;
}

.cb-sigbtn-midasi::before, .cb-sigbtn-midasi::after {
    content: "";
    display: inline-block;
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    width: 1rem;
    height: 1.5rem;

}

.cb-sigbtn-midasi::before {
    background-image: url(/wp-content/themes/blankslate-child/assets/images/line-lef.svg);
    transform: translateY(-50%) translateX(100%);
    top: 4vw;
    left: -8vw;

}

.cb-sigbtn-midasi::after {
    background-image: url(/wp-content/themes/blankslate-child/assets/images/line-rgh.svg);
    transform: translateY(-50%) translateX(-100%);
    top: 4vw;
    right: -8vw;

}

.cb-sigbtn-midasi-span {
    color: #F836AD;
    font-weight: bold;
}

.cb-sigbtn-box {
    display: flex;
    position: relative;
    justify-content: center;
    z-index: 0;
    margin: -.5rem auto 1rem;
    padding: 0;
    top: 0;
    left: 0;
    width: 95%;
    max-width: 720px;
}

.cb-sigbtn-box-origin, .cb-sigbtn-box-line {
    box-shadow: 0px 5px 6px #00000029;
    height: 5rem;
    width: 50%;
}

.cb-sigbtn-box-origin {
    background: transparent linear-gradient(270deg, #FFCA74 0%, #FFAD1C 49%, #FCC257 100%) 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 6px #00000029;
    margin: 0.5rem auto;
    border-radius: 2rem 0 0 2rem;
}

.cb-sigbtn-box-origin>a {
    background: transparent linear-gradient(270deg, #FFCA74 0%, #FFAD1C 49%, #FCC257 100%) 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 6px #00000029;
    margin: 0.5rem auto;
    border-radius: 2rem 0 0 2rem;
}

.cb-sigbtn-box-line {
    background-color: #06c755;
    box-shadow: 0px 3px 6px #00000029;
    margin: 0.5rem auto;
    border-radius: 0 2rem 2rem 0;
}

.cb-sigbtn-p {
    color: #fff;
    display: flex;
    font-size: 4.5vw;
    font-weight: bold;
    height: 5rem;
    padding: 1.35rem 1.3rem;
    line-height: .9;
    align-items: center;
}

.cb-sigbtn-p>span {
    font-size: 4vw;
}

.cb-sigbtn-box a {
    text-decoration: none;
}

.cb-sigbtn-box-origin>a>.cb-sigbtn-p {
    border-right: 0.3rem solid #fff;
    justify-content: flex-end;
    position: relative;
}

.cb-sigbtn-box-origin>a>.cb-sigbtn-p::before {
    content: "";
    display: block;
    position: relative;
    background-size: contain;
    background-image: url(/wp-content/themes/blankslate-child/assets/images/btn-tri-icon.svg);
    background-repeat: no-repeat;
    transform: translateY(-50%) translateX(100%);
    width: 1rem;
    height: 1rem;
    top: 0.5rem;
    left: -1.5rem;
}

.cb-sigbtn-box-line>a>.cb-sigbtn-p {
    justify-content: flex-start;
    position: relative;
}

.cb-sigbtn-box-line>a>.cb-sigbtn-p::after {
    content: "";
    display: block;
    position: relative;
    background-size: contain;
    background-image: url(/wp-content/themes/blankslate-child/assets/images/btn-tri-icon2.svg);
    background-repeat: no-repeat;
    transform: translateY(-50%) translateX(-100%);
    width: 1rem;
    height: 1rem;
    top: .5rem;
    right: -1.5rem;
}

@media (min-width: 628px) {
    .cb-sigbtn-p {
        font-size: 2.3rem;
        height: 6rem;
    }

    .cb-sigbtn-p>span {
        font-size: 1.8rem;
    }

    .cb-sigbtn-box-line>a>.cb-sigbtn-p, .cb-sigbtn-box-origin>a>.cb-sigbtn-p {
        justify-content: center;
    }

    .cb-sigbtn-box-origin {
        border-radius: 3rem 0 0 3rem;
        height: 6rem;
    }

    .cb-sigbtn-box-line {
        border-radius: 0 3rem 3rem 0;
        height: 6rem;
    }

    .cb-sigbtn-midasi {
        font-size: 2rem;
    }

    .cb-sigbtn-midasi::after {
        width: 1.5rem;
        height: 2rem;
        top: 1.6rem;
        right: -4rem;
    }

    .cb-sigbtn-midasi::before {
        width: 1.5rem;
        height: 2rem;
        top: 1.6rem;
        left: -4rem;
    }
}


/*231010_ログインボタン追加修正*/
@media (max-width: 940px) {
    .rgin-b {
      display: block;
      margin-right: 0;
      font-size: 1rem;
      width: 100%;
      border-left: none;
      vertical-align: middle;
      text-align: left;
    }

    .rgin-b a {
      padding: 1.3rem 2rem;
      font-size: 1rem;
      font-weight: bold;
      display: block;
      text-decoration: none;
      position: relative;
      color: #1f1f1f;
      -webkit-transition: all 0.3s ease;
      -moz-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      transition: all 0.3s ease;
      height: 60px;
      background-color: #fff;
    }

    .header-nav li {
      border-bottom: 1px solid #aaa;
    }
    .menu-item-46022{
      display: none!important;
    }
  }
  @media (min-width: 941px) {
    .rgin-b {
      display: none;
    }
  }
  @media (min-width: 1201px) {
    .rgin-b {
      display: none;
    }
  }