/* nomal */
@font-face {
  font-family: "Noto Sans JP";
  src: url("../webfonts/NotoSansJP-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* bold */
@font-face {
  font-family: "Noto Sans JP";
  src: url("../webfonts/NotoSansJP-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

body p:empty:before {
  content: none !important;
}

.my_bold {
  font-weight: bold;
}

/*
  for svg, imap
*/
svg rect {
  fill: black;
  fill-opacity: 0;
}

svg rect:hover,
svg rect:visited {
  fill-opacity: 0.3;
}

/*
  Highlight lines
*/
.LineHighlightYellow {
  background: linear-gradient(
    transparent 60%,
    #ffff66 60%,
    #ffff66 80%,
    transparent 75%
  );
  display: inline;
}

.LineHighlightBlue {
  background: linear-gradient(
    transparent 60%,
    #55ffff 60%,
    #55ffff 80%,
    transparent 75%
  );
  display: inline;
}

/*
表デザイン
*/

/* スクロールバーを追加
    非サポート：Firefox for Android, Edge Mobile
*/
.ScrollTable {
  display: block;
  overflow-x: scroll;
  /* white-space: nowrap; */
  /* max-width: 1024px; CARE AS RESPONSIVE */
}
.ScrollTable::-webkit-scrollbar {
  height: 5px;
}
.ScrollTable::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.ScrollTable::-webkit-scrollbar-thumb {
  background: #bcbcbc;
}

/*縦方向*/
.VerticalTable {
  width: 100%;
  text-align: center;
  table-layout: fixed;
}

.VerticalTable tr {
  background-color: #f5f5f5;
  color: #4d4d4d;
  height: 3em;
}

.VerticalTable tr:first-child {
  background-color: #5095ff;
  color: #ffffff;
  height: 3em;
}

.HorizontalTable {
  width: 100%;
  text-align: center;
  table-layout: fixed;
}

/*横方向*/

.HorizontalTable tr td {
  background-color: #f5f5f5;
  color: #4d4d4d;
  height: 3em;
}

.HorizontalTable tr td:first-child {
  background-color: #5095ff;
  color: #ffffff;
  height: 3em;
}

/*縦横方向*/

.DiagonalTable {
  width: 100% !important;
  text-align: center;
  table-layout: fixed;
}

.DiagonalTable tr {
  background-color: #f5f5f5;
  color: #4d4d4d;
  height: 3em;
}

.DiagonalTable tr:first-child {
  background-color: #5095ff !important;
  color: #ffffff;
  height: 3em;
}

.DiagonalTable tr:first-child td:first-child {
  background-color: #5095ff;
  color: #ffffff;
  height: 3em;
}

.DiagonalTable tr td:first-child {
  background-color: #cbecf6;
  color: #4d4d4d;
  height: 3em;
}

/*
  縦横方向
*/

.wp-block-table {
  width: 100%;
  text-align: center;
  table-layout: fixed;
}

.wp-block-table tr {
  background-color: #f5f5f5;
  color: #4d4d4d;
  height: 3em;
}

.wp-block-table tr:first-child {
  background-color: #5095ff !important;
  color: #ffffff;
  height: 3em;
}

.wp-block-table tr:first-child td:first-child {
  background-color: #5095ff;
  color: #ffffff;
  height: 3em;
}

.wp-block-table tr td:first-child {
  background-color: #cbecf6;
  color: #4d4d4d;
  height: 3em;
}

/* custom table patterns */

.light_blue_head th {
  background-color: #a4e0fc !important;
  border-color: white !important;
  color: black;
}
.light_blue_head td {
  background-color: #f5f5f5 !important;
  vertical-align: center;
  border-color: white !important;
  color: black;
}
.light_blue_head td:first-child {
  background-color: #cbecf6 !important;
  color: black;
}

.dark_blue_head th {
  background-color: #5095ff !important;
  border-color: white !important;
  color: white;
}
.dark_blue_head td {
  background-color: #f5f5f5 !important;
  vertical-align: center;
  border-color: white !important;
  color: black;
}
.dark_blue_head td:first-child {
  background-color: #cbecf6 !important;
  color: black;
}

.dark_green_head th {
  background-color: darkcyan !important;
  border-color: white !important;
  color: white;
}
.dark_green_head td {
  background-color: #eaeaea !important;
  vertical-align: center;
  border-color: white !important;
  color: black;
}
.dark_green_head td:first-child {
  background-color: #00c7ce !important;
  color: white;
}

/*
      プロフ画面
  */

/* タップル */
div.TappleProfile {
  position: relative;
  display: block;
  width: 320px;
  max-width: 100%;
  border: solid 2px #cccccc;
  box-sizing: content-box;
  margin-right: auto;
  margin-left: auto;
}

div.TappleProfile:before {
  content: "";
  display: block;
  padding-bottom: 177.5%;
}

div.TappleProfile img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 50%;
  object-fit: cover;
  z-index: 100;
}

div.TappleProfile div.frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background-size: contain;
  background-repeat: no-repeat;
}

div.TappleProfile p.name {
  display: block;
  position: absolute;
  font-size: 15pt;
  font-weight: bold;
  color: #384657;
  top: 54%;
  left: 10%;
}

div.TappleProfile p.age {
  display: block;
  position: absolute;
  font-size: 9pt;
  color: #cccccc;
  top: 60%;
  left: 10%;
}
div.TappleProfile p.age:after {
  content: "歳";
}

div.TappleProfile p.pref {
  display: block;
  position: absolute;
  font-size: 9pt;
  color: #cccccc;
  top: 60%;
  left: 19%;
}
div.TappleProfile p.pref:before {
  content: "・";
}

div.TappleProfile p {
  margin: 0;
}

/* Omiai */
div.OmiaiProfile {
  position: relative;
  display: block;
  width: 320px;
  max-width: 100%;
  border: solid 2px #cccccc;
  box-sizing: content-box;
  margin-right: auto;
  margin-left: auto;
}

div.OmiaiProfile:before {
  content: "";
  display: block;
  padding-bottom: 177.5%;
}

div.OmiaiProfile img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 55%;
  object-fit: cover;
  z-index: 100;
}

div.OmiaiProfile div.datas {
  position: absolute;
  width: 100%;
  height: 28%;
  top: 72%;
  text-align: center;
}

div.OmiaiProfile div.frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background-size: contain;
  background-repeat: no-repeat;
}

