/*
GENERAL
MAIN
Sub Menu
Chat Body
Chat Bar
Main Box
User List
Mypage
Info
HEADER
FOOTER
Login form
Form Parts
*/


/* GENERAL */

html {
	margin: 0;
	padding: 0;
}

body {
	margin: 0;
	padding: 0;
	text-align: center;
	font-family: Verdana, Roboto, "Droid Sans", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", sans-serif;
	overscroll-behavior: none;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	overscroll-behavior-y: none;
}


.error {
	color:red;
	font-size: 80%;
	margin: 3px;
	padding:0;
}

.additional_info {
	color:blue;
	font-size: 80%;
	margin: 3px;
	padding:0;
}

input {
	appearance: none;
	-webkit-appearance: none;
}

.input-right{
	text-align: right;
}

.input-left{
	text-align: left;
}

.input-center{
	text-align: center;
}

.btn-round {
	
}

#wrapper {
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	height: 100%;
}

/* *************************** */
/* *************************** */

/* MAIN */

.w-main {
	flex-grow: 1;
	/* width: 720px; */
	height: 100%;
	width: 100vw;
	margin: 0;
	/* border-right: 1px solid #cccccc; */
	/* border-left: 1px solid #cccccc; */
}

.main-title-bar {
	/* position: fixed; */
	/* top: 40px; */
	/* width: 720px; */
	display: flex;
	justify-content: stretch;
	flex-flow: row nowrap;
	align-items: stretch;
	position: sticky;
	top: 40px;
	margin: 0;
	background-color: #000000;
	height: 40px;
	color: #ffffff;
	line-height: 40px;
	font-size: 20px;
	font-weight: bold;
	z-index: 100;
}

.main-title-bar .main-title-bar-leftbox{
	/* position: absolute; */
	/* left: 0; */
	flex-grow: 1;
	margin: 0;
	padding: 0;
	width: 60px;
	height: 40px;
}

.main-title-bar .main-title-bar-rightbox{
	/* position: absolute; */
	/* right: 0; */
	flex-grow: 1;
	margin: 0;
	padding: 0;
	width: 40px;
	height: 40px;
}

.main-title-bar .main-title-bar-leftbox img,
.main-title-bar .main-title-bar-rightbox img{
	width: 40px;
	height: 40px;
}

.main-title-bar p.main-title-bar-text{
	/* position: absolute; */
	/* left: 0; */
	margin: 0;
	padding: 0;
	width: 100%;
}

/* *************************** */
/* *************************** */

/* Sub Menu */

.submenu-bar{
	position: fixed;
	top: 80px;
	/* width: 720px; */
	margin: 0;
	background-color: #fff;
	height: 30px;
	color: #ffffff;
	line-height: 30px;
	font-size: 16px;
}

.submenu-bar ul{
	/* width: 720px; */
	margin: 0;
	padding: 0;
}

.submenu-bar ul li {
	display: inline-block;
	margin: 0;
	padding: 0;
	/* width: 357px; */
}

.submenu-bar ul li.enable{
	background-color: #FFFFFF;
}

.submenu-bar ul li.disable{
	background-color: #999999;
}

.submenu-bar ul li a{
	margin: 0;
	padding: 0;
	text-decoration: none;
	color: #ffffff;
}

.submenu-bar-chat{
	position: fixed;
	top: 80px;
	/* width: 720px; */
	margin: 0;
	background-color: #FFFFFF;
	height: 30px;
	color: #ffffff;
	line-height: 30px;
	font-size: 16px;
}

.submenu-bar-chat ul{
	/* width: 720px; */
	margin: 0;
	padding: 0;
	background-color: #999999;
}

.submenu-bar-chat ul li{
	display: inline-block;
	margin: 0;
	padding: 0;
	/* width: 174px; */
}

.submenu-bar-chat ul li{
	background-color: #999999;
	cursor: pointer;
	border-right: 1px solid #ffffff;
}

.submenu-bar-chat ul li.noborder{
	border: none;
}

.submenu-bar-chat ul li a{
	margin: 0;
	padding: 0;
	text-decoration: none;
	color: #ffffff;
}

/* *************************** */
/* *************************** */

/* Chat Body */

.chat-body{
	margin: 0;
	padding: 0;
	width: 100vw;
}

.mes-box-me{
	margin: 10px 10px 0 10px;
	text-align: right;
}

