@charset "utf-8";

:root {
    --primary-color: #fdd2e5;
    --secondary-color-lv1: #ceeffe;
    --secondary-color-lv2: #e7fff3;
    --secondary-color-lv3: #fffbcc;
    --secondary-color-lv4: #f97dd5;
    --accent-color: #b1a685;
    --font-family--gothic: "Zen Maru Gothic", "Hiragino Kaku Gothic Pro", "Hiragino Kaku Gothic ProN", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", noto-sans-cjk-jp, "ＭＳ Ｐゴシック", sans-serif;
    --font-family--en: "Montserrat", sans-serif;
    --line-height--heading: 2.3;
    --max-width--heading: 840px;
    --max-width--block-text: 840px;
    --vw-base-width: 750;
    box-sizing: border-box;
    color: #434343;
    font-display: swap;
    font-family: var(--font-family--gothic);
    line-height: var(--line-height);
}

html {}

body {
    background-color: #fdd2e5;
    margin: 0;
    line-height: inherit;
    min-width: 320px;
    font-weight: 300;
    background-image: url("../../images/bk_animal_img.gif");
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

header {
    position: fixed;
    top: 0;
    width: 100vw;
    padding: 10px 0 0 5px;
    z-index: 999999;
    /*overflow: hidden;*/
}

#main-logo img {
    height: 48px;
    width: auto;
}

#main-logo {
    float: left;
}

.sns_btn ul li {
    display: inline;
}

.gnav {
    position: absolute;
    right: 15px;
    top: 10px;
}

main {
    margin-top: 75px;
    width: 100%;
    /*background-image: url("images/bk_animal_img.gif");*/

}

.scroll_up {
    transition: 0.8s ease-in-out;
    transform: translateY(30px);
    opacity: 0;
}

.scroll_up.on {
    transform: translateY(0);
    opacity: 1.0;
}

.footer {
    text-align: center;
}

.footer_cont {
    background-color: #ceeffe;
    background-image: linear-gradient(178deg, rgba(255, 255, 255), rgba(191, 235, 255));
    padding: 10px 0;
    color: #f97dd5;
    position: relative;
    margin-bottom: 45px;
}

#top_anchor_btn {
    text-align: right;
    display: block;
    margin: 15px 15px 30px;
}

.header {
    /*position: relative;*/
    /*background: #ceeffe*/
    /*height: 50vh;*/
    /*height: 200px;
  width: 90%;*/
    background-image: linear-gradient(178deg, rgba(255, 255, 255), rgba(191, 235, 255));
}