div.OmiaiProfile p.name {
  display: inline;
  font-size: 16pt;
  position: static;
}
div.OmiaiProfile p.name:after {
  content: " ";
}

div.OmiaiProfile p.age {
  display: inline;
  font-size: 11pt;
  position: static;
}
div.OmiaiProfile p.age:after {
  content: "歳";
}

div.OmiaiProfile p.pref {
  display: inline;
  font-size: 11pt;
  position: static;
}
div.OmiaiProfile p.pref:before {
  content: "/ ";
}

div.OmiaiProfile p {
  margin: 0;
}

/* ゼクシィ恋結び */
div.ZexyKoimusubiProfile {
  position: relative;
  display: block;
  width: 320px;
  max-width: 100%;
  border: solid 2px #cccccc;
  box-sizing: content-box;
  margin-right: auto;
  margin-left: auto;
}

div.ZexyKoimusubiProfile:before {
  content: "";
  display: block;
  padding-bottom: 177.5%;
}

div.ZexyKoimusubiProfile img {
  position: absolute;
  top: 10%;
  left: 0;
  width: 100%;
  height: 55%;
  object-fit: cover;
  z-index: 100;
}

div.ZexyKoimusubiProfile div.frame {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background-size: contain;
  background-repeat: no-repeat;
}

div.ZexyKoimusubiProfile p.name {
  display: block;
  font-size: 16pt;
  font-weight: bold;
  position: absolute;
  top: 4%;
  left: 0;
  width: 100%;
  text-align: center;
}

div.ZexyKoimusubiProfile p.age {
  display: block;
  font-size: 15pt;
  font-weight: bold;
  position: absolute;
  top: 83%;
  left: 30%;
}
div.ZexyKoimusubiProfile p.age:after {
  font-size: 11pt;
  font-weight: normal;
  content: "歳";
}

div.ZexyKoimusubiProfile p.pref {
  display: block;
  font-size: 15pt;
  font-weight: bold;
  position: absolute;
  top: 83%;
  left: 50%;
}

div.ZexyKoimusubiProfile p {
  margin: 0;
}

/* With */
div.WithProfile {
  position: relative;
  display: block;
  width: 320px;
  max-width: 100%;
  border: solid 2px #cccccc;
  box-sizing: content-box;
  margin-right: auto;
  margin-left: auto;
}

div.WithProfile:before {
  content: "";
  display: block;
  padding-bottom: 177.5%;
}

div.WithProfile img {
  position: absolute;
  top: 5%;
  left: 15%;
  width: 71%;
  height: 40%;
  object-fit: cover;
  z-index: 100;
  border-radius: 50%;
}

div.WithProfile div.datas {
  position: absolute;
  width: 90%;
  left: 6%;
  height: 33%;
  top: 67%;
  text-align: left;
}

div.WithProfile div.frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background-size: contain;
  background-repeat: no-repeat;
}

div.WithProfile p.name {
  display: inline;
  font-size: 12pt;
  font-weight: bold;
  color: #fe5e65;
  position: static;
}
div.WithProfile p.name:after {
  content: " ";
}

div.WithProfile p.age {
  display: inline;
  font-size: 12pt;
  font-weight: bold;
  color: #fe5e65;
  position: static;
}
div.WithProfile p.age:after {
  content: "歳  ";
}

div.WithProfile p.pref {
  display: inline;
  font-size: 12pt;
  font-weight: bold;
  color: #fe5e65;
  position: static;
}

div.WithProfile p {
  margin: 0;
}