.mes-box-other{
	margin: 10px 10px 0 10px;
	text-align: left;
}

.mes-box-other img.other-image{
	vertical-align: top;
	width: 40px;
	height: 40px;
	border-radius: 20px;
	border: 1px solid #aaaaaa;
	display: inline-block;
}

.mes-box-body{
	margin: 0 0 0 5px;
	display: inline-block;
}

.mes-box-body img.chat-image{
	width: 150px;
	border-radius: 10px;
	border: 1px solid #aaaaaa;
}

.mes-pop-me{
	min-height: 20px;
	text-align: left;
	background-color: #eeffee;
	padding: 10px 15px 10px 15px;
	border-radius: 10px;
	min-inline-size: 20px;
	max-inline-size: 250px;
	overflow-wrap: break-word;
}

.mes-pop-other{
	min-height: 20px;
	text-align: left;
	background-color: #ffeeee;
	padding: 10px 15px 10px 15px;
	border-radius: 10px;
	min-inline-size: 20px;
	max-inline-size: 250px;
	overflow-wrap: break-word;
}

.mes-time{
	font-size: 14px;
	color: #666666;
}

/* *************************** */
/* *************************** */

/* Chat Bar */

.chat-bar{
	position: sticky;
	/*bottom: 30px;*/
	bottom: 0;
	width: 100vw;
	margin: 0;
	background-color: #cccccc;
	color: #ffffff;
	line-height: 30px;
	font-size: 16px;
}

.text-sender{
	display: flex;
	justify-content: space-between;
}

.text-sender__button{
	display: flex;
	flex-direction: column;
	flex-grow: 0;
	padding: 5px;
}

.text-sender__button input{
	margin-top: auto;
}

.text-sender textarea{
	/* width: 450px; */
	margin: 5px 0 5px 0;
	resize: none;
	font-size: 16px;
	line-height: 18px;
	height: 23px;
	flex-grow: 1;
}

.file_sendbutton{
	margin: 5px;
	height: 30px;
	appearance: none;
	-webkit-appearance: none;
	border: 1px solid #666666;
	background-color: #40e0d0;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	border-radius: 3px;
	flex-grow: 100;
}

.file_sender_hidden{
	position: absolute;
	top: -2000px;
}

.chat-send-button{
	height: 30px;
	appearance: none;
	-webkit-appearance: none;
	border: 1px solid #666666;
	background-color: #40e0d0;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	border-radius: 3px;
}

.image-sender form,
.image-sender form fieldset
{
	margin: 0;
	padding: 0;
	border: none;
	display: flex;
	justify-content: space-between;
}

.chat-image-send-button{
	height: 30px;
	appearance: none;
	-webkit-appearance: none;
	border: 1px solid #666666;
	background-color: #40e0d0;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	border-radius: 3px;
}

.chat-mode-switcher{
	height: 30px;
	appearance: none;
	-webkit-appearance: none;
	border: 1px solid #666666;
	background-color: #40e0d0;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	border-radius: 3px;
}

/* *************************** */
/* *************************** */

/* Main Box */

.main-content-box {
	text-align: left;
}

.main-content-box-withsub {
	text-align: left;
}

/* *************************** */
/* *************************** */

/* User List */

table.user-list {
	margin: 0;
	padding: 0;
	border: none;
	border-style: none;
	border-collapse: collapse;
	/* width: 720px; */
	width: 100vw;
}

table.user-list tbody.nopointer:hover{
	background-color: #eeeeee;
}

table.user-list tbody.pointer:hover{
	cursor: pointer;
	background-color: #eeeeee;
}

table.user-list tr td{
	margin: 0;
	padding: 0;
	border: none;
	border-style: none;
}

table.user-list tr td.imgbox{
	padding: 3px;
	width: 86px;
}

table.user-list tr td.imgbox img{
	margin: 5px;
	padding: 0;
	width: 70px;
	height: 70px;
	border-radius: 35px;
	border: 1px solid #aaaaaa;
}

table.user-list tr td.online-stats{
	padding: 3px 0 0 3px;
	text-align: left;
	font-size: 13px;
	color: #666666;
}

table.user-list tr td.last-time{
	padding: 3px;
	text-align: right;
	font-size: 13px;
	color: #666666;
}

