@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/
/*
Theme Name: WING-AFFINGER5 Child
Template: affinger5
Description: ver20180521以上対応
Version: 20180521
*/
@font-face {
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	src:url("https://use.fontawesome.com/releases/v5.6.3/webfonts/fa-solid-900.woff2") format("woff2");
	font-display: swap;
 }
@font-face {
	font-family: 'Font Awesome 5 Free';
	font-weight: 400;
	src:url("https://use.fontawesome.com/releases/v5.6.3/webfonts/fa-regular-400.woff2") format("woff2");
	font-display: swap;
 }
@font-face {
	font-family: 'Poppins';
	font-display: swap;
	src: local('Poppins'), url(https://fonts.gstatic.com/s/poppins/v6/pxiEyp8kv8JHgFVrJJfecg.woff2) format('woff2');
}


/*--------------------------------
続きを読む➀
---------------------------------*/
.accordion-box {
    position: relative;
}
.accordion-box label {
    height: 140px; /* グラデーションの高さ */
    cursor: pointer;
    text-align: center;
    font-size: 12px;
    position: absolute;
    bottom: 0;
    width: 100%;

    /* 以下グラデーションは「背景が白」に併せて設定しています */
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
    background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
    background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
}
.accordion-box input:checked + label {
    background: inherit; /* 開いた時には背景グラデーションを消す */
}
.accordion-box label:after {
    content: "続きをよむ"; /* ラベルの文字 */
    letter-spacing: .05em;
    line-height: 2.5rem;
    position: absolute;
    bottom: 20px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    color: #fff;
    background-color: #000;
    width: 18.75rem;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}
.accordion-box label:before {
    content: "↓";
    font-weight: 700;
    position: absolute;
    bottom: 30px;
    left: 50%;
    -webkit-transform: translate(-140px, 0);
    transform: translate(-140px, 0);
    background-color: #fff;
    z-index: 1;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    width: 20px;
    height: 20px;
    line-height: 20px;
}
.accordion-box input {
    display: none;
}
.accordion-box .accordion-container {
    overflow: hidden;
    height: 200px; /* 開く前に見えている部分の高さ */
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -ms-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
}


.accordion-box input:checked + label {
    /* display: none ; 閉じるボタンは要らないとき */
}
.accordion-box input:checked + label:after {
    content: "閉じる";
}
.accordion-box input:checked + label:before {
    content: "↑";
}
.accordion-box input:checked ~ .accordion-container {
    height: auto;
    padding-bottom: 80px; /* 閉じるボタンのbottomからの位置 */
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -ms-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
}
/*--------------------------------
続きを読む②
---------------------------------*/
.cp_box *, .cp_box *:before, .cp_box *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.cp_box {
	width: auto;
	margin: 2em auto;
}
.cp_box label {
	font-weight: bold;
	position: relative;
	display: block;
	width: 80%;
	margin: auto;
	padding: 0.3em 1em;
	cursor: pointer;
	transition: all 0.3s;
	text-align: center;
	color: #da3c41;
	border: 2px solid #da3c41;
	border-radius: 3px;
}
.cp_box label:hover {
	transition: all 0.3s;
	color: #ffffff;
	background: #da3c41;
}
.cp_box label::after {
	font-family: 'FontAwesome';
	content: ' \f067';
	color: #da3c41;
}
.cp_box label:hover::after {
	color: #ffffff;
}
.cp_box input:checked ~ label::after {
	font-family: 'FontAwesome';
	content: ' \f068';
	color: #da3c41;
}
.cp_box input:checked ~ label:hover::after {
	color: #ffffff;
}
.cp_box input {
	display: none;
}
.cp_box .cp_container {
	position: relative;
	z-index: 10;
	overflow: hidden;
	height: 0;
	margin-top: -1px;
	transition: height 0.3s ease-in-out,box-shadow 0.6s linear;
	background: rgba(255, 255, 255, 0.5);
}
.cp_box input:checked ~ div {
	transition: height 0.5s ease-in-out,box-shadow 0.1s linear;
}
/* 続きを読むを押すと表示されるテキストの高さ */
.cp_box input:checked ~ div.cp_container {
	height: 300px;
}

/*--------------------------------
スマホのフッターメニュー
---------------------------------*/
/*---------------------------------
スマホボタンcss
---------------------------------*/
.rankbtn {
    display: flex;
    padding: 0 0 0.5em 0;
    align-items: stretch;
    justify-content: space-between;
}
.btn01, .btn02 {
    cursor: pointer;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none !important;
    padding: .5em;
    text-align: center;
}
.btn01 {
    background-color: #f4f5f3;
    width: 33%;
    box-shadow: 0 4px 0 rgb(13 48 15 / 26%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777 !important;
		margin-right: 10px;
		font-size: 14px
}
.btn02 {
    background-color: #f21b3f;
    width: 63%;
    box-shadow: 0 4px 0 #c50024;
    color: #fff !important;
    line-height: 1;
    position: relative;
		font-size: 14px
}
.btn03 {
    font-size: .8em;
		font-weight: normal;
}
a.btn02:after {
  content: '';
  background-color: #ffffff;
  display: inline-block;
  height: 22px;
  margin-top: -9px;
  -webkit-mask: url(https://se-ec.co.jp/uranai-surveyteam/wp-content/uploads/2021/05/arrow_right.svg);
  mask: url(https://se-ec.co.jp/uranai-surveyteam/wp-content/uploads/2021/05/arrow_right.svg);
  -webkit-mask-size: cover;
  mask-size: cover;
  position: absolute;
  right: 10px;
  top: 50%;
  vertical-align: middle;
  width: 22px;
}

/*
a.btn01:hover {
    color: #907b85;
    background-color: #f4f5f3a6;
    border-bottom: solid 6px rgb(48 13 34 / 15%);
}
a.btn02:hover {
    color: #FFF;
    background-color: #fb5858;
    border-bottom: solid 6px #cc422c;
}
*/

.button04{
     display:block;
     width: 100%;
     height:40px;
     line-height: 40px;
     color: #FFF;
     text-decoration: none;
     text-align: center;
     background-color: #a32177; /*ボタン色*/
     border-bottom: solid 6px #751a56; /*下線色*/
     border-radius: 5px; /*角丸*/
     margin-bottom: -15px;
}
.button05{
     display:block;
     width: 100%;
     height:40px;
     line-height: 40px;
     color: #FFF;
     text-decoration: none;
     text-align: center;
     background-color: #ff2c2c; /*ボタン色*/
     border-bottom: solid 6px #bb1a00; /*下線色*/
     border-radius: 5px; /*角丸*/
}

/*--------------------------------
スマホのフッターメニュー
---------------------------------*/
ul.footer_menu {
	margin: 0 auto;
	padding: 8px 0 5px;
	width: 100%;
	overflow: hidden;
	display: table;
	/*border-top:1px solid #4496d3;*/
}
ul.footer_menu li {
	margin: 0;
	padding: 0;
	display: table-cell;
	vertical-align:middle;
	list-style-type: none;
	font-size: 16px;
}
ul.footer_menu li a i{font-size: 16px;}
ul.footer_menu li a {
	border: none;
	display: block;
	color: #fff;
	text-align: center;
	text-decoration: none;
	background: #53B9E9;
	z-index: 9999999999;
	-moz-opacity: 0.9;
	opacity: 0.9;
	margin: 0 7px 5px 5px;
	/*-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;*/
	webkit-box-shadow: 3px 3px 0px #29A7E1;
	-moz-box-shadow: 3px 3px 0px #29A7E1;
	box-shadow: 3px 3px 0px #29A7E1;
}
ul.footer_menu li a span{font-size:80%;}
.footer_menu {
	position: fixed;
	bottom: 0;
	left:0;
}

/*--------------------------------
スマホのフッターメニュー
---------------------------------*/
ul.footer_menu {
margin: 0 auto;
padding: 5px 0 3px;
width: 100%;
overflow: hidden;
display: table;
/*border-top:1px solid #4496d3;*/
}
ul.footer_menu li {
margin: 0;
padding: 0;
display: table-cell;
vertical-align:middle;
list-style-type: none;
font-size: 8px;
}
ul.footer_menu li a i{
font-size: 16px;
}
ul.footer_menu li a {
border: none;
display: block;
color: #fff;
text-align: center;
text-decoration: none;
background: #049336;
z-index: 9999999999;
-moz-opacity: 0.9;
opacity: 0.9;
margin: 0 7px 5px 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
webkit-box-shadow: 3px 3px 0px #F8286B;
-moz-box-shadow: 3px 3px 0px #F8286B;
box-shadow: 3px 3px 0px #024a1c;
}
.footer_menu {
position: fixed;
bottom: 0;
left:0;
}

.post .emphasize-link {
  position: relative;
  margin: 36px 0 16px;
  padding: 16px 10px;
  border: 2px solid #df8182;
  background-color: #fffbf5;
}
.post .emphasize-link p:last-child {
  margin-bottom: 0;
}
.post .emphasize-link::before {
  position: absolute;
  bottom: 100%;
  left: -2px;
  padding: 2px 6px;
  content: "あわせて読みたい";
  background-color: #df8182;
  color: #fff;
  font-weight: bold;
}


.btn{clear:both;}
#reset{
	width:45%;
	float:left;
	margin:0 5% 0 0;
	padding:10px;
}
#submit{
	width:45%;
	padding:10px;
}
#user_age_area{width:50px;}
#onamae{width:200px;}
.osusumedo select{width:200px;}


.button {
	display: inline-block;
	width: 90%;
	height: 54px;
	text-align: center;
	text-decoration: none;
	line-height: 54px;
	outline: none;
}
.button::before,
.button::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}
.button,
.button::before,
.button::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}
.button {
	background-color: #fff;
	border: 2px solid #59b1eb;
	color: #59b1eb;
	line-height: 50px;
}
.button:hover {
	background-color: #5C6B80;
	border-color: #5C6B80;
	color: #fff;
}
.post .top_menu ul{
	list-style-image: none;
}
.post .top_menu ul li{
	padding:5px 5px 5px 10px;
	background:(images/li.png) left 50% no-repeat;
}

/*--------------------------------
体験風
---------------------------------*/
.line03 p {
    line-height: 36px;
    background: url(https://se-ec.co.jp/uranai-surveyteam/wp-content/uploads/2018/04/bg-note03.png) bottom;
    margin: 0;
    padding: 0;

}
.bggreen {
    border: 1px solid #dddddd;
    background-color: #fbfcf8;
    margin: 30px 0;
    padding: 20px 40px 40px;
}


/*--------------------------------
おしゃれボックス
---------------------------------*/
.osyare-box-1 {
    background-color: #fff;
    margin: 2em 0;
    padding: 2em;
    position: relative;
    z-index: 1;
}
.osyare-box-1::before,
.osyare-box-1::after {
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .3);
    content: "";
    height: 100%;
    position: absolute;
    width: 100%;
}
.osyare-box-1::before {
    background-color: rgba(255, 255, 255, .5);
    left: 0;
    top: 0;
    z-index: -1;
}
.osyare-box-1::after {
    background-color: #f8cbea;
    top: 5px;
    left: 5px;
    z-index: -2;
}