/* Pairs */
div.PairsProfile {
  position: relative;
  display: block;
  width: 320px;
  max-width: 100%;
  border: solid 2px #cccccc;
  box-sizing: content-box;
  margin-right: auto;
  margin-left: auto;
}

div.PairsProfile:before {
  content: "";
  display: block;
  padding-bottom: 177.5%;
}

div.PairsProfile img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 55%;
  object-fit: cover;
  z-index: 100;
}

div.PairsProfile div.datas {
  position: absolute;
  width: 90%;
  left: 6%;
  height: 29%;
  top: 71%;
  text-align: left;
}

div.PairsProfile div.frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background-size: contain;
  background-repeat: no-repeat;
}

div.PairsProfile p.name {
  display: inline;
  font-size: 16pt;
  font-weight: bold;
  position: static;
}
div.PairsProfile p.name:after {
  content: " ";
}

div.PairsProfile p.age {
  display: inline;
  font-size: 16pt;
  font-weight: bold;
  position: static;
}
div.PairsProfile p.age:after {
  content: "歳  ";
}

div.PairsProfile p.pref {
  display: inline;
  font-size: 16pt;
  font-weight: bold;
  position: static;
}

div.PairsProfile p {
  margin: 0;
}

/* ヤフーパートナー */
div.YahooPartnerProfile {
  position: relative;
  display: block;
  width: 320px;
  max-width: 100%;
  border: solid 2px #cccccc;
  box-sizing: content-box;
  margin-right: auto;
  margin-left: auto;
}

div.YahooPartnerProfile:before {
  content: "";
  display: block;
  padding-bottom: 177.5%;
}

div.YahooPartnerProfile img {
  position: absolute;
  top: 0%;
  left: 0;
  width: 100%;
  height: 60%;
  object-fit: cover;
  z-index: 100;
}

div.YahooPartnerProfile div.frame {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background-size: contain;
  background-repeat: no-repeat;
}

div.YahooPartnerProfile p.name {
  display: block;
  font-size: 12pt;
  color: white;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 6%;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 101;
}

div.YahooPartnerProfile p.age {
  display: block;
  font-size: 9pt;
  color: white;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 55%;
  left: 5%;
  z-index: 101;
}
div.YahooPartnerProfile p.age:after {
  content: "歳";
}

div.YahooPartnerProfile p.pref {
  display: block;
  font-size: 9pt;
  color: white;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 55%;
  left: 18%;
  z-index: 101;
}

div.YahooPartnerProfile p {
  margin: 0;
}

/*
    トーク画面
*/

/* Line(デフォルト) */

