/*リセット*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    color: #666666;
}

* {
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    line-height: inherit;
    margin: 0;
    padding: 0;
}

ul,
ol {
    list-style-type: none;
}

html {
    height: 100%;
    text-size-adjust: none;
    font-size: 62.5%;
}

body {
    min-height: 100%;
    font-family:"メイリオ", Meiryo, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック体", "游ゴシック Medium", "Yu Gothic Medium", YuGothic, "MS PGothic", "ＭＳ Ｐゴシック", sans-serif !important;
    font-size: 1.4rem;
    line-height: 1.6;
    color: #333333;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    background: #fdfdfd;
}

a {
    color: var(--blue2);
    text-decoration: none;

    &:not(.u-nofade) {
        transition: opacity 0.3s linear;
        opacity: 1;

        &:hover {
            opacity: 0.8;
        }
    }

    &:focus,
    &:hover {
        color: #00A1BF;
        text-decoration: inherit;
    }
}

img {
    max-width: 100%;
    height: auto;
}

::placeholder {
    color: #008091;
    opacity: 0.5;
}

textarea {
    line-height: 1.8;
}

input[type="submit"],
input[type="button"] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 15px;
    background: #1FB2FF;
    color: #FFFFFF;
    font-size: 18px;
    border-radius: 5px;
    box-shadow: 0 4px 0 0 #008FFF;
    min-width: 250px;
    transition-duration: 100ms;
    font-weight: bold;
    border: none;

    &::-webkit-search-decoration {
        display: none;
    }

    &::focus {
        outline-offset: -2px;
    }
}

input[type="submit"]:hover, input[type="button"]:hover {
    box-shadow: 0 0px 0 0 #008FFF;
    margin: 4px 0 -4px;
}

input[type="text"],
textarea {
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #aaaaaa;
}

/*マージン*/
.u-mt5 {
    margin-top: 5px;
}

.u-mt10 {
    margin-top: 10px;
}

.u-mt15 {
    margin-top: 15px;
}

.u-mt20 {
    margin-top: 20px;
}

.u-mt25 {
    margin-top: 25px;
}

.u-mt30 {
    margin-top: 30px;
}

.u-mt35 {
    margin-top: 35px;
}

.u-mt40 {
    margin-top: 40px;
}

.u-mt50 {
    margin-top: 50px;
}

.u-mt60 {
    margin-top: 60px;
}

.u-mt70 {
    margin-top: 70px;
}

.u-mb0 {
    margin-bottom: 0px;
}

.u-mb5 {
    margin-bottom: 5px;
}

.u-mb10 {
    margin-bottom: 10px;
}

.u-mb15 {
    margin-bottom: 15px;
}

.u-mb20 {
    margin-bottom: 20px;
}

.u-mb25 {
    margin-bottom: 25px;
}

.u-mb30 {
    margin-bottom: 30px;
}

.u-mb35 {
    margin-bottom: 35px;
}

.u-mb40 {
    margin-bottom: 40px;
}

.u-mb50 {
    margin-bottom: 50px;
}

.u-mb60 {
    margin-bottom: 60px;
}

.u-mb70 {
    margin-bottom: 70px;
}

.u-ml5 {
    margin-left: 5px;
}

.u-ml10 {
    margin-left: 10px;
}

.u-ml15 {
    margin-left: 15px;
}

.u-ml20 {
    margin-left: 20px;
}

.u-ml25 {
    margin-left: 25px;
}

.u-ml30 {
    margin-left: 30px;
}

.u-ml35 {
    margin-left: 35px;
}

.u-ml40 {
    margin-left: 40px;
}

.u-ml50 {
    margin-left: 50px;
}

.u-ml60 {
    margin-left: 60px;
}

.u-ml70 {
    margin-left: 70px;
}

.u-mr5 {
    margin-right: 5px;
}

.u-mr10 {
    margin-right: 10px;
}

.u-mr15 {
    margin-right: 15px;
}

.u-mr20 {
    margin-right: 20px;
}

.u-mr25 {
    margin-right: 25px;
}

.u-mr30 {
    margin-right: 30px;
}

.u-mr35 {
    margin-right: 35px;
}

.u-mr40 {
    margin-right: 40px;
}

.u-mr50 {
    margin-right: 50px;
}

.u-mr60 {
    margin-right: 60px;
}

.u-mr70 {
    margin-right: 70px;
}

.u-m5 {
    margin: 5px;
}

.u-m10 {
    margin: 10px;
}

.u-m20 {
    margin: 20px;
}

.u-m30 {
    margin: 30px;
}

.u-m40 {
    margin: 40px;
}

.u-m50 {
    margin: 50px;
}

.u-mla {
    margin-left:auto;
}

.u-mra {
    margin-right:auto;
}

.u-mta {
    margin-top:auto;
}

.u-mba {
    margin-bottom:auto;
}

/*ヘッダー*/
.l-wrapper {
    width:100%;
    margin:0 auto;
}