.osyare-box-2 {
    background: -webkit-repeating-linear-gradient(-45deg, #f5edfd, #f5edfd 5px, #fdfcff 5px, #fdfcff 10px);
    background: repeating-linear-gradient(-45deg, #f5edfd, #f5edfd 5px, #fdfcff 5px, #fdfcff 10px);
    color: #4a1086;
    margin: 2em 0;
    padding: 2em;
}

.osyare-box-3{
    border: 2px dotted #EAA8BF;
    margin: 30px 20px;
    padding: 15px 20px;
    position: relative;
}
.osyare-box-3:before{
    content: '＊';
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    position: absolute;
    top: -38px;
    left: -25px;
    transform: rotate(20deg);
    -moz-transform: rotate(20deg);
    -webkit-transform: rotate(20deg);
    -o-transform: rotate(20deg);
    text-shadow:  0 0 8px #eaa8bf, 0 0 6px #eaa8bf, 0 0 4px #eaa8bf, 0 0 2px #eaa8bf, 0 0 0.5px #eaa8bf;
}
.osyare-box-3:after{
    content: '*';
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    position: absolute;
    bottom: -45px;
    right: -15px;
    transform: rotate(20deg);
    -moz-transform: rotate(20deg);
    -webkit-transform: rotate(20deg);
    -o-transform: rotate(20deg);
    text-shadow:  0 0 8px #eaa8bf, 0 0 6px #eaa8bf, 0 0 4px #eaa8bf, 0 0 2px #eaa8bf, 0 0 0.5px #eaa8bf;
}
.osyare-box-4{
    background: none;
    border: 1px solid #f3cbd0;
    margin: 5px 10px;
    padding: 20px;
    position: relative;
}
.osyare-box-4:after{
    background: none;
    border: 1px solid #f3cbd0;
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.osyare-box-5{
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow:1px 1px 6px 0px #ccc;
    -moz-box-shadow:1px 1px 6px 0px #ccc;
    -webkit-box-shadow:1px 1px 6px 0px #ccc;
    -o-box-shadow:1px 1px 6px 0px #ccc;
    margin: 20px 5px;
    padding: 30px 20px 20px 20px;
    position: relative;
    z-index: 0;
}
.osyare-box-5:after{
    background-color: #d9ccb3;
    background-image: linear-gradient(45deg, #dfd4be 25%, transparent 25%, transparent 75%, #dfd4be 75%, #dfd4be), linear-gradient(45deg, #dfd4be 25%, transparent 25%, transparent 75%, #dfd4be 75%, #dfd4be);
    background-position: 0 0, 12px 12px;
    background-size: 24px 24px;
    border-left: 2px dotted rgba(255,255,255,0.9);
    border-right: 2px dotted rgba(255,255,255,0.9);
    box-shadow: 0 0 5px rgba(255,255,255,0.5);
    content: 'POINT';
    display: block;
    margin: 0 0 10px 0;
    padding: 5px 20px;
    color: #fff;
    text-align: center;
    position: absolute;
    top: -10px;
    left: 20px;
    transform: rotate(-3deg);
    -moz-transform: rotate(-3deg);
    -webkit-transform: rotate(-3deg);
    -o-transform: rotate(-3deg);
}

.osyare-box-6{
  background: #DBD0E4;
  background-image: radial-gradient(#fff 20%, transparent 0), radial-gradient(#fff 20%, transparent 0);
  background-position: 0 0, 10px 10px;
  background-size: 20px 20px;
  padding: 1em;
  color: #593869;
}

.osyare-box-7 {
  position: relative;
  background: repeating-linear-gradient(-45deg, rgba(139,198,202,.3), rgba(139,198,202,.3) 10px, #fff 0, #fff 20px);
  padding: 1em;
  color: #65513f;
}

.osyare-box-8{
    background-color: #fff;
    border: 2px solid #f3cbd0;
    border-radius: 5px;
    margin: 40px 5px 5px 20px;
    padding: 20px 20px 10px 20px;
    position: relative;
}
.osyare-box-8:before{
    background-color: #ef858c;
    border-radius: 5px;
    color: #fff;
    content: '初回特典';
    padding: 5px 20px;
    position: absolute;
    left: -10px;
    top: -20px;
}
.osyare-box-8:after{
    border-top: 12px solid #ef858c;
    border-right: 12px solid transparent;
    border-left: 12px solid transparent;
    content: '';
    position: absolute;
    top: 10px;
    left: 15px;
}
.osyare-box-9{
    border: 1px solid #ef858c;
    border-radius: 5px;
    padding: 45px 10px 10px 10px;
    position: relative;
    z-index: 0;
}
.osyare-box-9:before{
    background-color: #ef858c;
    border-radius: 5px 5px 0px 0px;
    color: #FFFFFF;
    content: '初回キャンペーン';
    height: 25px;
    padding: 5px 10px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
}
.osyare-box-9:after {
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: #ef858c transparent transparent transparent;
    content: "";
    position: absolute;
    top: 35px;
    left: 10px;
    width: 0px;
    height: 0px;
    z-index: 1;
}
.osyare-box-10{
    background: none;
    border: 1px solid #f3cbd0;
    margin: 15px 10px;
    padding: 20px;
    position: relative;
}
.osyare-box-10:before{
    background-color: #fff;
    content: '初回特典';
    padding: 2px 10px;
    position: absolute;
    top: -10px;
    left: 30px;
    text-align: center;
}
.osyare-box-10:after{
    background: none;
    border: 1px solid #f3cbd0;
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 100%;
    height: 100%;
    z-index: -1;
}



/*--------------------------------
見出し付きデザインボックス(マスキングテープ風見出し付き)
---------------------------------*/
.maste_box1 {
  position: relative;
  background-color: #fff;
  background-image: linear-gradient(-45deg, rgba(250,215,215,.5) 25%, transparent 25%, transparent 50%, rgba(250,215,215,.5) 50%, rgba(250,215,215,.5) 75%, transparent 75%, transparent 100%),
  linear-gradient(45deg, rgba(250,215,215,.5) 25%, transparent 25%, transparent 50%,  rgba(250,215,215,.5) 50%, rgba(250,215,215,.5) 75%, transparent 75%, transparent 100%);
  background-size: 40px 40px;
  padding: 1em;
}
.maste_box1_tape{
  position: absolute;
  top: -0.75em;
  background-color: rgba(255,255,255,.4);
  border-left:2px dotted rgba(0,0,0,.1);
  border-right:2px dotted rgba(0,0,0,.1);
  box-shadow:0 0 5px rgba(0,0,0,0.2);
  padding: 0.25em 2em;
  color: #65513f;
  transform: rotate(-3deg);
}
.maste_box1 p {
  color: #65513f;
  padding: 15px 10px 10px 10px;
}

.maste_box1 p {
  color: #65513f;
  padding: 15px 10px 10px 10px;
}


.maste_box2 {
  position: relative;
  background-color: #fff;
  background: repeating-linear-gradient(-45deg, #edf5f4, #edf5f4 10px, #f6faf9 0, #f6faf9 20px);
  padding: 1em;
}
.maste_box2_tape{
  position: absolute;
  top: -0.75em;
  background-color: rgba(100,100,100,.3);
  border-left:4px solid #ecceff;/*テープの縦ラインの色*/
  padding: 0.25em 2em;
  color: #626262;/*テープの文字の色*/
  transform: rotate(-3deg);
}
.maste_box2 p {
  color: #454545;
  padding: 15px 10px 10px 10px;
}


.maste_box3 {
  position: relative;
  background: #f9f4e4;/*紙の色*/
  border-left:4px dotted rgba(0,0,0,.1);
  border-right:4px dotted rgba(0,0,0,.1);
  box-shadow:0 0 5px rgba(0,0,0,.2);
  padding: 1em;
  color: #65513f;
  width: 300px;
}
.maste_box3_tape{
  position: absolute;
  top: -1em;
  left: 26%;
  width:100px;
  height:30px;
  background-image: linear-gradient(-45deg, rgba(227,155,140,.4) 25%, transparent 25%, transparent 50%, rgba(227,155,140,.4) 50%, rgba(227,155,140,.4) 75%, transparent 75%, transparent 100%);
  background-size: 20px 20px;
  border-left:2px dotted rgba(0,0,0,.1);
  border-right:2px dotted rgba(0,0,0,.1);
  box-shadow:0 0 5px rgba(0,0,0,.2);
  padding: 0.25em 2em;
  color: #65513f;
  transform: rotate(-4deg);
}
.maste_box3 p {
  color: #807f7c;/*文字の色*/
  padding: 2px;
  font-size:12px;
}

/*--------------------------------
ここがポイントボックス
---------------------------------*/
.design_box1{
   position:relative;
   background:#fffde7;
   width:85%;
   margin:2em auto;
   padding:1.5em 1em;
   transform: rotate(-2deg);
   box-shadow:1px 1px 4px rgba(0,0,0,0.2);
   color:#795548;
}
.design_box1::before{
   content:'ここがポイント！';
   position:relative;
   display:inline-block;
   border-bottom:3px solid #795548;
   border-radius: 0 0 40% 5% / 0 0 15% 20%;
   padding:0 1em 0.1em 0.2em;
   font-size:110%;
   font-weight:bold;
   transform: rotate(-5deg);
}
.design_box1::after{
   content:'';
   position:absolute;
   left:50%;
   top:-15px;
   margin-left:-75px;
   width:150px;
   height:30px;
   background:rgba(245,245,245,0.7);
   box-shadow:1px 1px 4px rgba(0,0,0,0.2);
   transform: rotate(-4deg);
}
.design_box1 ol{
   margin:1em 0.5em 0 2em;
   padding:0 0 0 0;
}
.design_box1 ol li{
   margin-bottom:0.5em;
}





/*--------------------------------
キャンペーンリンク
---------------------------------*/
.aaaaa {
    color: #d01027;
	text-decoration:underline;
	font-size:14px;
	font-weight: bold
}

/*--------------------------------
文字装飾
---------------------------------*/
.small {
  font-size:80%;/* 文字を大きくする        */
}
.big {
  font-size:150%;/* 文字を大きくする        */
}
.bold {
  font-weight   : bold;                /* 太字                    */
}
.red {
  color         : #ff0000;             /* 文字色                  */
}
.under {
  background: linear-gradient(transparent 70%, yellow 70%);
  }
------------------------
引用
---------------------------------*/
blockquote {
    position: relative;
    padding: 35px 15px 10px 15px;
    box-sizing: border-box;
    font-style: italic;
    background: #f5f5f5;
    color: #777777;
    border-left: 4px solid #9dd4ff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.14);
}

blockquote:before{
    display: inline-block;
    position: absolute;
    top: 10px;
    left: 15px;
    vertical-align: middle;
    content: "\f10d";
    font-family: FontAwesome;
    color: #9dd4ff;
    font-size: 28px;
    line-height: 1;
}

blockquote p {
    padding: 0;
    margin: 7px 0;
    line-height: 1.7;
}

blockquote cite {
    display: block;
    text-align: right;
    color: #888888;
    font-size: 0.9em;
}

/*--------------------------------
比較テーブル
---------------------------------*/
table.aaa  {
  text-align: center;
  border: solid 2px gainsboro;/*表全体を線で囲う*/

}
.aaa th, .aaa td {
    border-style: solid dashed; /* 線種 */
   border-width: 1px; /* 線の太さ */
   border-color: gainsboro; /* 線の色 */
}


.aaa td:nth-child(odd) {
    background:#fff;/*列の色分け　奇数は白*/
}
.aaa td:nth-child(even) {
    background:#F5F5F5;/*列の色分け　偶数は色あり*/
}

.square_btn {
    position: relative;
    display: inline-block;
    padding: 0.25em 0.5em;
    text-decoration: none;
    color: #FFF;
    background: #f55257;/*背景色*/
    border-bottom: solid 2px #d50309;/*少し濃い目の色に*/
    border-radius: 4px;/*角の丸み*/
    box-shadow: inset 0 2px 0 rgba(255,255,255,0.2), 0 2px 2px rgba(0, 0, 0, 0.19);
    font-weight: bold;
}

.square_btn:active {
    border-bottom: solid 2px #e22b27;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.30);
}
table.hikaku_b  {
  border: solid 2px #e0a6ec;/*表全体を線で囲う*/

}
.hikaku_b th {
  text-align: center;
font-size:80%;
font-weight:normal;
    background:#f9deea;/*見出しの背景色*/

}
 .hikaku_b td {
text-align:left;
vertical-align: middle;

font-size:80%;
 }


table.ccc  {
  text-align: center;
  border: solid 2px gainsboro;/*表全体を線で囲う*/
  vertical-align: middle;
}
.ccc th, .ccc td {
    border-style: solid dashed; /* 線種 */
   border-width: 1px; /* 線の太さ */
   border-color: gainsboro; /* 線の色 */
}
.ccc th, .ccc td:last-child{
border-right:none;
}

table.bbb  {
	  width: 100%;
  text-align: center;
  border: solid 2px #6b0f7a;/*表全体を線で囲う*/
  vertical-align: middle;
     table-layout: fixed;

}
.bbb th, .bbb td {
    border-style: solid dashed; /* 線種 */
   border-width: 1px; /* 線の太さ */
   border-color: #bd7cc8; /* 中の縦横線の色 */
     width: 200px;

}
table.ddd  {
	  width: 100%;
  border: solid 2px #e97677;/*表全体を線で囲う*/
  vertical-align: middle;
     table-layout: fixed;
}
.ddd th{
    border-style: solid dashed; /* 線種 */
   border-width: 1px; /* 線の太さ */
   border-color: #f89999; /* 中の縦横線の色 */
     width: 215px;

}
.ddd td {
    border-style: solid dashed; /* 線種 */
   border-width: 1px; /* 線の太さ */
   border-color: #f89999; /* 中の縦横線の色 */

}


table.eee  {
	  width: 100%;
  border: solid 2px #97aad6;/*表全体を線で囲う*/
  vertical-align: middle;
     table-layout: fixed;

}
.eee th{
    border-style: solid dashed; /* 線種 */
   border-width: 1px; /* 線の太さ */
   border-color: #afcdea; /* 中の縦横線の色 */
     width: 215px;

}
.eee td {
    border-style: solid dashed; /* 線種 */
   border-width: 1px; /* 線の太さ */
   border-color: #afcdea; /* 中の縦横線の色 */

}

table.fff  {
	  width: 100%;
  border: solid 2px #edd33e;/*表全体を線で囲う*/
  vertical-align: middle;
     table-layout: fixed;

}
.fff th{
    border-style: solid dashed; /* 線種 */
   border-width: 1px; /* 線の太さ */
   border-color: #eddd80; /* 中の縦横線の色 */
     width: 215px;

}
.fff td {
    border-style: solid dashed; /* 線種 */
   border-width: 1px; /* 線の太さ */
   border-color: #eddd80; /* 中の縦横線の色 */

}

table.ggg  {
	  width: 100%;
  border: solid 2px #e41e9e;/*表全体を線で囲う*/
  vertical-align: middle;
     table-layout: fixed;

}
.ggg th{
    border-style: solid dashed; /* 線種 */
   border-width: 1px; /* 線の太さ */
   border-color: #e99cf9; /* 中の縦横線の色 */
     width: 215px;

}
.ggg td {
    border-style: solid dashed; /* 線種 */
   border-width: 1px; /* 線の太さ */
   border-color: #e99cf9; /* 中の縦横線の色 */

}
/*--zen 追加--*/
.post table.hhh{
   text-align: center;
   border: none !important;
    border-collapse: separate;
    border-spacing: 0px 3px;
}
table.hhh tbody th{
	border-top:1px solid gainsboro !important;
	border-left:1px solid gainsboro !important;
	padding-bottom:8px !important;
}
table.hhh tbody td{border-top:1px solid gainsboro !important;}
table.hhh tr td{padding: 8px;}
.hhh th, .hhh td {
   border-style: solid dashed; /* 線種 */
   border-width: 1px; /* 線の太さ */
   border-color: gainsboro; /* 線の色 */
}
.hhh td:nth-child(odd) {background:#fff;}/*列の色分け　奇数は白*/
.hhh td:nth-child(even) {background:#F5F5F5;}/*列の色分け　偶数は色あり*/
.hhh thead tr td:first-of-type{
	border: none !important;
}
.hhh thead td:not(:first-of-type){
	border: 1px solid #bbb !important;
	position:relative;
	background:#fff !important;
}
.hhh thead td:nth-of-type(2){
	border: 4px solid #f55257 !important;
	background:#fde8f1 !important;
}
.hhh thead td:not(:first-of-type):before {
	border:10px solid transparent;
	border-top-color:#fff;
	border-bottom-width:0;
	bottom:-9px;
	content:"";
	display:block;
	left:44%;
	position:absolute;
	width:0;
	z-index:1;
}

.hhh thead td:not(:first-of-type):after {
	border:10px solid transparent;
	border-top-color:#bbb;
	border-bottom-width:0;
	bottom:-10px;
	content:"";
	display:block;
	left:44%;
	position:absolute;
	width:0;
}
.hhh thead td:nth-of-type(2):before {
	border-top-color:#fde8f1;
}

.hhh thead td:nth-of-type(2):after {
	border-top-color:#f55257;
	bottom:-13px;
}
.hhh tr.s td {
    font-size: 1.0em !important;
    font-weight: bold;
}
.hhh tbody tr td:last-of-type{border-right:1px solid #ddd !important;}
table.hhh tbody td a {
    display: block;
    padding: 15px 3px;
}
/*スクロールボックス*/
.scroll-box{
	overflow: auto;
	white-space: nowrap;
}
.scroll-box.kotei-h{
	height:500px;
}

/*テーブルのタイトル固定*/
table.kotei{
    border-collapse: separate;
}
table.kotei thead th,table.kotei tr.thead th{
  /* 縦スクロール時に固定する */
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  /* tbody内のセルより手前に表示する */
  z-index: 1;
}
table.kotei thead th:first-child,
table.kotei tr.thead th:first-child {
  z-index: 2;
}
table.ccc.kotei thead th,
table.kotei tr.thead th{
  border-bottom: solid 1px gainsboro;
  border-left: dashed 1px gainsboro;
}
table.ccc.kotei thead th:first-child,
table.kotei tr.thead th:first-child,
table.kotei tbody tr th{
  /* 横スクロール時に固定する */
  position: -webkit-sticky;
  position: sticky;
  left: 0;
}
table.kotei tbody tr:not(.thead) th{
  background: #fff !important;
}
table.ccc.kotei tbody tr th {
  border-left: none;
  border-right: dashed 1px gainsboro;
  border-bottom: solid 1px gainsboro;
}
table.ccc.kotei thead th:first-child{
  border-left:none;
}
table.ccc.kotei tbody tr:last-child th,
table.ccc.kotei tbody tr:last-child td{
  border-bottom:none;
}
table.kotei tr.pink th{
	background:#ffb6c1;
}
table.kotei tr.pink th{
  border-right: none;
  border-left: solid 1px #999;
}
.komozi2{
    white-space: normal !important;
    font-size: 80%!important;
    line-height: 1.5!important;
    margin:0 auto;
}
table.komozi-12em .komozi2{width:12em;}
table.komozi-13em .komozi2{width:13em;}
table.komozi-14em .komozi2{width:14em;}
table.komozi-15em .komozi2{width:15em;}
table.komozi-16em .komozi2{width:16em;}
table.komozi-17em .komozi2{width:17em;}
table.komozi-18em .komozi2{width:18em;}
table.komozi-19em .komozi2{width:19em;}
table.komozi-20em .komozi2{width:20em;}
table.komozi-21em .komozi2{width:21em;}
table.komozi-22em .komozi2{width:22em;}
table.komozi-23em .komozi2{width:23em;}
table.komozi-24em .komozi2{width:24em;}
/*--------------------------------
スクロールに応じて要素を固定
---------------------------------*/
.sticky_table_wrapper {
  overflow: scroll;
  width: 85%;
}
.sticky_table thead th {
  /* 縦スクロール時に固定する */
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  /* tbody内のセルより手前に表示する */
  z-index: 1;
}
.sticky_table th:first-child {
  /* 横スクロール時に固定する */
  position: -webkit-sticky;
  position: sticky;
  left: 0;
}
.sticky_table thead th:first-child {
  /* ヘッダー行内の他のセルより手前に表示する */
  z-index: 2;
}


/*--------------------------------
TOP　採点テーブル
---------------------------------*/
.post table.saiten {
  border-style: solid dashed; /* 線種 */
 border-width: 1px; /* 線の太さ */
 border-color: #e99cf9; /* 中の縦横線の色 */
 background: #000;
}
table .murasaki th {
background-color:#2d0751 !important;
}
/*--------------------------------
TOP　ランキング見出しアイコン画像上下中央へ
---------------------------------*/
.t1 {
vertical-align:middle;
}


/*--------------------------------
TOP　ランキング　文字装飾
---------------------------------*/
.pink_line {background:linear-gradient(transparent 60%, #ffdfef 0%) ;}/* ピンクマーカー */

.blue_line{background:rgba(0, 0, 0, 0) linear-gradient(transparent 60%, #cce5ff 0%) repeat scroll 0 0;}/* ブルーマーカー */

.yellow_line {background:rgba(0, 0, 0, 0) linear-gradient(transparent 60%, #ffffbc 0%) repeat scroll 0 0;}/* yellowマーカー */


/*--------------------------------
テーブル比較表
---------------------------------*/

/*スクロール*/
.post .scroll-box table {
	max-width:initial;
}

.scroll-box {
	overflow-x: auto;
	margin-bottom:10px;
}

.scroll-box::-webkit-scrollbar {
	height: 5px;
}

.scroll-box::-webkit-scrollbar-track {
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	background: #f3f3f3;
}
.scroll-box::-webkit-scrollbar-thumb {
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	background: #ccc;
}
/*--------------------------------
パンくず
---------------------------------*/
#breadcrumb {
overflow-x: scroll;
white-space: nowrap;
}
#breadcrumb,
#breadcrumb ol,
#breadcrumb li {
    margin:0;
    padding:0;
    font-weight:normal;
}
#breadcrumb ol {
	max-width: 1200px;
    margin: 0 auto;
}

#breadcrumb ol li {
    color: #ccc;
    font-size: 13px;
    list-style:none;
    display: inline-block;
}

#breadcrumb ol li a {
    text-decoration: none;
    color: #ccc;
}
#breadcrumb ol li {
color: #CCCCCC !important;
font-size: 13px;
}
#breadcrumb a {
color: #CCCCCC !important;
}
/* スクロールバーの装飾 */
#breadcrumb::-webkit-scrollbar {
height: 5px;
}
#breadcrumb::-webkit-scrollbar-track {
background-color: #FFF;
}
#breadcrumb::-webkit-scrollbar-thumb {
background-color: #f3f3f3;
}
.c-categoryList__separation:after,
.p-breadcrumb__item:after{
display: inline-block !important;
}
* {
    font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", Hiragino Kaku Gothic Pro, "ＭＳ Ｐゴシック", sans-serif;
    margin: 0px;
    padding: 0px;
}
/*
 * テーブルソートのためcss
 */
 .sortable-tbl {
   border-collapse: separate;
   border-spacing: 0;
   overflow: hidden;
     border-top   : 0 !important;
     border-left  : 0 !important;
     border-right : 0 !important;
     border-bottom: 0 !important;
 }
 .sortable-tbl tr,
 .sortable-tbl th,
 .sortable-tbl td,
 .osusume-side th,
 .osusume-side td {
     border-top   : 0 !important;
     border-left  : 0 !important;
     border-right : 0 !important;
     border-bottom: 1 !important;
     font-size: calc(8px + 0.25vw) !important;
     padding-bottom:15px !important;
     width  : 20%;
     text-align     : center !important;
     vertical-align : middle !important;
     height:50px;
 }
 .sortable-tbl tr,
 .sortable-tbl th,
 .sortable-tbl td {
     height:50px;
 }
 .sortable-tbl tbody td {
   border-left  : 1px solid #aaa !important;
   border-right : 1px solid #aaa !important;
 }
 .tab1, .tab2, .tab3, .tab4, .tab5 {
     border-radius: 10px 10px 0px 0px;
 }

/*
 * 背景色設定のためcss
 */
.bg-gray {
    background-color:#DDDDDD;/* ソートのところ */
}
.bg-blue {
    background-color:#f5e3f8;/* タブの色 */
}

/*
 * テーブルタブ実装のためのcss
 */
.tab-full-content{
    overflow:hidden;
}
.tab-menu{
    list-style:none;
    text-align:center;
    cursor: hand;
    color:black;
}
.tab-active, .tab-hover {
    background:#e6b9f0;
    font-weight:bold;
    cursor: pointer !important;
}

/*--------------------------------
引用
---------------------------------*/
blockquote {
    position: relative;
    padding: 30px 15px 10px 15px;
    box-sizing: border-box;
    font-style: italic;
    background: #f5f5f5;
    color: #777777;
    border-left: 4px solid #9dd4ff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.14);
}

blockquote:before{
    display: inline-block;
    position: absolute;
    top: 10px;
    left: 15px;
    vertical-align: middle;
    content: "\f10d";
    font-family: FontAwesome;
    color: #9dd4ff;
    font-size: 12px;
    line-height: 1;
}

blockquote p {
    padding: 0;
    margin: 7px 0;
    line-height: 1.7;
}

blockquote cite {
    display: block;
    text-align: right;
    color: #888888;
    font-size: 0.9em;
}

/*--------------------------------
ツイッター背景
---------------------------------*/
#s-navi dt.trigger .op-st {
    background: #2d0751;
    color: #ffffff;
}
#s-navi dt.trigger{height: 2em;}

/*--------------------
図解
------------------*/
.uranaizukai {text-align: center;}
.uranaizukai img{width:650px;max-width:fit-content !important;display:block;margin:0 auto;}
.uranaizukai_sp img{width:345px;max-width:fit-content !important;display:block;margin:0 auto;}
/*--------------------
テーブルタグ改行
------------------*/
div.deleteBr br {
}
div.deleteBr img{
margin: 0 auto 0px;
}
div.deleteBr table th{
}
div.deleteBr table td{
text-align: center;
vertical-align: middle;
}
/*--------------------
目次の文字サイズ設定
------------------*/
div#toc_container p.toc_title a, div#toc_container ul.toc_list a {
    color: #4e5152;
    font-size: 14px;
    line-height: 1.6em;
}

.oomozia {
    font-size: 130%;
    line-height: 1.4;
    font-weight: bold;
}
table tr td {
    padding: 10px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-bottom-style: solid;
    border-left-style: solid;
    border-bottom-color: #999;
    border-left-color: #999;
}
/*日本地図クリッカブルマップ*/
table#clickable_map {
	border-collapse: separate;
	border-style: solid;
	border-width: 0px;
	background-color: #fff;
	margin: 0 auto;
}
#clickable_map td {
	margin: 0;
	padding: 0;
	color: #000000;
	border-style: solid;
	border-width: 0.5px;
	border-color: #fff;
	background-color: #fff;
	width: 45px;
	height: 24px;
	line-height: 16px;
	vertical-align: middle;
}
td#hokkaido {
	width: 91px;
	height: 49px;
}
td.colspan_2{ width: 91px !important; }
#clickable_map a:not(.tokyoarea) {
	text-decoration: none;
	display: block;
	width: 100%;
	height: 100%;
	text-align: center;
	margin: 0;
	padding: 1px 0;
	font-size: 14px;
}
#clickable_map a:link { color: #fff; font-weight: normal; }
#clickable_map a:visited { color: #fff; font-weight: normal; }
#clickable_map a:hover { color: #fff; font-weight: normal; background-color: #991F5C; }
#clickable_map a:active { color: #fff; font-weight: normal; background-color: #991F5C; }
a.hokkaido-touhoku,.areatext .hokkaido-touhoku a{ background-color: #3f51b5; }
a.touhoku{ background-color: #3f51b5; }
a.kantou,.areatext .kantou a,.kantou span,#popup a{ background-color: #027731; }
a.chubu,.areatext .chubu a{ background-color: #79c32d; }
a.kinki,.areatext .kinki a{ background-color: #f3d500; }
a.chugoku,.areatext .chugoku a{ background-color: #FB7E00; }
a.shikoku,.areatext .shikoku a{ background-color: #ff0000; }
a.kyushu,.areatext .kyushu a{ background-color: #FF0479; }
.areatext{
    margin-bottom: 3.5em;
}
.areatext a{display:inline-block;padding:15px; border-radius:3px; color:#fff;text-decoration:none;margin-bottom:7px;}
#popup a.tokyoarea{display:inline-block;padding:15px !important; border-radius:3px; color:#fff;text-decoration:none;margin-bottom:7px;margin-left:7px;}
.areatext p{font-size:1.3em;margin-bottom:7px;margin-top:20px;}
.areatext .hokkaido-touhoku p{ border-bottom:3px solid #3f51b5; }
.areatext .kantou p{ border-bottom:3px solid #027731; }
.areatext .chubu p{ border-bottom:3px solid #79c32d; }
.areatext .kinki p{ border-bottom:3px solid #f3d500; }
.areatext .chugoku p{ border-bottom:3px solid #FB7E00; }
.areatext .shikoku p{ border-bottom:3px solid #ff0000; }
.areatext .kyushu p{ border-bottom:3px solid #FF0479; }

#side .areatext a {
    padding: 5px 7px !important;
}
#side .areatext p {
    margin-top: 10px !important;
}
/*popup表示させたいコンテンツのレイアウトと位置*/
#popup{
	width:300px;
  background:#fff;
  border: 5px solid #dfd0f3;
  padding:10px;
  box-sizing:border-box;
  display:none;
  position:fixed;
  top:50%;
  left:50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#popup i {
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 1.3em;
}
label{
  display:block;
}
/*ボタンの装飾*/
label.popupbtn span{
  display:block;
  color:#fff;
  line-height:50px;
  text-align:center;
  font-size: 14px;
}
label.popupbtn span:hover{
  cursor:pointer;
}
label.popupbtn input[type="checkbox"]{
  display:none;
}
/*checkboxがcheckの状態になったらpopupを表示させる*/
label.popupbtn input[type="checkbox"]:checked + #popup{
  display:block;
}

/*サイドバーの新着記事 height: 1358px;*/
#side aside{
float: right;
width: 300px;
padding: 0;
}


#side aside .textwidget .kanren, #side .st-cardbox {
    padding: 10px 0 0 7px;
}
#side .textwidget .kanren.shortcode-kanren dt {
    float: left !important;
    width: 95px !important;
}
#side .textwidget .kanren.shortcode-kanren dd{
	padding:0 0 0 110px !important;
}
/*サイドバーのメニューボックス*/
.menu-box-btn {
    padding: 10px 0;
}
.menu-box-btn a{
	display: inline-block;
    text-align: center;
    height: 70px;
    width: 45%;
    background: #fff;
    margin: 0 2% 12px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,.1);
    font-size:12px;
}
.menu-box-btn a img{
	display:block;
	margin:0 auto;
}


	/****************************************
	スマホ＆ipadのスライドメニュー
	*****************************************/
	#nav-drawer {
		position: absolute;
		top: 5px;
		left: 5px;
	}

	/*チェックボックス等は非表示に*/
	.nav-unshown {
	  display:none;
	}

	/*アイコンのスペース*/
	#nav-open {
    display: inline-block;
    width: 25px;
    height: 20px;
    padding: 10px;
    vertical-align: middle;
    line-height: 40px;
    position: fixed;
    top: 70px;
    right: 0;
    background: #a32177;
    border-radius: 5px 0 0 5px;
    z-index:3;
	}

	/*ハンバーガーアイコンをCSSだけで表現*/
	#nav-open span, #nav-open span:before, #nav-open span:after {
	  position: absolute;
	  height: 3px;/*線の太さ*/
	  width: 25px;/*長さ*/
	  border-radius: 3px;
	  background: #fff;
	  display: block;
	  content: '';
	  cursor: pointer;
	}
	#nav-open span:before {
	  bottom: -8px;
	}
	#nav-open span:after {
	  bottom: -16px;
	}

	/*閉じる用の薄黒カバー*/
	#nav-close {
	  display: none;/*はじめは隠しておく*/
	  position: fixed;
	  z-index: 99;
	  top: 0;/*全体に広がるように*/
	  left: 0;
	  width: 100%;
	  height: 100%;
	  opacity: 0;
	  transition: .3s ease-in-out;
	}
	#nav-close:before {
	  content: url(https://se-ec.co.jp/uranai-surveyteam/wp-content/uploads/2020/10/icon_close2.png);
	  position:absolute;
	  top:10px;
	  right:0;
	  transition: .3s ease-in-out;
	}

	/*中身*/
	#nav-content {
	  overflow: auto;
	  position: fixed;
	  top: 0;
	  left: 0;
	  z-index: 9999;/*最前面に*/
	  width: 80%;/*右側に隙間を作る（閉じるカバーを表示）*/
	  padding: 20px 5%;
	  height: 100%;
	  background: #A4309B;/*背景色*/
	  transition: .3s ease-in-out;/*滑らかに表示*/
	  -webkit-transform: translateX(-105%);
	  transform: translateX(-105%);/*左に隠しておく*/
	}
	#nav-content .menu-box-btn a{width: 44%;}

	/*チェックが入ったらもろもろ表示*/
	#nav-input:checked ~ #nav-close {
	  display: block;/*カバーを表示*/
	  opacity: 1.0;
	}

	#nav-input:checked ~ #nav-content {
	  -webkit-transform: translateX(0%);
	  transform: translateX(0%);/*中身を表示（右へスライド）*/
	  box-shadow: 6px 0 25px rgba(0,0,0,.15);
	}
	/* スマホスライドメニュー内のアコーディオンCSS */
	.acd-check{
	    display: none;
	}
	.acd-label{
	    color: #fff;
	    display: block;
	    margin-bottom: 1px;
	    padding: 10px;
	    position: relative;
		border-bottom: 1px solid #fff;
	}
	.acd-label:after{
	    box-sizing: border-box;
	    content: '\f067';
	    display: block;
	    font-family: "Font Awesome 5 Free";
	    font-weight:bold;
	    height: 52px;
	    padding: 13px 20px;
	    position: absolute;
	    right: 0;
	    top: 0px;
	}
	.acd-content{
	    display: block;
	    background: #d2a4ce;
	    height: 0;
	    opacity: 0;
	    padding: 0 10px;
	    transition: .5s;
	    visibility: hidden;
	}
	.acd-check:checked + .acd-label:after{
	    content: '\f068';
	}
	.acd-check:checked + .acd-label + .acd-content{
	    opacity: 1;
	    padding: 10px;
	    visibility: visible;
	}
	#acd-check1:checked + .acd-label + .acd-content{height: 530px;}
	#acd-check2:checked + .acd-label + .acd-content{height: 170px;}
	#acd-check3:checked + .acd-label + .acd-content{height: 170px;}
	#acd-check4:checked + .acd-label + .acd-content{height: 90px;}




	header .smanone ul.menu .sub-menu li {
	    float: none;
	    width: 100%;
	    padding: 3px;
    	height: auto;
	}
	header .smanone ul.menu li li a {
	    background: none!important;
	    border-top: none!important;
	    text-align:left;
	    line-height: 1.8em;
	    color:#2d0751;
	}


