@charset "utf-8";

html{
    font-size: 62.5%;
}

body {
    margin: 0;
    padding: 0;
    /* background-color: #fff; */
    /* background-color: #f4f4ff; */
    /* background-image: url('public/img/back.jpg'); */
    display: flex;
    flex-flow: column;
    min-height: 100vh;
}

.site-header
{
    background-color: #f5f5f5;
}

.site-header > .container-fuild
{
    /* display: none; */
    background-color: #fff;
    padding-bottom: 5px;
    border-top: 1.5px solid #000;
    border-bottom: 1.5px solid #000;
}

.header-inner
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* max-width: 1024px; */
    width: 70%;
    height: 90px;
    padding: 0 0.8em;
    margin: 0 auto;
    font-size: 1.2em;
}

.header-nav {
    display: flex;
    align-items: center;
}
  
.header-nav-item {
    display: flex;
    align-items: center;
    margin-left: 16px;
}

.logo{
    color: #f1e1b4;
    font-size: 1.6rem;
    text-align: center;
    font-family: 'Hachi Maru Pop', cursive;
    font-family: 'Kaisei Decol', serif;
    font-family: 'Kosugi Maru', sans-serif;
    font-family: sans-serif;
}

.site_title
{
    color: #222222;
    font-size: 2.6rem;
    text-align: center;
    font-family: 'Kaisei Decol', serif;
}

.logo img {
width:200px;
}

#navi
{
    margin-top: 40px;
    margin-right: 70px;
}

#navi ul li a::after 
{
    content: '';
    display: block;
    height: 2px;
    width: 0%;
    background: #91499B;
    /* position: absolute; */
    bottom: 0;
    left: 10%;
    transition: .4s;
}

#navi ul li a
{
    font-size: 1.7rem;
    font-family: 'MS Sans Serif', sans-serif;
    
}

#navi ul li a:hover 
{
    /* font-size: 2.0rem; */
    font-weight: bold;
}
  
#navi ul li a:hover::after 
{
    width: 80%;
}

#menu 
{
    display: flex; /*リストを横並びにする*/
    list-style: none; /*unorder listの 中点を消す*/
    padding: 0; /*中点が位置する左余白を消す*/
    margin: 0; /*上下にある余白を消す*/
}

#menu li
{
    margin-left: 35px;
}

#menu li a
{
    text-decoration:none;
    color: #91499B;
    font-size: 1.6rem;
}

.header-button {
    box-sizing: border-box;
    display: inline-block;
    padding: 0.5em 1.2em;
    font-size: 12px;
    text-decoration: none;
    cursor: pointer;
    user-select: none;
}

.header-login 
{
    color: #222222;
    font-weight: bold;
    background: #eaedf7;
    border: 0,5px #f1e1b4 solid;
    border-radius: 3px;
    text-decoration: none;
}

.header-post {
    font-weight: bold;
    color: #fff;
    border: 0.5px #f1e1b4 solid;
    border-radius: 3px;
}

.site-catchphrase
{
    /* display: none; */
    font-size: 1.3rem;
    /* letter-spacing: 0.05em; */
    font-weight: bold;
    font-family: serif;
    margin-bottom: 0;
}


@media screen and (max-width: 480px) {

.header-post {
    display: none;
}

.site-header > .container-fuild
{
    display: block;
}

.site-catchphrase
{
    display: block;
}

}

.menu.open
{
    right: 0;
}

.btn-line
{
    display: block;
	position: relative;
    width: 100%;  /* 線の長さと高さ */
    height: 1px;
    background-color: #686868;  /* バーガー線の色 */
}

.btn-line::before,
.btn-line::after
{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #686868;
  transition: .5s;
}

.btn-line::before
{
    right: 0.5px;
    /* 上の線の位置 */
    transform: translateY(-16px);
    background-color: #686868;  /* バーガー線の色 */
}

.btn-line::after
{
    right: 0.5px;
    /* 下の線の位置 */
    transform: translateY(16px);
    background-color: #686868;  /* バーガー線の色 */
}

/***** メニューオープン時 *****/
.btn-line.open
{
    background-color: transparent;  	/* 真ん中の線を透明に */
}

.btn-line.open::before ,
.btn-line.open::after {
	content: "";
	background-color: #333;  /* 上下の線の色を変える */
	transition: .2s;
}

.btn-line.open::before {
	transform: rotate(45deg);  /* 上の線を傾ける */
}

.btn-line.open::after {
	transform: rotate(-45deg);  /* 下の線を傾ける */
}

#gnav {
    display: none;
    /* background: #325A8C;
    border-top: #fff 1px solid;
    border-bottom: #917f40 2px solid; */
}

.menu
{
    display: flex;
    flex-direction: row;
    justify-content: center;
    list-style: none;
    padding: 0;
	margin: 0 auto;
    z-index: 10;
}

.menu_btn
{
    display: none;
}

#gnav ul li:first-child
{
    /* border-left: 1px solid #C8BEA0; */
}

#gnav ul li:last-child
{
    border-right: 1px solid #C8BEA0;
}

.menu-list
{
    vertical-align: top;
    padding: 15px 25px 15px;
    text-align: center;
}

.sp_login
{
    display: none;
}

.menu-list:hover
{
	background-color: rgba(255, 255, 255, .5);
	color: #333;
	cursor: pointer;
	transition: .6s;
}

.liner_pc
{
    display: none;
    margin: 0 auto;
}

/* タブレット */
@media screen and (min-width: 600px) {

    .site-catchphrase
    {
        font-size: 1.5rem;
        letter-spacing: 0.1em;
    }

    .liner_pc
    {
        display: block;
        width: 90%;
        margin: 0 auto;
    }

    .mainvisual_slick_group_sp
    {
        display: none;
    }
    .mainvisual_slick_group_pc
    {
        margin-top: 60px;
    }
}

/* PC */
@media screen and (min-width: 1025px) {

    .site-catchphrase
    {
        font-size: 1.8rem;
        letter-spacing: 0.25em;
        padding-top: 3px;
    }

    .liner_pc
    {
        display: block;
        height: 22px;
        width: 70%;
    }

    .mainvisual_slick_group_pc
    {
        margin-top: 10px;
    }
}



/*-------------------------------------------
Mainvisual
-------------------------------------------*/
#mainvisual
{
    /* margin-bottom: 20px; */
    text-align: center;
}

/* #mainvisual img
{
    width: 80%;
    max-width: 1920px;
    height: 600px;
    object-fit:cover;
} */

.mainvisual_img_pc
{
    /* width: 80%; */
    width: 1150px;
    height: 300px;
    object-fit: contain;
    border-radius: 15px;
}

.mainvisual_img_sp
{
    display: none;
}