.l-header {
    width:100%;
    height:120px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.l-header_nav {
    position: fixed;
    top: 60px;
    width: 100%;
    height: 60px;
    box-sizing: border-box;
    z-index: 100;
    box-shadow: 0 0px 3px 0 rgba(0,0,0,0.3);
    transition: all 0.5s;
}

.l-header_nav ul {
    display: flex;
    justify-content: center;
    width: 100%;
    list-style: none;
    background: #FFF;
}

.l-header_nav ul li{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 17%;
    height: 60px;
    background: linear-gradient(#ffffff, #eeeeee);
    border-left: 1px solid #FFFFFF;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    box-sizing: border-box;
    position: relative;
}

.l-header_nav.l-header_nav_next ul li{
    width: 25%;
}

.l-header_nav ul li a{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: stretch;
    padding: 5px 0 7px;
    width: 100%;
    height: 60px;
    box-sizing: border-box;
    background: linear-gradient(#ffffff, #eeeeee);
    font-size: 33px;
    z-index: 103;
}

.l-header_nav ul li a small{
    margin-top: auto;
    font-size: 10px;
    font-weight: bold;
}

.l-header_nav ul li .count {
    position: absolute;
    top: 3px;
    right: 3px;
    min-width: 25px;
    height: 25px;
    padding: 0 4px 2px;
    background: #DE8B8D;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    border-radius: 20px;
    z-index:999;
}

.l-header_nav_button {
    position:relative;
    width:3rem;
    height: 38px;
    padding:0;
    margin:0;
    background-color:none;
    overflow: inherit;
}

/*nav menu*/

.l-header_nav_drawer {
    transition: right .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
    position: fixed;
    z-index: 101;
    top: 0;
    right:-260px;
    width: 260px;
    height: 0;
    background:#FFFFFF;
}

.drawer-open .l-header_nav_drawer {
    display:block;
    transition: right .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
    position: fixed;
    z-index: 101;
    top: 0;
    right:0;
    width: 260px;
    height: 100%;
}

.drawer-open .l-header_nav_drawer_next {
    display:block;
    transition: right .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
    position: fixed;
    z-index: 101;
    top: 60px;
    right:0;
    width: 100%;
    height: calc(100% - 60px);
}

.drawer-close .l-header_nav_drawer {
    transition: right .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
    position: fixed;
    z-index: 101;
    top: 0;
    right:-260px;
    width: 260px;
    height: 100%;
    background:#FFFFFF;
}

.drawer-close .l-header_nav_drawer_next {
    transition: right .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
    position: fixed;
    z-index: 101;
    top: 60px;
    right:-260px;
    width: 260px;
    height: 100%;
    background:#FFFFFF;
}

.l-header_nav_drawer_chenge {
    display:flex;
    flex-direction:column;
}

.l-header_nav_drawer_chenge_point {
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#FFFFF7;
    padding:10px;
}

.l-header_nav_drawer_chenge_point .icon-icon_point {
    display:flex;
    align-items:center;
    font-size:1.4rem;
}

.l-header_nav_drawer_chenge_point .icon-icon_point:before {
    font-size:1.8rem;
    padding-right:5px;
}

.l-header_nav_drawer_chenge_point_link {
    width:110px;
    padding:10px 0;
    border-radius:20px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#ED3538;
    color:#FFF;
}

.l-header_nav_drawer_chenge_mile {
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#DBFFE0;
    padding:10px;
}

.l-header_nav_drawer_chenge_mile .icon-icon_miles{
    display:flex;
    align-items:center;
    font-size:1.4rem;
}

.l-header_nav_drawer_chenge_mile .icon-icon_miles:before{
    font-size:1.8rem;
    padding-right:5px;
}

.l-header_nav_drawer_chenge_mile_link {
    width:110px;
    padding:10px 0;
    border-radius:20px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#1CBBBE;
    color:#FFF;
}

/*nav menu news*/

.l-header_nav_drawer_news {
    margin:10px;
}

.l-header_nav_drawer_news a {
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:5px;
    border:1px solid #000;
    padding:10px 0;
    width:100%;
    font-size:1.6rem;
}

.l-header_nav_drawer_news a .icon-icon_kakko_right {
    font-size:1.6rem;
    margin-right:10px;
}

.l-header_nav_drawer_news a small {
    background:#2EBBBE;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:1.6rem;
    color:#FFFFFF;
    padding: 5px 6px;
    line-height: 1.4;
    border-radius:25px;
}

/*nav menu menu*/
.l-header_nav_drawer_menu {
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    padding:10px;
}

.l-header_nav_drawer_menu li {
    width:70px;
    margin-bottom:10px;
    position:relative;
}

.l-header_nav_drawer_menu li a {
    display:flex;
    flex-direction:column;
    align-items:center;
}

.l-header_nav_drawer_menu li a img {
    width:70px;
    height:70px;
    margin-bottom:5px;
}

.l-header_nav_drawer_menu li a small {
    font-size:10px;
    text-align:center;
}

.l-header_nav_drawer_menu li .count {
    position: absolute;
    top: -9px;
    right: -9px;
    width: 25px;
    height: 25px;
    padding: 0 1px 2px;
    background: #DE8B8D;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    border-radius: 20px;
}

/*nav menu submenu*/
.l-header_nav_drawer_submenu {
    display:flex;
    flex-direction:column;
    width:100%;
}

.l-header_nav_drawer_submenu li {
    display:flex;
    width:100%;
}

.l-header_nav_drawer_submenu li a {
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#3AACC3;
    color:#FFFFFF;
    padding:5px 15px;
    height:50px;
    width:100%;
}

.l-header_nav_drawer_submenu li a .icon-icon_kakko_right {
    font-size:1.4rem;
    color:#FFFFFF;
    padding-left:5px;
}

/*nav menu newsmain*/
.l-header_nav_drawer_newsmain {
    background:#EAEBEB;
    padding:15px 10px;
}

.PimgBoxInfo {
    background: #FFF;
    margin:0 0 15px 0;
    border-radius: 10px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 0 3px 0 rgba(0,0,0,0.2);
    position: relative;
}

.PimgBoxRibonContent {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 89px;
    height: 91px;
    overflow: hidden;
}

.PimgBoxRibon {
    display: inline-block;
    position: absolute;
    padding: 7px 0;
    left: -23px;
    top: 22px;
    width: 160px;
    text-align: center;
    font-size: 16px;
    line-height: 16px;
    background: linear-gradient(to right, #4298fa 0%,#8fcdff 100%);
    color: #fff;
    text-shadow: 0 2px 2px #56a1f3;
    letter-spacing: 0.05em;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.PimgBoxRibon:before {
    left: 14px;
}

.PimgBoxRibon:after {
    right: 18px;
}

.PimgBoxRibon:before, .PimgBoxRibon:after {
    position: absolute;
    content: "";
    border-top: 4px solid #3672b6;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    bottom: -4px;
}

.PimgBoxInfo h3 {
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-weight: bold;
    width: 100%;
}

.PimgBoxInfo h4 {
    font-weight: bold;
    width: 100%;
    margin-bottom: 5px;
}

.PimgBoxInfo p {
    margin-bottom: 10px;
    font-size: 14px;
}

/*nav menu twitter*/
.l-header_nav_drawer_twitter {
    margin-bottom:20px;
}


/*メインカラム*/
.l-main_3calam {
    display:flex;
    align-items:flex-start;
    margin: 20px 15px 50px;
    padding: 0;
    border-left: none;
}

/*メインカラム*/
.l-main_3calam_next {
    display:flex;
    align-items:flex-start;
    margin: 0;
    padding: 0;
    border-left: none;
}

/*メインカラム*/
.l-main_3calam_chat {
    display:flex;
    align-items:flex-start;
    padding: 0;
    border-left: none;
}

.l-main_2calam {
    display:flex;
    align-items:flex-start;
    margin: 20px 15px 50px;
    padding: 0;
    border-left: none;
}

/*左カラム*/
.l-aside_left {
    display:flex;
    flex-direction:column;
    width:185px;
    margin-right:15px;
}

/*左カラム マイデータ*/
.l-aside_left_mydata {
    display:flex;
    flex-direction:column;
    width:100%;
    border:1px solid #9EB4DB;
    margin-bottom:15px;
    background:#FFFFFF;
}

.l-aside_left_mydata h2 {
    display:flex;
    justify-content:center;
    align-items:center;
    background:#E6ECFE;
    color:#1D3994;
    font-size:1.4rem;
    padding:5px;
}

.l-aside_left_mydata_photobox {
    display:flex;
    flex-direction:column;
    align-items:center;
    padding:15px 10px;
    border-bottom:1px solid #9A9FA4;
}

.l-aside_left_mydata_photobox h3 {
    font-size:1.4rem;
    margin-bottom:15px;
}

.l-aside_left_mydata_photobox img {
    width:100px;
    margin-bottom:15px;
    object-fit:contain;
    aspect-ratio: 4/5;
}

.l-aside_left_mydata_photobox_link {
    width:100%;
    display:flex;
    justify-content:space-between;
}

.l-aside_left_mydata_photobox_link h4 {
    width:80px;
    font-size:1.2rem
}

.l-aside_left_mydata_photobox_link a {
    text-align:right;
    font-size:1.2rem
}

.l-aside_left_mydata_pointmile {
    padding:15px 10px;
}

.l-aside_left_mydata_pointmile_point {
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:10px;
}

.l-aside_left_mydata_pointmile_point h4 {
    font-size:1.2rem;
}

.l-aside_left_mydata_pointmile_point a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #47B300;
    color: #FFFFFF;
    font-size: 1.2rem;
    padding: 5px;
    border-radius: 20px;
    width: 90px;
}

.l-aside_left_mydata_pointmile_mile {
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:15px;
}

.l-aside_left_mydata_pointmile_mile h4 {
    font-size:1.2rem;
}

.l-aside_left_mydata_pointmile_mile a {
    display:flex;
    justify-content:center;
    align-items:center;
    background:#47B3D9;
    color:#FFFFFF;
    font-size:1.2rem;
    padding:5px;
    border-radius: 20px;
    width: 90px;
}

.l-aside_left_mydata_pointmile_milechenge {
    margin-bottom:10px;
}

.l-aside_left_mydata_pointmile_milechenge .icon_ya_right {
    display:flex;
    align-items:center;
    justify-content:flex-end;
}

.l-aside_left_mydata_pointmile_milechenge .icon_ya_right:after {
    display:block;
    content:"";
    font-size:1.4rem;
    color:#E86900;
    padding-left:5px;
}

.l-aside_left_mydata_pointmile_img {
    width:100%;
}

/*左カラム メニュー*/
.l-aside_left_menu {
    border:1px solid #FF8CB5;
    margin-bottom:15px;
}

.l-aside_left_menu h2 {
    display:flex;
    justify-content:center;
    align-items:center;
    background:#FFECFE;
    color:#FC4A94;
    font-size:1.4rem;
    padding:5px;
}

.l-aside_left_menu_list {
    display:flex;
    flex-direction:column;
    margin: 10px;
}

.l-aside_left_menu_list li {
    position: relative;
    font-size: 14px;
    margin-bottom: 10px;
}

.l-aside_left_menu_list li:last-child {
    margin-bottom: 0px;
}

.l-aside_left_menu_list li a {
    display: flex;
    align-items: center;
    border-radius: 5px;
    position: relative;
    padding: 10px 10px 10px 15px;
    color: #616C76;
    background: linear-gradient( #ffffff 0%, #f2f2f2 100%);
    border: 1px solid #ddd;
}

.l-aside_left_menu_list li a:hover {
    color: #616C76;
    background: linear-gradient(to top, #ffffff 0%, #f2f2f2 100%);
}

.l-aside_left_menu_list li small {
    display: block;
    background-color: #E04848;
    width: 34px;
    height: 34px;
    line-height: 35px;
    text-align: center;
    color: #FFF;
    border-radius: 30px;
    font-size: 14px;
    position: absolute;
    top: 4px;
    right: 10px;
    transition-duration: 0.5s;
}

.l-aside_left_menu_accordion {
    padding:10px;
    margin-bottom:10px;
}

.l-aside_left_menu_accordion label {
    cursor: pointer;
    text-indent: 20px;
    line-height: 30px;
    background-repeat: no-repeat;
    background-position: 0px 10px;
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border-radius: 5px;
    box-shadow: 0 4px 0 #ddd;
    position: relative;
    padding: 5px 10px 5px 17px;
}

.l-aside_left_menu_accordion label:before {
    display: block;
    content: "";
    background-image: url(../image/sn_icon9.png);
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
}

.l-aside_left_menu_accordion input {
    display: none;
}

.l-aside_left_menu_accordion ul {
    margin: 0;
    padding: 0;
	list-style: none;
    padding: 0px;
    border-radius: 0 0 5px 5px;
    background: #FFF;
}

.l-aside_left_menu_accordion ul li {
	height: 0;
	overflow: hidden;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	padding-left: 4px;
	border: none;
	font-size: 14px;
}

.l-aside_left_menu_accordion input[type="checkbox"]:checked + ul {
    background: #FFF;
    margin-top: 30px;
    border-radius: 8px;
	position: relative;
    padding: 25px 5px 10px;
	box-shadow: 0 0 1px 0 rgba(0,0,0,0.2);
    border: 1px solid #ddd;
}

.l-aside_left_menu_accordion input[type="checkbox"]:checked + ul:before {
	display:block;
	content:"";
    position: absolute;
    top: -17px;
    left: 110px;
	width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 13px 18px 13px;
    border-color: transparent transparent #ddd transparent !important;
}

.l-aside_left_menu_accordion input[type="checkbox"]:checked + ul:after {
	display:block;
	content:"";
    position: absolute;
    top: -15px;
    left: 110px;
	width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 13px 18px 13px;
    border-color: transparent transparent #fff transparent;
}

#menu_bar01:checked ~ #links01 li {
    height: 35px;
    opacity: 1;
	font-size:12px;
}
.l-aside_left_twitter {
    margin-bottom:15px
}

.l-aside_left_logo {
    width: 150px;
    padding: 25px 25px 10px;
    background: #FFF;
    border-radius: 10px;
    margin: 0 auto 15px;
}

/*中央カラム*/
.l-article_main {
    width:100%;
    margin-right:15px;
    display:flex;
    flex-direction:column;
}

.l-article_main_chatsl {
    width:100%;
    display:flex;
    flex-direction:column;
}

.l-article_main_sub {
    margin:0 15px 20px;
}

/*中央カラム pickup*/
.l-article_main_pickup {
    width:100%;
    margin-bottom:25px;
    order:1;
}

.l-article_main_pickup input {
    display:none;
}

.l-article_main_pickup_tab {
    display:flex;
    align-items:center;
    display:none;
}

.l-article_main_pickup_tab_girl {
    top:1px;
    left:5px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background: #FFEBFF;
    border: 1px solid #D6D5D5;
    border-bottom: none;
    width: 110px;
    border-radius: 5px 5px 0 0;
}
.l-article_main_pickup_tab_keijiban {
    top:1px;
    left:114px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background: #FFFFFF;
    border: 1px solid #D6D5D5;
    border-bottom: none;
    width: 110px;
    border-radius: 5px 5px 0 0;
}
.l-article_main_pickup_tab_profsearch {
    top:1px;
    left:223px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background: #FFFFFF;
    border: 1px solid #D6D5D5;
    border-bottom: none;
    width: 135px;
    border-radius: 5px 5px 0 0;
}

.l-article_main_pickupgirl_contents {
    background: #FFFFFF;
    border: 1px solid #D6D5D5;
}

.l-article_main_pickupgirl_contents h2 {
    background: #FF5FE3;
    color: #FFFFFF;
    font-size: 1.8rem;
    padding: 10px;
}

.l-article_main_pickupgirl_contents h2:before {
    color:#FFFFFF;
    font-size:1.8rem;
    margin-right:3px;
}

.l-article_main_pickupgirl_contents>ul {
    display:flex;
    flex-direction:column;
    margin:15px;
}

.l-article_main_pickupgirl_contents>ul>li {
    width: 100%;
    position: relative;
    margin-bottom: 5px;
    padding: 10px 0;
    border-bottom: 1px solid #BEBEBE;
}

.l-article_main_pickupgirl_contents>ul>li:last-child {
    margin-bottom:15px;
}

.l-article_main_pickupgirl_contents>ul>li>a {
    display:flex;
    align-items:flex-start;
    color:#FF6BBA;
    font-size:1.2rem;
}

.l-article_main_pickupgirl_contents_list_left {
    width: 160px;
    height: auto;
    position: relative;
}

.l-article_main_pickupgirl_contents_list_left img {
    border-radius: 0;
    max-width: 160px;
}

.l-article_main_pickupgirl_contents_list_right {
    margin-left: 15px;
    width: 100%;
}

.l-article_main_pickupgirl_contents_list_right h3 {
    font-size: 1.8rem;
    color:#FF6394;
}

.l-article_main_pickupgirl_contents_list_right p {
    font-size:1.4rem;
    color:#4E4E4E;
}

.l-article_main_pickupgirl_contents_list_right_profile {
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    font-size: 1.2rem;
}

.l-article_main_pickupgirl_contents_list_kidoku {
    position:absolute;
    top:0;
    right:0;
    border-top: 40px solid #FF0000;
    border-left: 40px solid transparent;
}

.l-article_main_pickupgirl_contents_list_kidoku:before {
    content:"NEW";
    display:block;
    transform:rotate(45deg);
    color:#FFFFFF;
    font-size: 1.1rem;
    position: absolute;
    top: -33px;
    left: -27px;
    width: 30px;
}

.l-article_main_pickupgirl_contents_btn {
    display:flex;
    align-items:center;
    justify-content:center;
    width:320px;
    padding:5px;
    font-size:1.8rem;
    color:#FFFFFF;
    background:#FF5FE3;
    border-radius:20px;
    padding: 10px 0 12px;
    margin: 10px auto ;
}
.l-article_main_pickup_btn  {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px auto 15px;
    font-size: 1.8rem;
}

.l-article_main_pickup_btn li {
    display: flex;
    align-items: center;
    border: 1px solid #FF6BBA;
    border-radius: 50px;
    margin: 15px 10px 15px;
    color: #FF6BBA;
    font-size: 1.8rem;
    padding: 5px 20px;
}

.l-article_main_pickup_btn li a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #FFFFFF;
    padding: 5px 20px;
    border-radius: 50px;
    background: #FF6BBA;
}

.l-article_main_pickup_btn li:has(a) {
    padding:0;
    border: none;
}

.l-article_main_pickupgirl_contents_btn.icon-icon_kakko_right {
    font-size:1.8rem;
    color:#FFFFFF;
}

.l-article_main_pickupgirl_contents_btn.icon-icon_kakko_right:before {
    padding-top:2px;
}

/*中央カラム menuicon*/
.l-article_main_menuicon {
    width:100%;
    margin-bottom:25px;
    display:none;
}

.l-article_main_menuicon ul {
    display:flex;
    justify-content:space-around;
}

.l-article_main_menuicon ul li a {
    display:flex;
    flex-direction:column;
    align-items:center;
    color:#0087FF;
}

.l-article_main_menuicon ul li a img {
    width:80px;
    margin-bottom:10px;
}

.l-article_main_menuicon ul li a span {
    font-size:1.4rem;
    color:#0087FF;
}

.newmark {
    position: absolute;
    color: red;
    font-weight: bold;
    border-radius: 20px;
    top: -5px;
    left: -2px;
    font-size: 10px;
    text-shadow: 2px 2px 1px #ffffff, -2px 2px 1px #ffffff, 2px -2px 1px #ffffff, -2px -2px 1px #ffffff, 2px 0px 1px #ffffff, 0px 2px 1px #ffffff, -2px 0px 1px #ffffff, 0px -2px 1px #ffffff;
}


/*中央カラム　おすすめメンバー*/
.l-article_main_recoment {
    background: #FFFFFF;
    border: 1px solid #D6D5D5;
    display:none;
}

.l-article_main_recoment h2 {
    color:#FF4AC2;
    background:#FFEBFF;
    font-size:1.8rem;
    padding: 10px;
}

.l-article_main_recoment h2:before {
    color:#FF4AC2;
    font-size:1.8rem;
}

.l-article_main_recoment ul {
    display:flex;
    justify-content:center;
    margin:15px;
}

.l-article_main_recoment ul li {
    width:25%;
    margin-right:15px;
}

.l-article_main_recoment ul li:last-child {
    margin-right:0px;
}

.l-article_main_recoment ul li a {
    display:flex;
    flex-direction:column;
    align-items:center;
    color:#FF6BBA;
    font-size:1.2rem;
}

.l-article_main_recoment ul li a img {
    margin-bottom:10px;
}

.l-article_main_recoment_btn {
    display:flex;
    align-items:center;
    justify-content:center;
    width:320px;
    padding:5px;
    font-size:1.8rem;
    color:#FFFFFF;
    background:#FF5FE3;
    border-radius:20px;
    padding: 10px 0 12px;
    margin: 15px auto;
}

.l-article_main_recoment_btn:hover {
    color:#FFFFFF;
}

/*中央カラム　おすすめメンバー*/
.l-article_main_recoment {
    background: #FFFFFF;
    border: 1px solid #D6D5D5;
    margin-bottom:25px;
}

.l-article_main_recoment h2 {
    color:#FF4AC2;
    background:#FFEBFF;
    font-size:1.8rem;
    padding: 10px;
}

.l-article_main_recoment h2:before {
    color:#FF4AC2;
    font-size:1.8rem;
}

.l-article_main_recoment ul {
    display:flex;
    justify-content:center;
    margin:15px;
}

.l-article_main_recoment ul li {
    width:80px;
    margin-right:15px;
}

.l-article_main_recoment ul li:last-child {
    margin-right:0px;
}

.l-article_main_recoment ul li a {
    display:flex;
    flex-direction:column;
    align-items:center;
    color:#FF6BBA;
    font-size:1.2rem;
}

.l-article_main_recoment ul li a img {
    margin-bottom:10px;
}

.l-article_main_recoment_btn {
    display:flex;
    align-items:center;
    justify-content:center;
    width:320px;
    padding:5px;
    font-size:1.8rem;
    color:#FFFFFF;
    background:#FF5FE3;
    border-radius:20px;
    padding: 10px 0 12px;
    margin: 15px auto ;
}

.l-article_main_recoment_btn:hover {
    color:#FFFFFF;
}

/*中央カラム　都道府県メンバー*/
.l-article_main_ken {
    background: #FFFFFF;
    border: 1px solid #D6D5D5;
    margin-bottom:0px;
    background: #EDFDDF;
}

.l-article_main_ken_tt {
    color: #00BF40;
    background: #C9F5AB;
    font-size: 1.8rem;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.l-article_main_ken_tt .icon-search {
    color: #00BF40;
    background: #C9F5AB;
    font-size: 1.8rem;
}

.l-article_main_ken_form form select {
    padding: 2px 10px;
    border-radius: 30px;
    border: 1px solid #00BF40;
    color: #666;
    font-weight:normal;
}

.l-article_main_ken h2 {
    color:#00BF40;
    background:#C9F5AB;
    font-size:1.8rem;
    padding: 10px;
}

.l-article_main_ken h2:before {
    color:#00BF40;
    font-size:1.8rem;
    margin-right: 3px;
}

.l-article_main_ken_list {
    display: flex;
    flex-direction:column;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 15px 10px;
}
.l-article_main_chat_list_data {
    display:flex;
    margin-bottom:5px;
}
.l-article_main_chat_list_data small{
    font-size:12px;
    margin-left:auto;
}
.l-article_main_chat_list_coment {
    position:relative;
    display:flex;
    flex-direction:column;
    background: #FFFFFF;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 5px;
}

.l-article_main_chat_list_coment:before {
    content:"";
    display:flex;
    position:absolute;
    top:calc(50% - 7px);
    left:-10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-right: 10px solid #FFF;
    border-left: 0;
}

.l-article_main_chat_list_coment p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 50px;
    font-size: 14px;
    line-height: 1.8;
}

.l-article_main_chat_list_box span {
    margin-left:auto;
}

.l-article_main_ken_list>li {
    width: 100%;
    margin-bottom: 0px;
    position:relative;
    display:flex;
}

.l-article_main_ken_list>li:last-child {
    margin-right:0px;
}

.l-article_main_ken_list>li>a {
    display:flex;
    align-items:flex-start;
    color:#00BF40;
    font-size:1.2rem;
}

.l-article_main_ken_list_img {
    width: 160px;
    margin-right: 15px;
    position: relative;
}

.l-article_main_ken_list li a img {
    margin-bottom: 10px;
    width: 160px;
}

.l-article_main_ken_list_box {
    width: calc(100% - 105px);
    display:flex;
    flex-direction:column;
}

.l-article_main_ken_list_box span {
    margin-left:auto;
    display: none;
}

.l-article_main_ken_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px auto 15px;
    font-size: 1.8rem;
}

.l-article_main_ken_btn li {
    display: flex;
    align-items: center;
    border: 1px solid #00BF40;
    border-radius: 50px;
    margin: 15px 10px 15px;
    color: #00BF40;
    font-size: 1.8rem;
    padding: 5px 20px;
    background: #FFFFFF;
}

.l-article_main_ken_btn li:has(a) {
    padding: 0;
    border: none;
}

.l-article_main_ken_btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #FFFFFF;
    padding: 5px 20px;
    border-radius: 50px;
    background: #00BF40;
}

.l-article_main_ken_btn a:hover {
    color:#FFFFFF;
}

/*中央カラム　全国メンバー*/
.l-article_main_zenkoku {
    display:none;

    background: #FFF;
    border: 1px solid #D6D5D5;
    margin-bottom:25px;
    background: #FFEAEA;
    order:1;
}

.l-article_main_zenkoku h2 {
    color:#FFF;
    background:#FF0000;
    font-size:1.8rem;
    padding: 10px;
}

.l-article_main_zenkoku h2:before {
    color:#FFF;
    font-size:1.8rem;
    margin-right: 3px;
}

.l-article_main_zenkoku_list {
    display: flex;
    flex-direction:column;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 15px 10px;
}
.l-article_main_chat_list_data {
    display:flex;
    margin-bottom:5px;
    font-size: 1.8rem;
}
.l-article_main_chat_list_data small{
    font-size:12px;
    margin-left:auto;
}
.l-article_main_chat_list_coment {
    position:relative;
    display:flex;
    flex-direction:column;
    background: #FFFFFF;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 5px;
}

.l-article_main_chat_list_coment:before {
    content:"";
    display:flex;
    position:absolute;
    top:calc(50% - 7px);
    left:-10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-right: 10px solid #FFF;
    border-left: 0;
}

.l-article_main_chat_list_coment p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 50px;
    font-size: 14px;
    line-height: 1.8;
}

.l-article_main_chat_list_box span {
    margin-left:auto;
}

.l-article_main_zenkoku_list li {
    width: 100%;
    margin-bottom: 20px;
    position:relative;
    display:flex;
}

.l-article_main_zenkoku_list li:last-child {
    margin-right:0px;
}

.l-article_main_zenkoku_list li a {
    display:flex;
    align-items:center;
    color:#FFF;
    font-size:1.2rem;
}

.l-article_main_zenkoku_list_img {
    width: 90px;
    margin-right: 15px;
}

.l-article_main_zenkoku_list li a img {
    margin-bottom:10px;
    height: 90px;
}

.l-article_main_zenkoku_list_box {
    width: calc(100% - 105px);
    display:flex;
    flex-direction:column;
}

.l-article_main_zenkoku_list_box span {
    margin-left:auto;
}

.l-article_main_zenkoku_btn {
    display:flex;
    align-items:center;
    justify-content:space-around;
    width:320px;
    background:#FFFFFF;
    border-radius:20px;
    margin: 15px auto 15px ;
    color: #92fbd1;
    font-size: 1.8rem;
}

.l-article_main_zenkoku_btn li {
    color: #666;
    font-size: 1.8rem;
    line-height: 1;
    padding: 7px 10px 5px;
}

.l-article_main_zenkoku_btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #666;
    padding: 7px 0 5px;
}