/*PCグローバルメニュー*/
#mega-menu-wrap-primary-menu #mega-menu-primary-menu>li.mega-menu-megamenu>ul.mega-sub-menu {
    background: rgb(146 116 175 / 0.9);
}
#mega-menu-wrap-primary-menu #mega-menu-primary-menu>li.mega-menu-megamenu>ul.mega-sub-menu a{color:#fff;}
#mega-menu-wrap-primary-menu #mega-menu-primary-menu>li.mega-menu-megamenu>ul.mega-sub-menu a:hover{color:#fff;text-decoration:none;}
#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu ul.mega-sub-menu{
    width: 80%;
    margin: 0 auto;
}
#mega-menu-wrap-primary-menu #mega-menu-primary-menu>li.mega-menu-megamenu>ul.mega-sub-menu ul.pcgmenu-list a:before{
	content: '\f139';
	font-family: dashicons;
}
#mega-menu-wrap-primary-menu #mega-menu-primary-menu>li.mega-menu-megamenu>ul.mega-sub-menu ul.pcgmenu-list{list-style-type:none;}
#mega-menu-wrap-primary-menu #mega-menu-primary-menu>li.mega-menu-megamenu>ul.mega-sub-menu ul.pcgmenu-list li{border-bottom:1px solid #fff;}
#mega-menu-wrap-primary-menu #mega-menu-primary-menu>li.mega-menu-megamenu>ul.mega-sub-menu ul.pcgmenu-list li a{display:block;padding:3px 0;}
h4.mega-block-title {
    background: #2d0751;
    color: #fff !important;
    text-align: center !important;
}
#mega-menu-wrap-primary-menu h4.pcgmenu-subtitle {
    font-size: 1.3em;
    color: #2d0751;
}
#mega-menu-wrap-primary-menu .title-subinfo {
    background: #fff;
    border-radius: 7px;
    padding:0.5em 1em;
}