div.talk {
  width: 320px;
  max-width: 100%;
  /*  min-height: 568px;*/
  left: -100%;
  right: -100%;
  border: solid 2px #cccccc;
  box-sizing: content-box;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  background: #7194c2;
  line-height: 1.5;
  color: white;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

div.talk:before {
  content: "";
  background: #263147
    url("/wp-content/themes/matchapp/theme_img/maketalk/head_Line.gif");
  max-width: 100%;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  width: 320px;
  height: 20px;
}

div.name {
  background: url("/wp-content/themes/matchapp/theme_img/maketalk/name_Line.gif");
  max-width: 100%;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  width: 320px;
  height: 45px;
  text-align: center;
  font-size: 16pt;
  font-weight: bold;
  color: white;
}

div.day {
  width: 120px;
  font-size: 10pt;
  color: #ffffff;
  text-align: center;
  margin: 5px auto 10px;
  background: rgba(0, 0, 0, 0.3);
  padding: 0px 0px;
  border-radius: 20px;
}

div.me {
  max-width: 190px;
  padding: 13px;
  border-radius: 20px;
  background-color: #85e249;
  margin-left: auto;
  margin-right: 15px;
  margin-top: 5px;
  font-size: 14px;
  color: black;
  float: right;
  word-break: break-all;
}

div.me + div.time {
  clear: both;
  text-align: right;
  margin-top: 5px;
  margin-left: auto;
  margin-right: 30px;
  font-size: 8pt;
  color: #ffffff;
}

div.other {
  max-width: 190px;
  padding: 13px;
  box-sizing: border-box;
  border-radius: 20px;
  background-color: #ffffff;
  margin-left: 15px;
  margin-right: auto;
  margin-top: 5px;
  font-size: 14px;
  color: black;
  float: left;
  word-break: break-all;
}

div.other + div.time {
  clear: both;
  text-align: left;
  margin-top: 5px;
  margin-left: 30px;
  margin-right: auto;
  font-size: 8pt;
  color: #ffffff;
}

div.LineTalk div.me + div.time:before {
  content: "既読 ";
}

/* Pairs */

div.PairsTalk div.talk {
  background: white;
}

div.PairsTalk div.talk:before {
  background: white
    url("/wp-content/themes/matchapp/theme_img/maketalk/head_white.gif");
  max-width: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 320px;
  height: 20px;
}

div.PairsTalk div.name {
  background: url("/wp-content/themes/matchapp/theme_img/maketalk/name_Pairs_With.gif");
  max-width: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  color: #494848;
  width: 320px;
  height: 40px;
}

div.PairsTalk div.day {
  font-size: 10pt;
  color: #999999;
  margin-bottom: 15px;
  background: none;
}

div.PairsTalk div.me {
  background-color: #40c4cc;
  color: white;
}

div.PairsTalk div.other {
  border: 2px solid #dddddd;
  background-color: #ffffff;
}

div.PairsTalk div.time {
  color: #999999;
}

/* With */

div.WithTalk div.talk {
  background: url("/wp-content/themes/matchapp/theme_img/maketalk/bg_With.png");
  width: 320px;
  background-repeat: repeat-y;
}

div.WithTalk div.talk:before {
  background: white
    url("/wp-content/themes/matchapp/theme_img/maketalk/head_white.gif");
  max-width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  width: 320px;
  height: 20px;
}

div.WithTalk div.name {
  background: url("/wp-content/themes/matchapp/theme_img/maketalk/name_Pairs_With.gif");
  max-width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  color: #494848;
  width: 320px;
  height: 40px;
}

div.WithTalk div.day {
  background: rgba(0, 0, 0, 0.2);
  margin-top: 15px;
}

div.WithTalk div.me {
  background-color: #ec7274;
  color: white;
  max-width: 250px;
}

div.WithTalk div.other {
  background-color: #ffffff;
  max-width: 250px;
}

div.WithTalk div.time {
  color: #4a4a4a;
}

/* TokyoCalender */

div.TokyoCalenderTalk div.talk {
  background: #f2f2f2;
}

div.TokyoCalenderTalk div.talk:before {
  background: #111213
    url("/wp-content/themes/matchapp/theme_img/maketalk/head_black.gif");
  max-width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  width: 320px;
  height: 20px;
}

div.TokyoCalenderTalk div.name {
  background: url("/wp-content/themes/matchapp/theme_img/maketalk/name_TokyoCalender.gif");
  max-width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  color: #cab488;
  width: 320px;
  height: 40px;
  font-weight: normal;
}

div.TokyoCalenderTalk div.day {
  font-size: 10pt;
  color: #555555;
  margin-bottom: 0px;
  background: none;
}

div.TokyoCalenderTalk div.me {
  background-color: #cab488;
  color: black;
  border-radius: 8px;
  padding: 5px 10px;
}

div.TokyoCalenderTalk div.other {
  background-color: white;
  border-radius: 8px;
  padding: 5px 10px;
}

div.TokyoCalenderTalk div.time {
  color: #555555;
}

div.TokyoCalenderTalk div.me + div.time {
  margin-right: 18px;
}

div.TokyoCalenderTalk div.other + div.time {
  margin-left: 18px;
}

/* tapple */

div.TappleTalk div.talk {
  background: #f4f5f6;
}

div.TappleTalk div.talk:before {
  background: white
    url("/wp-content/themes/matchapp/theme_img/maketalk/head_white.gif");
  max-width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  width: 320px;
  height: 20px;
}

div.TappleTalk div.name {
  background: url("/wp-content/themes/matchapp/theme_img/maketalk/name_Tapple.gif");
  max-width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  color: #293549;
  width: 320px;
  height: 40px;
}

div.TappleTalk div.day {
  background: #d2cdc4;
  margin-top: 15px;
  font-size: 5pt;
}

div.TappleTalk div.me {
  background-color: #ea4d89;
  color: white;
  border-radius: 5px;
  padding: 5px 10px;
}

div.TappleTalk div.other {
  background-color: white;
  border-radius: 5px;
  padding: 10px;
}

div.TappleTalk div.time {
  color: #555555;
}

div.TappleTalk div.me + div.time {
  margin-right: 17px;
}

div.TappleTalk div.other + div.time {
  margin-left: 17px;
}

/* Omiai */

div.OmiaiMTalk div.talk,
div.OmiaiFTalk div.talk {
  background: #ebf5f7;
}

div.OmiaiMTalk div.talk:before,
div.OmiaiFTalk div.talk:before {
  background: white
    url("/wp-content/themes/matchapp/theme_img/maketalk/head_white.gif");
  max-width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  width: 320px;
  height: 20px;
}

div.OmiaiMTalk div.name,
div.OmiaiFTalk div.name {
  background: url("/wp-content/themes/matchapp/theme_img/maketalk/name_Tapple.gif");
  max-width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  color: #494848;
  width: 320px;
  height: 40px;
  font-weight: normal;
}

div.OmiaiMTalk div.day,
div.OmiaiFTalk div.day {
  font-size: 10pt;
  color: #949494;
  margin-bottom: 0px;
  background: none;
}

div.OmiaiMTalk div.me,
div.OmiaiFTalk div.me {
  background-color: white;
  box-shadow: 2px 2px #d2d6d7;
  border-radius: 25px;
  padding: 7px 13px;
  margin-top: 0px;
  color: #4d4d4d;
}

div.OmiaiMTalk div.other,
div.OmiaiFTalk div.other {
  box-shadow: 2px 2px #d2d6d7;
  border-radius: 25px;
  padding: 7px 13px;
  margin-top: 0px;
  color: #4d4d4d;
}

div.OmiaiMTalk div.other {
  background-color: #e7f1fe;
}

div.OmiaiFTalk div.other {
  background-color: #fbebef;
}

div.OmiaiMTalk div.time,
div.OmiaiFTalk div.time {
  color: #949494;
}

div.OmiaiMTalk div.me + div.time:before,
div.OmiaiFTalk div.me + div.time:before {
  content: "[既読] ";
}

/* ピンク・水色　会話形式 */
div.balloonL {
  width: 100%;
  margin: 1.5em 0;
}

div.balloonL .faceicon {
  max-width: 25%;
  float: left;
  margin-right: -90px;
  width: 80px;
  position: relative;
}

div.balloonL .faceicon img {
  width: 90%;
  height: auto;
  border: solid 3px #d0edf2;
  border-radius: 50%;
}

div.balloonL .chatting {
  width: 100%;
}

div.balloonL .says {
  display: inline-block;
  position: relative;
  margin: 5px 0 0 105px;
  padding: 17px 13px;
  border-radius: 12px;
  background: #d0edf2;
}

div.balloonL .says:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 18px;
  left: -24px;
  border: 12px solid transparent;
  border-right: 12px solid #d0edf2;
}