.l-article_main_zenkoku_btn a:hover {
    color:#FF0000;
}

/*中央カラム　Duoチャット*/
.l-article_main_chat {
    background: #C4E3F0;
    border: 1px solid #47A6C2;
    margin-bottom: 25px;
}

.l-article_main_chat h2 {
    color:#FFFFFF;
    background:#47A6C2;
    font-size:1.8rem;
    padding: 10px;
}

.l-article_main_chat h2:before {
    color:#FFFFFF;
    font-size:1.8rem;
    margin-right: 3px;
}

.l-article_main_chat_list {
    display: flex;
    justify-content: flex-start;
    flex-direction:column;
    flex-wrap: wrap;
    margin: 15px 10px;
}

.l-article_main_chat_list li {
    width: 100%;
    margin-bottom:20px;
    position:relative;
}

.l-article_main_chat_list li:nth-child(4) {
    margin-right:0px;
}

.l-article_main_chat_list li:nth-child(8) {
    margin-right:0px;
}

.l-article_main_chat_list li:last-child {
    margin-right:0px;
}

.l-article_main_chat_list li a {
    display:flex;
    align-items:center;
    color:#00407A;
    font-size:1.2rem;
}

.l-article_main_chat_list_img {
    width: 90px;
    margin-right: 15px;
}

.l-article_main_chat_list li a img {
    margin-bottom: 10px;
    height: 90px;
}

.l-article_main_chat_list_box {
    display:flex;
    flex-direction:column;
    width: calc(100% - 105px);
}


.l-article_main_chat_btn {
    display:flex;
    align-items:center;
    justify-content:space-around;
    width:320px;
    background:#FFFFFF;
    border-radius:20px;
    margin: 15px auto ;
}

.l-article_main_chat_btn li{
    font-size: 1.8rem;
    line-height: 1;
    padding: 14px 10px 10px;
}   

.l-article_main_chat_btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #00407A;
}

.l-article_main_chat_btn a:hover {
    color:#00407A;
}

/*中央カラム　重要なお知らせ*/
.l-article_main_news {
    margin-bottom:25px;
}

.l-article_main_news h2 {
    color:#FF0000;
    background:#FFFFFF;
    border:1px solid #FF0000;
    border-bottom:2px solid #FF0000;
    font-size:1.8rem;
    padding: 10px 10px 5px;
    margin-bottom:5px;
}

.l-article_main_news_list {
    border:1px solid #D3D6D3;
    padding:20px 15px 5px;
    background:#FFFFFF;
}

.l-article_main_news_list ul {
    margin-bottom:5px;
}

.l-article_main_news_list ul li {
    margin-bottom: 15px;
}

.l-article_main_news_list ul li a {
    color:#0091C2;
    font-size:1.4rem;
}

.l-article_main_news_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    background: #0091C2;
    color: #FFFFFF;
    padding: 5px 20px;
    border-radius: 5px;
    font-size: 1.4rem;
    margin: 0 auto 10px;
}



/*右カラム*/
.l-aside_right {
    width:240px;
}

.l-aside_right_banner {
    margin-bottom:15px;
}

/*フッター*/
.l-footer {
    width:100%;
    border-top:1px solid #D2D2D2;
    padding-top:20px;
    padding-bottom: 10px;
    margin-top:auto;
}

.l-footer ul {
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin: 0 auto 10px;
}

.l-footer ul li {
    border-right:1px solid #D2D2D2;
}

.l-footer ul li:last-child {
    border-right:none;
}

.l-footer ul li a {
    padding:10px;
    font-size:12px;
}

.l-footer_title {
    width:100%;
    margin:10px auto;
    text-align:center;
}

/*カラム　1カラム*/
.l-main_1calam {
    display:flex;
    align-items:flex-start;
    padding: 0;
    border-left: none;
}

.l-main_1calam .l-article_main{
    width:100%;
    margin:0px 0px 50px 0px ;
}

.l-main_1calam .l-article_main>h2 {
    margin-bottom: 20px;
    width: 100%;
    background: linear-gradient(150deg, #2BC8FF, #0066FF);
    font-size: 18px;
    font-weight: normal;
    line-height: 1;
    display: flex;
    align-items: center;
    padding:0;
}

.l-main_1calam .l-article_main h2 strong {
    font-weight: normal;
    padding: 10px 15px;
    position:relative;
    color: #FFF;
    order: 2;
    margin-right: 30px;
}

.l-main_1calam .l-article_main h2 strong:before {
    content: "";
    display: flex;
    border-right: 1px solid #FFF;
    height: 15px;
    position: absolute;
    top: 11px;
    right: 0;
}

.l-main_1calam .l-article_main>h2>a {
    color: #0066FF;
    background: #FFF;
    padding: 10px;
    margin: 5px;
    border-radius: 5px;
    order: 1;
}

.l-main_1calam .l-article_main>h2>a>i {
    color: #0066FF !important;
    padding-right: 5px !important;
}

/*カラム　1カラム-2*/
.l-main_1calam2 {
    display:flex;
    align-items:flex-start;
    padding: 0;
    border-left: none;
}

.l-main_1calam2 .l-article_main{
    margin-bottom:50px;
    width:100%;
    margin:0px;
}

.l-main_1calam2 .l-article_main>h2 {
    margin-bottom: 20px;
    width: 100%;
    background: linear-gradient(150deg, #2BC8FF, #0066FF);
    font-size: 18px;
    font-weight: normal;
    line-height: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:0;
}

.l-main_1calam2 .l-article_main h2 strong {
    font-weight: normal;
    padding: 10px 15px;
    position:relative;
    color: #FFF;
}

.l-main_1calam2 .l-article_main h2 strong:before {
    content: "";
    display: flex;
    border-right: 1px solid #FFF;
    height: 15px;
    position: absolute;
    top: 11px;
    right: 0px;
}

.l-main_1calam2 .l-article_main>h2>a {
    margin-right: 10px;
    color: #FFF;
}

/*チャットページ*/
.l-article_main_chats {
    margin:0 15px 50px;
    width:calc(100% - 30px);
}

.l-article_main_chats_list {
    display: flex;
    flex-direction: column;
    margin: 0px 0px 20px 0px;
}

.l-article_main_chats_list_box {
    width: 100%;
    position: relative;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.l-article_main_chats_list_box label.check-box {
    position: absolute;
    right: 0px;
    top: 5px;
}

.l-article_main_chats_list_box a {
    display: flex;
    align-items: flex-start;
    color: #FF6BBA;
    font-size: 1.4rem;
}

.l-article_main_chats_list_box strong {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-top: 35px solid #f00;
    border-right: 35px solid transparent;
}

.l-article_main_chats_list_box strong:after {
    content: "NEW";
    position: absolute;
    top: -35px;
    left: 0;
    font-size: xx-small;
    color: #FFF;
    transform: rotate(-45deg) translate(-5px, 5px);
}

.l-article_main_chats_list_box_tt {
    display:flex;
    align-items:center;
    background:#3BD6DB;
    color:#FFFFFF;
    padding:5px;
    border-radius:5px 5px 0 0;
}

.l-article_main_chats_list_box_tt.chat_on {
    background:#FF70FF;
}

.l-article_main_chats_list_box_tt strong {
    color: #C9FFFF;
    margin-right: 2px;
    font-size: 16px;
    line-height: 0;
}

.l-article_main_chats_list_box_tt.chat_on strong {
    color:#FF30B8;
}

.l-article_main_chats_list_box_tt span {
    font-size:12px;
    color:#FFFFFF;
}
.l-article_main_chats_list_box_img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 220px;
    height: auto;
}

.l-article_main_chats_list_box_img img{
    width: 220px;
    height: auto;
}

.l-article_main_chats_list_box_text {
    width: 100%;
    margin-left: 15px;
}

.l-article_main_chats_list_box_profile {
    margin-bottom: 5px;
}

.l-article_main_chats_list_box_profile h3 {
    font-size: 1.8rem;
    color: #FF6394;
}

.l-article_main_chats_list_box_profile p {
    font-size: 1.4rem;
    color: #4E4E4E;
}

.l-article_main_chats_list_box_date {
    margin:0;
}

.l-article_main_chats_list_box_date p {
    font-size: 14px;
    margin: 0 !important;
}

.l-article_main_chats_list_box_date span {
    font-size: 12px;
}

.l-article_main_chat_osirase {
    background: #F6F6F6;
    padding: 20px 15px;
    border-radius: 8px;
    margin: 0 15px 20px;
}

.l-article_main_chat_osirase.chat_check {
    background: #FFFFFF;
    border:1px solid #FF0000;
}

.l-article_main_chat_osirase h3 {
    font-size:26px;
    text-align:center;
    margin-bottom:10px;
}

.l-article_main_chat_osirase p {
    font-size:16px;
}

.l-article_main_chat_osirase ul li {
    list-style: disc;
    margin-left: 20px;
}

/*チャットView*/
.c-chat_view {
    display: flex;
    flex-direction: column;
}

.c-chat_view_tt {
    display:flex;
    align-items:center;
    background:#47A6C2;
    padding:10px 15px;
    position: fixed;
    width: 100%;
}

.c-chat_view_tt_left {
    display: flex;
    align-items: center;
    margin-right:auto;
}

.c-chat_view_tt_left a {
    display: flex;
    align-items:center;
}

.c-chat_view_tt_right {
    margin-left:auto;
}

.c-chat_view_tt .icon-icon_kakko_left {
    content:"";
    display:block;
    width:20px;
    color:#FFFFFF;
    margin-right:10px;
}

.c-chat_view_tt img {
    width:50px;
    height:50px;
    border-radius:50px;
    margin-right:20px;
}

.c-chat_view_tt h3 {
    color:#FFFFFF;
}

/*削除ボタン*/
.c-toggle {
    position: relative;
    width: 70px;
    height: 44px;
    margin: 0px;
    border-radius: 50px;
    overflow: hidden;
    cursor: pointer;
    order: 2;
  }
  .c-toggle input[type=checkbox] {
    display: none;
  }
  .c-toggle:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: #66c3de;
    -webkit-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
  }
  .c-toggle:after {
    content: "OFF";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 38px;
    height: 38px;
    display: block;
    border-radius: 50px;
    background: #fff;
    box-shadow: 0 9px 28px -6px rgba(0, 0, 0, 0.3);
    -webkit-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
    text-align: center;
    padding: 14px 0 0;
    line-height: 1;
    font-size: 13px;
    font-weight: bold;
    color: #66c3de;
    letter-spacing: .5px;
    box-sizing: border-box;
  }
  .c-toggle.checked:before {
    background: #4197b0;
  }
  .c-toggle.checked:after {
    content: "ON";
    left: 29px;
    box-shadow: 0 9px 28px -6px rgba(0, 0, 0, 0.5);
    color: #4197b0;
    padding: 14px 0 0 1px;
  }

  .c-toggle + .c-chat_view_tt_right_r {
    display:none;
  }

  .c-toggle.checked + .c-chat_view_tt_right_r {
    position:relative;
    display:block;
    height: 44px;
    border-radius: 50px;
    order: 1;
    margin-right: 10px;
  }

  .c-toggle.checked + .c-chat_view_tt_right_r span{
    position: absolute;
    background: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 13px;
    top: 0px;
    right: 45px;
    width: 134px;
    box-shadow: 0 1px 3px 0 rgba(0,0,0,0.3);
  }

  .c-toggle.checked + .c-chat_view_tt_right_r span:after{
    content: "";
    position: absolute;
    top: 15px;
    left: 132px;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 10px solid #fff;
    border-right: 0;
  }

  #c-toggle_del_message {
    display:none;
    opacity:1;
    transition: opacity 2s ease;
    z-index: 100;
  }

  #c-toggle_del_message.show {
    display: block;
    opacity:1;
  }

/*トグルメッセージ2　ハンバーガー用*/
#c-toggle_del_message2 {
    position: absolute;
    background: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 13px;
    top: 0px;
    right: 45px;
    width: 134px;
    box-shadow: 0 1px 3px 0 rgba(0,0,0,0.3);
    z-index:101;
    }

    #c-toggle_del_message2:after{
    content: "";
    position: absolute;
    top: 15px;
    left: 132px;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 10px solid #fff;
    border-right: 0;
    }

    #c-toggle_del_message2 {
    display:none;
    opacity:1;
    transition: opacity 2s ease;
    }

    #c-toggle_del_message2.show {
    display: block;
    opacity:1;
    }

  .c-toggle_del {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background: #ed1e1a;
    border: 3px solid #b05f27;
    -webkit-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
    text-align: center;
    line-height: 1;
    font-size: 13px;
    font-weight: bold;
    color: #FFF;
    letter-spacing: .5px;
    box-sizing: border-box;
    width:44px;
    height:44px;
  }

  .c-toggle_del:hover {
    background:#c31a17;
    color:#ffffff;
  }

  .c-toggle_del i {
    color: white !important;
    font-size: 20px;
  }

  /*削除チェックボックス*/
  .c-toggle_del_check {
    display:none;
  }

  .c-toggle_del_check.checked {
    display:block;
    height: 25px;
  }

  .c-toggle_del_checkbox {
    height: 25px;
    width: 25px;
    margin-right: 10px;
  }


/*チャットビュー*/
.c-chat_view_coment {
    display: flex;
    flex-direction: column;
    align-items: center;
    background:#C4E3F0;
    padding:20px 10px;
    overflow-y: scroll;
    height: calc(100vh - 140px);
    margin-top: 70px;
    margin-bottom: 70px;
}

.c-chat_view_coment2 {
    height: calc(100vh - 293px);
}

.c-chat_view_coment>time {
    padding:15px;
    background:#FFF;
    border-radius:8px;
    margin-bottom:25px;
}

.c-chat_view_coment_info {
    display:flex;
    flex-direction:column;
    align-items:center;
    padding:20px;
    background:#FFF;
    border-radius:8px;
    margin-bottom:60px;
}

.c-chat_view_coment_info.c-chat_info_view_coment_info{
    padding:15px;
}

.c-chat_view_coment_info time{
    margin-bottom:10px;
}

.c-chat_view_coment_info.c-chat_info_view_coment_info time{
    margin-bottom:0px;
}

.c-chat_view_coment_me {
    max-width: 100%;
    margin-left:auto;
    display:flex;
    align-items:flex-end;
    margin-bottom:30px;
}

.c-chat_view_coment_me .c-chat_view_coment_me_time{
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    width: 45px;
    font-size: 12px;
}

.c-chat_view_coment_me_text {
    background:#EEEEEE;
    border-radius: 30px 30px 0 30px;
    padding:15px;
    margin-left:10px;
    max-width:360px;
}

.c-chat_view_coment_me_text p {
    margin-bottom:0 !important;
}

.c-chat_view_coment_you {
    max-width: 95%;
    margin-right:auto;
    display:flex;
    align-items:flex-end;
    margin-bottom:30px;
}