#mega-menu-wrap-primary-menu li.mega-menu-item a.mega-menu-btn{
    display: block !important;
    background: #fff;
    box-shadow: 0 3px 5px rgba(0,0,0,.3);
    font-size: 18px;
    color: #2d0751 !important;
    margin: 0;
    line-height: 45px;
}
#mega-menu-wrap-primary-menu #mega-menu-primary-menu>li.mega-menu-item>a.mega-menu-link {
    padding: 0 30px 0 30px !important;
}
#mega-menu-wrap-primary-menu #mega-menu-primary-menu {
    text-align: center;
}
/*--------------------------------
FAQ
---------------------------------*/
dl#faq {

}
dl#faq dt,dl#faq dd{
	padding-left: 4em;
    padding-bottom: 1em;
    padding-right: 1em;
    line-height: 1.5em;
    font-size: 85%;
}
dl#faq dt{
	background: url(https://se-ec.co.jp/uranai-surveyteam/wp-content/uploads/2021/02/q.png) no-repeat;
    background-position: 0 15px;
    border-top: 1px solid #e8c8de;
    padding-top: 30px;
    font-weight: bold;
}
dl#faq dd{
	background: url(https://se-ec.co.jp/uranai-surveyteam/wp-content/uploads/2021/02/a.png) no-repeat;
    overflow: hidden;
    padding-top: 10px;
    margin: 0 0 10px 0;
}