table.user-list tr td.name{
	padding: 0 0 3px 3px;
	text-align: left;
	font-size: 18px;
	color: #333333;
	font-weight: bold;
}

table.user-list tr td.unread{
	padding: 3px;
	text-align: right;
}

table.user-list tr td.unread p{
	display: block;
	margin: 0 0 0 auto;
	padding: 2px;
	text-align: center;
	background-color: #00aa00;
	color: #ffffff;
	font-size: 15px;
	font-weight: bold;
	width: 20px;
	height: 20px;
	border-radius: 10px;
}

table.user-list tr td.last-text{
	padding: 3px;
	text-align: left;
	font-size: 13px;
	color: #333333;
}

table.user-list tr td.prof{
	padding: 0 0 0 3px;
	text-align: left;
	font-size: 13px;
	color: #333333;
}

/* *************************** */
/* *************************** */

.search-user-box {
	position: relative;
	display: inline-block;
	margin: 3px;
	width: 230px;
}

.search-user-box a{
	position: absolute;
	top: 0;
	left: 0;
	height:100%;
	width: 100%;
}

.single-user-image-box {
	position: relative;
}

.single-user-image-box img{
	width: 230px;
	height: 230px;
}

.single-user-image-box p{
	position: absolute;
	top: 190px;
	left: 0;
	margin: 0;
	padding: 5px;
	width: 220px;
	height: 30px;
	background-color: rgba(0,0,0,0.5);
	color: white;
	text-align: left;
	font-size: 14px;
}

.single-user-image-box img.new-cover{
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	padding: 0;
	width: 230px;
	height: 230px;
	
}

.single-user-label-box{
	font-size: 14px;
}

.single-user-label-box img{
	width: 14px;
	height: 14px;
}

/* *************************** */
/* *************************** */

/* Mypage */

.check-prof-box{
	margin: 0;
	padding: 10px;
	text-align: left;
	font-size: 14px;
	font-weight: bold;
}

.prof-box{
	margin: 0;
	padding: 10px;
	text-align: center;
}

.prof-box img{
	margin: 0;
	padding: 0;
	width: 150px;
	height: 150px;
	border: 1px solid #cccccc;
	vertical-align: top;
	border-radius: 75px;
}

.prof-box div.sub-box{
	margin: 0;
	padding: 0;
}

.prof-box p{
	margin: 5px;
	padding: 0;
	font-size: 18px;
	font-weight: bold;
}

.prof-box input{
	margin: 0;
	padding: 5px;
}

.status-box{
	margin: 0;
	padding: 0;
	width: 100vw;
	text-align: center;
}

.status-box-block{
	display: inline-block;
	margin: 0;
	padding: 0 auto 0 auto;
	/* height: 100px; */
	width: 90vw;
	text-align: center;
	border: 1px solid #cccccc;
	background-color: #ffffff;
	cursor: pointer;
}

.status-box-block:hover{
	background-color: #eeeeee;
}

.status-box-block p.status-box-value{
	margin: 10px 0 0 0;
	padding: 0;
	font-size: 20px;
	color: #333333;
	font-weight: bold;
}

.status-box-block p.rubi{
	margin: 5px 0 5px 0;
	padding: 0;
	font-size: 15px;
	color: #666666;
}

.mypage-menu-box{
	margin: 0;
	padding: 0;
	width: 100vw;
}

.mypage-menu-block-empty{
	display: inline-block;
	margin: 5px 0 0 0;
	padding: 0;
	height: 150px;
	width: 230px;
	text-align: center;
	border: 1px solid #cccccc;
	background-color: #fff;
}

.mypage-menu-block-empty img{
	margin: 20px 0 10px 0px;
	paffing: 0;
	width: 60px;
}

.mypage-menu-block-empty p.rubi{
	margin: 10px 0 0 0;
	padding: 0;
	font-size: 15px;
	color: #666666;
}

.mypage-menu-block{
	margin: 5px auto 5px auto;
	padding: 0;
	width: 90vw;
	text-align: center;
	border: 1px solid #cccccc;
	background-color: #ffffff;
	cursor: pointer;
}

.mypage-menu-block-text{
	margin: 5px 10px 5px 10px;
	width: 90%;
	text-align: left;
	font-size: 12px;
	color: #666;
}

.mypage-menu-block:hover{
	background-color: #eeeeee;
}