.c-chat_view_coment_you_img {
    width:50px;
    height:50px;
    border-radius:30px;
    flex-shrink: 0;
}

.c-chat_view_coment_you_img img {
    width:100%;
    height:auto;
    border-radius:30px;
}

.c-chat_view_coment_you_text {
    background:#FFF;
    border-radius: 20px 20px 20px 0;
    padding:12px;
    margin-left:10px;
    max-width: calc(100% - 130px);
    flex-shrink: 0;
}

.c-chat_view_coment_you_text p {
    display:flex;
}

.c-chat_view_coment_you_time {
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    width: 45px;
    margin-left: 10px;
    flex-shrink:0;
    font-size:12px;
}

.c-chat_view_coment_you_message {
    margin-bottom: 0 !important;
    padding: 10px 10px;
    background: #00C28C;
    color: #FFF;
    border-radius: 50px;
    border: 0;
    cursor: pointer;
    width: 180px;
    font-size: 12px;
}

.c-chat_view_coment_you_password {
    max-width: 70%;
    margin-right: auto;
    display: flex;
    align-items: flex-end;
    margin-bottom: 30px;
}

.c-chat_view_coment_you_password .c-chat_view_coment_you_text {
    background:#CFF0E8;
    max-width: calc(100% - 10px);
}

.c-chat_view_coment_you_text_form {
    display:flex;
    align-items:center;
    justify-content:flex-start;
    flex-wrap:wrap;
    margin-top:10px;
}

.c-chat_view_coment_you_text_form label {
    margin-right:10px;
    margin-bottom:5px;
}

.c-chat_view_coment_you_text_form div{
    display:flex;
    align-items:center;
    justify-content:center;
}

.c-chat_view_coment_you_text_form input[type=password] {
    padding:10px;
    border-radius:50px;
    width: calc(100% - 80px);
    margin-right: 5px;
    border:1px solid #00C28C;
}

.c-chat_view_coment_you_text_form input[type=button] {
    padding: 10px 12px;
    border-radius: 50px;
    margin-right: 10px;
    background: #00C28C;
    color: #FFF;
    cursor: pointer;
}

.c-chat_view_coment_you_btn {
    display:flex;
    justify-content:center;
    align-items:center;
    padding:8px;
    border-radius:50px;
    background:#00C28C;
    border:none;
    margin-left: 5px;
    cursor: pointer;
}

.c-chat_view_coment_you_btn:disabled {
    background: #aaa;
}

.c-chat_view_coment_you_icon {
    font-size:20px;
    color:#FFF;
}

.c-chat_view_trans {
    padding: 10px 10px 10px 5px;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.c-chat_view_trans_btnbox_ya {
    width:40px;
    margin-right:5px;
    display:flex;
    align-items:center;
}

.c-chat_view_trans_btnbox_ya.radius {
    display:none;
}

.c-chat_view_trans_btnbox {
    width:140px;
    margin-right:5px;
    display:flex;
    align-items:center;
    display:none;
}

.c-chat_view_trans_btnbox.c-chat_info_view_trans_btnbox {
    width:45px;
    display:block;
}

.c-chat_view_trans_btnbox.c-chat_info_view_trans_btnbox {
    width:45px;
}

.c-chat_view_trans_btnbox_ya.radius + .c-chat_view_trans_btnbox {
    display:flex;
}

.c-chat_view_trans_btnbox.radius {
    display:block;
}

.c-chat_view_trans .c-chat_view_trans_btnbox_btn {
    display:flex;
    justify-content:center;
    align-items:center;
    padding:3px;
    border-radius:50px;
    border:none;
    cursor: pointer;
    background: none;
}

.c-chat_view_trans_btnbox_icon {
    font-size:35px;
    color:#00C28C;
    background:#eee;
}

.icon-icon_camera.c-chat_view_trans_btnbox_icon.show-icon,.icon-icon_movie.c-chat_view_trans_btnbox_icon,.icon-icon_address2.c-chat_view_trans_btnbox_icon {
    position:relative;
}

.icon-icon_camera.c-chat_view_trans_btnbox_icon.show-icon:after,.icon-icon_movie.c-chat_view_trans_btnbox_icon.show-icon:after,.icon-icon_address2.c-chat_view_trans_btnbox_icon.show-icon:after {
    position: absolute;
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    background: red;
    border-radius: 50px;
    top: -2px;
    right: -2px;
}

i.icon-icon_address.c-chat_view_trans_btnbox_icon {
    margin-bottom: 6px;
}


/*チャット送信ボタン*/

.c-chat_view_trans_form {
    width: calc(100% - -10px);
    min-height:16px;
    display: flex;
    align-items: center;
    position:relative;
}

.c-chat_view_trans_form .c-chat_info_view_trans_form  {
    width: calc(100% - 45px);
}

.c-chat_view_trans_btnbox_ya.radius + .c-chat_view_trans_btnbox + .c-chat_view_trans_form {
    max-width: calc(100% - 165px);
}

.c-chat_view_trans_btnbox_ya.radius + .c-chat_view_trans_btnbox + .c-chat_view_trans_form.c-chat_info_view_trans_form {
    max-width: calc(100% - 45px);
}

.c-chat_view_trans_form_textarea-dummy {
    overflow: hidden;
    visibility: hidden;
    box-sizing: border-box;
    padding: 5px 15px;
    min-height: 50px;
    max-height: 230px;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
    border: 1px solid;
}

.c-chat_view_trans_form_textarea {
    position: absolute;
    left:0;
    top:0;
    width: 100%;
    height: 100%;
    display:block;
    overflow: hidden;
    box-sizing: border-box;
    margin-bottom:0;
    padding-right: 40px;
    letter-spacing: inherit;
    resize: none;
}
.c-chat_view_trans.c-chat_info_view_trans {
    padding: 15px 10px 15px 5px;
}

.c-chat_info_view_trans_form .textareaClass {
    width: 100%;
    height: 45px;
    margin-bottom: 0;
}

.c-chat_view_trans_sendbox_btn {
    position: absolute;
    right: 7px;
    top: calc(50% - 17px);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    background: none;
}

.c-chat_view_trans_sendbox_btn .c-chat_view_trans_form_icon {
    font-size: 35px;
    color: #00C28C;
}

/*チャット送信ボタン*/

.c-chat_view_trans_sendbox {
    display:flex;
    align-items:center;
    width:45px;
}

.c-chat_view_trans_sendbox button {
    display:flex;
    justify-content:center;
    align-items:center;
    padding:7px;
    border-radius:50px;
    background:#00C28C;
    border:none;
    margin-left: 5px;
    cursor: pointer;
}

.c-chat_view_trans_sendbox button .c-chat_view_trans_sendbox_icon {
    font-size:22px;
    margin: -2px 0px -1px -2px;
    color:#FFF;
}

/*チャット検索*/
.c-search_container{
    position: relative;
    box-sizing: border-box;
    display: block;
    padding: 3px 10px;
    border-radius: 20px;
    height: 3em;
    width: 250px;
    overflow: hidden;
    background: #dddddd;
    margin: 0 auto 20px;
  }
  .c-search_container input[type="text"]{
    border: none;
    height: 2.6em;
    background: #dddddd;
    padding: 10px 5px;
  }
  .c-search_container input[type="text"]:focus {
    outline: 0;
  }
  .c-search_container input[type="submit"]{
    cursor: pointer;
    font-family: FontAwesome;
    font-size: 1.3em;
    border: none;
    background: none;
    color: #fff;
    position: absolute;
    height: 3.3em;
    right: 12px;
    top: -10px;
    outline : none;
  }
  .c-search_container ::-webkit-input-placeholder {
    color: #fff;
  }

/*agreement.html*/
section#wrap-Agreement {
    margin: 0;
}

/*ashiato.html*/
.l-article_main .TPmemberList article {
    width: calc(50% - 20px);
    margin: 5px 10px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.l-article_main .TPmemberList article:nth-child(even) {
    width: calc(50% - 7.5px);
    margin: 5px 0px 15px 7.5px;
}

.l-article_main .TPmemberList article:nth-child(odd) {
    width: calc(50% - 7.5px);
    margin: 5px 7.5px 15px 0;
}

/*img_edit.html*/
#NimgUpload small,#NimgUpload small i {
    color: white;
}

#PhotoUpload article div .label {
    height: 115px;
}

/*info_mail.html*/
.tab-page li {
    width:50%;
}

/*login_top.html*/
.TPmemberList article .Ccoment {
    width: 100%;
    height: 70px;
}

#RecommendMem {
    width: calc(100%  - 30px);
    margin: 0 15px 30px;
    flex-wrap: wrap;
}

#RecommendMem > * {
    width: calc(33.3333% - 10px);
}

/*ダイヤログ表示*/
.dialog {
    display: none;
    border: 1px solid #47A6C2;
    position: absolute;
    top: -245px;
    background: white;
    width: calc(100% - 10px);
    max-height: 250px;
    overflow-y: scroll;
    z-index: 1;
}

.dialog.c-chat_info_view_dialog {
    top: -130px;
    width: calc(100% - 15px);
}

.dialog a {
    margin-right: auto;
    margin-left: 10px;
    color:#00C28C;
}

.dialog p {
    margin-bottom: 10px;
    padding: 10px;
    border-bottom: 1px solid #47A6C2;
    display:flex;
    justify-content: space-between;
    align-items:center;
}

.dialog button {
    padding: 5px 15px;
    border-radius: 50px;
    margin-right: 10px;
    background: #00C28C;
    color: #FFF;
    cursor: pointer;
    border: none;
}
.c-photo_dialog_box,.c-movie_dialog_box {
    display:flex;
    align-items:flex-start;
    justify-content:center;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin:10px;
}

.c-photo_dialog_box li {
    width: 140px;
    margin: 0 10px 10px 0;
    position:relative;
}

.c-movie_dialog_box li {
    width:310px;
    margin: 0 10px 10px 0;
    position:relative;
}

.c-photo_dialog_box2 {
    display: flex;
    flex-direction: column;
    margin: 10px;
}

.c-photo_dialog_box2 label {
    margin-bottom: 10px;
}

.c-dialog_input {
    display: none;
}
.c-dialog_label {
    width: 30px;
    height:30px;
    position:absolute;
    top: 3px;
    right: 3px;
    background:#ddd;
    border-radius: 50%;
    border:2px solid #FFF;
    z-index: 1;
}

.c-dialog_label img {
    border: 2px solid white;
    width:100px;
}

.c-dialog_label input:checked + img, .c-dialog_label.c-dialog_label_movie input:checked + video {
    border: 2px solid #00C28C;
}

.c-photo_dialog_box input:checked + label, .c-movie_dialog_box input:checked + label {
    background:#00C28C;
}

ul.c-photo_dialog_box li img {
    border: 2px solid #ddd;
    border-radius: 8px;
}

.c-dialog_button_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    bottom: -1px;
    z-index: 1;
    background: #eee;
    padding: 10px;
}

.c-dialog_button_box.c-dialog_button_box_chat_info {
    display: flex;
    align-items: center;
    position: sticky;
    bottom: -1px;
    z-index: 1;
    background: #eee;
    padding: 10px;
}

.c-dialog_button_box.c-dialog_button_box_chat_info input {
    width: calc(100% - 120px);
}

button.c-dialog_del {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 15px;
    border-radius: 50px;
    background: #666;
    color: #FFF;
    cursor: pointer;
    border: none;
}

button.c-dialog_del.c-dialog_del_chat_info {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 10px;
    border-radius: 5px;
    background: #666;
    color: #FFF;
    cursor: pointer;
    border: none;
    width: 100px;
    font-size: 12px;
}

.dialog .c-chat_deleat {
	border-radius: 50px;
    background: #00C28C;
    margin:0;
    color: #FFF;
    cursor: pointer;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1px
}

.c-chat_deleat .icon-icon_delete2 {
	width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #FFF;
    font-size: 30px;
}

/* 点滅 */
/* .blinking{
	-webkit-animation:blink 1.5s ease-in-out infinite alternate;
    -moz-animation:blink 1.5s ease-in-out infinite alternate;
    animation:blink 1.5s ease-in-out infinite alternate;
}
@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}*/

/*チャット一覧　一括削除*/
label.check-box {
    position: absolute;
    right: -5px;
    top: -5px;
}


/*チャットハンバーガー*/
.c-chat_view_tt_right2 {
    margin-left:20px;
    position: relative;
    order:2;
    z-index: 101;
}

.chatmenu-btn {
    cursor: pointer;
    display: block;
    position:relative;
    width: 44px;
    height: 44px;
    background: #00C28C;
    border: 3px solid #FFFFFF;
    padding: 5px;
    border-radius: 50px;
}

.chatbtn-line {
    width: 25px;
    height: 2px;
    background-color: #fff;
    transition:0.5s all;
}

.chatbtn-line1 {
    position:absolute;
    top: 8px;
    left: 7px;
    background: none;
}

.chatbtn-line2 {
    position: absolute;
    top: 12px;
    left: 4px;
    text-align: center;
    font-size: 10px;
    color: white;
    background: none;
}

.chatbtn-line3 {
    position:absolute;
    top: 29px;
    left: 7px;
    background: none;
}

.chatmenu-btn.show .chatbtn-line1 {
    top: 18px;
    left: 7px;
    rotate:225deg;
    background:#FFFFFF;
}

.chatmenu-btn.show .chatbtn-line2 {
    opacity:0;
    left:-100px;
}

.chatmenu-btn.show .chatbtn-line3 {
    top: 18px;
    left: 7px;
    rotate: -225deg;
    FONT-VARIANT: JIS78;
    background: white;
}

.chatmenu {
    position: absolute;
    display: flex;
    right: -16px;
    top: 57px;
    width:0;
    height: 0;
    opacity:0;
    visibility: hidden;
}

.chatmenu.show {
    display: flex;
    transition: ease 1s all;
    width: 335px;
    height: 80vh;
    opacity: 1;
    box-shadow: 0 1px 3px 0 rgba(0,0,0,0.2);
    visibility: visible;
}

.chatmenuBox1 {
    margin: 5px;
    border: 1px solid #47A6C2;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 20px;
}

p.chatmenuBox1P1 {
    background: #47A6C2;
    padding: 10px;
    color: #FFFFFF;
}

p.chatmenuBox1P2 {
    padding: 10px;
    background: #FFFFFF;
    border-radius: 0 0 4px 4px;
}

.chatmenuBox2 {
    position: fixed;
    bottom: 75px;
    background: #47A6C2;
    width: 100%;
    text-align: center;
    border: 1px solid #47A6C2;
}

p.chatmenuBox2P1 {
    background: #47A6C2;
    padding: 10px;
    color: #FFFFFF;
}

p.chatmenuBox2P2 {
    background: #FFFFFF;
    padding: 10px;
}

.chatmenu.chatmenu_warning.show {
    height: calc(100vh - 100px);
}

.chatmenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    background: #FFF;
}

.chatmenu li {
    width: 335px;
    border-bottom: 1px solid #ddd;
}

.chatmenu a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    display: flex;
    align-items: center;
    padding: 15px 10px;
}

.chatmenu button {
    cursor: pointer;
    text-decoration: none;
    color: #000;
    font-size: 16px;
    display: flex;
    align-items: center;
    background: none;
    border: none;
    padding: 15px 10px;
}

.chatmenu i {
    margin-right:5px;
}

.c-chat_view_tt_right_delbox {
    display:none;
    position:relative;
}

.c-chat_view_tt_right_delbox.show {
    display:block;
    order:1;
    margin-left:auto;  
    position:relative;
}

/*チャットを始めよう*/
.c_chathow_base {
    background:#DCECEE;
    padding:15px;
    display: flex;
    flex-direction: column;
    margin-bottom:25px;
    margin-top: -20px;
}

.c_chathow_tt {
    margin-bottom: 25px;
}

.c_chathow_card {
    border-radius:8px;
    margin-bottom:40px;
}

.c_chathow_card_tt {
    background: #26B894;
    color: #FFFFFF;
    padding: 15px 15px;
    border-radius: 8px 8px 0 0;
    font-size:16px;
}