.header_logo_2
{
    display: block;
    height: 80px;
    width: 300px;
    margin-left: 80px;
}

.header_sample_img_sp
{
    display: none;
}

.footer_sample_img_sp
{
    display: none;
}

.footer_sp_img_group
{
    display: none;
}

.footer_sp_full_img_group
{
    display: none;
}

@media screen and (max-width: 1690px)
{
    .header-inner
    {
        width: 80%;
    }

}

@media screen and (max-width: 1600px)
{
    .header-inner
    {
        width: 70%;
    }
    .header_logo_2
    {
        margin-left: 0px;
    }

    #navi
    {
        margin-right: 20px;
    }

}
@media screen and (max-width: 1446px)
{
    .header-inner
    {
        width: 80%;
    }

    .mainvisual_img_pc
    {
        width: 90%;
        height: auto;
        object-fit: cover;
    }

    .header_logo_2
    {
        margin-left: 20px;
    }
}

@media screen and (max-width: 1300px)
{
    .header-inner
    {
        /* justify-content: space-between; */
        width: 95%;
    }

    #navi
    {
        margin-right: 0px;
    }

}

@media screen and (max-width: 600px)
{
    .mainvisual_slick_group_pc
    {
        display: none;
    }
    .mainvisual_img_pc
    {
        display: none;
    }

    .mainvisual_img_sp
    {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: fill;
    }

    .header_logo_2
    {
        display: none;
    }

    .header_sample_img_sp
    {
        display: block;
        height: 70px;
        width: 100%;   
    }

    .footer_sample_img_sp
    {
        display: block;
        /* height: 80px; */
        width: 100%;
        object-fit: fill;
    }

    .footer_sp_img_group {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;        
    }
    .footer_sp_img_group a {
        display: block;
        width: 50%; /* 2列にするために幅を50%に設定 */
        margin: 0; /* 余白をなくす */
    }
    .footer_sp_img_group img {
        display: block;
        width: 50%; /* 画像をリンクの幅に合わせる */
    }
    .footer_sp_img_group a img {
        display: block;
        width: 100%; /* 画像をリンクの幅に合わせる */
    }
    .footer_sp_full_img_group {
        display: block; /* ブロック要素にする */
        width: 100%; /* 幅を100%に設定 */
        margin: 0; /* 余白をなくす */
    }
}

.search_box
{
    width: 95%;
    margin: auto;
    padding: 10px;
    color: #666666;
    border: 1.7px solid #192f60;
    background-color: #a4a8d4;
    box-shadow: -2px 5px 5px #e8d3c7;
    border-radius: 2px;
    display: inline-block;
}

.concern_page_top_img_pc_disnone
{
    margin-top: 10px;
    margin: 0 auto;
    width: 70%;
}

@media screen and (max-width: 768px)
{

    .sns-share-disnon-pc
    {
        display: none;
    }

    .concern_page_top_img_pc_disnone
    {
        display: none;
    }

}

@media screen and (min-width: 768px)
{

    .search_box
    {
        margin: 0;
        width: 45%;
    }

    .sns-share-disnon
    {
        display: none;
    }

    .concern_page_top_img_sp_disnone
    {
        display: none;
    }

    .pc_disnon
    {
        display: none;
    }
}


@media screen and (max-width: 1040px)
{
    main
    {
        margin-top: 80px;
    }
    .site-header
    {
        position: fixed;    
        width: 100%;
        z-index: 10;
        height: 90px;
    }

    .header-inner
    {
        /* justify-content: center; */
        display: block;
        padding: 0;
        margin: 0;
    }

    .header-nav-item
    {
        display: none;
    }

    .menu_btn
    {
      display: block;
      /* ボタンの配置位置  */
      position: fixed;
      /* top: 25px; */
      top: 45px;
      right: 16px;
      /* ボタンの大きさ  */
      width: 48px;
      height: 48px;
      /* 最前面に */
      z-index: 10;
      background-color: #daa1c4;
    }

    .menu
    {
        /* メニューの位置マイナス指定で画面外に */
        position: fixed;
        right: -70%;
        width: 70%;
        height: 100vh;
        margin-left: auto;
        /* メニューを縦に */
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        color: #efefef;
        /* background-color: rgba(167, 148, 58, 0.85); */
        /* background-color: #325A8C; */
        background-color: #a4a8d4;
        transition: .3s;
        margin-top: 120px;
    }

    .menu-list
    {
        /* メニューテキスト位置をリスト内中心に */
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 10%;
        /* border-bottom: 1px solid #C8BEA0; */
        border-bottom: 1.5px solid #325A8C;
    }

}

@media screen and (max-width: 768px)
{

    main
    {
        margin-top: 80px;
    }

    .menu_btn
    {
        top: 35px;
    }

    .menu
    {
        margin-top: 93px;
    }
}

.pc_menmu_list
{
    display: table-cell;
    vertical-align: top;
    padding: 15px 20px 15px;
    text-align: center;
}

@media screen and (min-width: 769px){
    #gnav ul {
        /* border-left: 1px solid #C8BEA0;
        border-right: 1px solid #C8BEA0; */
        border-left: 1px solid #325A8C;
        border-right: 1px solid #325A8C;
    }
}

#gnav ul > li + li {
    /* border-left: 2px solid #C8BEA0; */
    /* border-left: 2px solid #325A8C; */
}

#gnav ul li a
{
    font-size: 1.7rem;
    font-weight: bold;
    font-family: serif;
    color: #000;
    text-decoration: none;
    align-items: center;
    padding: 10px 20px 10px;
}

@media screen and (max-width: 1036px) {

    #navi
    {
        display: none;
    }
    #gnav
    {
        display: block;
    }
}

@media screen and (max-width: 1000px) {
    #gnav ul li a{
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 768px) {

    #navi
    {
        display: none;
    }

    #gnav
    {
        display: block;
    }

    #gnav ul li a{
        font-size: 1.5rem;
    }
}

main {
    flex: 1;
}

/* 汎用 */

/* 三点リーダーで省略するためのクラス */
.ellipsis
{
    width: 80%; /* 省略せずに表示するサイズを指定 */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1.5rem;
}

.title_h3
{
    margin: 15px 5px 15px 5px;
    font-size: 1.9rem;
}

.bold_serif
{
    font-weight: bold;
    font-family: serif;
}


.m_right_20px{
    margin-right: 20px;
}

.flex
{
    display: flex;
    flex-wrap: wrap;
}

.flex_box_center
{

    justify-content: center;
}