.mypage-menu-block img{
	margin: 10px 0 0 0px;
	paffing: 0;
	width: 60px;
}

.mypage-menu-block p.rubi{
	margin: 10px 0 5px 0;
	padding: 0;
	font-size: 15px;
	color: #666666;
}

/* *************************** */
/* *************************** */

/* Info */
table.info-list {
	margin: 0;
	padding: 0;
	border: none;
	border-style: none;
	border-collapse: collapse;
	width: 720px;
}

table.info-list tbody.pointer:hover{
	cursor: pointer;
	background-color: #eeeeee;
}

table.info-list tbody tr td{
	margin: 0;
	padding: 5px;
	border: none;
	border-style: none;
}

table.info-list tbody tr td.info-time{
	font-size: 12px;
	color: #999999;
}

table.info-list tbody tr td.info-title{
	font-size: 12px;
	color: #333333;
	font-weight: bold;
}

p.info-time{
	margin: 10px;
	font-size: 14px;
	color: #999999;
}

p.info-title{
	margin: 10px;
	font-size: 20px;
	color: #333333;
	font-weight: bold;
}

div.info-body{
	margin: 10px;
	font-size: 18px;
	color: #333333;
	width: 90%;
	word-wrap: break-word;
}

.setting-text{
	font-size: 12px;
}

/* *************************** */
/* *************************** */

/* HEADER */

.w-header {
	position: sticky;
	top: 2;
	background-color: #000000;
	width: 100%;
	margin: 0;
	height: 48px;
	flex-shrink: 0;
	z-index: 100;
}

.header-menu {
	
}

.header-menu ul{
	/* width: 720px; */
	margin: 0;
	height: 45px;
	display: flex;
	flex-wrap: nowrap;
	padding: 0;
	list-style: none;
	justify-content: center;
	align-items: center;
        background-color: #000000;
}

.header-menu ul li {
	margin: 0;
	padding: 0;
	width:100%;

}

.header-menu ul li a{
	margin: 0;
	padding: 0;
	text-decoration: none;

}

.header-menu ul li a img{
	margin: 0;
	padding: 0;

}

/* *************************** */
/* *************************** */

/* FOOTER */

.w-footer {
	position: sticky;
	bottom: 0;
	background-color: #000000;
	color: #ffffff;
	width: 100%;
	height: 30px;
	flex-shrink: 0;
}

.w-footer p{
	margin: 0;
	padding: 0;
	font-size: 12px;
	line-height: 30px;
	font-weight: bold;
}

/* *************************** */
/* *************************** */

/* Login form */

.login-box {
	margin: 5px auto 5px auto;
	width:90vw;
}

.login-form {
	border-radius: 5px;
	border: 1px solid #696969;
	box-shadow: 0px 0px 2px 0px #000000;
}

.login-form label {
	font-size: 13px;
}

/* *************************** */
/* *************************** */

/* Form Parts */

.form-parts {
	
}

.input-box {
	
}

.input-texts {
	border:none;
	border-radius:0px;
	color: #333333;
	border-bottom: 1px solid #c5c5c5;
	box-shadow: none !important;
	padding-left: 0;
	padding-right: 0;
	font-size: 16px;
}

.btn {
	padding: 10px;
	font-size: 15px;
	color: #000000;
	box-shadow: none !important;
	outline: none !important;
}

.tips-text{
	width: 80vw;
	margin: 0 auto 0 auto;
	font-size: 12px;
}

.tips-link{
	width: 80vw;
	margin: 3px auto 3px auto;
	font-size: 12px;
	font-weight: bold;
	
}

.input-select{
	font-size: 16px;
	color: #666;
	border: 1px solid #999;
	border-radius: 3px;
	background-color: #fff;
}

.btn-login{
	margin: 5px;
	height: 45px;
	appearance: none;
	-webkit-appearance: none;
	border: 1px solid #000;
	background-color: #eee;
	color: #000000;
	width: 230px;
	padding: 5px;
	font-size: 14px;
	font-weight: bold;
	border-radius: 30px;
}

.btn-login01{
  margin: 5px;
  width: 200px; /* 表示したい画像の縦横比に合わせてください */
  height: 75px; /* 表示したい画像の縦横比に合わせてください */
  appearance: none;
  -webkit-appearance: none;
  background: url("/img/w/login01_button.png") left center no-repeat;
  background-size: 200px 75px; /* width heightに合わせてください */
  border: none;
  background-color: transparent;
  padding: 0;
}