.header::after {
    content: '';
    position: absolute;
    right: 0;
    left: 0;
    top: 100%;
    z-index: 10;
    display: block;
    height: 20px;
    background-size: 17px 100%;
    background-image: linear-gradient(135deg, #ceeffe 25%, transparent 25%), linear-gradient(225deg, #ceeffe 25%, transparent 25%);
    background-position: 0 0;
}

.footer_cont::after {
    content: "";
    position: absolute;
    background: linear-gradient(45deg, #ffffff 50%, transparent 52%), linear-gradient(315deg, #ffffff 50%, transparent 52%);
    background-size: 17px 100%;
    height: 20px;
    width: 100%;
    top: -10px;
    left: 0;
}
a.anchor{
    display: block;
    padding-top: 70px;
    margin-top: -70px;
}
/*==================================================
　5-2-4 MENUがCLOSEに
===================================*/


/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn4 {
    position: relative;
    /*ボタン内側の基点となるためrelativeを指定*/
    background: #f97dd5;
    cursor: pointer;
    width: 48px;
    height: 46px;
    border-radius: 5px;
    z-index: 9999;
}

/*ボタン内側*/
.openbtn4 span {
    display: inline-block;
    transition: all .4s;
    /*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 5px;
    background: #fff;
    width: 45%;
}

.openbtn4 span:nth-of-type(1) {
    top: 13px;
}

.openbtn4 span:nth-of-type(2) {
    top: 19px;
}

.openbtn4 span:nth-of-type(3) {
    top: 25px;
}

.openbtn4 span:nth-of-type(3)::after {
    content: "Menu";
    /*3つ目の要素のafterにMenu表示を指定*/
    position: absolute;
    top: 5px;
    left: -2px;
    color: #fff;
    font-size: 0.6rem;
    text-transform: uppercase;
}

/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/

.openbtn4.active span:nth-of-type(1) {
    top: 14px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn4.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn4.active span:nth-of-type(3) {
    top: 26px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

.openbtn4.active span:nth-of-type(3)::after {
    content: "Close";
    /*3つ目の要素のafterにClose表示を指定*/
    transform: translateY(0) rotate(-45deg);
    top: 5px;
    left: 4px;
}


/*----------------------------
* メニュー本体
*----------------------------*/
.menu-list {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1;
    width: 50vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    background: #ceeffed0;
    margin: 0;
    padding: 65px 0 0 0;
}

.menu-item {
    width: 100%;
    height: auto;
    padding: .5em 1em .5em 1.5em;
    text-align: left;
    color: #fff;
    box-sizing: border-box;
    position: relative;
}

.heart-solid.icon {
    color: #f97dd5;
    position: absolute;
    margin-top: 6px;
    margin-left: 5px;
    width: 9px;
    height: 9px;
    border-left: solid 1px currentColor;
    border-bottom: solid 1px currentColor;
    background-color: currentColor;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: absolute;
    left: 3px;
    top: 10px;
}

.heart-solid.icon:before {
    content: '';
    position: absolute;
    top: -5px;
    left: -1px;
    width: 8px;
    height: 5px;
    border-radius: 5px 5px 0 0;
    border-top: solid 1px currentColor;
    border-left: solid 1px currentColor;
    border-right: solid 1px currentColor;
    background-color: currentColor;
}

.heart-solid.icon:after {
    content: '';
    position: absolute;
    top: 0px;
    left: 8px;
    width: 5px;
    height: 8px;
    border-radius: 0 5px 5px 0;
    border-top: solid 1px currentColor;
    border-right: solid 1px currentColor;
    border-bottom: solid 1px currentColor;
    background-color: currentColor;
}



/*----------------------------
* アニメーション部分
*----------------------------*/

/* アニメーション前のメニューの状態 */
.menu-list {
    transform: translateX(100vw);
    transition: all .3s linear;
}

/* アニメーション後のメニューの状態 */
.menu-list.is-active {
    transform: translateX(0);
}

/*----------------------------
* ポケパラ
*----------------------------*/
#pokepara-gal_list {
    width: 97%;
    height: 500px
}

.twitter-timeline {
    width: 100%;
    height: 800px;
    overflow: hidden;
}

#pokepara_cast_list {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    flex-wrap: wrap;
    justify-content: flex-start;
}

#pokepara_cast_list li {
    /*追加*/
    width: 32.8%;
    /*追加*/
    box-sizing: border-box;
    /*追加*/
    text-align: center;
    padding: 10px;
    margin: 0;
    position: relative;
    margin: 0 0.2% 10px 0.2%;
    padding: 7px 2px 4px 2px;
    background-image: URL(https://cfs.pokepara.jp/Pokepara/Images/img/Pc/new2013/member_manage/common/gallist_bg_long.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    text-align: center;
    box-sizing: border-box;
    font-size: .7em;
}

#pokepara_cast_list li .honjitsu {
    width: 96%;
    max-width: 130px;
    height: 17px;
    margin: 0 auto 5px auto;
    padding: 0;
    background-image: URL(https://cfs.pokepara.jp/Pokepara/Images/img/Pc/new2013/member_manage/common/gallist_honjitsu.gif);
    background-size: 100% 17px;
    background-repeat: no-repeat;
    font-size: 10px;
}

#pokepara_cast_list li .diary {
    width: 96%;
    max-width: 130px;
    height: 17px;
    margin: 0 auto 5px auto;
    padding: 0;
    background-image: URL(https://cfs.pokepara.jp/Pokepara/Images/img/Pc/new2013/member_manage/common/gallist_diary.png);
    background-repeat: no-repeat;
    background-size: 100% 17px;
    font-size: 10px;
}

#pokepara_cast_list li .diary span {
    display: block;
    width: 70%;
    padding: 1px 0 0 30px;
    font-size: 10px;
    color: #f47110;
}

#pokepara_cast_list li .photo img {
    width: 100%;
    max-width: 120px;
}