div.balloonL .says p {
  margin: 0;
  padding: 0;
}

.imgbottom {
  position: absolute;
  top: 70%;
  left: 20%;
  font-size: 10px;
}

div.balloon6 {
  width: 100%;
  margin: 1.5em 0;
}

div.balloonR {
  width: 100%;
  margin: 1.5em 0;
}

div.balloonR .faceicon {
  max-width: 25%;
  float: right;
  margin-left: -5px;
  width: 90px;
  position: relative;
  display: inline-block;
}

div.balloonR .faceicon img {
  width: 90%;
  height: auto;
  border: solid 3px #ffd6e6;
  border-radius: 50%;
  display: inline-block;
  margin: 0;
}

div.balloonR .chatting {
  width: 100%;
}

div.balloonR .says {
  width: 70%;
  position: relative;
  right: 0;
  padding: 17px 7px;
  margin-right: 110px;
  margin-left: auto;
  border-radius: 12px;
  background: #ffd6e6;
}

div.balloonR .says:after {
  content: "";
  position: absolute;
  top: 18px;
  right: -24px;
  border-left: 14px solid #555;
  z-index: 1;
  border: 12px solid transparent;
  border-left: 12px solid #ffd6e6;
}

div.balloonR .says p {
  margin: 0;
  padding: 0;
  width: 100%;
}

.imgbottom6 {
  margin: 0;
  padding: 0;
  width: 100%;
  position: absolute;
  top: 70%;
  left: 30%;
  font-size: 10px;
}

/* アプリプロフィール画像画面 */
.app_profile {
  position: relative;
}

.app_profile .text {
  position: absolute;
  top: 65%;
  left: 30%;
  font-size: 22px;
  font-weight: bold;
}

.app_profile .border {
  position: absolute;
  top: 5%;
  left: 14%;
  width: 70%;
  height: 90%;
}

.app_profile .border img {
  border-radius: 50%;
}

/* TinyMCEAdvanced カスタムスタイル */

.LineHighlightYellow {
  background: linear-gradient(
    transparent 60%,
    #ffff66 60%,
    #ffff66 80%,
    transparent 75%
  );
  display: inline;
}

.LineHighlightBlue {
  background: linear-gradient(
    transparent 60%,
    #55ffff 60%,
    #55ffff 80%,
    transparent 75%
  );
  display: inline;
}

.BoxHighlight {
  border: solid 2px #ffb500;
  outline: 0;
  font-size: 100%;
  box-sizing: border-box;
  margin: 29px 0px 20px 0px;
  padding: 30px 20px 20px 20px;
  position: relative;
  border-radius: 5px;
  box-sizing: content-box !important;
}

.Badge {
  padding: 5px 12px;
  font-size: 17px;
  position: absolute;
  top: -15px;
  left: 20px;
  background: #ffb500;
  color: #ffffff;
  font-weight: bold;
  border-radius: 5px;
  line-height: 25px;
  box-sizing: content-box !important;
}

.BoxHighlight ul {
  margin: 0px;
  padding: 0px;
}

.BoxHighlight li:before {
  content: "\f138";
  font-family: "FontAwesome", "Font Awesome 6 Free";
  size: 15px;
  margin-right: 1em;
  color: #4d4d4d;
}

.image_border {
  box-shadow: 0 0 8px gray;
}

/* quicktag */
.color-frame-box {
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  padding: 2em;
}