.btn-login02{
  margin: 5px;
  width: 200px; /* 表示したい画像の縦横比に合わせてください */
  height: 75px; /* 表示したい画像の縦横比に合わせてください */
  appearance: none;
  -webkit-appearance: none;
  background: url("/img/w/login02_button.png") left center no-repeat;
  background-size: 200px 75px; /* width heightに合わせてください */
  border: none;
  background-color: transparent;
  padding: 0;
}


/* *************************** */
/* *************************** */

/* payrequest form */

.payrequest-box {
	margin: 5px auto 5px auto;
	padding: 10px;
	width:80vw;
}

.payrequest-box h3{
	color: #fff;
	background-color: #40e0d0;
	margin: 5px auto 5px auto;
	padding: 5px;
	width:80vw;
	border:none;
	border-radius: 3px;
	/* box-shadow: 0px 0px 2px 0px #000000; */
}

.payrequest-form {
	padding: 10px;
	border-radius: 3px;
	border: 1px solid #aaa;
	/* box-shadow: 0px 0px 2px 0px #000000; */
}

.payrequest-form label {
	font-size: 18px;
}

/* *************************** */
/* *************************** */

/* charbox */

.charbox{
	width: 100vw;
}

.charbox-title{
	width: 100vw;
	height: 30px;
	background-color: #ff6347;
	line-height: 30px;
	font-weight: bold;
	font-size: 16px;
	color: #fff;
	padding: 0 8px;
}

.charbox-list-box{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap    : wrap;
	flex-wrap        : wrap;
	
	width: 100vw;
}

.charbox-list-box-content{
	padding: 10px;
	text-align: center;
}

.charbox-list-box-content-image{
	
}

.charbox-list-box-content-image img{
	width: 80px;
	height: 80px;
	border:1px solid #aaa;
	border-radius: 40px;
}

.charbox-list-box-content-name{
	text-align: center;
	color: #666;
	font-size: 15px;
	line-height: 30px;
}

/* *************************** */
/* *************************** */

.flex_user_listbox{
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	position: relative;
	margin: 0;
	padding: 0;
	pointer-events: none;
}

.flex_user_childbox{
	width: 31%;
	margin: 1%;
	text-align: center;
	position: relative;
	overflow: hidden;
	pointer-events: none;
}

.flex_user_childbox::before{
	content: "";
	padding-top: 100%;
	position: relative;
	display: block;
	pointer-events: none;
}

.flex_user_childbox img.uimg{
	/* object-fit: cover; */
	position: absolute;
	top: 0;
	left: 0;
	padding: 0;
	margin: 0;
	width: 100%;
	pointer-events: none;
}

.flex_user_childbox img.ost{
	position: absolute;
	top: 5px;
	left: 5px;
	width: 15%;
	pointer-events: none;
}

.flex_user_childbox .obi{
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 0 0 0 5px;
	margin: 0;
	color: #fff;
	line-height: 20px;
	text-align: left;
	font-size: 14px;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	background-color: rgba(0,0,0,0.4);
	pointer-events: none;
}

.ucv{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	padding: 0;
	margin: 0;
	background-color: rgba(255,255,255,0.0);
	pointer-events: auto;
}

.user_mainimg img{
	width: 100%;
}

.usr_mesbutton{
	width: 200px;
	height: 30px;
	color: #000;
	border: 1px solid #333;
	border-radius: 3px;
}

.usr_waitbutton{
	width: 200px;
	height: 30px;
	color: #000;
	border: 1px solid #333;
	border-radius: 3px;
}

.usr_iinethanksbutton{
	width: 200px;
	height: 30px;
	color: #000;
	border: 1px solid #333;
	border-radius: 3px;
}

.usr_iinebutton{
	width: 200px;
	height: 30px;
	color: #000;
	border: 1px solid #333;
	border-radius: 3px;
}

/* *************************** */
/* *************************** */

.menu {
    position: fixed;
    left: 0;
    bottom: 0;
    background: white;
    width: 100%;
}
.menu li {
    display: table;
    table-layout: fixed;
    width: 100%;
    padding: 5px;
    list-style: none;
    text-align: center;
}
.menu a span {
    display: block;
    font-size: 4px;
}