#pokepara_cast_list li .ic_new {
    position: absolute;
    top: -6px;
    left: -6px;
    z-index: 10;
}

#pokepara_cast_list li .honjitsu span {
    margin-left: 10px;
}

/* pickupnews */
ul#pickupnews .photo {
    float: left;
    width: 60px;
    max-height: 60px;
    overflow: hidden;
    text-align: center;
}

ul#pickupnews .photo img {
    max-width: 60px;
}

ul#pickupnews .text {
    float: left;
    /*width: 150px;*/
    height: 100%;
    overflow: hidden;
    padding: 0 0 0 5px;
}

ul#pickupnews .text .new {
    color: red;
    font-weight: 700;
}

ul#pickupnews .text .title {
    font-weight: 700;
}

ul#pickupnews .text .body {
    font-size: 11px;
    color: #888;
}

.cl {
    clear: both;
}

ul#pickupnews li {
    padding: 6px 0 5px;
    border-bottom: 1px solid aliceblue;
}

/* system */
.system_cnt {
    background-color: #ffffff;
}

.system_left {
    width: 85%;
    margin: 0 auto;
}

.system_left table {
    width: 100%;
    margin: 15px 0 0 0;
    border-collapse: collapse;
}

.system_left table {
    border-collapse: collapse;
}

.system_left table td.cl_hd {
    padding: 6px 0;
}

.system_left table td.cl_hd div {
    padding: 0 0 5px 5px;
    font-weight: 700;
    font-size: 13px;
    color: #000;
    border-left: solid 4px #966;
    border-bottom: dotted 1px #CCC;
}

/*----------------------------
* SNS
*----------------------------*/
#tw_btn img,
#inst_btn img,
#tiktok_btn img,
#youtube_btn img {
    width: 46px;
    height: 46px;
}

.sns_btn ul {
    text-align: right;
    margin-right: 72px;
}

/*----------------------------
* メインイメージ
*----------------------------*/
.p-main_img {
    margin-top: -10px;

}

.main_img_01 {
    width: 100%;
    max-width: 500px;
}

.main_img_01 img {
    width: 100%;
}

.main_img_02,
.main_img_03 {
    display: none;
}

.main_img_ul {
    overflow: hidden;
}

.mainima_btm_logo {
    position: relative;
}

