@charset "UTF-8";

/* Reset
-------------------------------------------------------*/
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;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* Common
-------------------------------------------------------*/
*, *::before, *::after {
    box-sizing: border-box;
}
html {
    height: 100%;
}


body {
    font: 12px/18px;
	font-family: 'Arial',YuGothic,'Yu Gothic','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','メイリオ', Meiryo,'ＭＳ ゴシック',sans-serif;
    color: #fff;
    background: #4c418d;
    line-height: 1.3;
}



/* Layout
-------------------------------------------------------*/
.wrapper {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}
.main {
    padding:10px;
	
}
.container {
  margin: 0 10px auto;
  padding: 20px;
  max-width: 500px;
  text-align: center;
  width: 100%;
}
.container > .dropdown {
  margin: 0 0 20px;
  vertical-align: top;
}
/* Heading
-------------------------------------------------------*/
h1 {
    color: #fff;
    font-size: 16px;
    top:0px;

}

h2{
	font-size: 18px;
	margin-top: 20px;
	margin-bottom: 15px;
	padding-left: 5px;
	color: #ffffff;
	line-height: 18px;
	border-lstyle: solid;
 	border-left-width: 5px;
	border-left-style: solid;
	border-left-color: #ffffff;
 	text-align:left;

}
/* Dropdown
-------------------------------------------------------*/
.dropdown {
  display: block;
  position: relative;
  overflow: hidden;
  height: 50px;
  width: 100%;
  background: #ffffff;
  border: 1px solid;
  border-color: white #f7f7f7 #f5f5f5;
  border-radius: 3px;
  background-image: -webkit-linear-gradient(top, transparent, rgba(0, 0, 0, 0.06));
  background-image: -moz-linear-gradient(top, transparent, rgba(0, 0, 0, 0.06));
  background-image: -o-linear-gradient(top, transparent, rgba(0, 0, 0, 0.06));
  background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.06));
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
}
.dropdown:before, .dropdown:after {
  content: '';
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 10px;
  width: 0;
  height: 0;
  border: 4px dashed;
  border-color: #888 transparent;
  pointer-events: none;
}
.dropdown:before {
  border-bottom-style: solid;
  border-top: none;
}
.dropdown:after {
  margin-top: 7px;
  border-top-style: solid;
  border-bottom: none;
}
.dropdown > a {
    color: #000;
    font-size: 17px;
    font-weight: bold;
    text-decoration: none;
    height: 50px;
    line-height: 48px;
    padding: 0 15px;
    display: block;
    text-align: left;
    overflow: hidden;
}