.c_chathow_card_box {
    background: #FFFFFF;
    padding: 30px 20px;
    border-radius: 0 0 8px 8px;
}

.c_chathow_p1 {
    font-size:16px;
    margin-bottom:30px;
}

.c_chathow_p2 {
    font-size:16px;
    font-weight: bold;
}

.c_chathow_p3 {
    font-size:14px;
    margin-bottom:20px;
}

.c_chathow_p3 .red{
    color:red;
}

.c_chathow_tt1 {
    display:inline-flex;
    justify-content:center;
    align-items:center;
    margin-bottom:20px;
    font-size:18px;
    padding:5px 20px;
    border:1px solid #000;

}

.c_chathow_h4 {
    font-size:16px;
    margin-bottom:20px;
    font-weight:bold;
}

.c_chathow_list1 {
    margin-bottom:20px;
}

.c_chathow_list1 li {
    margin-bottom:10px;
    font-size:16px;
}

.c_chathow_icon {
    width:60px;
    height:60px;
    margin-bottom:20px;
}

.c_chathow_img1 {
    width:470px;
    margin:0 auto;
}

.c_chathow_picture1 {
    width:100%;
    margin-bottom:20px;
}

.c_chathow_picture2 {
    width:100%;
    margin-bottom:20px;
}

.c_chathow_picture3 {
    width:100%;
    margin-bottom:20px;
}

.c_chathow_picture4 {
    width:100%;
    margin-bottom:20px;
}

.c_chathow_img1 {
    width:100%;
    margin:0 auto;
}

.c_chathow_nicelist {
    display:flex;
    flex-wrap:wrap;
}

.c_chathow_nicelist li {
    display:flex;
    flex-direction:column;
    align-items:center;
    width:calc(50% - 20px);
    margin:0 10px;
}

.c_chathow_nicelist li:nth-of-type(-n+6) {
    margin-bottom:30px
}

.c_chathow_nicelist li img {
    width:130px;
    margin-bottom:15px;
}

.c_chathow_nicelist li h3 {
    font-size:14px;
    font-weight:normal;
}

.c_chathow_howtolist {
    display:flex;
    flex-wrap:wrap;
}

.c_chathow_howtolist li {
    display:flex;
    flex-direction:column;
    align-items:center;
    width:calc(50% - 20px);
    margin:0 10px;
}

.c_chathow_howtolist li:nth-of-type(-n+2) {
    margin-bottom:30px;
}

.c_chathow_howtolist li strong {
    font-size:24px;
    margin-bottom:10px;
}

.c_chathow_howtolist li img {
    width:160px;
    margin-bottom:15px;
}

.c_chathow_howtolist li h3 {
    font-size:14px;
    font-weight:normal;
}

.c_chathow_ht {
    display: inline-flex;
    justify-content: center;
    background: #FFFFFF;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 20px;
    margin: 0 auto 25px;
}

.c_chathow_photolist {
    display:flex;
    flex-direction: column;
}

.c_chathow_photolist li {
    display:flex;
    flex-direction:column;
    align-items:center;
    width: calc(100% - 20px);
    margin:0 10px;
}

.c_chathow_photolist li:nth-of-type(-n+2) {
    margin-bottom:30px;
}

.c_chathow_photolist li strong {
    font-size:24px;
    margin-bottom:10px;
}

.c_chathow_photolist li img {
    width:100%;
    margin-bottom:15px;
}

.c_chathow_photolist li h3 {
    font-size:14px;
    font-weight:normal;
}

.c_chathow_photolist li h3 a {
    color:#26B894;
    font-size:14px;
    font-weight:bold;
}

.c_chathow_photolist li h3 .icon-mailsend {
    background:#26B894;
    color:#FFFFFF;
    font-size:10px;
    padding: 5px;
    margin: 0 3px;
    border-radius:30px;
}

.c_chathow_photolist li h3 strong {
    color:#6E0000;
    font-weight:bold;
    font-size: 14px;
}

.c_chathow_kakaku {
    padding:10px 25px;
    color:#FFFFFF;
    background:#00C28C;
    border-radius:30px;
    font-size:18px;
}

.c_chathow_kakaku:hover {
    color:#FFFFFF;
    opacity:0.9;
}

/*chat_view チャットブロック表示　chat_block_alert*/
#chat_block_alert {
    background: white;
    padding: 20px;
    margin-bottom:20px;
    border-radius: 8px;
    text-align: center;
    display:none;
}

#chat_block_alert.open{
    display:block;
}

#chat_block_alert h3 {
    color: red;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px
}

#chat_block_alert p {
    color: red;
}

/*indexリニューアル*/
/*indexリニューアル body*/
.p-re_body {
    background:#FFF;
    margin:0 auto;
}


/*indexリニューアル ヘッダー*/
.p-re_header {
    display:flex;
    min-width:100%;
    align-items:center;
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.8);
    position: fixed;
    top: 0;
    z-index: 1;
}

.p-re_header.visible {
    opacity: 1;
    transform: translateY(0);
}

.p-re_header2 {
    display:flex;
    min-width:100%;
    align-items:center;
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.8);
    position: fixed;
    top: 0;
    z-index: 1;
}

.p-re_header2.visible {
    opacity: 1;
    transform: translateY(0);
}

.p-re_header_logo {
    width:160px;
    margin-right:10px;
    margin-left:10px;
}

.p-re_header_tt {
    font-size:14px;
    margin-right:20px;
}

.p-re_header_link {
    display:flex;
    margin-left:auto;
    margin-right:10px;
}

.p-re_header_link ul {
    display:flex;
    align-items:center;
}

.p-re_header_link ul li {
    display:flex;
    margin-left:10px;
}

.p-re_header_link ul li a {
    font-size:18px;
    color:#000000;
}

.p-re_header_link ul li a:hover {
    font-size:18px;
    color:#00A1F7;
    padding:10px 30px;
    border-radius:35px;
}

a.p-re_header_join.js-modal-open2 {
    display: none;
}