/*--------------------------------
LPの占い師スライダー
---------------------------------*/
.mainvisual {
  overflow-x: hidden;
  height: 190px;
  border: 5px solid #fff;
}
.swiper-container {
  width: 100%;
  height:100%;
	background:#fff;
    margin: -5px auto 0!important;
}
.swiper-slide {
  height: auto!important;
  overflow: visible;
  text-align: center;
  font-size: 18px;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: start;
  justify-content: start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: start;
  align-items: center;
	flex-direction: column;
	padding: 4px;
  background: #dfd2f7;
	border-radius:10px;
}
.swiper-slide .slidebox{
	width:100%;
}
.swiper-slide a.slide-link{
	display:block;
	width:100%;
    color: #23011f;
    text-decoration: none;
}
.swiper-slide p{margin-bottom:0;}
.osusume-lp .teller-img {
    width: 75px;
    height: 75px;
    overflow: hidden;
    border-radius: 50%;
    border: 1px solid #fff;
	  margin: 0 auto 3px;
}
.osusume-lp .teller-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.osusume-lp .teller-tab1 span {
    background: #af29a0;
    color: #fff;
    border-radius: 15px;
    display: inline-block;
    padding: 0 8px;
    margin-bottom: 4px;
	font-size:11px;
}
.osusume-lp .teller-name{
	font-weight:bold;
    font-size: 13.5px;
line-height: 1.35em;
    height: 1.5em;
	overflow: hidden;
}
.osusume-lp .teller-name .yomi{font-size:0.6em;}
.osusume-lp .teller-tab2 {
    background: #f52899;
    color: #fff;
    margin: auto -4px -4px;
    border-radius: 0 0 10px 10px;
		font-size:12px;
	line-height: 2em;
text-shadow: 1px 1px 3px rgb(0 0 0 / 60%);
	box-shadow: 0px -2px 4px rgb(0 0 0 / 20%);
}
.osusume-lp .teller-tab2.b{
	 background: #2d24b5;
}
.osusume-lp .teller-tab2.o{
	 background: #ff8100;
}