.mainima_btm_logo img {
    width: 70vw;
    height: auto;
    position: absolute;
    z-index: 99;
    top: 0px;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.trace_concept {
    padding: 60px 20px 20px;
    margin: 0 0 20px 0;
}

.mainimg_btm {
    background-color: #ffffffa1;
    margin-top: -27px;
    text-align: center;
}

.kyujin_bnr {
    text-align: center;
    width: 100%;
}

.kyujin_bnr img {
    width: 100%;
}

.middle-banner {
    background-color: #ffffffca;
    padding: 30px 0 0;
    margin-bottom: 30px;
}

.kyujin_bnr p {
    text-align: right;
}

/*----------------------------
* section
*----------------------------*/
.p-cont {
    width: auto;
    /*height: 600px;*/
    border-radius: 0px 50px 0px 50px;
    background: #ffa4c196;
    padding: 0 5px 40px 5px;
    margin: 0 16px 35px;
    position: relative;
}

.p-section h2 {
    position: relative;
    /*相対位置*/
    line-height: .8;
    /*行高*/
    color: #ffffff;
    /*文字色*/
    margin: 7px 10px 12px 10px;
    font-size: 1.3em;
}

/*.p-section h2:before {
  font-family: "Font Awesome 5 Free";
  content: "\f1b0";
  font-weight: 900;
  position: absolute;
  font-size: 1em;
  left: 0;
  top: 0;
  color: #fb5bcc; 
}*/
.section_title {
    border-radius: 0px 50px 0px 0px;
    background-color: #fda1e2;
    margin-left: -5px;
    width: 100%;
    position: absolute;
}

.p-section .section_cont {
    padding-top: 57px;
}

/*----------------------------
* google map
*----------------------------*/
.map {
    width: 100%;
    position: relative;
    padding-top: 56.25%;
    height: 250px;
}

.map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*----------------------------
* footer
*----------------------------*/
.footer-enquiry {
    position: fixed;
    bottom: 0;
    width: 100%;


    background-color: #ceeffe;
    color: #f97dd5;
    z-index: 99;
}

.footer-enquiry::after {
    content: "";
    position: absolute;
    background: linear-gradient(45deg, #ceeffe 50%, transparent 52%),
        linear-gradient(315deg, #ceeffe 50%, transparent 52%);
    background-size: 17px 100%;
    height: 20px;
    width: 100%;
    top: -10px;
    left: 0;
}

.footer-enquiry a {
    color: #f97dd5
}

.footer-open {
    position: absolute;
    top: -20px;
    z-index: 9;
    display: none;
    text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF,
        -1px 1px 0 #FFF, 1px -1px 0 #FFF,
        0px 1px 0 #FFF, 0-1px 0 #FFF,
        -1px 0 0 #FFF, 1px 0 0 #FFF;
}

.footer-enquiry p {
    margin: 0;
}

.tel-link {
    font-size: 2.3rem;
    font-weight: 700;
}

.footer-tel {
    float: right;
    margin: -3px 15px 0 0;
    text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF,
        -1px 1px 0 #FFF, 1px -1px 0 #FFF,
        0px 1px 0 #FFF, 0-1px 0 #FFF,
        -1px 0 0 #FFF, 1px 0 0 #FFF;
    position: relative;
}

.footer-time {
    text-align: left;
    margin: 8px 0 0 10px;
    font-size: 0.8em;
}

.footer-tel .material-symbols-outlined {
    position: absolute;
    top: 13px;
    left: -35px;
    font-size: 2em;
}
.invoice_img{
  position: fixed;
  bottom: 42px;
  width: 100px;
  right: 0;
  z-index:100;
}
/*----------------------------
* company
*----------------------------*/
.p-company{
  margin-top:75px
}
			
/* table01 */
#table01 {
  margin: auto;
  border-collapse: collapse;
}
#table01 th,
#table01 td {
  padding: 24px 0;
  border-bottom: 1px solid #b5b1b1;
}

#table01 th {
  width: 30%;
}

/* sp */
@media only screen and (max-width: 480px) {
  #table01 th,
  #table01 td {
    width: 100%;
    display: block;
  }

  #table01 th {
    width: 100%;
    border-bottom:1px dashed #b5b1b1;
    padding-bottom:0;
  }

  #table01 td {
    padding-top: 0;
    text-align: center;
    border:none;
  }
}

		

/* デザインB（タブレット） */
@media screen and (min-width: 500px) {

    /* タブレット用レイアウト 600px以上の範囲に収めるデザインはこの中に記述 */
    .main_img_01 img {
        float: left;
    }

    .main_img_02 {
        display: block;
    }

    .main_img_ul {
        margin: 0;
    }

    .main_img_ul img {
        width: 50vw;
        max-width: 500px;
    }

    .menu-list {
        width: 25vw;
    }

    .mainima_btm_logo img {
        width: 30vw;
    }
}

/* デザインC(PC) */
@media screen and (min-width: 1025px) {

    /* PC用レイアウト 1,025px以上の範囲に収めるデザインはこの中に記述 */
    .main_img_02 img {
        float: left;
    }

    .main_img_03 {
        display: block;
    }

    .main_img_ul {
        max-width: 1290px;
        margin: 75px auto 0;
    }

    .main_img_ul img {
        width: 33.3vw;
        max-width: 430px;
    }

    .p-section {
        width: 46vw;
        float: left;
    }

    .footer {
        clear: both;
    }

    .p-cont {
        margin: 15px 10px;
        max-width: 579px;
    }

    main {
        margin: 15px auto;
    }

    .float_r {
        float: right;
    }

    .menu-list {
        width: 20vw;
    }

    .mainimg_btm {
        display: none
    }

    .kyujin_bnr,
    .middle-banner {
        display: none
    }

    .cont_wrap {
        width: 98vw;
        margin: 0 auto;
        height: auto;
        max-width: 1219px;
    }
}

@media screen and (max-width: 374px) {
    #youtube_btn {
        display: none;
    }

    .footer-tel .material-symbols-outlined {
        display: none;
    }
}

@media screen and (max-width: 339px) {
    #tw_btn {
        display: none;
    }

    .footer-time {
        margin: 8px 0 0 2px;
    }
}