.frame-dash-blue {
  padding: 10px;
  margin: 20px 15px;
  color: #565656;
  background-color: #d3ffff;
  box-shadow: 0px 0px 0px 10px #d3ffff;
  border: dashed 2px #87d1d1;
  border-radius: 8px;
  display: inline-block;
}

.frame-dash-pink {
  padding: 10px;
  margin: 20px 15px;
  color: #565656;
  background-color: #ffeaea;
  box-shadow: 0px 0px 0px 10px #ffeaea;
  border: dashed 2px #ffc3c3;
  border-radius: 8px;
  display: inline-block;
}

.frame-double-blue {
  border-left: double 6px #47e2f1;
  border-right: double 6px #47e2f1;
  background-color: #f5f5f5;
  padding-top: 23px;
  padding-bottom: 30px;
  font-family: sans-serif;
  list-style: none;
}

.frame-double-blue li {
  padding-top: 7px;
}

.frame-double-pink {
  border-left: double 6px #ff7fa3;
  border-right: double 6px #ff7fa3;
  background-color: #f5f5f5;
  padding-top: 23px;
  padding-bottom: 30px;
  list-style: none;
}

.frame-double-pink li {
  padding-top: 7px;
}

.frame-solid {
  border: solid 2px dimgray;
  margin: 15px 5px;
  padding: 8px;
  background-color: #ffffff;
}

.frame-dash {
  border: dashed 2px dimgray;
  margin: 15px 5px;
  padding: 8px;
  background-color: #ffffff;
}

.frame-dot {
  border: dotted 2px dimgray;
  margin: 15px 5px;
  padding: 8px;
  background-color: #ffffff;
}

/*
    プロフ画面
*/

/* タップル */
div.TappleProfile {
  position: relative;
  display: block;
  width: 320px;
  max-width: 100%;
  border: solid 2px #cccccc;
  box-sizing: content-box;
  margin-right: auto;
  margin-left: auto;
}

div.TappleProfile:before {
  content: "";
  display: block;
  padding-bottom: 177.5%;
}

div.TappleProfile img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 60%;
  object-fit: cover;
}

div.TappleProfile div.frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background-size: contain;
  background-repeat: no-repeat;
}

div.TappleProfile p.name {
  display: block;
  position: absolute;
  font-size: 15pt;
  font-weight: bold;
  color: #384657;
  top: 54%;
  left: 10%;
}

div.TappleProfile p.age {
  display: block;
  position: absolute;
  font-size: 9pt;
  color: #cccccc;
  top: 60%;
  left: 10%;
}

div.TappleProfile p.age:after {
  content: "歳";
}

div.TappleProfile p.pref {
  display: block;
  position: absolute;
  font-size: 9pt;
  color: #cccccc;
  top: 60%;
  left: 19%;
}

div.TappleProfile p.pref:before {
  content: "・";
}

div.TappleProfile p {
  margin: 0;
}

/* Omiai */
div.OmiaiProfile {
  position: relative;
  display: block;
  width: 320px;
  max-width: 100%;
  border: solid 2px #cccccc;
  box-sizing: content-box;
  margin-right: auto;
  margin-left: auto;
}

div.OmiaiProfile:before {
  content: "";
  display: block;
  padding-bottom: 177.5%;
}

div.OmiaiProfile img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 60%;
  object-fit: cover;
}

div.OmiaiProfile div.datas {
  position: absolute;
  width: 100%;
  height: 28%;
  top: 72%;
  text-align: center;
}

div.OmiaiProfile div.frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background-size: contain;
  background-repeat: no-repeat;
}

div.OmiaiProfile p.name {
  display: inline;
  font-size: 16pt;
  position: static;
}

div.OmiaiProfile p.name:after {
  content: " ";
}

div.OmiaiProfile p.age {
  display: inline;
  font-size: 11pt;
  position: static;
}

div.OmiaiProfile p.age:after {
  content: "歳";
}

div.OmiaiProfile p.pref {
  display: inline;
  font-size: 11pt;
  position: static;
}

div.OmiaiProfile p.pref:before {
  content: "/ ";
}

div.OmiaiProfile p {
  margin: 0;
}

/* ゼクシィ恋結び */
div.ZexyKoimusubiProfile {
  position: relative;
  display: block;
  width: 320px;
  max-width: 100%;
  border: solid 2px #cccccc;
  box-sizing: content-box;
  margin-right: auto;
  margin-left: auto;
}

div.ZexyKoimusubiProfile:before {
  content: "";
  display: block;
  padding-bottom: 177.5%;
}

div.ZexyKoimusubiProfile img {
  position: absolute;
  top: 10%;
  left: 0;
  width: 100%;
  height: 60%;
  object-fit: cover;
}

div.ZexyKoimusubiProfile div.frame {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background-size: contain;
  background-repeat: no-repeat;
}

div.ZexyKoimusubiProfile p.name {
  display: block;
  font-size: 16pt;
  font-weight: bold;
  position: absolute;
  top: 4%;
  left: 0;
  width: 100%;
  text-align: center;
}