/*--------------------------------
LP
---------------------------------*/
.clearfix:after {
	content: "";
	display: block;
	clear: both;
}
.clearfix:before {
  content: "";
	display: block;
	clear: both;
}
.clearfix {
	display: block;
}
.post-54978 .mainbox {
    max-width: 600px;
    margin: 0 auto;
}
.post ul.osusume-lp,.post ul.osusume-teller-lp{
    list-style-type: none !important;
    padding: 0 !important;
}
.post ul.osusume-lp li {
    margin-bottom: 13px;
    padding-bottom: 13px;
}
.post ul.osusume-lp li:not(:last-of-type) {
	    border-bottom: 1px solid #dfd2f7;
}
.osusume-lp li p {
    margin-bottom: 0;
}
.osusume-lp a.siteicon img {
    width: 100%;
}
.osusume-lp a.siteicon {
    width: 18%;
    display: inline-block;
    float: left;
}
.osusume-lp .siteinfo p {
	margin: 0;
	font-size: 14px;
  line-height: 1.35em;
}
.osusume-lp .siteinfo {
    width: 55%;
    float: left;
    padding-left: 2%;
}
.osusume-lp .sitename{
	font-weight:bold;
	font-size:1.0em !important;
	    position: relative;
    padding-left: 34px;
}
.osusume-lp li .sitename:before {
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -15px;
    content: url(https://se-ec.co.jp/uranai-surveyteam/wp-content/uploads/2021/04/icon-lp-rank.png);
}
.osusume-lp li:nth-child(1) .sitename:before {
    content: url(https://se-ec.co.jp/uranai-surveyteam/wp-content/uploads/2021/04/icon-lp-rank01.png);
}
.osusume-lp li:nth-child(2) .sitename:before {
    content: url(https://se-ec.co.jp/uranai-surveyteam/wp-content/uploads/2021/04/icon-lp-rank02.png);
}
.osusume-lp li:nth-child(3) .sitename:before {
    content: url(https://se-ec.co.jp/uranai-surveyteam/wp-content/uploads/2021/04/icon-lp-rank03.png);
}
.osusume-lp li:nth-child(4) .sitename:before {
    content: url(https://se-ec.co.jp/uranai-surveyteam/wp-content/uploads/2021/04/icon-lp-rank04.png);
}
.osusume-lp li:nth-child(5) .sitename:before {
    content: url(https://se-ec.co.jp/uranai-surveyteam/wp-content/uploads/2021/04/icon-lp-rank05.png);
}
.osusume-lp li:nth-child(6) .sitename:before {
    content: url(https://se-ec.co.jp/uranai-surveyteam/wp-content/uploads/2021/04/icon-lp-rank06.png);
}
.osusume-lp li:nth-child(7) .sitename:before {
    content: url(https://se-ec.co.jp/uranai-surveyteam/wp-content/uploads/2021/04/icon-lp-rank07.png);
}
.osusume-lp li:nth-child(8) .sitename:before {
    content: url(https://se-ec.co.jp/uranai-surveyteam/wp-content/uploads/2021/04/icon-lp-rank08.png);
}
.osusume-lp li:nth-child(9) .sitename:before {
    content: url(https://se-ec.co.jp/uranai-surveyteam/wp-content/uploads/2021/04/icon-lp-rank09.png);
}
.osusume-lp li:nth-child(10) .sitename:before {
    content: url(https://se-ec.co.jp/uranai-surveyteam/wp-content/uploads/2021/04/icon-lp-rank010.png);
}

.osusume-lp span.label {
    display: inline-block;
    margin-right: 5px;
    border-bottom: 1px dashed #af29a0;
    line-height: 1.0em;
}
.osusume-lp .starrate{
	position:relative;
}
.osusume-lp .starrate img {
    margin-bottom: 0;
    position: absolute;
    top: 50%;
	left:2.6em;
    margin-top: -8px;
}
.osusume-lp .btnarea {
    width: 25%;
    float: right;
    text-align: right;
}
.osusume-lp a.gotobtn {
    background: #af29a0;
    padding: .3em 0.7em;
	margin-top:1.7em;
    border-radius: 5px;
    color: #ffffff;
    text-decoration: none;
    display: block;
    box-shadow: 0 3px 0 0 #23011f;
    font-weight: bold;
    text-align: center;
    font-size: 12px;
}
.osusume-lp .footer-btn-box{
	margin:0.7em 0 ;
}
.osusume-lp .footer-btn-box a{
	display: block;
	position: relative;
    border-radius: 5px;
    font-size: 15px;
    text-align: center;
   padding: 0.5em 1.0em;
    text-decoration: none;
    background: #c7af4b;
    color: #fff;
	box-shadow: 0 3px 0 0 #866e09;
}
.osusume-lp .footer-btn-box a:after{
    content: "\f138";
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
	position:absolute;
	right:5px;
	top:50%;
	margin-top:-11px;
}
/*--------------------------------
LP占い師エリア
---------------------------------*/
.osusume-teller-lp li>a {
    color: #af29a0;
	text-decoration:none;
}
.osusume-teller-lp .teller-box{
	border:1px solid #e5e5e5;
	border-radius:10px;
	padding:11px;
	margin-bottom:7px;
	box-shadow: 3px 3px 3px rgb(221 221 221 / 80%);

}
.osusume-teller-lp li:nth-of-type(2n+1) .teller-box{
	margin-right:3px;
}
.osusume-teller-lp li:nth-of-type(2n) .teller-box{
	margin-left:3px;
}
.osusume-teller-lp .teller-imgarea {
    float: left;
	margin-right: 5px;
}
.osusume-teller-lp .teller-img {
    width: 90px;
    height: 90px;
    overflow: hidden;
    border-radius: 50%;
	margin-right:8px;
}
.osusume-teller-lp .teller-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.osusume-teller-lp .teller-info .name{
	display:block;
	font-weight:bold;
	font-size:1.1em;
	text-decoration:underline;
	margin-bottom: 0.3em;
	min-height: 1.5em;
}
.osusume-teller-lp .teller-info .career,.osusume-teller-lp .teller-info .site{
	display:block;
	color:#212121;
font-size: 13px;
    line-height: 1.3em;
}
.teller-info label {
    display: inline-block;
    padding: 0 3px;
    margin-right: 5px;
    font-weight: bold;
    color: #23011f;
}
.osusume-teller-lp p{display:none;}
@media only screen and (min-width: 550px){
  ul.osusume-teller-lp li{
	  float:left;
	  width:50%;
  }
}

/* 2021.07.08 吹き出し追加*/
.fukidashi-box-l,.fukidashi-box-r {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}
.fukidashi-box-l .fukidashi-img {
    text-align: center;
    float: left;
    width: 60px;
    vertical-align: middle;
}
.fukidashi-box-r .fukidashi-img {
    text-align: center;
    float: right;
    width: 60px;
    vertical-align: middle;
}
.fukidashi-img-waku {
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 30px;
}
.fukidashi-name {
    color: #616161;
    font-size: 70%;
    line-height: 1.5;
    max-width: 60px;
}
.fukidashi-box-l .fukidashi-text {
  position: relative;
  display: inline-block;
  margin: 0 0 1.5em 15px;
  padding:15px 20px;
  min-width: 120px;
  max-width: calc(100% - 120px);
  color: #555;
  font-size: 16px;
  background: #fafafa;
	font-size: 15px;
  line-height: 1.5em;
}
.fukidashi-box-l .fukidashi-text:before {
  content: "";
  position: absolute;
  top: 30px;
  left: -20px;
  margin-top: -15px;
  border: 10px solid transparent;
  border-right: 10px solid #fafafa;
}
.fukidashi-box-r .fukidashi-text {
position: relative;
  display: inline-block;
  margin: 0 15px 1.5em 0;
  padding: 15px 20px;
  min-width: 120px;
  max-width: calc(100% - 120px);
  color: #555;
  font-size: 16px;
  background: #fafafa;
  float: right;
	font-size: 15px;
  line-height: 1.5em;
}
.fukidashi-box-r .fukidashi-text:before {
  content: "";
  position: absolute;
  top: 30px;
  left: 100%;
  margin-top: -15px;
  border: 10px solid transparent;
  border-left: 10px solid #fafafa;
}

header .sitename {
	display: inline-block;
    font-size: 20px;
    line-height: 1.3;
    padding: 0;
    margin: 0;
    word-break: break-all;
}

.sitename img
{
max-width: 400px;
max-height: 90px;
margin: 0;
width:100%;
}

/* 2021.08.30 ウィジェット高さ調整*/
/*
#st_custom_html_ad_widget-3{
height: 221px;
}
#st_custom_html_ad_widget-5{
height: 221px;
}
#st_custom_html_ad_widget-4{
height: 139px;
}
#custom_html-2{
height: 737px;
}
*/
/* 2020.10.09 サイドバー占いリスト&スマホスライドメニュー内リスト*/
#sidebar .uranai_list,
#nav-drawer .uranai_list{
    line-height: 12px;
    padding: 1px 0 1px 0;
    background-color: #FFF;
}
#nav-drawer .uranai_list{background:none;}
#sidebar .uranai_list ul,
#nav-drawer .uranai_list ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
	list-style-type: none;
}
#sidebar .uranai_list li,
#nav-drawer .uranai_list li {
    width: 33%;
    text-align: center;
    font-size: 11px;
    line-height: 16px;
    margin-bottom: 15px;
}
#sidebar .uranai_list li a{
    color: #5095ff;
    text-decoration: none;
}
#nav-drawer .uranai_list li a{color:#fff;}
#sidebar .uranai_list .btnarea a,
#nav-drawer .btnarea a,
.mega-menu .mega-menu-item a{
	display: block;
  padding: 7px;
  color: #FFF;
  text-decoration: none;
  text-align: center;
  border-radius: 5px;
  margin: 0 1em 1em;
  line-height: 1.45em;
	position: relative;
}
#sidebar .uranai_list .btnarea a i.fa,
#nav-drawer .btnarea a i.fa,
.mega-menu .mega-menu-item a i.fa{
    position: absolute;
    top: 50%;
    right: 5px;
    display: inline-block;
    margin-top: -7px;
    font-size: 16px;
}
#sidebar .uranai_list .btnarea a.rankbtn,
#nav-drawer .btnarea a.rankbtn,
.mega-menu .mega-menu-item a.rankbtn{
  background-color: #2c97f1;
  border-bottom: solid 6px #0767b7;
	text-decoration:none !important;
}
#sidebar .uranai_list .btnarea a.hikakubtn,
#nav-drawer .btnarea a.hikakubtn,
.mega-menu .mega-menu-item a.hikakubtn{
  background-color: #ffa31c;
  border-bottom: solid 6px #de7c08;
		text-decoration:none !important;
}
#nav-drawer .btnarea a {margin: 1em 0 1em;}

/* 2020.03.17 affingerアップデート後のcopyright表示対応 */
p.copyr {
    margin-bottom: 0;
    line-height: 1.2;
    font-size: 12px;
    text-align: center;
    background: #222222;
    color: #fff;
	padding: 0 15px 50px;
}
#footer {
  background: #222222 !important;
	padding: 20px 15px 1px !important;
}
.ac-images{
	font-size:0 !important;
	margin: 0 !important;
	line-height: 0;
}
/*比較表*/
.post table.vernis_hikaku_tb{
	border-top: 1px #f2dcff solid;
	border-right: 1px #f2dcff solid;
}
.post table.vernis_hikaku_tb th{
	border-bottom-color: #f2dcff;
	border-left-color: #f2dcff;
}
.post table.vernis_hikaku_tb tr td{
	border-bottom-color: #f2dcff;
	border-left-color: #f2dcff;
}
table.vernis_hikaku_tb tr th{
	font-size: 13px;
	background: #4b2d7b;
  color: #fff;
  font-weight: bold;
}
table.vernis_hikaku_tb tr td{
	vertical-align: middle;
	line-height: 1.2em;
	padding: 7px;
}
table.vernis_hikaku_tb tr td .uranau{
	background: url(https://se-ec.co.jp/uranai-surveyteam/wp-content/uploads/2020/12/uranau_btn.png)center center no-repeat;
  padding: 0 0 10px 0;
  margin: 10px 0 0 0;
}
table.vernis_hikaku_tb tr td .uranau a{
	padding: 15px 5px;
  margin: 15px;
  color: #fff;
  text-decoration: none;
	display: block;
}
table.vernis_hikaku_tb tr td .hyouka_icon{
  padding: 50px 15px 20px 15px;
  font-weight: bold;
  color: #a32177;
}
table.vernis_hikaku_tb tr td .h_SS{
	background: url(https://se-ec.co.jp/uranai-surveyteam/wp-content/uploads/2020/12/hyouka_SS.png) center center no-repeat;
}
table.vernis_hikaku_tb tr td .h_S{
	background: url(https://se-ec.co.jp/uranai-surveyteam/wp-content/uploads/2020/12/hyouka_S.png) center center no-repeat;
}
table.vernis_hikaku_tb tr td .h_AA{
	background: url(https://se-ec.co.jp/uranai-surveyteam/wp-content/uploads/2020/12/hyouka_AA.png) center center no-repeat;
}
table.vernis_hikaku_tb tr td .h_A{
	background: url(https://se-ec.co.jp/uranai-surveyteam/wp-content/uploads/2020/12/hyouka_A.png) center center no-repeat;
}
table.vernis_hikaku_tb tr td .h_B{
	background: url(https://se-ec.co.jp/uranai-surveyteam/wp-content/uploads/2020/12/hyouka_B.png) center center no-repeat;
}
table.vernis_hikaku_tb tr td a {
	text-decoration: none;
  color: #ff61e4;
}
table.vernis_hikaku_tb tr td a img{
	box-shadow: 0px 0px 20px #ffef2e;
}
/*先生評価テーブル*/
.teller_info {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: stretch;
    max-width: 700px;
    min-width: 100%;
    min-height: 100px;
    margin: 0 auto 16px;
    box-sizing: border-box;
}
.lbox30 {
    width: 30%;
}
.rbox30 {
    width: 70%;
	max-width:448px;
}
table.evaluation_table{
	border-collapse: separate;
	border-spacing: 0;
	border-radius: 6px;
	overflow: hidden;
	border-top: 1px #fff solid;
	border-right: 1px #fff solid;
	max-width:448px;
}
table.evaluation_table tr th{
	color: #2d0751;
	background-color: #cfbbf1;
	font-weight: bold;
	border-right: 3px solid #dc80bd;
	border-bottom-color: #fff;
	border-left-color: #fff;
	text-align: left;
	font-size: 11px;
	padding: 0 3px;
	line-height: 12px;
	margin: 0;
}
.lp .post table.evaluation_table tr th img{
	vertical-align: middle;
	width:30%;
	display: inline-block;
}
table.evaluation_table tr th img{
	vertical-align: middle;
}
table.evaluation_table tr th.sougou{
	background: #f1bbef;
}
table.evaluation_table tr td{
	background: #4c2d7c;
	text-align: center;
	border-bottom-color: #fff;
	border-left-color: #fff;
	vertical-align: middle;
	font-size: 12px;
	padding: 3px;
	line-height: 1em;
}
table.evaluation_table tr td.tokuten{
	color: #fff100;
	font-weight: bold;
	text-shadow: 2px 2px 5px #000;
}
.starrating{
	color: #fff100;
}
.eva_score{
	color: #fff100;
	font-weight: bold;
}
.total_score{
	padding: 0 20px 0 20px;
	font-size: 150%;
	color: #fff100;
	vertical-align: middle;
}
/* 地域ページのタブ */
#detail-box {
  font-size: 14px;
  background: #fff;
  border-radius: 10px;
  padding: 20px 0 0 0;
  margin-bottom: 16px;
  box-shadow: 0 0 15px 0 rgb(191 203 222 / 40%);
}
.profile-detail {
  display: flex;
  margin-bottom: 15px;
  padding: 0 15px;
  vertical-align: top;
}
.profile-photo {
  width: 75px;
  height: 75px;
  margin-right: 10px;
  overflow: hidden;
  border-radius: 40px;
}
.telling-shop-photo {
  width: 75px;
  height: 75px;
  margin-right: 10px;
  display: flex;
  vertical-align: middle;
}
.profile-date {
  overflow: hidden;
}
#detail-box h3.profile-date-name, .post #detail-box h3.profile-date-name:not([class^="is-style-st-heading-custom-"]):not([class*=" is-style-st-heading-custom-"]):not(.st-css-no):not(.st-matome):not(.rankh3):not(.post-card-title):not(#reply-title){
  font-weight: bold;
  margin: 0 0 3px 0;
  background: none;
  color: #333;
  padding: 0!important;
  font-size: 14px;
  line-height: 20px;
}
#detail-box h3.profile-date-name::before, .post #detail-box h3.profile-date-name:not([class^="is-style-st-heading-custom-"]):not([class*=" is-style-st-heading-custom-"]):not(.st-css-no):not(.st-matome):not(.rankh3):not(.post-card-title):not(#reply-title)::before{
  border-top:none;
}
#detail-box h3.profile-date-name::after, .post #detail-box h3.profile-date-name:not([class^="is-style-st-heading-custom-"]):not([class*=" is-style-st-heading-custom-"]):not(.st-css-no):not(.st-matome):not(.rankh3):not(.post-card-title):not(#reply-title)::after{
  border-top:none;
}
#detail-box .store-details-ul {
  list-style-type: none;
  padding: 0;
  margin-bottom: 20px;
}
#detail-box .profile-ul {
  list-style-type: none;
  padding: 0;
  margin-bottom: 0;
}
#detail-box ul li {
  font-size: 12px;
  list-style: none;
  line-height: 1.2em;
  color: #333;
}
#detail-box ul li::before {
  margin-right: 5px;
  display: inline-block;
  font-size: 14px;
  height: 15px;
  line-height: 15px;
  margin-top: -2px;
  width: 15px;
}
.profile-ul li,.store-details-ul li{
  text-indent: -1.7em;
  padding-left: 1.7em;
}
.f-small {
  font-size: 9px;
}
#detail-box li img {
  flex: 20%;
  width: 15px;
  height: 15px;
  margin-right: 5px;
}
#detail-box .tab-wrap {
  margin-top: 50px;
  padding-bottom: 1em;
  background-color: #fff;
  width: auto;
  margin: 0 auto 1em;
  box-shadow: none;
}
#detail-box .tab-wrap p {
  font-size: 12px;
}
#detail-box .tab-wrap input:checked + .tab_item_01, #detail-box .tab-wrap input:checked + .tab_item_02, #detail-box .tab-wrap input:checked + .tab_item_03 {
  background-color: #a32177;
  color: #fff;
}
.post #detail-box blockquote {
  padding-top: 5px;
  padding-bottom: 5px;
  margin-top: 8px;
  margin-bottom: 8px;
  border-left: none;
  box-shadow: none;
  font-size: 12px;
}
.post #detail-box blockquote::before {
  top: 1px;
  left: 1px;
}
#detail-box .inyoumodoki::before, .post #detail-box blockquote::before {
  font-size: 12px;
}
#detail-box cite {
  font-size: 10px;
}
.people-list-box {
  border: 1px solid #d4d4d4;
  padding: 10px;
  display: block;
  margin-bottom: 10px;
}
.list-box {
  display: table;
  width: 100%;
  min-height: 20px;
}
.list-img {
  display: table-cell;
  width: 80px;
  vertical-align: top;
  padding: 0 10px 10px 0;
}
.list-txt {
  vertical-align: top;
  display: table-cell;
  width: auto;
}
.people-name {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.3;
}
.people-name-ruby {
  font-size: 10px;
  color: #777777;
  font-weight: normal;
}
.fortune-telling-space {
  margin-top: 5px;
  background-color: #f3f3f3;
  padding: 10px;
  margin-bottom: 10px;
}
.fortune-telling-space dt.fortune-telling-txt {
  font-weight: bold;
  font-size: 12px;
}
.fortune-telling-space dd {
  font-size: 10px;
}
#detail-box .btn01, #detail-box .btn02 {
  cursor: pointer;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none !important;
  padding: 0.5em;
  text-align: center;
}
#detail-box .btn01 {
  font-size: 12px;
  background-color: #f21b3f;
  width: 40%;
  box-shadow: 0 4px 0 rgb(197 0 36);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  margin-right: 10px;
  position: relative;
}
#detail-box .btn02 {
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #a32177;
  width: 60%;
  box-shadow: 0 4px 0 #5e0b42;
  color: #fff !important;
  line-height: 1;
  position: relative;
}
#detail-box .btn03 {
  background-color: #f21b3f;
  width: 100%;
  box-shadow: 0 4px 0 #c50024;
  color: #fff !important;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none !important;
  padding: 0.5em;
  position: relative;
}
#detail-box a.btn01:after, #detail-box a.btn02:after, #detail-box a.btn03:after {
  display: block;
  content: url(https://se-ec.co.jp/uranai-surveyteam/wp-content/uploads/2021/05/btn_link.png);
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(40%);
  right: -10px;
}
#detail-box .basicinfo-table {
  border-top: 1px #fff solid;
  border-right: 1px #fff solid;
}
#detail-box .basicinfo-table tr {
  text-align: center;
}
#detail-box .basicinfo-table th {
  background: #ebebeb;
  font-weight: 700;
  font-size: 11px;
  line-height: 5px;
  border-bottom-color: #fff;
  border-left-color: #fff;
}
#detail-box table tr *:nth-child(1) {
  background: #f8ebff;
}
#detail-box table tr *:nth-child(2) {
  background: #fdf4f5;
}
#detail-box .basicinfo-table td {
  font-size: 11px;
  line-height: 9px;
  border-bottom-color: #fff;
  border-left-color: #fff;
}
#detail-box .sns-icon-ul, #detail-box .hp-icon-ul {
  width: 100%;
  list-style-type: none;
  padding: 0;
  margin: 0 0 5px 0;
  display: table;
}
#detail-box .sns-icon-ul li, #detail-box .hp-icon-ul li {
  background: #d9d9d9;
  float: left;
  padding: 8px;
  display: table-cell;
  margin-right: 5px;
}
#detail-box .sns-icon-ul li.twiiter-icon{
  background: #1DA1F2;
}
#detail-box .sns-icon-ul li.Facebook-icon{
  background: #1877f2;
}
#detail-box .sns-icon-ul li.youtube-icon{
  background: #DA1725;
}
#detail-box .sns-icon-ul li.instagram-icon{
  position: relative;
  background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  overflow: hidden;
}
#detail-box .sns-icon-ul li.instagram-icon:before{
  content: '';
  position: absolute;
  top: 23px;
  left: -18px;
  width: 60px;
  height: 60px;
  background: -webkit-radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
  background: radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
}
#detail-box .sns-icon-ul li.line-icon{
  background: #00B900;
}
#detail-box .hp-icon-ul li.blog-icon{
  background: #f44336;
}
#detail-box .hp-icon-ul li.website-icon{
  background: #00bcd4;
}
#detail-box .sns-icon-ul img, #detail-box .hp-icon-ul img {
  flex: 20%;
  width: 20px;
  height: 20px;
  margin-right: 0;
}
#detail-box .divination-ul {
  width: 90%;
  list-style-type: none;
  padding: 0;
  margin: 5px 0 10px 15px;
  display: table;
}
#detail-box .divination-ul li {
  background: #e9e9e9;
  float: left;
  padding: 8px;
  display: table-cell;
  margin: 0 5px 5px 0;
  font-size: 8px;
}
#detail-box ul.tab-ul {
  display: flex;
    background: #eee;
    list-style-type: none;
    padding: 0;
    margin: 0;
}
#detail-box .tab-btn {
  width: 50%;
  padding: 12px 0 8px 0;
  text-align: center;
  list-style: none;
  cursor: pointer;
  color: #a32177;
  font-weight: 700;
  border-bottom: 3px solid #a32177;
}
#detail-box .tab-btn.show {
  background: #a32177;
  color: #fff;
  font-weight: 700;
}
#detail-box .tab-contents {
  display: none;
}
#detail-box .tab-contents.show {
  display: block;
  padding: 20px;
}