/* *************************** */
/* *************************** */

.sub-title-box {
	display: flex;
	justify-content: stretch;
	flex-flow: row nowrap;
	align-items: stretch;
	position: sticky;
	top: 80px;
	margin: 0;
	background-color: #fff;
	height: 40px;
	color: #000;
	line-height: 40px;
	font-size: 16px;
	font-weight: bold;
	z-index: 100;
}

.sub-title-box div.sub-title-active{
	margin:0;
	padding:0;
	width:50%;
	text-align:center;
	background-color: #fc357e;
	color: #fff;
}

.sub-title-box div.sub-title-deactive{
	margin:0;
	padding:0;
	width:50%;
	text-align:center;
	background-color: #ddd;
	color: #aaa;
}

/* *************************** */
/* *************************** */

/************************************
** スライダー
************************************/
.slide-wrap{
   display:-webkit-box;
   display:-ms-flexbox;
   display: flex;
   overflow-x: scroll;
   -webkit-overflow-scrolling: touch;
   overflow-scrolling: touch;
   scroll-snap-type: x mandatory;
   padding:0 0 1em;
   margin:0 0 2em 0;
   scroll-behavior: smooth;
}
.slide-wrap .slide-content{
   flex: 0 0 90%;
   margin: 0 10px;
   height:100%;
}
@media screen and (max-width: 480px){
.slide-wrap .slide-content {
    flex: 0 0 88%;
    margin: 0px 5px;
    scroll-snap-align:center;
}
}



/************************************
** 背景色色々
************************************/

.gradient { 
	background:linear-gradient(#56C500, #fff); 
	height: 500px;
	border: 1px solid #333;
}


.red {
	height: 300px;
	background-color: red;
}
.blue {
	height: 300px;
	background-color: blue;
}



/************************************
** テーブル
************************************/


.mypage_new{
	position: absolute;
	right: 3px;
	bottom: 3px;
	background-color: #ff6666;
	font-size: 9px;
	font-weight: bold;
	width: 16px;
	height: 16px;
	border-radius: 8px;
	color: #fff;
	padding: 0 0;
	pointer-events: none;
}

/************************************
** アコーディオン
************************************/

.accordion-001 {
    max-width: 500px;
    background-color: #f0f5f9;
}

.accordion-001:not([open]) {
    margin-bottom: 7px;
}

.accordion-001 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    border-radius: 5px;
    background-color: #ff94cd;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

.accordion-001 summary::-webkit-details-marker {
    display: none;
}

.accordion-001 summary::before,
.accordion-001 summary::after {
    width: 3px;
    height: .9em;
    border-radius: 5px;
    background-color: #fff;
    content: '';
}

.accordion-001 summary::before {
    position: absolute;
    right: 2em;
    rotate: 90deg;
}

.accordion-001 summary::after {
    transition: rotate .3s;
}

.accordion-001[open] summary::after {
    rotate: 90deg;
}

.accordion-001 p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: 1em 2em 2em 2em;
    color: #333333;
    transition: transform .5s, opacity .5s;
}

.accordion-001[open] p {
    transform: none;
    opacity: 1;
}

/************************************
** プロフィールカード
************************************/
.balloon-009 {
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 0 22px;
}

.balloon-009 img {
    max-width: 70px;
    height: 100%;
    border: 3px solid #6b6e70;
    border-radius: 50%;
}

.balloon-009 p {
    position: relative;
    max-width: 300px;
    margin: 3px 0 0;
    padding: .8em 1em;
    border-radius: 5px;
    background-color: #ffe0fc;
    color: #333333;
}

.balloon-009 p::before {
    position: absolute;
    left: -15px;
    width: 15px;
    height: 30px;
    background-color: #ffe0fc;
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
    content: '';
}

/************************************
** ニュース
************************************/

.news-list{
  list-style: none outside;
  margin: 0;
  padding: 0;
}
.news-list .item a{
  display: flex;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #CCC;
  padding: 20px 20px;
}
.news-list .item:first-child a{
  border-top: 1px solid #CCC;
}
.news-list .item .date{
  margin: 0;
  min-width: 140px;
  font-size: 16px;
  color: #999;
  padding: 0 20px 0 0;
}
.news-list .item .category{
  margin: 0;
  min-width: 140px;
  padding: 0 20px 0 0;
}
.news-list .item .category span{
  background: #999;
  color: #FFF;
  text-align: center;
  display: inline-block;
  padding: 5px 20px;
  font-size: 12px;
  line-height: 1;
}
.news-list .item .title{
  margin: 0;
  width: 100%;
}
.news-list .item a:hover .title{
  color: #00F;
}