.flex_box_left
{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.flex_box_right
{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.flex_around
{
    display: flex;
    justify-content:space-around;
}

.flex_between
{
    display: flex;
    justify-content:space-between;
}

.flex_box_between
{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.flex_box_end
{
    display: flex;
    justify-content: end;
    flex-wrap: wrap;
}

.flex_box_column{
    display: flex;
    flex-direction:column;
}

.flip-horizontal
{
    display: inline-block;
    transform: scale(-1, 1);
}

.under
{
    border-bottom: solid 1px #87CEFA;
}

.btn-def,
a.btn-def,
button.btn-def 
{
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  border-radius: 0.5rem;
}

.smooth_scroll_group
{
    position: fixed;
    right: 15px;
    bottom: 10px;
    opacity: 0.5;
    z-index: 100;
}

.smooth_scroll_ul{
    padding-left: 0;
    list-style: none;
}

.smooth_scroll_group button {
    margin: 0 0 5px 0;
    font-size: 25px;
    color: #fff;
    background-color: #f6ae54;
    border: none;
    padding: 0 7px 0 7px;
    border-radius: 6px;
}


/*  */

/* home */
.discription_box{
    margin-top: 50px;
}

.induction_area{
    display: flex;
}

.standby_diviner_btn{
    width: 30%;
    border: 1px solid #C8C9CA;
    border-radius: 10px;
    margin-left: 10px;
    padding: 10px 20px 10px;
}

.all_diviner_btn{
    width: 30%;
    border: 1px solid #C8C9CA;
    border-radius: 10px;
    margin-left: 10px;
    padding: 10px 20px 10px;
}

.induction_area li{
    text-decoration: none;
    align-items: center;
}

.standby_diviner_btn a{
    color: #3d3d3d;
    font-size: 1.8em;
    text-decoration: none;
}

.all_diviner_btn a{
    color: #3d3d3d;
    font-size: 1.8em;
    text-decoration: none;
}

/* 占い師一覧 */
/* .search_box
{
    width: 95%;
    margin: auto;
    padding: 10px;
    color: #666666;
    border: 1.7px solid #192f60;
    background-color: #a4a8d4;
    box-shadow: -2px 5px 5px #e8d3c7;
    border-radius: 2px;
} */

#howto_box
{
    display: none;
}

#howto_b_box
{
    display: none;
}

#howto_box_sp
{
    display: block;
    width: 80%;
    margin: 0 auto;
}

#howto_box_b_sp
{
    display: block;
    width: 70%;
    margin: 0 auto;
}

.howto_b
{
    width: 100%;
    display: block;
}

@media screen and (min-width: 768px) {

    #howto_box
    {
        display: flex;
        align-items: center;
        justify-content: space-around;
        width: 45%;
        height: 191px;
        /* background-color: #fccccc; */
        /* background-color: #FDBEBE; */
        /* background-color: #FFFCB2; */
        margin-left: 30px;
        /* margin-bottom: 150px; */
        /* object-fit: cover; */
    }
    
    #howto_box .howto_title
    {
        font-size: 3.5rem;
    }
    
    #howto_box img
    {
        text-align: center;
        width: 100%;
    }

    #howto_b_box
    {
        display: block;
        width: 45%;
    }

    #howto_b_box img
    {
        width: 60%;
    }
    
    #startguide
    {
        display: none;
    }

    .howto_a
    {
        text-decoration: none;
        color: #000;
        /* width: 100%; */
        display: block;
    }
    #howto_box_sp
    {
        display: none;
    }
    #howto_box_b_sp
    {
        display: none;
    }

}

a.btn-flat
{
    overflow: hidden;
    padding: 1.5rem 6rem;
    color: #fff;
    border-radius: 0;
    background: #67b5b7;
    width: 70%;
    margin: 0 auto;
    display: block;
}

a.btn-flat span
{
    color: #fff;
    position: relative;
}

a.btn-flat .fa-chevron-right
{
    position: absolute;
    right: 0;
    margin-right: 10px;
}

a.btn-flat:hover
{
    color: #333;
    background-color: #00a3a7;
}

@media screen and (min-width: 768px)
{

    .btn-def
    {
        display: none;
        /* margin: 0;
        margin-left: 30px;
        width: 35%; */
    }

}

@media screen and (max-width: 440px) 
{
    a.btn-flat
    {
        padding: 10px;

    }

    .btn-def,
    a.btn-def,
    button.btn-def
    {
        font-size: 1.3rem;
        width: 80%;
    }
}

.conditions-btn
{
    color: #000;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    width: 60%;
    margin: 0 auto;
    padding-top: 15px;
    padding-bottom: 15px;
}

.conditions-btn:hover
{
    background-color: #68a9cf;
}

.conditions-text
{
    font-size: 1.7rem;
}

.btn--color-1
{
    background-color: #b2cbe4;
}

.btn--radius-1
{
    border-radius: 100vh;
}

.conditions-box
{
    display: none;
    width: 70%;
    margin: 0 auto;
    padding:2em;
    border:solid 2px #96acaa;
    background-color: #fff;
}

@media screen and (max-width: 600px) 
{
    .header-inner
    {
        height: 60px;
        width: 100%;
    }

    .conditions-btn
    {
        width: 90%;
        font-size: 1.6rem;
    }

    .conditions-box
    {
        width: 90%;
    }
}

.search-title
{
    font-size: 1.2rem;
    font-weight: bold;
}

.conditions-box label
{
    font-size: 1.1rem;
    padding-left: 3px;
    padding-right: 10px;
}

.select_box
{
    font-size: 1.2rem;
}

input[name="name"]
{
    width: 50%;
    height: 40px;
}

input[name="free-word"]
{
    margin-left: 20px;
    width: 50%;
}

.search-btn
{
    color: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
    width: 60%;
    font-size: 1.5rem;
    border-radius: 10px;
    
}

.tab-wrap {
    display: flex;
    flex-wrap: wrap;
    margin:20px 0;
  }
  .tab-wrap:after {
    content: '';
    width: 100%;
    height: 3px;
    background: #6c2463;
    display: block;
    order: -1;
  }

.tab-label 
{
    color: White;
    background: LightGray;
    font-size: 1.6rem;
    font-weight: bold;
    white-space: nowrap;
    text-align: center;
    padding: 10px .5em;
    order: -1;
    position: relative;
    z-index: 1;
    cursor: pointer;
    border-radius: 5px 5px 0 0;
    flex: 1;
}

  .tab-label:not(:last-of-type) {
    margin-right: 5px;
  }

 .all_diviner_a
 {
    color: #fff;
    text-decoration: none;
 }

  .tab-content {
    width: 100%;
    height: 0;
    overflow: hidden;
    opacity: 0;
  }
 
  .tab-switch:checked+.tab-label {
    /* background: #325A8C; */
    background: #A4A8D4;
  }
 
  .tab-switch:checked+.tab-label+.tab-content {
    height: auto;
    overflow: auto;
    padding: 15px;
    opacity: 1;
    transition: .5s opacity;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  }

.tab-switch
{
    display: none;
}

@media (width <= 480px)
{
    .tab-label 
    {
        font-size: 1.2rem;
    }

    .a_price
    {
        font-size: 1.3rem;
    }
}


.profile_box{
    width: 90%;
    border: 1px solid #C8C9CA;
    border-radius: 10px;
    padding: 10px;
}

.profile_box2{
    width: 95%;
    margin: auto;
    padding: 10px;
    color: #666666; /*文字色*/
    border: 1.7px solid #996633; /*線の太さ・色*/
    background-color: #fff; /*背景色*/
    box-shadow: -2px 5px 5px #e8d3c7; /*影*/
    border-radius: 20px; /*角の丸み*/
}

.profile_box_black
{
    position:relative;
    width: 100%;
    margin: auto;
    padding: 10px;
    color: #666666;
    border: 1.7px solid #696969;
    background-color: #fff;
    box-shadow: -2px 5px 5px #d3d3d3;
    border-radius: 20px;
}

.profile_box_black .card-link
{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.profile_item1
{
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.flower1_style
{
    margin-top: 30px;
}

.profile_img
{
    border-radius: 50%;
    overflow: hidden;
    width: 120px;
    height: 120px;
    margin-left: 15px;
    margin: 0 auto;
}

.profile_img img{
    width: 100%;
    height: 100%;
}

.profile_box_left
{
    margin-left: 20px;
}

.profile_attribute
{
    font-size: 1.4rem;
}

.btn_div{
    text-align: left;
    margin-left: 5px;
}

.profile_ditail_btn
{
    color: #0d091a;
    padding: 3px 3px 3px 3px;
    font-weight: bold;
    font-family: serif;
    font-size: 1.5rem;
    background-color: #a38638;
    text-decoration: none;
    /* background: -moz-linear-gradient(top, #a38638, #FFF);
    background: -webkit-linear-gradient(top, #a38638, #FFF);
    background: linear-gradient(to bottom, #a38638, #FFF); */
    border: 1px solid #f1e1b4;
    width: 100%;
    border-radius: 4px;
    /* box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); */
    box-sizing: border-box;
}

@media screen and (min-width: 800px)
{
    .flex
    {
        justify-content: space-around;
    }

    .profile_box_black
    {
        width: 46%;
        margin: 10px;
    }
}

@media screen and (min-width: 1200px)
{
    .flex
    {
        justify-content: center;
    }

    .profile_box_black
    {
        width: 30%;
        margin: 10px;
    }

    .content_width_pc
    {
        width: 1150px;
        margin: 0 auto;
    }

}

.telling
{
    font-size: 1.3rem;
    color: #000;
}

.pay_icon
{
    margin-left: 1px;
}

.b_pay_icon
{
    margin-left: 10px;
}

/* img { */
    /* width:  180px;       ※縦横を同値に */
    /* height: 180px;       ※縦横を同値に */


    /* border-radius: 50%;  角丸半径を50%にする(=円形にする) */
    /* background-position: left top;  横長画像の左上を基準に表示 */
    /* display: inline-block;          複数の画像を横に並べたい場合 */
/* } */
.relative
{
    position: relative;
    /* width: 50%; */
    height: auto;
}

.smartphone_pay_background_img
{
    display: none;
    position: absolute;
    right: 30px;
    bottom: 7px;
    width: 75px;
    height: 75px;
}

.supplement_box
{
    background-color: #f0f8ff;
    padding: 1em 0 1em 5px;

}

.diviner_name
{
    margin: 10px 10px 0 10px;
    color: #3d3d3d;
    font-size: 2.0rem;
    font-weight: bold;
    font-family: serif;
}

.diviner_name_a
{
    margin: 10px 10px 0 10px;
    color: #3d3d3d;
    font-size: 1.7rem;
    font-weight: bold;
    font-family: serif;
}

.kana
{
    font-size: 1.4rem;
}

.status_area
{
    width: 100%;
    text-align: center;
}

.status_flex_b
{
    display: flex;
    justify-content: space-between;
}

.status_icon_active
{
    color: #fff;
    /* font-size: 1.4em; */
    /* background: #008000; */
    width: 70%;
    /* height: 50%; */
    /* display: inline-block; */
    border-radius: 10px;
    text-align: center;
    vertical-align: middle;
    line-height: 50px;
    margin: 10px;
    letter-spacing: 0.2em;
}

.status_icon_inactive
{
    color: #fff;
    /* font-size: 1.4em; */
    background: #7d7d7d;
    width: 70%;
    /* height: 50%; */
    /* display: inline-block; */
    border-radius: 10px;
    text-align: center;
    vertical-align: middle;
    line-height: 50px;
    margin: 10px;
    letter-spacing: 0.2em;
}

.tel_btn
{
    font-weight: bold;
    text-align: center;
    border: solid 1px #000;
    border-radius: 5px;
    padding: 13px 5px 13px 5px;
}

.tel_btn:hover {
    text-decoration: none;
    color: #545454;
    cursor: pointer;
}

.tel_btn:hover:after {
    width: 100%;
    left: 0;
}

.profile_detail_box {
    /* margin: 2em auto; */
    padding: 1em;
    width: 60%;
    height: 150px;
    color: #666666; /*文字色*/
    border: 1px solid #996633; /*線の太さ・色*/
    background-color: #fff; /*背景色*/
    box-shadow: -2px 5px 5px #e8d3c7; /*影*/
    border-radius: 20px; /*角の丸み*/
    margin-left: 20px;
}

.profile_detail_box2 {
    /* margin: 2em auto; */
    padding: 1em;
    width: 100%;
    height: 150px;
    color: #666666; /*文字色*/
    border: 1px solid #C8C9CA; /*線の太さ・色*/
    background-color: #fff; /*背景色*/
    box-shadow: -2px 5px 5px #e8d3c7; /*影*/
    border-radius: 3px; /*角の丸み*/
}


.profile_detail_title{
    font-size: 1.2rem;
    font-weight: bold;
    border-bottom: 1px solid #666666;
}

.tellings
{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden; 
}

.profile_detail
{
    color: #000;
    font-size: 1.2rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden; 
    padding: 3px;
    background-color: #e6e6fa;
    border-radius: 5px;
}

.kind{
    font-size: 1.4rem;
    /* font-weight: bold; */
    color: #3d3d3d;
    border-bottom: 0.5px dotted #666666;
    margin-top: 15px;
    margin-left: 10px;
    padding-bottom: 5px;
}

.kind span
{
    font-weight: bold;
}

.worries{
    font-size: 1.4rem;
    /* font-weight: bold; */
    color: #3d3d3d;
    border-bottom: 1px solid #000;
    margin-top: 7px;
    margin-left: 10px;
    margin-bottom: 15px;
    padding-bottom: 5px;
}

.worries span
{
    font-weight: bold;
}

.price{
    font-size: 1.5rem;
    color: #3d3d3d;
    font-weight: bold;
    margin: auto;
}

.tel_number{
    font-size: 1.8rem;
    letter-spacing: 3px;
    color: #3d3d3d;
    font-weight: bold;
    font-family: 'Kaisei Decol', serif;
}

.info_box
{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: end;
}

.info_box_child
{
    width: 50%; 
}

.profile_title
{
    font-size: 1.7rem;
    font-weight: bold;
    font-family: 'Merriweather', serif;
    margin-top: 10px;
    margin-bottom: 10px;
}

.search_flex
{
    display: flex;
    justify-content:center;    
}

.payment_box
{
    display: flex;
    justify-content:right;
}

.b_payment_box
{
    display: flex;
    justify-content:center;
    width: 100%;
    padding-top: 15px;
    background-color: #f0f0f0;
    border-radius: 4px;
}

.a_price
{
    font-size: 1.5rem;
    letter-spacing: 1px;
    /* margin-top: 10px; */
}

.b_price
{
    font-size: 1.7rem;
    letter-spacing: 1px;
}

.b_price_explanation
{
    color: #008db7;
    font-size: 1.2rem;
}


.payment_price
{
    width: 15%;
}

.pay_info1
{
    color: #fff;
    background: #a02468;
    margin-top: 5px;
    margin-left: 15px;
}

.pay_info2{
    color: #fff;
    background: #91a8e9;
    margin-left: 5px;
}

@media (width <= 598px)
{
    .profile_title
    {
        font-size: 1.3rem;
        padding-top: 10px;
        /* margin-top: 25px; */
    }

    .a_price
    {
        font-size: 1.1rem;
    }
}

.pagination
{
    justify-content: center;
}

/* プロフィール詳細 */
.profile_section
{
    padding: 1em;
    width: 100%;
    color: #666666; /*文字色*/
    border: 1px solid #C8C9CA; /*線の太さ・色*/
    box-shadow: 0px 5px 5px rgba(0,0,0,0.1);/*ボックス影*/    
    border-radius: 3px; /*角の丸み*/    
    background-size: cover;
    background-repeat: no-repeat;
}

#profile_background-image_style
{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.profile_text-box
{
    background-color: #fff;
    border: solid 1px;
    border-radius: 3px;
    font-size: 1.5rem;
}

.profile_text
{

}

.section_box_first
{
    background-color: #fff; /* ボックス背景色 */
    padding: 5em 2em 2em; /* ボックス内側余白 */
    position:relative; /*配置(ここを基準に)*/
    box-shadow: 0px 1px 5px rgba(0,0,0,0.1);/*ボックス影*/    
}

.section_box
{
    margin: 2em auto; /* ボックスの余白 */
    background-color: #fff; /* ボックス背景色 */
    padding: 5em 2em 2em; /* ボックス内側余白 */
    position:relative; /*配置(ここを基準に)*/
    box-shadow: 0px 1px 5px rgba(0,0,0,0.1);/*ボックス影*/
}

.section-box-title
{
    font-size: 1.7rem;/* タイトル文字の大きさ */
    font-weight: bold;
    letter-spacing: 0.7px;
    color: #000; /* タイトル文字色 */
    padding:8px;/*タイトル余白*/
    padding-left: 20px;
    position:absolute;	/* 配置(ここを動かす) */
    top:0;	/*上から(0px)に配置 */
    left:0; /*左から(0px)に配置 */
    width:100%;/*横幅最大幅 */
    border-radius: 4px 4px 0 0;
}

/* .section_box
{
    padding: 1em;
    width: 100%;
    height: 100%;
    color: #666666; /*文字色*/
    /* border: 1px solid #C8C9CA; 線の太さ・色 */
    /* background-color: #fff; 背景色 */
    /* box-shadow: -2px 5px 5px #e8d3c7; 影 */
    /* border-radius: 10px; 角の丸み    */
    /* padding: 10px; */
/* } */

.name
{
    font-size: 2.5rem;
    font-weight: bold;
    color: #000;
    /* font-family: 'Hachi Maru Pop', cursive; */
    /* font-family: 'Kaisei Decol', serif; */
    /* font-family: 'Kosugi Maru', sans-serif; */
    font-family: 'Merriweather', serif;
    /* font-family: 'Yusei Magic', sans-serif; */
}

.catch_copy
{
    font-size: 2.0rem;
    font-weight: bold;
    color: #393e4f;
    padding-left: 30px;
    /* font-family: 'Hachi Maru Pop', cursive; */
    /* font-family: 'Kaisei Decol', serif; */
    /* font-family: 'Kosugi Maru', sans-serif; */
    font-family: 'Merriweather', serif;
    /* font-family: 'Yusei Magic', sans-serif; */
}

.section_title
{
    color: #000;
    font-weight: bold;
    margin-top: 5px;
    margin-left: 5px;
}

a.sms-btn
{
	/* display: block; */
	text-align: center;
	/* vertical-align: middle; */
	text-decoration: none;
	/* width: 20%; */
    margin-left: 0px;
    padding: 3px;
	/* padding: 1rem 1rem; */
    font-size: 1.4rem;
	/* font-weight: bold; */
	border: 1px solid #3d3d3d;
	color: #3d3d3d;
    text-decoration: none;
    background-color: #a2d7dd;
    border-radius: 4px;
	transition: 0.5s;
}

a.sms-btn:hover 
{
	background: #84a2d4;
}

.back-btn
{
	/* display: block; */
	text-align: center;
	/* vertical-align: middle; */
	text-decoration: none;
	/* width: 20%; */
    margin-left: 0px;
    padding: 7px;
	/* padding: 1rem 1rem; */
    font-size: 1.4rem;
	/* font-weight: bold; */
	border: 1px solid #3d3d3d;
	color: #3d3d3d;
    text-decoration: none;
    background-color: #d4d9df;
    border-radius: 4px;
	transition: 0.5s;
}

.catch_phrase
{
    font-size: 1.7rem;
}


.profile_flex_box
{
    display: flex;
    justify-content: center;
}

.profile_img_box
{
    margin: 0 auto;    
}

a.btn
{
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  /* color: #212529; */
  color: #594e52;
  border-radius: 0.5rem;
}

a.btn-a
{
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.0;
  position: relative;
  display: block;
  padding: 0.3rem 2rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  /* color: #212529; */
  color: #594e52;
  border-radius: 0.5rem;
}

.btn--orange-font
{
    font-size: 1.7rem;
}

.btn--gray-font
{
    font-size: 1.7rem;
}

a.btn--orange.btn--border-solid
{
    background-color: #fff352;
    border: 2px solid #e9bc00;
}

#btn_animation .btn--orange
{
    display: block;
    position: relative;
      overflow: hidden;
      animation: btn_animation 1.5s infinite;
      box-shadow: 0 3px 0 rgb(0, 0, 0, 0.3);
}

@keyframes btn_animation {
    0% {
        box-shadow: 0 3px 0 rgb(0, 0, 0, 0.3);
        top: 0px;
    }
    10% {
        box-shadow: 0 0 0 rgb(0, 0, 0, 0.3);
        top: 3px;
    }
    20% {
        box-shadow: 0 3px 0 rgb(0, 0, 0, 0.3);
        top: 0px;
    }
    30% {
        box-shadow: 0 0 0 rgb(0, 0, 0, 0.3);
        top: 3px;
    }
    40% {
        box-shadow: 0 3px 0 rgb(0, 0, 0, 0.3);
        top: 0px;
    }
}


a.btn--gray.btn--border-solid
{
    background-color: #d4d9df;
    border: 2px solid #504946;
}

.status_icon_active
{
    color: #fff;
    font-size: 1.6em;
    background: #008000;
    max-width: 500px;
    height: 50%;
    display: inline-block;
    border-radius: 10px;
    text-align: center;
    vertical-align: middle;
    line-height: 50px;
    margin: 0 auto;
    margin-top: 30px;
    letter-spacing: 0.2em;
}

.status_icon_inactive
{
    color: #fff;
    font-size: 1.6em;
    background: #7d7d7d;
    max-width: 500px;
    height: 50%;
    display: inline-block;
    border-radius: 10px;
    text-align: center;
    vertical-align: middle;
    line-height: 50px;
    margin: 0 auto;
    margin-top: 30px;
    letter-spacing: 0.2em;
}

.min_price
{
    margin-left: 20px;
}

.tel_button_b
{
    display: inline-block;
    outline: none;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    border-radius: 500px;
    transition-property: background-color,border-color,color,box-shadow,filter;
    transition-duration: .3s;
    border: 1px solid transparent;
    letter-spacing: 2px;
    min-width: 160px;
    text-transform: uppercase;
    white-space: normal;
    font-weight: 700;
    text-align: center;
    padding: 16px 14px 18px;
    color: #616467;
    box-shadow: inset 0 0 0 2px #616467;
    background-color: transparent;
    height: 48px;
    text-decoration: none;
}

.tel_button_b:hover
{
    color: #fff;
    background-color: #616467;
}

.price-table
{
    width: 100%;
    border-collapse: collapse;
}
  
/* .price-table tr
{
    background: #3d3d3d;
} */

.price-table tr:nth-child(1) td
{
    background: #3d3d3d;
}

.price-table tr:nth-child(2) td
{
    background: #d6c6af;
}
/* .price-table tr *:nth-child(2)
{
    background: #3d3d3d;
} */
/* .price-table tr *:nth-child(3)
{
    background: #d6c6af;
} */
/* .price-table tr *:nth-child(4)
{
    background: #d6c6af;
} */

.td-title
{
    color:#fff;
    border:solid 1px #fff;
    text-align: center;
    padding: 10px 0;
    width:1%;
    /* background: #3d3d3d; */
}

.td-body
{
    color: #3d3d3d;
    border:solid 1px #fff;
    text-align: center;
    padding-left: 10px;
    width:1%;
}

.price-table td
{
    font-size: 1.6rem;
}

.subscription_style
{
    font-size: 1.6rem;
}

.line-id-style
{
    font-size: 1.8rem;
}

/* プロフィール詳細 SP */
.sp_profile_section
{
    display: none;
    padding: 1em;
    width: 100%;
    color: #666666; /*文字色*/
    border: 1px solid #C8C9CA; /*線の太さ・色*/
    background-color: #fff; /*背景色*/
    box-shadow: -2px 5px 5px #e8d3c7; /*影*/
    border-radius: 3px; /*角の丸み*/    
}


.notice
{
    font-size: 1.4em;    
}

.sentence
{
    font-size: 1.6em;
}

@media screen and (max-width: 1230px) 
{
    .col-md-3
    {
        width: 33.33333333%;
    }
}

@media screen and (max-width: 920px) 
{
    .col-md-2
    {
        width: 33.33333333%;
    }

    .profile_img
    {
        border-radius: 50%;
        overflow: hidden;
        width: 120px;
        height: 120px;
    }

    .profile_img img{
        width: 100%;
        height: 100%;
    }

    .payment_price
    {
        width: 40%;
    }

}

@media screen and (min-width: 520px) 
{
    .catch_copy
    {
        text-align: center;
    }

    .status_flex_b
    {
        justify-content: center;
    }

    .kazari-left
    {
        margin-right: 30px;
    }

    .kazari-right
    {
        margin-left: 30px;
    }
}

@media screen and (max-width: 520px) 
{
    .col-md-2
    {
        width: 70%;
    }

    .col-md-3
    {
        width: 100%;
    }

    .profile_img{
        border-radius: 50%;
        overflow: hidden;
        width: 100px;
        height: 100px;
        margin-top: 17px;
    }
    
    .profile_img img{
        width: 100%;
        height: 100%;
    }

    .status_icon_inactive
    {
        font-size: 1.3em;
    }

    .status_icon_active
    {
        font-size: 1.3em;
    }

    .price-table td
    {
        font-size: 1.3rem;
    }
    
    .name
    {
        font-size: 1.8rem;
    }

    .catch_phrase
    {
        font-size: 1.2rem;
    }

    .profile_ditail_btn
    {
        font-size: 1.2rem;
        /* width: 60%; */
    }

    .catch_copy
    {
        font-size: 1.8rem;
    }

}

@media screen and (min-width: 1025px) 
{

    .profile_attribute
    {
        font-size: 1.7rem;
    }
    .sentence
    {
        font-size: 1.7rem;
    }

    .kazari-left
    {
        margin-right: 30px;
    }
    
    .kazari-left img
    {
        width: 150px;
    }

    .kazari-right
    {
        margin-right: 30px;        
    }

    .kazari-right img
    {
        width: 150px;
    }

    .payment_box div
    {
        padding-left: 10px;
    }

    .payment_box div img
    {
        width: 37px;
        height: 37px;
    }
}

.msg_box
{
    margin: 10px;
}


.profile_info
{
    margin-left: 50px;
}

.blog-box
{
    position: relative;
    margin: 5em 0 2em 0;
    padding: 25px 10px 7px;
    /* border: solid 2px #1e50a2; */
    border-radius: 10px;
    filter: saturate(90%);
}



.share_box
{
    display: flex;
    justify-content: space-around;
    width: 100%;
}

.sns-share-links_2
{
    display: flex;
    flex-wrap: wrap;

}

.sns-share-links_2 div
{
    width: 50%;
}

@media screen and (min-width: 1000px)
{
    .share_box
    {
        width: 70%;
    }
}

@media screen and (min-width: 1200px)
{
    .share_box
    {
        width: 50%;
        margin: 0 auto;
        justify-content:space-between;
    }
}


.blog-box .blog-tag
{
    position: absolute;
    display: inline-block;
    top: -23px;
    left: -1px;
    padding: 0 9px;
    height: 25px;
    line-height: 25px;
    font-size: 17px;
    background: #5a4498;
    color: #fff;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
}

.flow-box
{
    margin: 0 auto;
}

dd
{
    font-size: 1.2rem;
    margin-left: 0;
}
  
.flow 
{
    list-style: none;
    border: 3px solid rgb(107,144,219);
    background-color: #fff;
}

.flow > li
{
    padding: 30px 20px 30px 10px;
}

.flow > li:not(:last-child)
{
    border-bottom: 3px solid rgb(107,144,219);
    position: relative;
}

.flow > li:not(:last-child)::before,
.flow > li:not(:last-child)::after {
    content: "";
    border: solid transparent;
    position: absolute;
    top: 100%;
    left: 15%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.flow > li:not(:last-child)::before {
    border-width: 22px;
    border-top-color: rgb(107,144,219);
}

.flow > li:not(:last-child)::after {
    border-width: 18px;
    border-top-color: #fff;
}

.flow > li dl 
{
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-flow: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.flow > li dl dt
{
    font-size: 15px;
    font-weight: 600;
    color: rgb(107,144,219);
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    margin-right: 1vw;
    text-align: center;
}

.flow > li dl dt .icon
{
    font-size: 12px;
    color: #fff;
    background: rgb(107,144,219);
    background: -moz-linear-gradient(left, rgba(107,144,219,1) 0%, rgba(102,213,233,1) 100%);
    background: -webkit-linear-gradient(left, rgba(107,144,219,1) 0%,rgba(102,213,233,1) 100%);
    background: linear-gradient(to right, rgba(107,144,219,1) 0%,rgba(102,213,233,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6b90db', endColorstr='#66d5e9',GradientType=1 );
    padding: 5px 10px;

    margin-bottom: 15px;
    /* display: block; */
    border-radius: 20px;
}

#flow_1
{
    position: relative;
    width: 100%;
    height: 1050px;
    min-height: 100vh;
    max-width: 472px;
    background-image: url(../img/flow_1.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.flow_img
{
    width: 100%;
}

/* .flow_img_sp
{
    display: none;    
} */

.flow_img_pc
{
    display: none;
    width: 100%;
    height: auto;
}

@media screen and (min-width: 1025px) 
{
    .flow_img_pc
    {
        display: block;
        /* 暫定以下のスタイルを適用している */
        margin: 0 auto;
        width: 95%;
    }

    .flow_img_sp
    {
        display: none;
    }
}


.boshu_1_banner_ul
{
    padding: 0;
    list-style: none;
    width: 100%;
    margin: 0 auto;
}

.boshu_1_banner_li
{
    width: 30%;
}

.boshu_1_banner_li img
{
    width: 100%;
    
}

.boshu_1_banner
{
    display: none;
}

.concern_area
{
    display: none;
}

.bank_anonymous_pc
{
    width: 100%;
    margin: 0 auto;
}

.bank_anonymous_pc img
{
    width: 100%;
}

.ranking_reason_pc
{
    width: 100%;
    margin: 0 auto;
}

.ranking_reason_pc img
{
    width: 100%;
}

.box3
{
    padding: 0.5em 1em;
    margin: 0 auto;
    color: #2c2c2f;
    background: #cde4ff;/*背景色*/
    width: 90%;
    border-radius: 4px;
}

.box3 p
{
    margin: 0; 
    padding: 0;
}


.sns-share-links
{
    display: flex;
    justify-content: space-around;
}

/*めくれたテープ風*/
.box6 {
    margin: 2em auto;
    padding:2em;/*内側余白*/
    background-color:#e5f2ff;/*背景色*/
    position:relative;
    width: 90%;
    }
    
    .box6:after{
    position: absolute;
    content: '';
    right: 0px;
    top: 0px;
    border-width: 0 15px 15px 0;
    border-style: solid;
    border-color: #ccc #fff  #ccc;
    box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15);
    }

.synergy_2
{
    width: 35%;
}

.point-p
{
    font-size: 1.3rem;
}

.terms_img_sp
{
    display: block;
    margin: 0 auto;
}

@media screen and (min-width: 769px)
{
    .flow_img
    {
        width: 60%;
    }

    .synergy_1
    {
        width: 100%;
    }
}

@media screen and (min-width: 1200px)
{

    .flow_img
    {
        width: 50%;
        margin: 0 auto;
    }

    .synergy_1
    {
        width: 50%;
        margin: 0 auto;
    }

    .synergy_2
    {
        width: 35%;
        margin: 0 auto;
    }
}



@media screen and (max-width: 769px)
{
    .smartphone_pay_background_img
    {
        display: block;
    }
    
    .synergy_1
    {
        display: block;
        width: 100%;
        /* height: 300px; */
        object-fit: cover;
        zoom: 2.0;
    }

    .synergy_2
    {
        display: block;
        width: 35%;
        /* height: 300px; */
        object-fit: cover;
        zoom: 2.0;
    }

    .boshu_1_banner
    {
        display: block;
    }

    .concern_area
    {
        display: block;
    }

    .costomer_voice_pc
    {
        display: none;
    }
}

@media screen and (max-width: 1036px) {

    .tokutei_img_sp_none
    {
        display: none;
    }

}

.sp_term
{
    display: block;
}

.terms_p
{
    font-size: 1.5rem;
}

.terms_box
{
    width: 95%;
    margin: auto;
    padding: 10px;
    color: #000;
    border: 1.7px solid #192f60;
    background-color: #eaf4ff;
    box-shadow: -2px 5px 5px #e8d3c7;
    border-radius: 2px;
}

.character_flex
{
    display: flex;
    justify-content: center;
}

footer
{
    width: 100%;
    height: 50px;
    background-color: #3d3d3d;
    color: #C8BEA0;
    text-align: center;
}

.review_box
{
    margin: 1em auto 4em auto;
    padding: 1em;
    width: 90%;
    border: 2px solid #626063; /* 枠線 */
    border-radius: 10px;
    background-color: #fff; /* 背景色 */
    box-shadow: 1px 1px 2px #ccc;    
}

.review_body
{
    width: 100%;
    padding: 3px;
    margin: 0 auto;
    font-size: 1.4rem;
}

.review_handlename
{
    font-size: 1.5rem;
    padding-top: 3px;
}

.review_handlename_sama
{
    font-size: 1.5rem;
    padding-top: 3px;
}

.review_img_block
{
    margin-left: 30px;
    /* text-align: right; */
}

.review_img
{
    width: 160px;
    height: 21px;
}

.review_msg
{
    font-size: 1.2rem;
}


@media screen and (max-width: 480px) {

    .review_box
    {
        width: 100%;
    }

    .review_img_block
    {
        margin-left: 5px;
    }

    .review_img
    {
        width: 116px;
        height: 22px;
    }

}

.blog-box-child
{
    margin: 1em auto 4em auto;
    padding: 1em;
    width: 90%;
    border: 1px solid #626063; /* 枠線 */
    background-color: #fff; /* 背景色 */
    box-shadow: 1px 1px 2px #ccc;    
}

.blog-title
{
    width: 90%;
    padding: 1rem;
    border-bottom: solid 1px #1e50a2;
    font-weight: bold;
}

.blog-content
{
    width: 90%;
    padding: 3px;
    margin: 10px;
    font-size: 1.4rem;
}

.test_2
{
    display: none;
    border: 1px solid #000;
    border-radius: 10px;
    width: 90%;
    margin: auto;
    height: auto;
}



@media screen and (min-width: 600px) 
{
    .terms_box
    {
        width: 76%;
    }

    .flow_img
    {
        width: 60%;
    }

    .tokutei_img
    {
        width: 50%;
    }
}

@media screen and (min-width: 1025px) 
{
    .settlement_kind
    {
        margin-left: 10px;
    }

    .settlement_kind img
    {
        width: 35px;
        height: 35px;
        margin-right: 10px  ;
    }

    .blog-content
    {
        font-size: 1.7rem;
    }

    .test_2
    {
        display: block;
    }

    .sp_term
    {
        display: none;
    }

    .pc_term
    {
        display: block;
    }

    .tokutei_img
    {
        width: 30%;
    }
}

.costomer_voice_sp
{
    margin-top: 15px;
    width: 100%;
}

.costomer_voice_pc
{
    margin-top: 15px;
    width: 100%;
    border-radius: 20px;
}

.choose_point_sp
{
    margin-top: 15px;
    width: 100%;
}

.choose_point_pc
{
    margin-top: 15px;
    width: 100%;
    border-radius: 20px;
}


.ranking_page_sp
{
    margin-top: 15px;
    width: 100%;
}

.review_area
{
    position:relative;
    width: 100%;
    margin: auto;
    padding: 10px;
    color: #666666;
    border: 1.3px solid #000;
    background-color: #fff;
    box-shadow: -2px 5px 5px #d3d3d3;
    border-radius: 15px;
}

.review_kazari_1_img
{
    display: block;
    margin: auto;
    width: 20%;
    height: 40px;
}

.review_box_black
{
    position:relative;
    width: 100%;
    margin: auto;
    padding: 10px;
    color: #666666;
    border: 1.7px solid #FED9F8;
    /* background-color: #FED9F8; */
    background-color: #ffe5f2;
    box-shadow: -2px 5px 5px #d3d3d3;
    border-radius: 10px;
}

.review_box_black .card-link
{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.review_img_circle
{
    border: 3px double #eca19e;
    border-radius: 50%;
}

.review_diviner_name
{
    margin-top: 37px;
    color: #3d3d3d;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: serif;
    width: 100%;
    text-align: center;
}

.review_box_left
{
    margin-left: 5px;
}

.review_detail
{
    color: #000;
    font-size: 1.3rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
    overflow: hidden; 
    padding: 3px;
    height: 145px;
    /* height: auto; */
    /* background-color: #e6e6fa; */
    border-radius: 5px;
}

.concern_area
{
    background-image: url(../img/menu_bord_1.png);
    margin: 0 auto;
    padding-top: 30px;
    width: 100%;
    height: 600px;
    /* min-height: 70vh; */
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.concern_area_container
{
    display: flex;
    flex-wrap: wrap;
    width: 80%;
    margin: 125px auto 20px auto;
}


.concern_button_column
{
    /* width: calc(50% - 20px); 列の幅を均等に分配し、マージンを考慮して計算 */
    width: 48%;
    margin: 2px;
    /* border: 1px solid #ccc; */
    padding: 10px;
    /* box-sizing: border-box; */
}

.concern_button_column img
{
    width: 100%;
    height: 40px;

}

.concern_box
{
    width: 90%;
    margin: auto;
    padding: 10px;
    color: #000;
    border: 1.7px solid #192f60;
    background-color: #eaf4ff;
    box-shadow: -2px 5px 5px #e8d3c7;
    border-radius: 5px;
}

.concern_box_p
{
    margin: 5px;
    font-size: 1.3rem;
}

.concern_area_pc
{
    background-image: url(../img/pc_bord_3.png);
    margin: 0 auto;
    padding-top: 30px;
    width: 100%;
    height: auto;
    /* min-height: 50vh; */
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.concern_area_container_pc
{
    display: flex;
    flex-wrap: wrap;
    width: 80%;
    margin: 40px auto 20px auto;
}


.concern_button_column_pc
{
    /* width: calc(50% - 20px); 列の幅を均等に分配し、マージンを考慮して計算 */
    width: 20%;
    /* margin: 2px; */
    padding: 20px;
}

.concern_button_column_pc img
{
    width: 100%; 
    /* height: 40px; */
}

.concern_box_pc
{
    width: 90%;
    margin: auto;
    padding: 10px;
    color: #000;
    border: 1.7px solid #192f60;
    background-color: #eaf4ff;
    box-shadow: -2px 5px 5px #e8d3c7;
    border-radius: 5px;
}

.concern_box_p_pc
{
    margin: 5px;
    font-size: 1.3rem;
}

.banner_area
{
    margin: 0 auto;
    width: 95%;
}

@media screen and (min-width: 800px)
{
    .flex
    {
        justify-content: space-around;
    }

    .review_box_black
    {
        width: 46%;
        margin: 10px;
    }
    .review_detail
    {
        height: 150px;
    }
}

@media screen and (min-width: 1200px)
{
    .flex
    {
        justify-content: center;
    }

    .review_box_black
    {
        width: 30%;
        margin: 10px;
    }

}

@media screen and (max-width: 1000px) {
    .review_kazari_1_img
    {
        width: 35%;
        height: 40px;
    }
    .pc_term
    {
        display: none;
    }
}

@media screen and (max-width: 480px) {

    .review_kazari_1_img
    {
        width: 50%;
        height: 40px;
    }
}


footer p{
    font-size: 1.1rem;
}

.test_1
{
    width: 100%;
    height: auto;
    text-align: center;
    margin: 0 auto;
    display: block;
}