/* カテゴリーuranailistページ */
ul.uranailist-shincyaku{
	list-style-type: none;
  display: flex;
  padding: 0;
  margin: 0 0 40px 0;
}
ul.uranailist-shincyaku li{
	    background: #fafafa;
    margin: 0 10px 0 0;
    padding: 0 0 10px;
    display: flex;
    width: 100%;
    text-align: center;
    border: 1px solid #e7e7e7;
}
ul.uranailist-shincyaku li:last-child{
	margin: 0;
}
ul.uranailist-shincyaku li a{
text-decoration: none;
}
ul.uranailist-shincyaku li a .s-title{
    padding: 0 10px!important;
    text-align: left;
    border-left: 5px solid #9454de;
    border-radius: 0;
    margin: 10px 10px 0!important;
    font-size: 12px;
    letter-spacing: .10em;
    color: #9155dc;
    text-decoration: none;
}
@media screen and (max-width: 480px) {
  ul.uranailist-shincyaku{
    flex-wrap: wrap;
  }
  ul.uranailist-shincyaku li{
    margin: 0 0 15px 0;
  }
}

.freedenwa {
	padding: 0 0 15px;
  margin: 0 auto;
  text-align: center;
  width: 80%;
}
.m-btnarea{
	display: flex;
    justify-content: space-evenly;
    padding: 0 0 30px 0;
    width: 90%;
    margin: 0 auto;
    text-align: center;
}
.m-btnarea a.rankbtn,.m-btnarea a.hikakubtn{
	padding:15px !important;
	display: inline-block;
  width: 40%;
    border-radius: 5px;
    color: #fff;
}
.m-btnarea a.rankbtn{
    background-color: #2c97f1;
    border-bottom: solid 6px #0767b7;
    text-decoration: none!important;
}
.m-btnarea a.hikakubtn{
background-color: #ffa31c;
    border-bottom: solid 6px #de7c08;
    text-decoration: none!important;
}
h3.aiuh3{
	text-align:center;
  margin: 10px 0 20px;
}
ul.list-syllabary-ja{
	list-style-type: none;
	display: flex;
    flex-wrap: wrap;
    margin: 10px 30px 20px;
}
ul.list-syllabary-ja li{
	width: calc(100% / 5);
	width: calc(100% / 5);
  text-decoration: underline;
  padding: 0 0 10px 0;
  text-align: center;
}
ul.list-syllabary-ja li a{
	color: #9256d8!important;
  font-weight: 700;
}
.gyo-aiu{
	border-bottom: 1px solid #b5b5b5;
}
.uranai_list ul.aiu-box-ul{
	list-style-type: none;
	display: flex;
  flex-wrap: wrap;
	margin: 20px;
}
.uranai_list ul.aiu-box-ul li.aiu-box-li{
	width: calc(100% / 5);
	width : 20% ;
	width : -webkit-calc(100% / 5) ;
	margin: 0 auto 10px;
  text-align: center;
}
@media screen and (max-width: 480px) {
.uranai_list ul.aiu-box-ul li.aiu-box-li{
	width: calc(100% / 3);
	width : 33.33333% ;
	width : -webkit-calc(100% / 3) ;
  }
}
ul.aiu-box-ul span.aiu-title{
	display: block;
	color: #9255e0;
	font-size: 12px;
}
.m-newopen a{
	background-color: #521f83;
	border-bottom: solid 6px #2d0751;
	text-decoration: none!important;
	padding: 15px!important;
	margin: 20px auto 40px!important;
	display: block;
	width: 65%;
	text-align: center;
	color: #fff;
	border-radius: 5px;
}

/*--------------------------------
TOPページ/占いカテゴリー/詳細マップ
---------------------------------*/
ul#uranai_cate{
	list-style: none;
	padding: 0;
	text-align: center;
}
ul#uranai_cate li{
	display: inline-block;
	width: 30%;
	padding: 0 1% 15px 1%;
}
ul#uranai_cate li img{
	margin: 0 auto;
}
#kantou-chimei dt{
    border-radius: 5px 5px 0 0;
    background: #31beca;
    font-weight: 700;
    text-align: center;
    color: #fff;
	  padding: 5px;
}
#kantou-chimei dd{
    padding: 10px 15px;
    border-radius: 0 0 10px 10px;
    background: #edf8f9;
}
#kantou-chimei ul {
    list-style-type: none;
    padding:10px 0;
    margin:0;
    overflow: hidden;
}
#kantou-chimei ul li{
    list-style-type: none;
    float: left;
    margin-right: 2px;
    height: 50px;
    line-height: 50px;
}
#kantou-chimei ul li a{
    font-size: 16px;
    padding: .5em .3em .5em .3em;
    background: #31beca;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}
@media screen and (min-width: 768px) {
	#kantou-chimei{
		display: flex;
    margin: 0 20px 30px;
	}
	#kantou-chimei dt{
		position: relative;
    padding: 20px 100px;
    border-radius: 5px 0 0 5px;
	}
	#kantou-chimei dt span{
		position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
		}
	#kantou-chimei dd{
		padding: 10px 15px;
    border-radius: 0 5px 5px 0;
    background: #edf8f9;
    width: 100%;
	}
}
/*--------------------------------
横スクロール 2022/11/02
---------------------------------*/
.scrolling-content{
	position: relative;
}
.post ul.horizontal-scroll {
  display: flex;
    max-width: 100%;
    margin: 0;
    overflow-x: auto;
    list-style-type: none !important;
    padding: 10px 0 !important;
    margin-bottom: 20px !important;
}
.post ul.horizontal-scroll li {
  width: 90%;
  padding: 8px;
  margin: 3px;
  flex-shrink: 0;
  list-style: none;
  font-size: 15px;
  line-height: 1.5em;
  padding: 0;
}
.horizontal-scroll::-webkit-scrollbar {
  height: 10px;
}
.horizontal-scroll::-webkit-scrollbar-thumb {
  background: #aaa;
  border-radius: 6px;
}
.horizontal-scroll::-webkit-scrollbar-track {
  background: #ddd;
  border-radius: 6px;
}
.content-box{
	padding: 15px;
}
.h-scroll_women{
	background: #fbefff !important;
}
.h-scroll_men{
	background: #ebf0ff !important;
}
.leftbutton,.rightbutton {
    font-size: 26px;
    position: absolute;
    top: 38%;
    background-color: #ffffff;
    color: #000;
    padding: 25px 15px;
    opacity: 0.6;
}
.leftbutton {
    left: -10px;
    border-radius: 3px;
}
.rightbutton {
    right: -10px;
    border-radius: 3px;
}
.leftbutton:before {
	content: "\f106";
}
.rightbutton:before {
	content: "\f106";
}

/*--------------------------------
ソウルナンバー計算式 2023/03/16
---------------------------------*/
#result{
display: inline;
font-size:15px;
text-align:center;
background:linear-gradient(transparent 75%, #ffc0cb 75%);
font-weight:bold;
}

.soul_siki{
max-width:500px;
}
.soul_siki p{
text-align:center;
}
.soul_siki input {
    vertical-align : middle;
}
input[type='number']{
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #ccc;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
max-width:80px;
}
.soul_siki button{
  border: none;
  display: block;
  width: 100%;
  max-width: 300px;
  padding: 10px;
  border-radius: 5px;
  background-color: #333;
  color: #fff;
  font-weight: bold;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  margin: 0 auto;
}

.numberdesign{
font-size:200%;
padding:0 5px;
}

.soul_kekka{
padding:10px;
background:#FFFFEF;
text-align:center;
}

/*--------------------------------
占い師 pick-box 2024/12/12
---------------------------------*/
/* tableを改行できるように修正 */
.custom-table.is-all-centered td, .custom-table.is-all-centered th, .custom-table.is-all-centered--va td, .custom-table.is-all-centered--va th {
  vertical-align: middle;
  white-space: pre-line;
}
/* アコーディオンの透過を修正 */
.swell-block-accordion__title {
  background: #f5f5f5;
}

/* スクロールできますのデザイン変更 */
:where(.postid-1175) .c-scrollHint {
  margin-bottom: 0.5em !important;
}
:where(.postid-1175, .postid-136568) .c-scrollHint span {
  margin-right: 0.4em;
}
.scroll-box::before  {
    content: none !important;
}

/* 上部広告枠 */
.pick-up-box .swell-block-columns__inner {
  padding: 0em 0.8em 0.8em 0.8em !important;
  justify-content: space-evenly;
}
.summary-box {
  display: flex;
  border: 1px solid #d1a157;
  border-radius: 10px;
  padding: .4em .6em .8em .6em !important;
  white-space: normal;
  flex-direction: column;
  justify-content: space-between;
}
.summary-box-ttl{
  margin-bottom: 0.4em;
}
.summary-box-ttl span {
  font-size: 22px;
  display: inline-block;
  margin: 0 1px;
  padding: 0em 0.3em;
  line-height: 1.5;
  border-radius: 6px;
}
.summary-box-ttl span.gold {
  background: #dfb242; /* ゴールド */
  color: #ffffff;
}
.summary-box-ttl span.silver {
  background: #a7a7a7; /* シルバー */
  color: #ffffff;
}
.summary-box-ttl span.bronze {
  background: #CD7F32; /* ブロンズ */
  color: #ffffff;
}
.image-soothsayer {
  position: relative;
  display: inline-block;
  vertical-align: top;
  overflow: hidden;
  width: 124px;
  height: 124px;
  border-radius: 50%;
  left: 24%;
  border: 1px solid #a27634;
}
.summary-box .custom-btn {
  margin: 1em;
}
.summary-box .wp-block-table th {
  padding: .2em .75em;
}
.pick-up-box .swell-block-columns__inner {
  justify-content: flex-start !important;
}

/*フルワイドbgの調整*/
.custom-bg{/*本番id削除*/
  padding-top: 1.5em !important;
}
/*.custom-bg .swell-block-fullWide__inner.l-article {
  padding: 0;
}*/
/*おすすめ業者装飾*/
.top-bg {
  border-top: 1px solid #be9a56;
  border-bottom: 1px solid #be9a56;
}
.top-bg .deco-heading_wrap {
  margin-bottom: -0.4em;
}
.deco-heading_wrap {
  text-align: center;
  margin-bottom: -0.5em;
}
.image-deco {
  width: 70%;
  margin: auto;
}
@media only screen and (min-width: 600px) {
  .image-deco {
    width: 40%;
  }
}