div.ZexyKoimusubiProfile p.age {
  display: block;
  font-size: 15pt;
  font-weight: bold;
  position: absolute;
  top: 83%;
  left: 30%;
}

div.ZexyKoimusubiProfile p.age:after {
  font-size: 11pt;
  font-weight: normal;
  content: "歳";
}

div.ZexyKoimusubiProfile p.pref {
  display: block;
  font-size: 15pt;
  font-weight: bold;
  position: absolute;
  top: 83%;
  left: 50%;
}

div.ZexyKoimusubiProfile p {
  margin: 0;
}

/* With */
div.WithProfile {
  position: relative;
  display: block;
  width: 320px;
  max-width: 100%;
  border: solid 2px #cccccc;
  box-sizing: content-box;
  margin-right: auto;
  margin-left: auto;
}

div.WithProfile:before {
  content: "";
  display: block;
  padding-bottom: 177.5%;
}

div.WithProfile img {
  position: absolute;
  top: 5%;
  left: 13%;
  width: 74%;
  height: 40%;
  object-fit: cover;
}

div.WithProfile div.datas {
  position: absolute;
  width: 90%;
  left: 6%;
  height: 33%;
  top: 67%;
  text-align: left;
}

div.WithProfile div.frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background-size: contain;
  background-repeat: no-repeat;
}

div.WithProfile p.name {
  display: inline;
  font-size: 12pt;
  font-weight: bold;
  color: #fe5e65;
  position: static;
}

div.WithProfile p.name:after {
  content: " ";
}

div.WithProfile p.age {
  display: inline;
  font-size: 12pt;
  font-weight: bold;
  color: #fe5e65;
  position: static;
}

div.WithProfile p.age:after {
  content: "歳  ";
}

div.WithProfile p.pref {
  display: inline;
  font-size: 12pt;
  font-weight: bold;
  color: #fe5e65;
  position: static;
}

div.WithProfile p {
  margin: 0;
}

/* Pairs */
div.PairsProfile {
  position: relative;
  display: block;
  width: 320px;
  max-width: 100%;
  border: solid 2px #cccccc;
  box-sizing: content-box;
  margin-right: auto;
  margin-left: auto;
}

div.PairsProfile:before {
  content: "";
  display: block;
  padding-bottom: 177.5%;
}

div.PairsProfile img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 60%;
  object-fit: cover;
}

div.PairsProfile div.datas {
  position: absolute;
  width: 90%;
  left: 6%;
  height: 29%;
  top: 71%;
  text-align: left;
}

div.PairsProfile div.frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background-size: contain;
  background-repeat: no-repeat;
}

div.PairsProfile p.name {
  display: inline;
  font-size: 16pt;
  font-weight: bold;
  position: static;
}

div.PairsProfile p.name:after {
  content: " ";
}

div.PairsProfile p.age {
  display: inline;
  font-size: 16pt;
  font-weight: bold;
  position: static;
}

div.PairsProfile p.age:after {
  content: "歳  ";
}

div.PairsProfile p.pref {
  display: inline;
  font-size: 16pt;
  font-weight: bold;
  position: static;
}

div.PairsProfile p {
  margin: 0;
}

/* ヤフーパートナー */
div.YahooPartnerProfile {
  position: relative;
  display: block;
  width: 320px;
  max-width: 100%;
  border: solid 2px #cccccc;
  box-sizing: content-box;
  margin-right: auto;
  margin-left: auto;
}

div.YahooPartnerProfile:before {
  content: "";
  display: block;
  padding-bottom: 177.5%;
}

div.YahooPartnerProfile img {
  position: absolute;
  top: 0%;
  left: 0;
  width: 100%;
  height: 60%;
  object-fit: cover;
}

div.YahooPartnerProfile div.frame {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background-size: contain;
  background-repeat: no-repeat;
}

div.YahooPartnerProfile p.name {
  display: block;
  font-size: 12pt;
  color: white;
  position: absolute;
  top: 6%;
  left: 0;
  width: 100%;
  text-align: center;
}

div.YahooPartnerProfile p.age {
  display: block;
  font-size: 9pt;
  color: white;
  position: absolute;
  top: 55%;
  left: 5%;
}

div.YahooPartnerProfile p.age:after {
  content: "歳";
}

div.YahooPartnerProfile p.pref {
  display: block;
  font-size: 9pt;
  color: white;
  position: absolute;
  top: 55%;
  left: 18%;
}

div.YahooPartnerProfile p {
  margin: 0;
}

/*--------------------
Youtube埋め込み
--------------------*/
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* TOC control */
#toc_container {
  box-sizing: border-box;
  min-width: 100%;
  margin: 0;
  border-radius: 0 0 3px 3px;
  padding: 15px;
  font-size: 12px;
  font-family: "Noto Sans JP", sans-serif;
  border: none;
}

#toc_container a {
  color: #57636e;
}

.toc_brackets {
  display: none;
}

.toc_number {
  display: none;
}