@media screen and (max-width: 767px){
.news-list .item a{
  flex-wrap: wrap;
}
.news-list .item .date{
  min-width: 100px;
}
.news-list .item .title{
  margin-top: 10px;
}
}

/* 装飾 */
 
*{
  box-sizing: border-box;
}
a{
  text-decoration: none;
}

/************************************
** 星評価
************************************/

.star5_rating{
    position: relative;
    z-index: 0;
    display: inline-block;
    white-space: nowrap;
    color: #CCCCCC; /* グレーカラー 自由に設定化 */
    /*font-size: 30px; フォントサイズ 自由に設定化 */
}

.star5_rating:before, .star5_rating:after{
    content: '★★★★★';
}

.star5_rating:after{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    overflow: hidden;
    white-space: nowrap;
    color: #ffcf32; /* イエローカラー 自由に設定化 */
}

.star5_rating[data-rate="5"]:after{ width: 100%; } /* 星5 */
.star5_rating[data-rate="4.5"]:after{ width: 90%; } /* 星4.5 */
.star5_rating[data-rate="4"]:after{ width: 80%; } /* 星4 */
.star5_rating[data-rate="3.5"]:after{ width: 70%; } /* 星3.5 */
.star5_rating[data-rate="3"]:after{ width: 60%; } /* 星3 */
.star5_rating[data-rate="2.5"]:after{ width: 50%; } /* 星2.5 */
.star5_rating[data-rate="2"]:after{ width: 40%; } /* 星2 */
.star5_rating[data-rate="1.5"]:after{ width: 30%; } /* 星1.5 */
.star5_rating[data-rate="1"]:after{ width: 20%; } /* 星1 */
.star5_rating[data-rate="0.5"]:after{ width: 10%; } /* 星0.5 */
.star5_rating[data-rate="0"]:after{ width: 0%; } /* 星0 */


/************************************
** ボックス
************************************/
.box11{
    padding: 0.5em 1em;
    margin: 2em 0;
    color: #5d627b;
    background: white;
    border-top: solid 5px #5d627b;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.22);
}
.box11 p {
    margin: 0; 
    padding: 0;
}



/************************************
** アコーディオン
************************************/





.accordion-007 {
    max-width: 500px;
    margin-bottom: 7px;
}

.accordion-007 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    border: 2px solid #ff1aab;
    border-radius: 5px;
    color: #ff1aab;
    font-weight: 600;
    cursor: pointer;
}

.accordion-007 summary::-webkit-details-marker {
    display: none;
}

.accordion-007 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    border-bottom: 3px solid #ff1aab;
    border-right: 3px solid #ff1aab;
    content: '';
    transition: transform .3s;
}

.accordion-007[open] summary::after {
    transform: rotate(225deg);
}

.accordion-007 p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin-top: 20px;
    padding: .8em 1.2em;
    border: 2px solid #ff1aab;
    border-radius: 5px;
    background-color: #fff;
    color: #333333;
    transition: transform .5s, opacity .5s;
}

.accordion-007[open] p {
    transform: none;
    opacity: 1;
}

.accordion-007 p::before,
.accordion-007 p::after {
    position: absolute;
    top: -15px;
    left: 1.2em;
    width: 30px;
    height: 15px;
    clip-path: polygon(50% 0, 0 100%, 100% 100%);
    content: '';
}

.accordion-007 p::before {
    background-color: #ff1aab;
}

.accordion-007 p::after {
    top: -12px;
    background-color: #fff;
}


/************************************
** プロフ
************************************/


.profile {
  background: #FFF;
  width: 300px;
  padding: 2rem;
  border: 1px solid #1a1a1a;
}

.profile__img {
  display: block;
  width: 160px;
  height: 160px;
  border-radius:50%;
  margin: 0 auto;
}

.profile__name {
  text-align:center;
  font-weight:bold;
  font-size:1.2rem;
  margin: 1rem auto 1rem;
  letter-spacing:.1rem;
}

.profile__desc {
  line-height:1.6rem;
}