.deco-heading_head_box {
  display: flex;
  position: relative;
  justify-content: center;
  width: auto;
  align-items: center;
  margin: 0;
}
.deco-heading_head {
  background: 0 0;
  font-size: 22px;
  letter-spacing: normal;
  display: block;
  margin: 0 auto;
  padding: 0 .5em;
  font-weight: 700;
}
span.line {
  font-size: 80%;
  margin: 0.2em;
  color: #ffffff;
  background: #be9a56;
  padding: 0px 7px;
  border-radius: 4px;
}
span.purple {
  font-size: 22px;
  color: #fff;
  background: #4c2d7c;
  display: inline-block;
  margin: 0 1px;
  width: 40px;
  height: 40px;
  line-height: 44px;
  border-radius: 50%;
  text-align: center;
}
svg#Design {
  width: 70%;
  max-width: 600px;
  height: auto;
}
.image-cloud img {
  width: 100%;
  height: auto;
  display: block;
}

/* 商標box */
.cap_box_ttl h3 {
  padding: 0em;
}
.cap_box_ttl h3:before {
  content: none;
}
.tm-box {
  box-shadow: none !important;
}
.tm-box > .cap_box_ttl {
  padding: 1em .5em;
  background-color: #f0e7c5;
  color: #4c2d7c;
}
@media (max-width: 768px) {
  .tm-box {
    margin-left: -4vw;
    margin-right: -4vw;
  }
}
@media screen and (min-width: 768px) {
  .tm-box {
    margin-left: -1vw;
    margin-right: -1vw;
  }
}

/* 商標box アコーディオン型 */
.pickup-ac2 .swell-block-accordion__title {
  width: 64%;
  padding: 0.3em 0.7em;
  margin: -3em 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  font-weight: bold;
  font-size: 0.95em;
  color: #ffffff;
  text-align: center;
  background: #7f53d7;
  border-radius: 5px;
  box-shadow: 1px 2px 4px #bcacdd;
}

.pickup-ac2 .swell-block-accordion__body {
  padding: 1em 0em;
}

.pickup-column2 {
  border-bottom: 1px dashed #cdcdcd;
  margin-bottom: 0.8em;
}

.pickup-icon_1,.pickup-icon_2,.pickup-icon_3 {
  color: #fff;
  height: 1.6em;
  line-height: 1.6;
  width: 2em;
  border-radius: 4px;
  text-align: center;
}
.pickup-icon_1 {
  background-color: #dfb242;;
}
.pickup-icon_2 {
  background-color: #a7a7a7;
}
.pickup-icon_3 {
  background-color: #CD7F32;
}

.tm-box2 {
  padding: 1.5em 1em !important;
  border-top: 1px solid #dacaab;
  border-bottom: 1px solid #dacaab;
}

.pickup-column2 .swell-block-columns__inner {
  row-gap: 0.6em;
}

/*--------------------------------
CTRボタンデザイン
---------------------------------*/
.custom-btn a {
  border-radius: 3em;
  text-shadow: 1px 0px 3px #ed6260;
  background-image: linear-gradient(to bottom, #ffbaad 50%, #f58482 51%);
  border: solid 1px #ffffff;
  outline: solid 1.5px #f58381;
  box-shadow: 0 3px 6px #ffd4cc;
}
.custom-btn2 a {
  text-shadow: 1px 0px 3px #62605c;
  background-image: linear-gradient(to bottom, #e0dcd4 50%, #c4bfb5 51%);
  border-radius: 3em;
  border: solid 1px #ffffff;
  outline: solid 1.5px #b5b0a5;
  box-shadow: 0 3px 6px #ece8e1;
}
.custom-btn3 a {
  font-size: 1.1em;
  border-radius: 8px;
  padding: 1.2em;
  border: solid 1px #ffffff;
  text-shadow: 1px 0px 3px var(--btn-text-shadow);
  background-image: linear-gradient(to bottom, var(--btn-gradient-start) 50%, var(--btn-gradient-end) 51%);
  outline: solid 1.5px var(--btn-outline-color);
  box-shadow: 0 3px 6px var(--btn-shadow-color);
}
/* ベースとなるボタンスタイル */
.custom-btn3:has(a) {
  --btn-shadow-color: #80b2e6;
  --btn-text-shadow: #1768bd;
  --btn-gradient-start: #60a4ec;
  --btn-gradient-end: #2e7dce;
  --btn-outline-color: #2e7dcf;
}
/* 緑色バージョン */
.custom-btn3.green_:has(a) {
  --btn-shadow-color: #5db447;
  --btn-text-shadow: #3c9825;
  --btn-gradient-start: #58b941;
  --btn-gradient-end: #3a9822;
  --btn-outline-color: #2c8e14;
}
/* 紫色バージョン */
.custom-btn3.purple_:has(a) {
  --btn-shadow-color: #926ec9;
  --btn-text-shadow: #7917bd;
  --btn-gradient-start: #926ec9;
  --btn-gradient-end: #614290;
  --btn-outline-color: #dba51e;
}
/* 赤色バージョン */
.custom-btn3.crimson_:has(a) {
  --btn-shadow-color: #b36e6d;
  --btn-text-shadow: #8a0b09;
  --btn-gradient-start: #c40d0c;
  --btn-gradient-end: #8a0b07;
  --btn-outline-color: #be9a56;
}

.custom-btn-line-1 a {
  font-weight: bold;
  color: #a59b83;
  border-radius: 3em;
}
.custom-btn-line-1 a:hover {
  background-color: #a59b83;
  border-color: transparent;
  color: #fff !important;
}
.custom-btn-min .blue_ a {
  border-radius: 2px;
  text-shadow: 1px 0px 3px #1768bd;
  background: #60a4ec;
  border: solid 1px #ffffff;
  outline: solid 1.5px #2e7dcf;
  box-shadow: 0 3px 6px #80b2e6;
  padding: .5em .8em;
}
.custom-btn-min .red_ a {
  border-radius: 2px;
  text-shadow: 1px 0px 3px #df3434;
  background: #ff9a9a;
  border: solid 1px #ffffff;
  outline: solid 1.5px #f05f5f;
  box-shadow: 0 3px 6px #ffadad;
  padding: .5em .8em;
}

table.evaluation_table tr th {
  background-color: #ffe2e0;
  border-right: none;
}

.sougou {
  background: #ffc3be !important;
}

.starrating,
.eva_score,
table.evaluation_table tr td.tokuten,
.total_score {
  color: #ffde6b;
}

/* メリットbox */
.box-merit,
.box-demerit
 {
  border-radius: 6px;
}
.box-merit li:before {
  color: #00b969;
}

/*メリット・すすめbox*/
.box-merit2:has(.cap_box_ttl) {
  --border-color: #00b969;
  --background-color: #ecfff7;/* デフォ背景色 */
  --content-background-color: #ffffff; /* cap_box_content用の背景色 */
  --list-bg: #1fc57d;
  --list-shadow: #00b969;
  --check-color: #0fbe74;
}
.box-demerit2:has(.cap_box_ttl) {
  --border-color: #ff3636;
  --background-color: #fff0f0; /* デフォ背景色 */
  --content-background-color: #ffffff; /* cap_box_content用の背景色 */
  --list-bg: #ff4d4d;
  --list-shadow: #ff3636;
  --check-color: #ff3636;
}
.box-best2:has(.cap_box_ttl) {
  --border-color: #c89c48;
  --background-color: #f9f5e6; /* デフォ背景色 */
  --content-background-color: #ffffff; /* cap_box_content用の背景色 */
  --list-bg: #f9f4e3;
  --list-shadow: #c9ab73;
  --check-color: #c89c48;
}
.box-merit2 .cap_box_ttl,
.box-demerit2 .cap_box_ttl,
.box-best2 .cap_box_ttl {
  border: 1px solid var(--border-color);
  background: var(--background-color);
  border-radius: 4px 4px 0 0;
  color: var(--border-color);
}
.box-merit2 .cap_box_content,
.box-demerit2 .cap_box_content,
.box-best2 .cap_box_content {
  border: 1px solid var(--border-color);
  border-radius: 0 0 4px 4px;
  background: var(--content-background-color);
}
.box-merit2 .wp-block-list.is-style-num_circle li:before,
.box-demerit2 .wp-block-list.is-style-num_circle li:before,
.box-best2 .wp-block-list.is-style-num_circle li:before {
  background: var(--list-bg);
  box-shadow: 0 0 0 1px var(--list-shadow);
}
.box-merit2 .is-style-check_list li:before,
.box-demerit2 .is-style-check_list li:before,
.box-best2 .is-style-check_list li:before {
  color: var(--check-color);
  content: "\e923";
}
.box-merit2 .is-style-good_list li:before,
.box-demerit2 .is-style-good_list li:before,
.box-best2 .is-style-good_list li:before {
  color: var(--check-color);
  content: "\ea56";
}

/*公式リンクデザイン*/
.custom-link-title dt:after {
  display: none !important;
}
.custom-link-title {
  align-items: center;
}
.custom-link-title dt {
  padding: 0.5em !important;
  width: auto !important; /* 固定幅から自動幅に変更 */
  min-width: 3em !important; /* 最小幅を設定 */
  display: inline-block !important; /* インラインブロック要素に変更 */
  margin-right: 0.5em;
  background: #9e78eb;
  color: #ffffff;
  border-radius: 4px;
  text-align: center; /* テキストを中央揃え */
}

/* ddタグの幅自動調整 */
.custom-link-title .swell-block-dl__dd {
  margin-left: 0;
  width: auto;
  flex: 1;
}

/*--------------------------------
占い師募集ページ 2025/01/23
---------------------------------*/
.custom-ttl2 {
  background: #ffffff !important;
  border: 2px solid #d2ae64 !important;
  color: #c7a050 !important;
  border-radius: 38px !important;
  padding: 0.5em 1em !important;
}
.catch-test {
  position: relative;
  border-top: 1px solid #be9a56;
  border-bottom: 1px solid #be9a56;
}
.catch-test::before {
  content: "";
  position: absolute;
  left: 1em;
  top: 45%;
  transform: translateY(-50%);
  width: 120px;
  height: 110%;
  background-image: url(https://se-ec.co.jp/uranai-surveyteam/wp-content/uploads/2025/01/image-maya-1.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.catch-test p {
  padding-left: 6.5em;
}
@media (min-width: 600px) {
  .catch-test::before {
    left: 6em;
    width: 148px;
    height: 178%;
    top: 75%;
  }
    .catch-test span {
      font-size: 24px;
  }
}
@media (min-width: 540px) and (max-width: 540px) {
  .catch-test {
    padding: 1em !important;
  }
}

.custom-ttl strong > span.swl-fz.u-fz-l {
  border-bottom: 2px solid #e44141;
  padding: 0.2em;
}

.custom-scroll-box .swell-block-columns__inner {
  padding: 0em 1em;
}
.custom-scroll-box .swell-block-columns__inner::-webkit-scrollbar {
display: none;
}
.custom-scroll-box img {
  filter: drop-shadow(6px 6px 0px #6f47df);
}

.pr-merit-box {
  border-radius: 12px;
}
.custom-step {
  background: #ffffff;
}
.custom-step .u-col-main {
  background: #efe6c4;
  padding: 0.5em;
  border-radius: 20px !important;
}

/*--------------------------------
reCAPTCHAバッジの非表
---------------------------------*/
.grecaptcha-badge { visibility: hidden; }

/*--------------------------------
wom-manager プラグイン修正 アプデで削除可能
---------------------------------*/
.review-list {
  list-style: none !important;
  padding-left: 0 !important;
}
/* ももピンボタン変更 */
.pp-store-actions .pp-button {
    width: 100%;
    border-radius: 30px !important;
}
button.pp-button.pp-detail-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #eb4141;
    border: 2px solid #eb4141;
    background-color: transparent !important;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.pp-close-button {
    font-size: 36px; /* ボタンのサイズを大きく */
    padding: 15px; /* クリック判定を広げる */
    z-index: 9999;/* 他の要素より前面に */
}
.pp-store-icon .pp-img {
    border: none !important;
    border-radius: 1pt !important;
    }