.p-re_header_login {
    padding:10px 30px;
    color:#FFFFFF !important;
    border-radius:35px;
    background: linear-gradient(150deg,#2BC8FF,#0066FF);
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:bold;
}

.p-re_header_login:hover {
    padding:5px 15px;
    color:#FFFFFF !important;
    border-radius:20px;
    background: linear-gradient(150deg,#0066FF,#2BC8FF);
}

.p-re_header_join {
    padding:5px 15px;
    color:#FFFFFF !important;
    border-radius:20px;
    background: linear-gradient(150deg,#FF3094,#FF0000);
    display:flex;
    align-items:center;
    justify-content:center;
}

.p-re_header_join:hover {
    padding:5px 15px;
    color:#FFFFFF !important;
    border-radius:20px;
    background: linear-gradient(150deg,#FF0000,#FF3094);
}

/*indexリニューアル トップ画像*/
.p-re_top {
    width:100%;
    aspect-ratio:31 / 16;
    position:relative;
    background: white;
}

.p-re_top-snaq {
    width:100%;
    aspect-ratio:1 / 1;
    position:relative;
    background: white;
}

.p-re_top>img{
    width:100%;
}

.p-re_top_join {
    border-radius: 15px;
    padding:15px;
    background: rgba(255, 255, 255, 0.3);
    box-shadow:0 0 3px 0 rgba(0,0,0,0.2);
    margin: 15px;
}

.p-re_top_join_inner {
    background: #FFFFFF;
    padding: 25px 0px;
    border-radius: 13px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity:1;
}

.c-newlogin_form div input[type="checkbox"] {
    margin-right: 5px;
}

.p-re_top_join .c-newlogin_form {
    width: 100%;
    display:none;
}

.p-re_top_join .c-newlogin_form #LoginForm dl dd input {
    width: 100%;
    border: 1px solid #00A1F7 !important;
    padding:10px;
    font-size: 18px;
    color: #00A1F7;
}

.p-re_top_join .c-newlogin_form #LoginForm dl dd input:focus {
    outline:1px solid #0066FF !important;
    border:0px;
    color:#00A1F7;
}

.p-re_top_join .c-newlogin_form div {
    margin-bottom: 15px;
    font-size: 18px;
    text-align: left;
}

.p-re_top_join .c-newlogin_form .p-re_header_check_btn_login {
    width:100%;
}

.c-newlogin_form .p-re_top_join p a {
    font-size: 16px;
}

.p-re_top_login_h3 {
    font-size: 21px;
    margin-bottom:10px;
    font-weight: bold;
    color:#00A1F7;
}

.p-re_top_login_h3 i {
    margin-right:5px;
    color:#00A1F7;
}

.p-re_top_join_h3 {
    font-size: 30px;
    margin-bottom:10px;
    font-weight: bold;
    color:#00A1F7;
    text-align:center;
    display:flex;
    align-items:center;
}

.p-re_top_join_h3:before {
    content: "";
    display: flex;
    width: 37px;
    height: 0;
    border-bottom: 1px solid #00A1F7;
    transform: rotate(50deg);
    margin-bottom: 10px;
}

.p-re_top_join_h3:after {
    content: "";
    display: flex;
    width: 37px;
    height: 0;
    border-bottom: 1px solid #00A1F7;
    transform: rotate(-50deg);
    margin-bottom: 10px;
}

.p-re_top_join p {
    font-size:16px;
    margin-bottom:30px;
}

.p-re_top_join p a {
    color:#0066FF;
}

.p-re_top_join_list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.p-re_top_join_list li {
    margin:5px;
}

.p-re_top_join_button {
    padding:8px 25px;
    color:#FFFFFF !important;
    font-size:25px;
    letter-spacing: 6px;
    border-radius:5px;
    background: linear-gradient(150deg,#0066FF,#2BC8FF);
    display:flex;
    justify-content:center;
    align-items:center;
}

.p-re_top_join_button:hover {
    padding:8px 25px;
    color:#FFFFFF !important;
    font-size: 25px;
    letter-spacing: 6px;
    border-radius: 5px;
    background: linear-gradient(150deg,#2BC8FF,#0066FF);
    display:flex;
    justify-content:center;
    align-items:center;
}

.p-re_top_join2_button {
    padding:8px 25px;
    color:#FFFFFF !important;
    font-size: 25px;
    letter-spacing: 6px;
    border-radius: 5px;
    background: linear-gradient(150deg,#FF3094,#FF0000);
    display:flex;
    justify-content:center;
    align-items:center;
}

.p-re_top_join2_button:hover {
    padding:8px 25px;
    color:#FFFFFF !important;
    font-size: 25px;
    letter-spacing: 6px;
    border-radius: 5px;
    background: linear-gradient(150deg,#FF0000,#FF3094);
    display:flex;
    justify-content:center;
    align-items:center;
}

/*indexリニューアル section1*/
.p-re_section1 {
    background:#FFF;
    width:100%;
    padding:30px 15px 35px;
}

.p-re_section1_inner {
    width:100%;
    margin:0 auto;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.p-re_section1 h2 {
    font-size:2.4rem;
    font-weight:bold;
    text-align:center;
    line-height: 1.3;
    display:inline-block;
    background: linear-gradient(150deg,#2BC8FF,#0066FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom:10px;
}

.p-re_section1 h3 {
    font-size:2rem;
    font-weight:bold;
    text-align:center;
    line-height: 1.2;
    display:inline-block;
    background: linear-gradient(150deg,#2BC8FF,#0066FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom:30px;
}

.p-re_section1 p {
    text-align: center;
    font-size: 15px;
}

.p-re_header_check_btn_login {
	position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 235px;
    height: 60px;
    color: #FFF;
    background: linear-gradient(150deg, #2BC8FF, #0066FF);
    border: 2px solid #0066FF;
    border-radius: 5px;
    overflow: hidden;
    margin-right: 15px;
    font-size: 22px;
}
.p-re_header_check_btn_login:hover {
	color:#FFF;
}

.p-re_header_check_btn_login::before {
	content:"";
	display:block;
	width:9px;
	height:100%;
	top:0;
	left:0;
	background-color:#FFF;
	opacity:0;
	transition: cubic-bezier(0.32,0,0.67,0);
}

.p-re_header_check_btn_login:hover::before {
	animation: check_btn_anime 0.5s linear;
}

@keyframes check_btn_anime {
	0%{
		transform: scale(2) rotate(45deg);
		opacity:0;
	}
	20%{
		transform: scale(20) rotate(45deg);
		opacity:0.4;
	}
	40%{
		transform: scale(45) rotate(45deg);
		opacity:0.2;
	}
	80% {
		transform:scale(50) rotate(45deg);
		opacity:0.2;
	}
	100% {
		transform: scale(50) rotate(45deg);
		opacity:0;
	}
}

.p-re_header_check_btn_login:hover:before {
	left:120%;
}

.p-re_header_check_btn_logout {
	display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 60px;
    color: #0066FF;
    background: #FFF;
    border: 2px solid #0066FF;
    border-radius: 5px
}

.p-re_header_check_btn_logout:hover {
	opacity:0.8;
	color:#0066FF;
}

/*indexリニューアル slickslider*/
.c-lp15_koisagashi {
    width:100%;
}

.c-lp15_koisagashi_inner {
    width:100%;
    min-height:340px;
    margin:0 auto;
    padding:0 20px;
}

.c-lp15_koisagashi_box {
    min-height:250px;
    margin-bottom:40px;
    position:relative;
}

.c-lp15_koisagashi_map {
    position:absolute;
    bottom:-175px;
    left:0px;
}

.c-lp15_koisagashi h2{
    font-size: 3.4rem;
    font-weight:bold;
    line-height: 1.2;
    display:inline-block;
    background: linear-gradient(150deg,#2BC8FF,#0066FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom:30px;
}

.c-lp15_koisagashi h3{
    font-size: 2.2rem;
    margin-bottom:30px;
}

.c-lp15_koisagashi p{
    font-size:16px;
}

/*indexリニューアル 使い方*/
.p-re_use {
    width:100%;
    background: #E1F3FE;
    padding:100px 0 10px;
    margin-bottom:50px;
}

.p-re_use_inner {
    width:100%;
    margin:0 auto;
    padding:0 20px;
}

.p-re_use h2 {
    font-size:54px;
    font-weight:bold;
}

.p-re_use_inner>h3 {
    font-size:16px;
    color:#00A1F7;
    margin-bottom:10px;
}

.p-re_use p {
    font-size:18px;
}

.p-re_use_list {
    margin:30px 0 20px;
}

.p-re_use_list ul {
    display:flex;
    justify-content: space-between;
    flex-direction:column;
    align-items:center;
    width: 100%;
}

.p-re_use_list ul li {
    display:flex;
    flex-direction:column;
    align-items:center;
    margin: 10px 0 35px;
    width:320px;
}

.p-re_use_list ul li img {
    width: 310px;
    height:500px;
    margin-bottom: 0;
}

.p-re_use_list_step {
    width:160px;
    height:46px;
    padding:10px;
    color:#FFFFFF;
    background:linear-gradient(150deg,#2BC8FF,#0066FF);
    border-radius:5px;
    margin-bottom:20px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
    font-weight:bold;
}

.p-re_use_list ul li h3 {
    font-size:24px;
    margin-bottom:10px;
}

.p-re_use_list ul li p {
    font-size:16px;
}

/*indexリニューアル かんたん無料登録*/
.p-re_touroku {
    background-image:url("../image/re_duo2_bg2.png");
    background-repeat: round;
    display:flex;
    height:auto;
    width:100%;
    margin-bottom:60px;
}

.p-re_touroku_inner {
    width:100%;
    margin:0 auto 30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-direction:column;
}

.p-re_touroku_box {
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding: 0 15px;
}

.p-re_touroku_box h2 {
    font-size:4.2rem;
    font-weight:bold;
}

.p-re_touroku_box_p1 {
    font-size:16px;
    line-height:1.6;
    margin-bottom:20px;
    text-align:center;
}

.p-re_touroku_box_p2 {
    font-size:12px;
    margin-top: 10px;
}

/*indexリニューアル よくある質問*/
.p-re_qa {
    width:100%;
}

.p-re_qa_inner {
    width:100%;
    margin:0 auto 50px;
    padding:0 20px;
}

.p-re_qa h2 {
    font-size:4.2rem;
}

.p-re_qa p {
    font-size:16px;
    color:#00A1F7;
    margin-bottom:40px;
}

.p-re_qa_list {
    display:flex;
    flex-direction:column;
}

.p-re_qa_list li {
    display:flex;
    align-items:center;
    background:#F2F2F2;
    padding:8px;
    border-radius:8px;
}

.p-re_qa_q {
    font-size: 1.6rem;
    margin-bottom:15px;
    margin-right:20px;
}

.p-re_qa_q strong {
    display:flex;
    align-items:center;
    justify-content:center;
    background:#00ABFF;
    width:50px;
    height:50px;
    color:#FFFFFF;
    border-radius:5px;
    margin-right:20px;
    font-size:34px;
    line-height:0;
    padding: 10px 13px;
}

.p-re_qa_a {
    font-size:1.6rem;
    margin-bottom:25px;
    margin-left:20px;
}

.p-re_qa_a strong {
    display:flex;
    align-items:center;
    justify-content:center;
    background:#9EB3D9;
    width:50px;
    height:50px;
    color:#FFFFFF;
    border-radius:5px;
    margin-right:20px;
    font-size:34px;
    line-height:0;
    padding: 10px 13px;
}

.p-re_footer {
    width:100%;
    margin-top:auto;
}

.p-re_footer_main {
    width:100%;
    background:#F0F0F0;
    padding:20px 0;
}
.p-re_footer_main_inner {
    width:100%;
    margin:0 auto;
    padding:0 20px;
    display:flex;
    justify-content:space-between;
    flex-direction:column;
}
.p-re_footer_main_left {
    width:100%;
    display: flex;
    justify-content: center;
}
.p-re_footer_main_left img {
    max-width:400px;
    width:50%;
}
.p-re_footer_main_right {
    width:100%;
    display:none;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.p-re_footer_main_right h2 {
    font-size: 3.6rem;
    font-weight: bold;
    line-height: 1.2;
    display: inline-block;
    background: linear-gradient(150deg, #2BC8FF, #0066FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    margin-top:20px;
}

.p-re_footer_main_right p {
    margin-top:10px;
    font-size:12px;
}

.p-re_footer_sub {
    width:100%;
    margin:0 auto;
    padding:10px;
}

.p-re_footer_sub ul {
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
}

.p-re_footer_sub ul li {
    display: flex;
    justify-content: center;
    align-items:center;
    width: 50%;
}

.p-re_footer_sub ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    padding: 10px 0;
    width: 100%;
}

.p-re_footer_bottom {
    display:flex;
    justify-content:center;
    align-items:center;
    padding:10px;
    font-size:14px;
    color:#FFF;
    background: linear-gradient(150deg, #2BC8FF, #0066FF);
    width:100%;
}

/*safetyページ TOPページ*/
.p-safety {
    background:#FFFFFF;
}

.p-safety_header {
    display:flex;
    flex-direction:column;
    align-items: center;
    justify-content: center;
    margin:30px 15px;
}

.p-safety_header h1 {
    width:100%;
    margin-bottom:20px;
}

.p-safety_header h2 {
    font-size:14px;
    font-weight:normal;
}

.p-safety_content {
    width:100%;
    margin:0 auto;
    padding:0 15px;
    display:block;
}

.p-safety_content_section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto 50px;
}

.p-safety_content_section h2 {
    display:flex;
    align-items:center;
    font-size:24px;
    margin-bottom:15px;
}

.p-safety_content_section h2:before {
    content:"";
    display:block;
    width:30px;
    border-bottom:2px solid #24A1FF;
    transform:rotate(60deg);
}

.p-safety_content_section h2:after {
    content:"";
    display:block;
    width:30px;
    border-bottom:2px solid #24A1FF;
    transform:rotate(-60deg);
}

.p-safety_content_section_bigbanner {
    width:100%;
}

.p-safety_content_section_list {
    display:flex;
    flex-wrap:wrap;
    justify-content: center;
}

.p-safety_content_section_list li {
    width:100%;
    margin: 0 0 10px 0;
}

.p-safety_footer {
    background:#D8EFFF;
    padding:30px 0 0 0;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    width:100%;
    position:relative;
}

.p-safety_footer_box {
    display:flex;
    flex-direction:column-reverse;
    align-items:center;
    justify-content:center;
    margin:0 15px 30px;
}

.p-safety_footer_left {
    background:#FFFFFF;
    padding:20px;
    border-radius:8px;
}

.p-safety_footer_right {
    width:200px;
    position: absolute;
    bottom: 0;
    right: 5px;
}

.p-safety_footer_left h2 {
    font-size:30px;
    color:#008CFF;
    margin-bottom:20px;
}

.p-safety_footer_left a {
    background:#008CFF;
    color:#FFFFFF;
    padding:5px 15px;
    display:inline-flex;
    align-items:center;
    font-size:24px;
    border-radius:8px;
}

.p-safety_footer_left a i.icon-icon_ya_right {
    margin-left:5px;
    color:#FFFFFF;
    font-size:24px;
}

.p-safety_footer_nav {
    display:flex;
    align-items:center;
    justify-content:center;
    background:#008CFF;
    width:100%;
}

.p-safety_footer_nav li {
    margin:8px 15px;
}

.p-safety_footer_nav li a, .p-safety_footer_nav li a:hover {
    color:#FFFFFF;
}

/*safety safety_mindsetページ*/
.p-safety_mindset_header {
    margin-bottom:50px;
    margin-top:-20px;
}

.p-safety_mindset_header h1 {
    background:#D8EFFF;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    width:100%;
    margin-bottom:20px;
}

.p-safety_mindset_header img {
    width:100%;
}

.p-safety_mindset_header h2 {
    font-size:20px;
    color:#00ABFF;
    margin:0 auto 10px;
    width:100%;
    padding:0 20px;
}

.p-safety_mindset_header p {
    margin:0 auto;
    width:100%;
    padding:0 20px;
}

.p-safety_content_section_mindsetlist {
    width:100%;
}

.p-safety_content_section_mindsetlist li {
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    margin-bottom:40px;
}

.p-safety_content_section_mindsetlist_left {
    width:100%;
    margin-bottom: 15px;
}

.p-safety_content_section_mindsetlist_right {
    width:100%;
}

.p-safety_content_section_mindsetlist_right h3 {
    font-size:20px;
    margin-bottom:5px;
    color:#00ABFF;
}

.p-safety_content_section_mindsetlist_right h4 {
    font-size:12px;
    margin-bottom:20px;
}

.p-safety_content_section_mindsetlist_right p {
    font-size:14px;
}

#safetyback {
    display:none;
    padding:20px;
    background:#FFFFFF;
    border-radius:5px;
    box-shadow:0 0 3px 0 rgba(0,0,0,0.3);
    color:#008CFF;
    justify-content:center;
    align-items:center;
    position:fixed;
    bottom:15px;
    right:15px;
    animation-name:fadeInAnime;
    animation-duration:0.8s;
    animation-fill-mode:forwards;
}

@keyframes fadeInAnime {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}

#safetyback.safetyback_open {
    display:flex;
}

#safetyback i {
    color:#008CFF;
}

/*safety safety_problemページ*/
.p-safety_problem_content {
    width:100%;
    margin:0 auto;
    padding:0 20px;
    display:block;
}

.p-safety_problem_section {
    margin-bottom:50px;
}

.p-safety_problem_section h2{
    margin-bottom:10px;
}

.p-safety_problem_section h3{
    font-size:20px;
    margin-bottom:5px;
    color:#00ABFF;
}

.p-safety_problem_section p{
    font-size:18px;
    margin-bottom:10px;
}

.p-safety_problem_section ul {
    margin-bottom:30px;
}

.p-safety_problem_section li {
    list-style-type: disc;
    margin-left: 25px;
}

.p-safety_problem_section_box {
    display:flex;
    align-items:center;
    margin-top:20px;
}

.p-safety_problem_section_box img {
    width:30px;
    margin-right:10px;
}

/*料金表　マイル表*/
.table_design08 {
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%;
    max-width: 700px;
    text-align: center;
	margin-bottom:20px;
  }
  .table_design08 th, .table_design08 td {
    border: 2px solid #d2e8f1;
    padding: 1em;
  }
  .table_design08 thead th {
    background-color: #4d9bc1;
    color: #fff;
    border: 2px solid #4d9bc1;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
	text-align:center;
  }
  .table_design08 thead th:first-child {
    width: 280px;
  }
  .table_design08 thead th:last-of-type {
    border-right: 2px solid #4d9bc1;
  }
  .table_design08 tbody th {
    color: #149aed;
    font-weight: bold;
    text-align: center;
  }

  .table_design08_p {
	margin-bottom:20px;
  }
  @media screen and (max-width: 500px) {
    .table_design08 {
      text-align: left;
    }
    .table_design08 thead {
      display:none;
    }
    .table_design08 th, .table_design08 td {
      display: block;
      border: 0;
      border-bottom: 2px solid #e6f1f6;
    }
    .table_design08 tbody th{
      background: #149aed;
      color:#fff;
    }
    .table_design08 td::before{
      content: attr(data-label);
      color: #149aed;
      font-weight: bold;
      display: inline-block;
      width: 35%;
      min-width: 4em;
    }
  }
  
/*マイページ*/
.c-coment_phone {
    padding: 10px 15px;
    background: #FFF2FF;
    margin-bottom: 10px;
    display: inline-flex;
    color: #FF3094;
    border-radius: 5px;
    font-size: 12px;
    margin-left: 10px;
    position: relative;
}

.c-coment_phone:before {
    display: block;
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    left: -10px;
    top: 8px;
    background: #FFF2FF;
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
}
.l-header_nav_drawer_next_tt {
    background: linear-gradient(150deg, #2BC8FF, #0066FF); 
    padding:10px;
    color:#FFFFFF;
    font-size: 1.8rem;
    font-weight: bold;
}

.l-header_nav_profile_next {
    display:flex;
    flex-direction:column;
    align-items:center;
    padding:20px;
    background:#D7EEFE;
}

.l-header_nav_btn_next {
    display: block;
}

.l-header_nav_profile_next h3 {
    font-size:20px;
    margin-bottom:15px;
}

.l-header_nav_profile_next img {
    width:200px;
    margin-bottom:20px;
    border-radius: 8px;
}


.l-header_nav_drawer_chenge_next {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #FFFAC8, #FFFFFF, #FFFAC8);
    padding: 10px 5px;
    border-radius: 0 0 5px 5px;
    box-shadow: inset 0px 0px 8px 0px rgba(210, 130, 0, .5);
}

.l-header_nav_drawer_chenge_point_next {
    margin-bottom: 0px;
}

.l-header_nav_drawer_chenge_next li {
    font-size:16px;
}

.l-header_nav_btn_next ul {
    display:flex;
    flex-wrap:wrap;
}

.l-header_nav_btn_next ul li {
    display:flex;
    justify-content:center;
    align-items:center;
    width:25%;
}

.l-header_nav_btn_next ul li a {
    display:flex;
    align-items:center;
    flex-direction:column;
    padding:5px;
    width:100%;
    height:80px;
    border-top:1px solid #FFFFFF;
    border-left:1px solid #FFFFFF;
    border-right:1px solid #E7E7E7;
    border-bottom:1px solid #E7E7E7;
    background: linear-gradient(150deg, #FFFFFF, #dddddd); 
    position:relative;
}

.l-header_nav_btn_next ul li a img {
    width:50px;
    height:50px;
}

.l-header_nav_btn_next ul li a span {
    font-size:10px;
}

.l-header_nav_btn_next ul li a small {
    position: absolute;
    top: 8px;
    right: 8px;
    min-width: 25px;
    height: 25px;
    padding: 2px 4px 0px;
    background: #ED3538;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    border-radius: 20px;
}

.l-header_nav_drawer_next_submenu {
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.l-header_nav_drawer_next_submenu {
    display:flex;
}

.l-header_nav_drawer_next_submenu li a {
    display:flex;
    align-items:center;
    background: linear-gradient(150deg, #FFFFFF, #dddddd); 
    border-top:1px solid #FFFFFF;
    border-bottom:1px solid #E7E7E7;
    padding:10px;
}

.l-header_nav_drawer_next_submenu li a img {
    width:40px;
    height:40px;
    margin-right:10px;
}

.l-header_nav_drawer_next_submenu li a span {
    font-size:16px;
}

.l-header_nav_drawer_next_submenu li a small {
    margin-left:auto;
    background: linear-gradient(150deg, #2BC8FF, #0066FF); 
    padding: 10px;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#FFFFFF;
    border-radius:25px;
    font-size: 12px;
}

.drawer--right .drawer-hamburger_next {
    right: 17.25rem;
    left: 0;
    background: none;
    border: none;
}

.drawer--right.drawer-open .drawer-hamburger_next {
    right: 17.25rem;
    left: 0;
    background: none;
    border: none;
}

.drawer--right .drawer-overlay{
    background-color: rgba(0, 0, 0, .0);
}

/*チャットページ　年齢チェック*/
.c-chat_view_agecheck {
    position: relative;
}

.c-chat_view_agecheck_bg:after {
    display:flex;
    position:fixed;
    content:"";
    justify-content:center;
    align-items:center;
    background:#000000;
    height:100%;
    width:100%;
    opacity:0.8;
    transition: ease 1s all;
}

.c-chat_view_agecheck_box {
    display:none;
    background:#FFFFFF;
    padding:20px;
    border-radius:8px;
    flex-direction:column;
    align-items:center;
    width:90%;
    height: 350px;
    margin:auto;
    z-index:9999;
    position: fixed;
    top: 25%;
    bottom: 25%;
    left: 5%;
    right: 5%;
}

.c-chat_view_agecheck_box img {
    width:140px;
    margin-bottom:20px;
}

.c-chat_view_agecheck_box p {
    font-size:16px;
    margin-bottom:10px;
}

.c-chat_view_agecheck_box a {
    background:#47B3D9;
    color:#FFF;
    padding:10px 15px;
    border-radius:5px;
}
/*login_top.html*/
.l-header_nav_profile_next_head {
    display: flex;
    flex-direction: column;
    border: 2px solid #ccc;
    border-radius: 8px;
    min-width: 300px;
    width:90%;
    margin: 0;
}

.l-header_nav_profile_next_head h3 {
    background: linear-gradient(180deg, #99FFFF 1%, #2BC8FF 5%, #0066FF);
    padding: 10px;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: bold;
    border-radius: 8px 8px 0 0;
    text-align: center;
    margin:0;
}

li.l-header_nav_drawer_chenge_point_next a div {
    margin-right:5px;
    display: flex;
    align-items: center;
    color: #E35700;
    font-weight: bold;
    font-size: 22px;
}

li.l-header_nav_drawer_chenge_point_next a div small {
    font-size: 12px;
    color: #E35700;
    margin-top: 5px;
}

li.l-header_nav_drawer_chenge_point_next a div .c-icon_point {
    width: 30px;
    margin-bottom: 0;
    margin-right: 2px;
}

li.l-header_nav_drawer_chenge_mile_next a div {
    margin-left:5px;
    display: flex;
    align-items: center;
    color: #0075A6;
    font-weight: bold;
    font-size:22px;
}

li.l-header_nav_drawer_chenge_mile_next a div small {
    color: #0075A6;
    font-size:12px;
    margin-top: 5px;
}

li.l-header_nav_drawer_chenge_mile_next a div .c-icon_mile {
    width: 30px;
    margin-bottom: 0;
    margin-right: 2px;
}

/*TOP年齢認証*/
small#age_info {
    font-weight: bold;
}

/*年齢認証*/
#LicenseRow dl {
    position: relative;
    width: 100%;
    text-align: center;
    margin: auto;
    padding-bottom: 30px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
}

#LicenseRow dl:last-child {
    border-bottom: none;
}

.InfoBacBoxH2.c-nenrei_tt {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: bold;
    width: 100%;
    background: #26A75F;
    padding: 20px;
    border-radius: 8px;
    color: #FFF;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

#LicenseRow dl dd h4 {
    font-size: 20px;
    font-weight: bold;
    color: #2A7ABD;
    margin-bottom: 5px;
}

.c-nenrei_list {
    display: flex;
    flex-direction: column;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #FFF;
}

ul.c-nenrei_list li {
    border-bottom: 1px solid #ddd;
    padding: 10px 15px;
}

ul.c-nenrei_list li:last-child {
    border-bottom:none;
}

/*年齢認証fax*/
.c-faxbox {
    background-color: #E4F5FB;
    padding: 30px 20px;
    border-radius: 8px;
    position: relative;
    margin: 15px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 20px;
}

.c-faxbox h3 {
    background: #26A75F;
    color: #FFF;
    padding: 15px 20px;
    border-radius: 8px;
    width: 100%;
    margin-bottom: 30px;
    font-size: 26px;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.c-faxbox_img {
    width: 100px;
    margin-bottom:25px;
    position:relative;
    transition: width 0.3s;
}

.c-faxbox_img_zoom {
    margin-bottom: 20px;
    position: absolute;
    padding: 10px 7px !important;
    background: white;
    border: 2px solid red;
    color: red;
    border-radius: 50% !important;
    font-size:12px !important;
    top: -20px;
    right: -20px;
}

.c-faxbox_img_zoomout {
    display:none;
    margin-bottom: 20px;
    position: absolute;
    padding: 10px 7px !important;
    background: white;
    border: 2px solid red;
    color: red;
    border-radius: 50% !important;
    font-size:12px !important;
    top: -20px;
    right: -20px;
}

.c-faxbox p {
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFF;
    padding: 0 15px 0 0;
    border-radius: 8px;
}

.c-faxbox p span {
    background: #2A7ABD;
    padding: 10px 15px;
    border-radius: 8px 0 0 8px;
    font-size: 20px;
    margin-right: 15px;
    color: white;
}
.c-faxbox p small {
    font-size: 20px;
    margin-top: 5px;
}

/*TOPイイネ、報告*/
.c-iine_houkoku {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom:10px;
    font-size:18px;
}

.c-iine_houkoku li {
    padding: 0;
}

.c-iine_houkoku li img {
    width: 25px;
    margin-bottom: 5px;
    margin-right: 3px;
}

.c-iine_houkoku li:first-child {
    border-radius: 8px 0 0 8px;
    color: #1FB2FF;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right:10px;
}

.c-iine_houkoku li:last-child {
    border-radius: 0 8px 8px 0;
    color: #FF4200;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left:10px;
}

.c-iine_houkoku li i {
    margin-right: 5px;
}

.c-iine_houkoku li:first-child i {
    background: #1FB2FF;
    padding:5px;
    border-radius:50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.c-iine_houkoku li:last-child i {
    background: #FF4200;
    padding:5px;
    border-radius:50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.c-iine_houkoku li i:before {
    color:white;
}

.c-iine_houkoku li i.far.fa-thumbs-up.iine-oncolor.turn {
    transform: rotate(180deg);
}

/*警告ページ warning.html*/
.l-warning {
    padding: 15px;
}

.l-warning h2 {
    padding:0;
    margin-bottom:20px;
}

.l-warning_text {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.l-warning_text h3 {
    font-size: 24px;
    color: #00ABFF;
    margin-bottom: 20px;
}

.l-warning_text p {
    font-size: 16px;
}

p.l-warning_p_right {
    margin-left: auto;
    margin-bottom: 10px;
}

ul.l-warning_list {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom:30px;
}

ul.l-warning_list li {
    margin:0 10px;
}

a.l-warning_btn_logout {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FF4A66;
    color: #FFFFFF;
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 5px;
}

a.l-warning_btn_chat {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #00ABFF;
    color: #FFFFFF;
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 5px;
}

.l-chat_warning_list_return_i {
    margin-right:0 !important;
}

.l-chat_warning_list_return {
    color:white;
    margin-right:20px;
}

/*コメント*/
#c-coment_iine_btn {
    position:relative;
}

#c-coment_keikoku_btn {
    position:relative;
}

.c-coment {
    display:none;
    background:white;
    border-radius:5px;
    padding:15px;
    box-shadow:1px 1px 3px 3px rgba(0,0,0,0.2);
    position:absolute;
    bottom:50px;
    left:-100px;
    z-index:2;
    width: 270px;
    font-size:12px;
}

.c-coment:before {
    content: "";
    display: block;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: calc(tan(60deg)* 8px) solid #FFFFFF;
    position: absolute;
    left: 120px;
    bottom: -11px;
    z-index: 3;
}

.c-coment:after {
    content:'';
    display:block;
    border-left:10px solid transparent;
    border-right:10px solid transparent;
    border-top: calc(tan(60deg) * 10px) solid #dddddd;
    position:absolute;
    left:118px;
    bottom:-18px;
    filter: blur(1px);
    z-index: 0;
}

/*ニュース表示*/
.l-header_nav_profile_next_head_news {
    width: 310px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto 0px;
}

.l-header_nav_profile_next_head_news img {
    width: 250px;
    margin-bottom: 0;
}

/*usersmanual1*/
a.usersmanual_link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #008CFF;
    color: #FFFFFF;
    padding: 8px 10px;
    border-radius: 5px;
}

a.usersmanual_link i {
    color: #FFFFFF;
    margin-left: 10px;
}

.c-usersmanual_accordion {
    display:flex;
    flex-direction:column;
}

.c-usersmanual_accordion li {
    display:flex;
    flex-direction:column;
    border:1px solid #008CFF;
    border-radius:5px;
    margin-bottom:20px;
    margin-left: 0;
    overflow:hidden;
}

.c-usersmanual_accordion_title {
    display:flex;
    align-items:center;
    padding:5px 10px;
    background:#D8EFFF;
    color:#008CFF;
    font-size:20px;
    cursor: pointer;
}

.c-usersmanual_accordion_title img {
    width:24px;
    height:24px;
    margin-right:10px;
    margin-bottom: 6px;
}

.c-usersmanual_accordion_title i {
    margin-left:auto;
    font-size:20px;
    color:#008CFF;
}

.c-usersmanual_accordion_contents {
    display:none;
    padding:20px;
    font-size:16px;
}

.c-usersmanual_index {
    display:flex;
    flex-wrap:wrap;
    margin-bottom:30px;
}

.c-usersmanual_index li {
    margin:0 10px 10px 0;
}

.c-usersmanual_index li a {
    display:flex;
    align-items:center;
    padding: 5px 7px;
    background:#008CFF;
    color:#FFFFFF;
    border-radius:5px;
}

.c-usersmanual_index li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    font-size: 14px;
    border-radius: 5px;
    background: #FFFFFF;
    color: #008CFF;
    margin-right: 5px;
}

.c-usersmanual_list {
    display:flex;
    flex-wrap:wrap;
    margin-bottom:10px !important;
}

.c-usersmanual_list li {
    display:flex;
    justify-content:center;
    align-items:center;
    padding:8px 10px;
    font-size:16px;
    border:1px solid #ddd;
    border-radius:5px;
    margin:0 10px 10px 0;
}

.p-usersmanual_top_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.p-usersmanual_top_list li {
    width: 100%;
    margin: 5px 0;
}

.c-pay_tt {
    display:flex;
    align-items:center;
    justify-content: center;
}

.c-pay_tt img {
    height:80px;
    margin-right:10px;
}

.c-pay_tt h3 {
    font-size:20px;
    margin-bottom:0;
}

/*決済ページ*/
.c-point_1_new_pay_box {
    margin-bottom:20px;
}

.c-point_1_new_pay_box h4 {
    font-size:16px;
    font-weight:bold;
}

.c-point_1_new_pay_box>p {
    margin-bottom:20px;
}


.c-point_1_new_pay_h3_info {
    background:#590000;
    color:#FFFFFF;
    font-size:20px;
    padding:5px 8px;
    margin-bottom:25px;
}

.c-point_1_new_pay_h3_warning i, .c-point_1_new_pay_h3_info i {
    color:#FFFFFF;
}

.c-point_1_new_pay_list {
    margin-bottom:20px;
}

.c-point_1_new_pay_list li {
    list-style-type: disc;
    margin-left: 22px;
    padding: 2px 0;
}

.c-point_1_new_pay_listdec {
    margin-bottom:20px;
}

.c-point_1_new_pay_listdec li {
    list-style-type: decimal;
    margin-left: 22px;
    padding: 2px 0;
}

.c-point_1_new_pay_form {
    margin-bottom:45px;
}

.c-point_1_new_pay_form_table {
    display:flex;
    flex-direction:column;
}

.c-point_1_new_pay_form_table tr {
    display:flex;
    align-items:center;
    justify-content: space-between;
    border-bottom:1px dotted #B0B0B0;
}

.c-point_1_new_pay_form_table th, .c-point_1_new_pay_form_table td {
    display:flex;
    justify-content:center;
    align-items:center;
    padding:8px 0;
    color:#1FB2FF;
    font-size:18px;
    line-height: 1;
}

.c-point_1_new_pay_form_table th:first-child, .c-point_1_new_pay_form_table td:first-child  {
    justify-content:flex-start;
    width:calc(50% - 110px);
    font-weight:bold;
}

.c-point_1_new_pay_form_table th:nth-child(2) {
    justify-content:center;
    width:calc(50% - 110px);
    margin-right:20px;
}

.c-point_1_new_pay_form_table td:nth-child(2)   {
    justify-content:center;
    width:calc(50% - 110px);
    margin-right:20px;
    color: #FE99C7;
    font-weight:bold;
}

.c-point_1_new_pay_form_table th:last-child, .c-point_1_new_pay_form_table td:last-child {
    width:160px;
}

.c-point_1_new_pay_form_table td img {
    width:26px;
    margin-right:5px;
}

.c-point_1_new_pay_form_btn {
    display:flex;
    justify-content:center;
    align-items:center;
    padding:5px 15px;
    font-size:18px;
    background:#1FB2FF;
    color:#FFFFFF;
    font-size:18px;
    border-radius:5px;
    box-shadow: 0 4px 0 0 #008FFF;
    width:150px;
    transition-duration: 100ms;
    font-weight:bold;
}

.c-point_1_new_pay_form_btn:hover {
    box-shadow: 0 0px 0 0 #008FFF;
    margin:4px 0 -4px;
}

.c-point_1_new_pay_boxlink a {
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;
    border: 2px solid #0075FF;
    padding: 20px;
    border-radius: 8px;
    transition-duration:1000ms;
}

.c-point_1_new_pay_boxlink a:hover {
    background:#0075FF;
    color:#FFFFFF;
}

.c-point_1_new_pay_boxlink a:hover h4, .c-point_1_new_pay_boxlink a:hover p {
    color:#FFFFFF;
}

.c-point_kessai{
    background:#EFEFEF;
    padding:15px;
    border-radius:8px;
    margin-bottom: 40px;
}

.c-point_kessai_sub {
    margin-bottom:40px;
}

.c-point_kessai_sub>h4{
    font-size:14px;
    font-weight:normal;
    margin-bottom:10px;
}

.c-point_kessai_sub>div{
    background:#FFF;
    border-radius:5px;
    overflow:hidden;
    border:1px solid #ddd;
}

.c-point_1_new_pay_h3_warning {
    background: #BD0000;
    color: #FFFFFF;
    font-size: 20px;
    padding: 5px 8px;
    margin-bottom: 25px;
}

/*トップ動画*/
.c-video {
    width: 100%;
    height: 100vh; 
    height: 100dvh;
    background: #ccc;
    position: relative;
    z-index: 0;
}

.c-video_box {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

.c-video_box video {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.c-video_box h2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 45%;
    left: 30px;
    right: 30px;
    font-size: 2.4rem;
    color: #FFF;
    z-index: 1;
    font-weight: bold;
}

.c-video_box h2 img{
    width:230px;
}

.c-video_box_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #2BC8FF;
    background: #FFFFFF;
    color: #2BC8FF;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 2rem;
    font-weight: bold;
    min-width: 180px;
    position:absolute;
    bottom:40px;
    left:30px;
    right:30px;
}

.c-video_box_btn:hover {
    border: 2px solid #2BC8FF;
    background: #2BC8FF;
    color: #FFFFFF;
}

.c-video_box_btn b {
    font-size: 1.2rem;
    color: #2BC8FF;
    margin-left: 20px;
}

.c-video_box_btn:hover b {
    color: #FFFFFF;
}

.c-video_box_btn i {
    font-size: 1.2rem;
    color: #2BC8FF;
    margin-left: 5px;
}

.c-video_box_btn:hover i {
    color: #FFFFFF;
}

.c-video_box_btn2{
    position:absolute;
    bottom:20px;
    left:10px;
    right:10px;
}

.c-video_box_btn2 .c-lp15_header_check {
    background:none;

}
/*index20241112スライド*/
#c-snaq_slideshow {
    position: relative;
    width: 100%;  /* 画像の幅 */
  }

/* 画像のスタイル */
.c-snaq_slide {
    position: absolute;
    object-fit:cover;
    width:100%;
    opacity: 0;
    transition: opacity 1s;
    object-position: right;
}

/* 最初の画像を表示状態にする */
.c-snaq_slide.active {
opacity: 1;
}

/*timeoutモーダル*/
.c-modal_timeout_p {
    background: #FFFFFF;
    padding: 20px;
    border-radius: 5px;
}

/*プロフィールリニューアル20250129*/
.c-reprofile_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3px;
    background: #CCE4FF;
}

.c-reprofile_header_name {
    border: 1px solid #FFD69C;
    background: linear-gradient(to right, #0075FF, #0075FF, #70D7FF);
    padding: 5px 10px;
    color: #FFFFFF;
    font-size: 1.6rem;
    min-width: 300px;
}

.c-reprofile_header_back a {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #FFD69C;
    background: linear-gradient(to right, #0075FF, #0075FF, #70D7FF);
    padding: 9px 10px;
    width: 60px;
    clip-path: polygon(0 0, 40px 0, 100% 50%, 40px 100%, 0 100%);
}

.c-reprofile_header_back a i {
    color: #FFF;
    margin-right: 13px;
    font-weight: bold;
    font-size: 1.8rem;
}

.c-reprofile_main {
    margin: 0px 15px 30px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.c-reprofile_main_left {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2px;
    width: 200px;
    margin-right:20px;
}

.c-reprofile_main_left_img {
    display: flex;
    width:160px;
    padding:1px;
    background:#FFFFFF;
    border: 1px solid #FFD69C;
    margin-bottom: 15px;
}

.c-reprofile_main_left_iine {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFF;
    border: 1px solid #FFD69C;
    padding:1px;
    color:#FFF;
    width: 185px;
    margin-bottom: 15px;
}

.c-reprofile_main_left_iine span{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to right, #FF4700, #FF7300, #FF7300);
    border: 1px solid #FFD69C;
    padding:1px;
    color:#FFF;
    padding: 5px;
    width: 100%;
}

.c-reprofile_main_left_iine strong{
    padding: 0 5px;
    background: #FFFFFF;
    border-radius: 3px;
    color: #ff5d00;
    margin-left: auto;
    box-shadow: inset 1px 1px 0 0 rgba(0, 0, 0, 0.2);
}

.c-reprofile_main_left_iine img {
    width: 25px;
    margin-right: 5px;
    color:#FFFFFF;
}

.c-reprofile_main_right {
    display: flex;
    flex-direction: column;
}

.c-reprofile_main_right_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom:20px;
    width:100%;
}

.c-reprofile_main_right_box_left {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.c-reprofile_main_right_box_left_namebox {
    display: flex;
    justify-content: space-between;
    align-items:center;
    border: 1px solid #FFD69C;
    background: #0055ff;
    padding: 5px 5px 5px 10px;
    width: 100%;
    margin-bottom:10px;
}

.c-reprofile_main_right_box_left_namebox_name {
    font-size: 3rem;
    color: #FFF;
    /*font-family: "Kaisei Tokumin", serif;*/
}

.c-reprofile_main_right_box_left_namebox_old {
    display: flex;
    justify-content: space-between;
    background: #FFFFFF;
    padding: 5px 10px;
    box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    margin-right: 7px;
    font-size: 1.6rem;
}

.c-reprofile_main_right_box_left_areabox {
    display: flex;
    justify-content: space-between;
    align-items:center;
    border: 1px solid #FFD69C;
    background: linear-gradient(to right, #0075FF, #0075FF, #70D7FF);
    padding: 1px;
    width:100%;
    margin-bottom: 20px;
}

.c-reprofile_main_right_box_left_areabox_name {
    padding: 5px 5px 5px 10px;
    color: #FFFFFF;
    font-size: 12px;
    width: 70px;
}

.c-reprofile_main_right_box_left_areabox_old {
    width: calc(100% - 70px);
    background: #FFFFFF;
    padding: 5px 5px 5px 15px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 10px 50%);
}

.c-reprofile_main_right_box_right {
    width: 310px;
}

.c-reprofile_main_icon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 11px;
    margin-top: 10px;
}
/*いいね OFF*/
.c-reprofile_main_icon_iine_off {
    background:#FFFFFF;
    padding:1px;
    border: 1px solid #FFD69C;
    border-radius: 5px;
    box-shadow:0 0 3px 0 rgba(0,0,0,0.2);
}

.c-reprofile_main_icon_iine_off a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 70px;
    height:70px;
    padding: 5px;
    background: linear-gradient(#70D7FF, #0075FF, #0075FF);
    border-radius: 5px;
    font-size: 16px;
}

.c-reprofile_main_icon_iine_off a img {
    width:40px;
}

.c-reprofile_main_icon_iine_off a small {
    color:#FFFFFF;
}

/*いいね ON*/
.c-reprofile_main_icon_iine_on {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 70px;
    height:70px;
    padding: 5px;
    background: linear-gradient(#FFD670, #FF7300, #FF7300);
    border-radius: 5px;
    border: 1px solid #FFFFFF;
    box-shadow: 0 0 0 1px #FFD69C;
    font-size: 16px;
}

.c-reprofile_main_icon_iine_on img {
    width:40px;
}

.c-reprofile_main_icon_iine_on small {
    color:#FFFFFF;
}


/*お気に入り OFF*/
.c-reprofile_main_icon_like_off {
    background:#FFFFFF;
    padding:1px;
    border: 1px solid #FFD69C;
    border-radius: 5px;
    box-shadow:0 0 3px 0 rgba(0,0,0,0.2);
}

.c-reprofile_main_icon_like_off a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 70px;
    height:70px;
    padding: 5px;
    background: linear-gradient(#70D7FF, #0075FF, #0075FF);
    border-radius: 5px;
    font-size: 16px;
}

.c-reprofile_main_icon_like_off a img {
    width:40px;
}

.c-reprofile_main_icon_like_off a small {
    color:#FFFFFF;
}

/*お気に入り ON*/
.c-reprofile_main_icon_like_on {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 70px;
    height:70px;
    padding: 5px;
    background: linear-gradient(#FFEB64, #64C846, #64C846);
    border: 1px solid #FFFFFF;
    box-shadow: 0 0 0 1px #FFD69C;
    border-radius: 5px;
    font-size: 16px;
}

.c-reprofile_main_icon_like_on img {
    width:40px;
}

.c-reprofile_main_icon_like_on small {
    color:#FFFFFF;
}

/*ブロック OFF*/
.c-reprofile_main_icon_block_off {
    background:#FFFFFF;
    padding:1px;
    border: 1px solid #FFD69C;
    border-radius: 5px;
    box-shadow:0 0 3px 0 rgba(0,0,0,0.2);
}

.c-reprofile_main_icon_block_off a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 70px;
    height:70px;
    padding: 5px;
    background: linear-gradient(#70D7FF, #0075FF, #0075FF);
    border-radius: 5px;
    font-size: 16px;
}

.c-reprofile_main_icon_block_off a img {
    width:37px;
    padding: 3px;
}

.c-reprofile_main_icon_block_off a small {
    color:#FFFFFF;
}

/*ブロック ON*/
.c-reprofile_main_icon_block_on {
    background:#FFFFFF;
    padding:1px;
    border-radius: 5px;
    border: 1px solid #FFFFFF;
    box-shadow: 0 0 0 1px #FFD69C;
}

.c-reprofile_main_icon_block_on a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 70px;
    height:70px;
    padding: 5px;
    background: linear-gradient(#aaaaaa, #463200, #463200);
    border-radius: 5px;
    font-size: 16px;
}

.c-reprofile_main_icon_block_on a img {
    width:37px;
    padding: 3px;
}

.c-reprofile_main_icon_block_on a small {
    color:#FFFFFF;
}

/*通報*/
.c-reprofile_main_icon_alert_on {
    background:#FFFFFF;
    padding:1px;
    border: 1px solid #FFD69C;
    border-radius: 5px;
    box-shadow:0 0 3px 0 rgba(0,0,0,0.2);
}

.c-reprofile_main_icon_alert_on a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 70px;
    height:70px;
    padding: 5px;
    background: linear-gradient(#FFB600, #FF0000, #FF0000);
    border-radius: 5px;
    font-size: 16px;
}

.c-reprofile_main_icon_alert_on a img {
    width:38px;
    padding: 3px;
}

.c-reprofile_main_icon_alert_on a small {
    color:#FFFFFF;
}

/*メッセージを送るボタン*/
.c-reprofile_main_button_send {
    background:#FFFFFF;
    padding:1px;
    border: 1px solid #FFD69C;
}

.c-reprofile_main_button_send a {
    display:flex;
    justify-content:center;
    align-items:center;
    background: linear-gradient(#FF6E3C 0%, #FF4628 50%, #FF6E3C 51%, #FF6E3C 100%);
    padding:10px;
    width:100%;
    color:#FFFFFF;
    font-size:1.6rem;
}

.c-reprofile_main_button_send a img{
    width:25px;
    margin-right:10px;
}

.c-reprofile_main_right_myprofile {
    background: #FFF8F3;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #FFD69C;
    width:100%;
}

.c-reprofile_main_right_myprofile_time_tt {
    display: none;
    align-items:center;
    background: #827772;
    border: 1px solid #827772;
    width:180px;
    margin-bottom:15px;
}

.c-reprofile_main_right_myprofile_time_tt_tt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color:#FFFFFF;
    padding: 0 10px;
    width: 100%;
}

.c-reprofile_main_right_myprofile_time_tt_time {
    width: calc(100% - -150px);
    background: #FFFFFF;
    padding: 5px 5px 5px 15px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 10px 50%);
}

.c-reprofile_sub {
    margin: 0 15px 25px 15px;
}
/*Profile*/
.c-reprofile_sub h2 {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    color: #000000;
    padding-bottom: 20px;
}

.c-reprofile_sub h2:before {
    content: "";
    display: block;
    width: 21px;
    height: 10px;
    background: linear-gradient(45deg, #64C846, #ADDF95);
    border: 1px solid #FFD69C;
    transform: rotate(45deg);
    margin-right: 8px;
    margin-top: -2px;
}

.c-reprofile_sub h2:after {
    content: "";
    display: block;
    width: 500px;
    height: 2px;
    background: linear-gradient(to right, #64C846, #ADDF95, #FFFFFF);
    margin-left:8px;
    margin-top: -2px;
}

.c-reprofile_sub_list {
    display: flex;
    flex-wrap: wrap;
}

.c-reprofile_sub_list li {
    display: flex;
    width: 100%;
    align-items: center;
    border: 1px solid #FFD69C;
    background: linear-gradient(#59CC55 50%, #00C800);
    padding: 1px;
    margin-bottom: 10px;
}

.c-reprofile_sub_list_tt {
    padding: 10px 5px 10px 10px;
    color: #FFFFFF;
    font-size: 1.4rem;
    width: 165px;
    text-align:center;
}

.c-reprofile_sub_list_bd {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 70px);
    height: 100%;
    background: linear-gradient(#FFFFFF 50%,#efefef);
    padding: 5px 5px 5px 15px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 10px 50%);
}

.c-reprofile_send {
    display:flex;
    flex-direction:column;
    justify-content:center;
    background: #FFF8F3;
    padding: 0;
    border: 1px solid #FFD69C;
    margin: 2px;
}

.c-reprofile_send h2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FF8FCB;
    color: #FFFFFF;
    font-size: 1.8rem;
    padding: 5px;
    width: 100%;
    margin: 0 auto 20px;
}

.c-reprofile_send h2 img {
    width:25px;
    margin-right:5px;
}

.c-reprofile_send p {
    margin:0 20px 5px;
}

.c-reprofile_send_bd {
    width:100%;
    margin-bottom:10px;
}

.c-reprofile_send_bd textarea{
    width: calc(100% - 40px);
    height: 300px;
    border: 1px solid #FFD69C;
    margin: 0 20px 0;
}

.c-reprofile_send_bd textarea:focus{
    outline: none;
    border: 2px solid #FF8FCB;
}
.c-reprofile_send_attach {
    margin: 0 20px 5px
}

.c-reprofile_send_attach ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.c-reprofile_send_attach ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.c-reprofile_send_attach ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background:#B899ED;
    padding: 3px 3px 3px 0;
    border:3px solid #B899ED;
    margin-bottom:10px;
    width: 100%;
}

.c-reprofile_send_attach_tt{
    display: flex;
    align-items: center;
    color:#FFFFFF;
    font-size:1.4rem;
    margin-right: 5px;
    margin-top: 3px;
}

.c-reprofile_send_attach_bd select{
    font-size:1.5rem;
}

.c-reprofile_send_attach ul li img {
    width:20px;
    margin-right:5px;
    margin-left:5px;
    margin-top: 3px;
}

.c-reprofile_send_box {
    display:flex;
    flex-direction:column;
    justify-content: space-between;
}

.c-reprofile_send_box_left {
    margin: 0 20px 15px;
}

.c-reprofile_send_box_left ul li {
    font-size:1.3rem;
}

.c-reprofile_send_box_right {
    max-width: 400px;
    margin: 0 auto 25px;
}

.c-reprofile_send_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(#FF6E3C 0%, #FF4628 50%, #FF6E3C 51%, #FF6E3C 100%);
    padding: 5px 20px;
    width: 100%;
    color: #FFFFFF;
    font-size: 1.8rem;
    border:1px solid #FFFFFF;
    box-shadow:0 0 0 1px #FF6E3C;
}

.c-reprofile_send_btn input {
    background: none;
    color: #FFF;
    box-shadow: none;
    padding: 10px 0;
    min-width: auto;
}

.c-reprofile_send_btn img {
    width:25px;
    margin-right:5px;
}

/*モーダルメッセージ表示*/
/* モーダルの背景 */
#modal_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* モーダルウィンドウ */
#message_modal {
    background: #FFFFFF;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

/* ボタンのスタイル */
#close_btn {
    cursor: pointer;
    font-size: 1.6rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 15px;
    border-radius: 5px;
    background: linear-gradient(150deg, #2BC8FF, #0066FF);
    color: #FFF;
    border: none;
    margin: 10px 0 0 auto;
}

/* モーダルのテキスト */
.c-modal_overlay_text {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.c-modal_overlay_text strong {
    font-size: 2rem;
    line-height: 1.8;
    color:#FF0000;
    padding-bottom:5px;
    border-bottom:1px solid #FF0000; 
}

.c-modal_overlay_id {
    display: flex;
    width: 300px;
    border: 1px solid #0075FF;
    font-size:1.8rem;
    margin-bottom:10px;
    width: 100%;
}

.c-modal_overlay_id strong {
    padding:5px 10px;
    background:linear-gradient(to right, #0075FF, #0075FF, #70D7FF);
    color:#FFFFFF;
    text-align:center;
    width: 120px;
    border-right:1px solid #0075FF;
}

.c-modal_overlay_id span {
    padding:5px 10px;
    background:#FFFFFF;
}

.c-modal_overlay_pw {
    display: flex;
    width: 300px;
    border: 1px solid #0075FF;
    font-size:1.8rem;
    margin-bottom:20px;
    width: 100%;
}

.c-modal_overlay_pw strong {
    padding:5px 10px;
    background:linear-gradient(to right, #0075FF, #0075FF, #70D7FF);
    color:#FFFFFF;
    text-align:center;
    width: 120px;
    border-right:1px solid #0075FF;
}

.c-modal_overlay_pw span {
    padding:5px 10px;
    background:#FFFFFF;
}

/*チャンスタイム*/
img.c-chancetime {
    position: absolute;
    top: 135px;
    left: 0px;
    z-index: 1;
    width: 80px;
    height: auto !important;
}

/*チャンスタイム　プロフィール*/
.c-chanceBox {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    padding: 0 10px;
}

img.c-chancetimeicon {
    width: 100px;
}

.c-chanceBoxText {
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px;
    background: #FFF;
    border-radius: 5px;
    text-align: center;
    box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.2);
    margin-left: 5px;
    font-size: 1.2rem;
    color: #FF0075;
}

.c-chanceBoxText:before {
    position: absolute;
    left: -9px;
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 10px solid #ffffff;
    border-left: 0;
}
/*チャンスタイム　チャットページ*/
.c-chanceBoxChat {
    background: #f9f9ea;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 130px;
    width: 100%;
    padding: 10px 0;
}

.c-chanceBoxChat .c-chancetimeicon {
    width: 90px;
}

.c-chanceBoxChatText {
    background: #FFFFFF;
    padding: 10px 10px;
    border-radius: 5px;
    position: relative;
    margin-left: 5px;
    box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.2);
    color: #FF0075;
    font-size: 12px;
}

.c-chanceBoxChatText:before {
    position: absolute;
    left: -9px;
    top: 15px;
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 10px solid #ffffff;
    border-left: 0;
}

/*画像登録画像回転*/
.c-album_imgview {
    display: inline-block;
    padding: 20px;
    background: white;
    margin-top: 20px;
    border-radius: 8px;
}

/*ピックアップバナー*/
.c-pickupbanner {
    margin-bottom:-7px;
    display:block;
}
/*無料チャット説明ページ*/
.freechatinfo section {
    background: #FFF;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 8px;
    margin: 0 15px 40px;
}

.freechatinfo h2 {
    margin-bottom: 10px;
    padding: 0;
    color: #00ABFF;
    text-align: left;
}

.freechatinfo h2 strong{
    padding: 0 !important;
    color: #FF0000 !important;
    font-weight: bold !important;
    margin: 0 !important;
}

.freechatinfo p {
    font-size:1.6rem;
    margin-bottom:20px;
    line-height:1.8;
}

.freechatinfo p strong {
    font-size:1.8rem;
    text-decoration: underline wavy red;
}

.freechatinfoimg {
    display:block;
    margin:0 auto;
}

.freechatinfo_box1 {
    display:flex;
    flex-wrap: wrap;
}

.freechatinfo_box1 img {
    margin:0 auto;
}

/*掲示板詳細_err*/
.c-mypage_taikai {
    margin: 0 15px 30px;
}

.c-mypage_taikai img {
    margin-bottom: 20px;
}

/*ハンバーガー*/
.n-header {
    position: fixed;
    height: 60px;
    background: #FFF;
    width: 100%;
    z-index: 9999;
}

.n-header_bar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

#navMenu {
  position: relative;
  background: #FFF;
}

.n-hamburger {
  width: 30px;
  height: 22px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 100;
  display: none;
}

.n-hamburger span {
  height: 4px;
  background: #2BC8FF;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ▼ クリック時のバツ化 */
.n-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7.5px, 5px);
}

.n-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.n-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7.5px, -5px);
}

.n-nav-menu {
  display: none;
  background: #444;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.n-nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.n-nav-menu li {
  border-bottom: 1px solid #555;
}

.n-nav-menu li a {
  color: white;
  text-decoration: none;
  padding: 15px 20px;
}

.n-nav-menu.show {
  display: block;
}