.toc_number.toc_depth_1 {
  display: inline-block;
  background-color: #395e89;
  color: white;
  font-size: 12px;
  margin-left: -15px;
  width: 30px;
  height: 12px;
  line-height: 12px;
  text-align: end;
}
.toc_number.toc_depth_1:before {
  content: "0";
}

.toc_list > li {
  margin: 30px 0 !important;
}
.toc_list > li > a {
  font-size: 21px;
  font-weight: bold;
  color: #07142e;
}

.toc_list > li > ul > li {
  margin: 10px 0 !important;
}
.toc_list > li > ul > li > a {
  font-size: 16px;
  font-weight: normal;
  color: #57636e;
}
.toc_list > li > ul > li > a:before {
  display: inline-block;
  font-family: "Font Awesome 6 Free Solid", "FontAwesome";
  content: "\f105";
  padding-right: 8px;
}

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

.toc_toggle a {
  font-size: 14px;
  font-weight: bold;
  color: #6f6f6f;
  border-bottom: solid 1px #6f6f6f;
}

#toc_container .toc_toggle a:hover {
  text-decoration: none;
  opacity: 1;
}
.Hider {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}

.Hider > input {
  position: absolute;
  bottom: -1em;
  width: 100%;
  height: 3em;
  margin: 0;
  z-index: 1;
  border-width: 0px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}

.Hider > input:before {
  content: "";
  background: linear-gradient(to top, #fff, rgba(255, 255, 255, 0));
  height: 1em;
  width: 100%;
  position: absolute;
  top: -1em;
}

.Hider > input:checked {
  display: none;
}

.Hider > input:after {
  content: "もっと読む▼";
  font-size: 16px;
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 2em;
  margin: auto;
  background: #fff;
  color: #5095ff;
  cursor: pointer;
}

.Hider > input + div {
  height: 3em;
  overflow-y: hidden;
}

.Hider > input:checked + div {
  height: auto;
  overflow-y: show;
  margin-bottom: 1em;
}

.tocHider {
  background: #395e89;
  width: 100%;
  display: block;
  font-size: 15px;
  border-radius: 3px 3px 0 0;
  margin: 30px 0;
  position: relative;
  overflow: hidden;
}

.tocHider > .tocContent {
  height: 500px;
}

.tocHider .tocTitle:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25.164' height='20.97' viewBox='0 0 25.164 20.97'%3E%3Cg transform='translate(-499 -1019.931)'%3E%3Cg transform='translate(499 1019.931)'%3E%3Crect width='18.873' height='4.194' transform='translate(6.291)' fill='%23fff'/%3E%3Crect width='18.873' height='4.194' transform='translate(6.291 8.388)' fill='%23fff'/%3E%3Crect width='18.873' height='4.194' transform='translate(6.291 16.776)' fill='%23fff'/%3E%3Crect width='4.194' height='4.194' transform='translate(0)' fill='%23fff'/%3E%3Crect width='4.194' height='4.194' transform='translate(0 8.388)' fill='%23fff'/%3E%3Crect width='4.194' height='4.194' transform='translate(0 16.776)' fill='%23fff'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  vertical-align: bottom;
  margin-bottom: 1px;
  margin-right: 5px;
}

.tocHider .tocTitle {
  margin: 20px auto 20px 25px;
  color: white;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
}

.tocHider .tocTitle:after {
  content: "目次";
}

.tocHider input:before {
  content: "もっと見る";
}

.tocHider input {
  display: block;
  appearance: none;
  position: absolute;
  width: 60%;
  height: 50px;
  bottom: 10px;
  text-align: center;
  line-height: 50px;
  z-index: 10;
  left: 20%;
  color: white;
  font-weight: bold;
  background: #395e89;
  box-shadow: 0 2px 2px #395e89;
  border-radius: 3px;
  font-size: 21px;
}

@media screen and (max-width: 600px) {
  .tocHider input {
    font-size: 12px;
  }
}

.tocHider input:after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24.481' height='24.481' viewBox='0 0 24.481 24.481'%3E%3Cg transform='translate(-109.814)'%3E%3Cg transform='translate(109.814)'%3E%3Ccircle cx='12.241' cy='12.241' r='12.241' fill='%23fff'/%3E%3Cpath d='M.3-.3H3.8V-3.941H6.319V-.3H9.836V2.121H6.319V5.809H3.8V2.121H.3Z' transform='translate(7.225 11.357)' fill='%23395e89'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-left: 10px;
  vertical-align: middle;
  margin-bottom: 5px;
}

.tocHider input:checked ~ .tocHiderShade,
.tocHider input:checked ~ .tocHiderSpacer {
  display: none;
}

.tocHider input:checked ~ .tocContent {
  height: auto;
}
.tocHider input:checked {
  display: none;
}

.tocHider .tocHiderShade {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #f7f7f7);
  margin-bottom: 70px;
}

.tocHider .tocHiderSpacer {
  position: absolute;
  bottom: 0;
  height: 70px;
  width: 100%;
  background: #f7f7f7;
}