/* modal contents
-------------------------------------------------------*/
.remodal ul {
    padding: 10px;
    font-size: 0;
}
.remodal ul li {
    background: #7d7d7d;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 12px;
    font-weight: bold;
    padding: 20px 5px 20px 5px;
    margin-bottom: 1px;
    position: relative;
    width: 50%;
    vertical-align: top;
    border-bottom:1px solid #fff;
    border-left:1px solid #fff;
}
.remodal ul li:hover {
    background: #FF5050;
}
.remodal ul li:nth-child(odd) {
    border-right: 1px solid #fff;
}
.remodal ul li::before {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -4px;
    left: 6px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #FFDF5B;
    border-right: 2px solid #FFDF5B;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

@media screen and (max-width:768px) {
    .remodal ul {
        padding: 0px;
    }
    .remodal ul li {
        width: 50%;
    }
    .remodal ul li:nth-child(odd) {
        border-right: none;
    }
}

input[type="radio"] {
    position: relative;
    -webkit-appearance: button;
    appearance: button;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 24px;
    height: 24px;
    content: "";
    background-color: #FFFFFF;
    border: 1px solid #999999;
    -webkit-border-radius: 24px;
    border-radius: 24px;
    -webkit-box-shadow: inset 4px 4px 10px rgba(0,0,0,0.2);
    box-shadow: inset 4px 4px 10px rgba(0,0,0,0.2);
    vertical-align: middle;
    cursor: pointer;
}

input[type="radio"]:checked:after {
    display: block;
    position: absolute;
    top: 5px;
    left: 5px;
    content: "";
    width: 12px;
    height: 12px;
    background: red;
    -webkit-border-radius: 12px;
    border-radius: 12px;
}

.list li{ 	
    display: inline;
    font-size:30px;
    margin:10px;
    color:#ffffff;
 } 

/* iOSでのデフォルトスタイルをリセット 
input[type="submit"],
input[type="button"] {
  display: block;
  position: relative;
  text-decoration: none;
  height:120px;
  width: 120px;
  line-height: 120px;
  margin:auto;
  text-align:center;
  color: #000000;
  background: #ffffff;
  border: dashed 1px rgba(255, 255, 255, 1);
  border-radius: 50%;
  box-shadow: 0 0 0 6px #7d7d7d;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
    font-size:50px;
}
input[type="submit"],
input[type="button"] :hover{
  opacity: 0.5;
  border: solid 1px #77b4fd;
	text-align:center;
  margin:auto;
}

*/
input[type="text"] {
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
    width: 100%;
    height:50px;
    font-size:24px;
}
input[type="text"]:focus {
    box-shadow: 0 0 7px #3498db;
    border: 1px solid #3498db;
}
/* テーブル整形 */
table{
  font-size: 12px;
  border-collapse:collapse;
  margin:0 auto;
}
td,th{
  color: #000000;
  border:1px solid #ccc;
  padding:5px;
  vertical-align:middle;
}


th{
  border-left:5px solid #005ab3;
  color:#005ab3;
}

.job{
  color: #000000;
  background: #dfdfdf;
}

.messeage{
	text-align:right;
  color: #000000;
}

.mbox{
  text-align: left;
  padding:0 10px;
  display:display:table;

}

/*以下、①背景色など*/
.line-bc {
  padding: 20px 10px;
  max-width: 450px;
  margin: 15px auto;
  text-align: right;
  font-size: 14px;
  background: #fff;

}

/*以下、②左側のコメント*/
.balloon6 {
    color:#000;
    width: 100%;
    margin: 10px 0;
    overflow: hidden;
}

.balloon6 .faceicon {
    float: left;
    margin-right: -50px;
    width: 40px;
}

.balloon6 .faceicon img{
    width: 100%;
    height: auto;
    border-radius: 50%;
}
.balloon6 .chatting {
    width: 100%;
    text-align: left;
}
.says {
    display: inline-block;
    position: relative; 
    margin: 0 0 0 50px;
    padding: 10px;
    max-width: 250px;
    border-radius: 12px;
    background: #edf1ee;
}

.says:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 3px; 
    left: -19px;
    border: 8px solid transparent;
    border-right: 18px solid #edf1ee;
    -ms-transform: rotate(35deg);
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
}
.says p {
    margin: 0;
    padding: 0;
}


.hito p {
    font-size:10px;
    position: relative; 
    left: 50px;
    margin: 0;
    padding: 0;
}
.mjob {
   color:#7d7d7d;
}


/*以下、③右側の緑コメント*/
.mycomment {
    margin: 10px 0;
}
.mycomment p{
    display: inline-block;
    position: relative; 
    margin: 0 10px 0 0;
    padding: 8px;
    max-width: 250px;
    border-radius: 12px;
    background: #30e852;
    font-size: 15px:
}

.mycomment p:after {
    content: "";
    position: absolute;
    top: 3px; 
    right: -19px;
    border: 8px solid transparent;
    border-left: 18px solid #30e852;
    -ms-transform: rotate(-35deg);
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
}

input[type="submit"]{
-webkit-appearance: none;

}
.botan{
  display: inline-block;
  position: relative;
  text-decoration: none;
  height:120px;
  width: 120px;
  line-height: 120px;
  margin:0 10px;
  text-align:center !important;
  color: #000000;
  background: #ffffff;
  border: dashed 1px rgba(255, 255, 255, 1);
  border-radius: 50%;
  box-shadow: 0 0 0 6px #7d7d7d;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
    font-size:50px;

}

.wrapper2{
  text-align:center;
}

.partyH{
  display:table-cell;
  width: 30%;
}
.partyH table{
  width: 150px;
}
.partyUL li{
  text-align: left;
  font-size: 30px;
}