<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
html, body, article, section, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, textarea,
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, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  font: inherit;
  font-size: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 0;
  vertical-align: baseline;
  font-size: 62.5%;
}

body {
  line-height: 1em;
  font-size: 1.6em;
}

img {
  border: 0;
  vertical-align: bottom;
}

section, article, div, nav {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

/*==========================================================
	共通設定 (Primary style)
==========================================================*/
html, body {
  height: 100%;
  overflow-x: hidden;
}

body {
  line-height: 1;
  color: #231815;
  font-weight: 400;
  font-family: "Lato", "Noto Sans JP", sans-serif;
  background-color: #FCFCFC;
  -webkit-text-size-adjust: none;
}

body:before,
body:after {
  display: none;
}

a:link {
  color: #FCFCFC;
  text-decoration: none;
}

a:visited {
  color: #FCFCFC;
  text-decoration: none;
}

a:hover {
  color: #FCFCFC;
  text-decoration: none;
}

a:active {
  color: #FCFCFC;
  text-decoration: none;
}

button {
  border: none;
  text-decoration: none;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Lato", "Noto Sans JP", sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

body * {
  -webkit-transition-property: width;
  transition-property: width;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

body#afSite-page {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/*==========================================================
	didot：
==========================================================*/
@font-face {
  font-family: "didot";
  font-style: normal;
  font-weight: normal;
  src: url("../css/fonts/didot.ttf");
}
/*==========================================================
	ランクについて
==========================================================*/
.modalArea {
  /* displayではなくvisibility */
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0;
  z-index: 10;
  /* モーダル表示用クラス */
}
.modalArea.is-show {
  visibility: visible;
  opacity: 1;
}
@media (max-width: 767px) and (orientation: portrait) {
  .modalArea.is-show .modalWrapper {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    -webkit-animation-name: slideIN;
            animation-name: slideIN;
    -webkit-animation-duration: 0.4s;
            animation-duration: 0.4s;
    -webkit-animation-iteration-count: 1;
            animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
  }
}
.modalArea .modalBg {
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.9);
}
.modalArea .modalWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: auto;
  padding: 10px 30px;
  overflow: auto;
}
@media (max-width: 767px) and (orientation: portrait) {
  .modalArea .modalWrapper {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    padding: 2vw;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    -webkit-animation-name: slideOUT;
            animation-name: slideOUT;
    -webkit-animation-duration: 0;
            animation-duration: 0;
    -webkit-animation-iteration-count: 1;
            animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
  }
}
@-webkit-keyframes slideIN {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
@keyframes slideIN {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
@-webkit-keyframes slideOUT {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 0;
  }
}
@keyframes slideOUT {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 0;
  }
}
.modalArea .closeModal {
  cursor: pointer;
  position: absolute;
  top: -0.5rem;
  right: 0.5rem;
  font-size: 4rem;
}

.AboutRank_Block {
  position: relative;
  width: 100%;
  max-width: 1200px;
  padding: 5rem 3rem;
  background-color: #FCFCFC;
}
@media (max-width: 767px) and (orientation: portrait) {
  .AboutRank_Block {
    height: auto;
    max-height: 96%;
    padding: 3vw 8vw;
    overflow: auto;
  }
}
.AboutRank_Block ul {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 767px) and (orientation: portrait) {
  .AboutRank_Block ul {
    gap: 1vw 0;
  }
}
.AboutRank_Block ul li {
  width: calc((100% - 2rem) / 3);
  border: solid 1px #464646;
  border-radius: 1rem;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .AboutRank_Block ul li {
    width: calc((100% - 1rem) / 2);
  }
}
@media (max-width: 767px) and (orientation: portrait) {
  .AboutRank_Block ul li {
    width: 100%;
    border: solid 1px #ff0000;
  }
}
.AboutRank_Block ul li dl {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.AboutRank_Block ul li dl dt {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
.AboutRank_Block ul li dl dt p {
  font-size: 1.4rem;
  color: #FCFCFC;
  padding: 0.5rem 0;
  letter-spacing: 0.08em;
  font-weight: 500;
}
@media (max-width: 767px) and (orientation: portrait) {
  .AboutRank_Block ul li dl dt p {
    font-size: 3.6vw;
  }
}
.AboutRank_Block ul li dl dt.diamond {
  background-color: #780072;
}
.AboutRank_Block ul li dl dt.premium {
  background-color: #002076;
}
.AboutRank_Block ul li dl dt.grand {
  background-color: #DC000C;
}
.AboutRank_Block ul li dl dt.vip {
  background-color: #008A32;
}
.AboutRank_Block ul li dl dt.gold {
  background-color: #FFE900;
}
.AboutRank_Block ul li dl dt.gold p {
  color: #010101;
}
.AboutRank_Block ul li dl dt.silver {
  background-color: #767676;
}
.AboutRank_Block ul li dl dd {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1rem 2rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 12rem;
}
@media (max-width: 767px) and (orientation: portrait) {
  .AboutRank_Block ul li dl dd {
    height: unset;
  }
}
.AboutRank_Block ul li dl dd.dd_vip {
  padding-top: 4rem;
}
.AboutRank_Block ul li dl dd .icon {
  width: 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem 0;
}
.AboutRank_Block ul li dl dd .icon img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.AboutRank_Block ul li dl dd p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.AboutRank_Block ul li dl dd p span {
  font-size: 5rem;
  font-weight: 700;
}
@media (max-width: 767px) and (orientation: portrait) {
  .AboutRank_Block ul li dl dd p span {
    font-size: 10vw;
  }
}
.AboutRank_Block ul li dl dd p span::after {
  content: "pt";
  font-size: 2rem;
}
@media (max-width: 767px) and (orientation: portrait) {
  .AboutRank_Block ul li dl dd p span::after {
    font-size: 4vw;
  }
}
.AboutRank_Block ul li dl dd p i {
  font-size: 1.4rem;
  font-weight: 700;
  display: inline-block;
  -webkit-transform: translateY(-0.4em);
          transform: translateY(-0.4em);
  margin-left: 0.3em;
}
@media (max-width: 767px) and (orientation: portrait) {
  .AboutRank_Block ul li dl dd p i {
    font-size: 3.6vw;
  }
}

/*==========================================================
	レフトエリア
==========================================================*/
.PcLeftArea {
  width: 27%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .PcLeftArea {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
  }
}
.PcLeftArea.fukuoka {
  background: #93eaff;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .PcLeftArea.fukuoka {
    background: unset;
  }
}
.PcLeftArea.villa {
  background: #f1e5f4;
}
.PcLeftArea.members {
  background: #f8dde7;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .PcLeftArea.members {
    background: unset;
  }
}
@media (max-width: 767px) and (orientation: portrait) {
  .PcLeftArea {
    display: none;
  }
}
.PcLeftArea h2 {
  font-family: "Bebas Neue", cursive;
  font-weight: 500;
  font-style: normal;
  font-size: 3.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .PcLeftArea h2 {
    letter-spacing: -0.04em;
  }
}
.PcLeftArea h2 span {
  font-size: 1.4rem;
  letter-spacing: -0.05em;
  margin-left: 0.5em;
}
.PcLeftArea .HeadBox {
  width: 80%;
  margin: 0 auto;
  padding: 3rem 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .PcLeftArea .HeadBox {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 40%;
    padding: 1vw 3vw 3vw;
  }
}
.PcLeftArea .HeadBox img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.PcLeftArea .HeadBox .shop_name {
  text-align: right;
  font-size: 2rem;
  font-weight: 700;
  color: #231815;
  text-transform: uppercase;
  margin: 2rem 0 1rem;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .PcLeftArea .HeadBox .shop_name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    font-size: 1.2vw;
    margin: 0.5em 0;
  }
}
.PcLeftArea .HeadBox .shop_name span {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: 0.5em;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .PcLeftArea .HeadBox .shop_name span {
    font-size: 2vw;
    margin-bottom: 0.2em;
  }
}
.PcLeftArea .HeadBox .tel {
  font-size: 2rem;
  color: #231815;
  text-align: right;
  font-weight: 700;
}
.PcLeftArea .HeadBox .TB_BtnArea {
  display: none;
}
@media (max-width: 767px) and (orientation: portrait) {
  .PcLeftArea .HeadBox .TB_BtnArea {
    display: none;
  }
}
@media (max-width: 1024px) and (orientation: portrait) {
  .PcLeftArea .HeadBox .TB_BtnArea {
    width: 50%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 3vw;
    margin-right: 0;
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .PcLeftArea .HeadBox .TB_BtnArea li {
    position: relative;
    width: 100%;
    margin-bottom: 1vw;
  }
  .PcLeftArea .HeadBox .TB_BtnArea li:last-child {
    margin-bottom: unset;
  }
  .PcLeftArea .HeadBox .TB_BtnArea li.block_map {
    margin-bottom: 3vw;
  }
  .PcLeftArea .HeadBox .TB_BtnArea li.block_map::before {
    content: "";
    position: absolute;
    width: 2vw;
    height: 2vw;
    top: 50%;
    left: 2vw;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background-image: url(../img/icon/map.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    -webkit-filter: brightness(0) invert(100);
            filter: brightness(0) invert(100);
  }
  .PcLeftArea .HeadBox .TB_BtnArea li.block_map.fukuoka {
    background: #007f9d;
  }
  .PcLeftArea .HeadBox .TB_BtnArea li.block_map.villa {
    background: #c189cc;
  }
  .PcLeftArea .HeadBox .TB_BtnArea li.block_map.members {
    background: #b9275c;
  }
  .PcLeftArea .HeadBox .TB_BtnArea li.block_01 {
    background-color: #00acee;
  }
  .PcLeftArea .HeadBox .TB_BtnArea li.block_01::before {
    content: "";
    position: absolute;
    width: 2vw;
    height: 2vw;
    top: 50%;
    left: 2vw;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background-image: url(../img/icon/twitter.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    -webkit-filter: brightness(0) invert(100);
            filter: brightness(0) invert(100);
  }
  .PcLeftArea .HeadBox .TB_BtnArea li.block_02 {
    background-color: #00A99D;
  }
  .PcLeftArea .HeadBox .TB_BtnArea li.block_03 {
    background-color: #E38600;
  }
  .PcLeftArea .HeadBox .TB_BtnArea li a {
    width: 100;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0.5em 0;
  }
  .PcLeftArea .HeadBox .TB_BtnArea li a.en {
    font-size: 2vw;
  }
  .PcLeftArea .HeadBox .TB_BtnArea li a.jp {
    font-size: 2vw;
  }
}
.PcLeftArea .RealTimeArea {
  display: none;
  width: 100%;
  padding: 1rem 1rem 1.5rem 2.5rem;
  position: relative;
  margin-top: 2rem;
  margin-left: -1.5rem;
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
}
.PcLeftArea .RealTimeArea .not_set {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 4vw;
  margin: 0 auto;
  font-size: 1.4rem;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .PcLeftArea .RealTimeArea {
    width: 60%;
    margin: 0;
    padding: 2vw;
    -webkit-box-shadow: transparent;
            box-shadow: transparent;
  }
  .PcLeftArea .RealTimeArea .not_set {
    margin-top: 10vw;
  }
}
.PcLeftArea .RealTimeArea.fukuoka {
  background: #00c1ef;
  -webkit-box-shadow: 0.3rem 0.3rem 1rem -0.5rem #009cc1;
          box-shadow: 0.3rem 0.3rem 1rem -0.5rem #009cc1;
}
.PcLeftArea .RealTimeArea.fukuoka::after {
  border-color: transparent #003947 transparent transparent;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .PcLeftArea .RealTimeArea.fukuoka {
    background: unset;
    -webkit-box-shadow: unset;
            box-shadow: unset;
  }
}
.PcLeftArea .RealTimeArea.villa {
  background: #d9b7e0;
  -webkit-box-shadow: 0.3rem 0.3rem 1rem -0.5rem #cea1d6;
          box-shadow: 0.3rem 0.3rem 1rem -0.5rem #cea1d6;
}
.PcLeftArea .RealTimeArea.villa::after {
  border-color: transparent #a14db1 transparent transparent;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .PcLeftArea .RealTimeArea.villa {
    background: unset;
    -webkit-box-shadow: unset;
            box-shadow: unset;
  }
}
.PcLeftArea .RealTimeArea.members {
  background: #d4356f;
  -webkit-box-shadow: 0.3rem 0.3rem 1rem -0.5rem #d3316c;
          box-shadow: 0.3rem 0.3rem 1rem -0.5rem #d3316c;
}
.PcLeftArea .RealTimeArea.members h2 {
  color: #FCFCFC;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .PcLeftArea .RealTimeArea.members h2 {
    color: unset;
  }
}
.PcLeftArea .RealTimeArea.members .realtime_box .profile_box .cast_name {
  color: #FCFCFC;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .PcLeftArea .RealTimeArea.members .realtime_box .profile_box .cast_name {
    color: #231815;
  }
}
.PcLeftArea .RealTimeArea.members .realtime_box .profile_box .comment {
  color: #FCFCFC;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .PcLeftArea .RealTimeArea.members .realtime_box .profile_box .comment {
    color: #231815;
  }
}
.PcLeftArea .RealTimeArea.members::after {
  border-color: transparent #711839 transparent transparent;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .PcLeftArea .RealTimeArea.members {
    background: unset;
    -webkit-box-shadow: unset;
            box-shadow: unset;
  }
}
.PcLeftArea .RealTimeArea::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 1.5rem 10px 0;
}
.PcLeftArea .RealTimeArea .time {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 0.5rem;
  right: 0.5rem;
  font-size: 1.6rem;
  padding-right: 0.2em;
  background-color: #FCFCFC;
  border-top-right-radius: 1rem;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .PcLeftArea .RealTimeArea .time {
    top: 2vw;
    right: 2vw;
    border-top-right-radius: unset;
    padding-right: 0.6em;
  }
}
.PcLeftArea .RealTimeArea .time.fukuoka {
  border: solid 1px #007f9d;
}
.PcLeftArea .RealTimeArea .time.villa {
  border: solid 1px #c189cc;
}
.PcLeftArea .RealTimeArea .time.members {
  border: solid 1px #861d43;
}
.PcLeftArea .RealTimeArea .time span {
  height: 100%;
  color: #FCFCFC;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5em 0.2em;
  margin-right: 0.2em;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .PcLeftArea .RealTimeArea .time span {
    padding: 0.5em 1em;
    margin-right: 1em;
  }
}
.PcLeftArea .RealTimeArea .time span.fukuoka {
  background: #007f9d;
}
.PcLeftArea .RealTimeArea .time span.villa {
  background: #c189cc;
}
.PcLeftArea .RealTimeArea .time span.members {
  background: #861d43;
}
.PcLeftArea .RealTimeArea .realtime_box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 1rem 0 0;
}
.PcLeftArea .RealTimeArea .realtime_box .photo_wrap {
  width: 40%;
}
.PcLeftArea .RealTimeArea .realtime_box .photo_wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.PcLeftArea .RealTimeArea .realtime_box .profile_box {
  width: 60%;
  padding-left: 1rem;
}
.PcLeftArea .RealTimeArea .realtime_box .profile_box .cast_name {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 0.5em;
  color: #231815;
}
.PcLeftArea .RealTimeArea .realtime_box .profile_box .comment {
  width: 100%;
  text-align: justify;
  font-size: 1.1rem;
  line-height: 1.2em;
  height: 9.5em;
  overflow-y: hidden;
  color: #231815;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .PcLeftArea .RealTimeArea .realtime_box .profile_box .comment {
    font-size: 1.6vw;
    height: 17em;
    line-height: 1.2em;
    letter-spacing: 0.03em;
  }
}
.PcLeftArea .RealTimeArea .caption {
  position: relative;
  width: 100%;
  background: #FCFCFC;
  border-radius: 0.5rem;
  padding: 1rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1.5rem;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .PcLeftArea .RealTimeArea .caption {
    background: #efefef;
    margin-top: 0.5vw;
  }
  .PcLeftArea .RealTimeArea .caption.villa {
    background: #FCFCFC;
  }
  .PcLeftArea .RealTimeArea .caption.villa::before {
    border-bottom: 1rem solid #FCFCFC;
  }
  .PcLeftArea .RealTimeArea .caption.members {
    background: #d4356f;
    color: #FCFCFC;
  }
  .PcLeftArea .RealTimeArea .caption.members::before {
    border-bottom: 1rem solid #d4356f;
  }
}
.PcLeftArea .RealTimeArea .caption::before {
  content: "";
  position: absolute;
  top: -1.5rem;
  left: 20%;
  border: 0.5rem solid transparent;
  border-bottom: 1rem solid #FCFCFC;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .PcLeftArea .RealTimeArea .caption::before {
    border-bottom: 1rem solid #efefef;
    top: -1.6vw;
  }
}
.PcLeftArea .RealTimeArea .caption p {
  font-size: 1.4rem;
  font-weight: 700;
}
.PcLeftArea .RealTimeArea .link_list {
  width: 100%;
  background: #010101;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.4rem 0;
  margin-top: 1.5rem;
  font-size: 1.4rem;
  font-weight: 500;
}
.PcLeftArea .RealTimeArea .link_list .arrow_next {
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  border-top: solid 0.3rem #FCFCFC;
  border-right: solid 0.3rem #FCFCFC;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-left: 2rem;
}
.PcLeftArea .TweetArea {
  margin: 2rem 0 1rem;
  width: 100%;
  padding: 2rem 1rem;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .PcLeftArea .TweetArea {
    display: none;
  }
}
.PcLeftArea .TweetArea.fukuoka {
  background: #60e0ff;
}
.PcLeftArea .TweetArea.villa {
  background: #ecdaef;
}
.PcLeftArea .TweetArea.members {
  background: #f5d1de;
}
.PcLeftArea .TweetArea a {
  padding: 0 0.5rem;
  font-size: 1.6rem;
  color: #00acee;
  font-weight: 700;
}
.PcLeftArea .TweetArea a span {
  font-size: 2rem;
  margin-left: 0.5em;
}
.PcLeftArea .TweetArea a img {
  width: 10%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 0.2em;
}
.PcLeftArea .TweetArea .tweeter_box {
  width: 100%;
  height: 30rem;
  margin-top: 1rem;
  background: #FCFCFC;
  border-radius: 0.5rem;
  overflow-y: scroll;
}
.PcLeftArea .PhotoDiaryArea {
  width: 100%;
  margin: 1rem 0 0;
  padding: 0 1rem 2rem;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .PcLeftArea .PhotoDiaryArea {
    display: none;
  }
}
.PcLeftArea .PhotoDiaryArea img {
  position: relative;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.PcLeftArea .PhotoDiaryArea .head {
  width: 100%;
  height: 0rem;
  border-top-right-radius: 1rem;
  border-top-left-radius: 1rem;
  margin-top: -1rem;
}
.PcLeftArea .PhotoDiaryArea .head.fukuoka {
  background: #00A0C6;
}
.PcLeftArea .PhotoDiaryArea .head.villa {
  background: #d0a5d8;
}
.PcLeftArea .PhotoDiaryArea .head.members {
  background: #d4356f;
}
.PcLeftArea .PhotoDiaryArea .diary_box {
  width: 100%;
  height: auto;
  background: #FCFCFC;
  overflow: hidden;
}
.PcLeftArea .PhotoDiaryArea .diary_box.fukuoka {
  background: #93eaff;
}
.PcLeftArea .PhotoDiaryArea .diary_box.villa {
  background: #f1e5f4;
}
.PcLeftArea .PhotoDiaryArea .diary_box.members {
  background: #f8dde7;
}
.PcLeftArea .BanField_A {
  width: 100%;
  padding: 0 1rem;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .PcLeftArea .BanField_A {
    display: none;
  }
}
.PcLeftArea .BanField_A li {
  width: 100%;
  margin: 0 auto 0.5rem;
}
.PcLeftArea .BanField_A li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.PcLeftArea .BanField_A li a {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.PcLeftArea .BanField_A li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.PcLeftArea .MarkLine {
  width: calc(100% - 2rem);
  height: 1px;
  border-top: 1px solid #8c8b8b;
  margin: 3rem auto 2rem;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .PcLeftArea .MarkLine {
    display: none;
  }
}
.PcLeftArea .BanField_B {
  width: 100%;
  padding: 0 1rem;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .PcLeftArea .BanField_B {
    display: none;
  }
}
.PcLeftArea .BanField_B h2 {
  margin-bottom: 1rem;
  text-indent: 0.5em;
}
.PcLeftArea .BanField_B li {
  width: 100%;
  margin: 0 auto 0.5rem;
}
.PcLeftArea .BanField_B li a {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.PcLeftArea .BanField_B li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*==========================================================
	トップタイトル
==========================================================*/
.PageTop_h2 {
  position: relative;
  color: #231815;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: 6rem 0;
  font-size: 1.6rem;
  font-weight: 700;
}
@media (max-width: 767px) and (orientation: portrait) {
  .PageTop_h2 {
    padding: 5vw;
    font-size: 3vw;
  }
}
.PageTop_h2 span {
  font-size: 4rem;
  text-transform: uppercase;
  font-weight: 500;
}
@media (max-width: 767px) and (orientation: portrait) {
  .PageTop_h2 span {
    font-size: 7vw;
    margin-bottom: 2vw;
  }
}

.sp_pr {
  display: none;
}
@media (max-width: 767px) and (orientation: portrait) {
  .sp_pr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 1em 0;
    border-bottom: 1px solid #231815;
  }
  .sp_pr.fukuoka {
    background: #c6f4ff;
  }
  .sp_pr.villa {
    background: #f5ecf7;
  }
  .sp_pr.members {
    background: white;
  }
  .sp_pr a {
    font-size: 3.2vw;
    color: #231815;
    font-weight: 500;
  }
  .sp_pr.footer {
    border-bottom: unset;
  }
}

/*==========================================================
	ヘッダー
==========================================================*/
header#afSite-header {
  width: 100%;
  position: relative;
  color: #FCFCFC;
}
header#afSite-header.clone {
  display: none;
}
header#afSite-header.clone.fixed {
  position: fixed;
  display: block;
  z-index: 999;
}
@media (max-width: 767px) and (orientation: portrait) {
  header#afSite-header.clone.fixed .MenuArea,
  header#afSite-header.clone.fixed .StripeArea,
  header#afSite-header.clone.fixed .sp_pr,
  header#afSite-header.clone.fixed .TelopArea {
    display: none;
  }
}
header#afSite-header.fukuoka {
  background-color: #00A0C6;
}
header#afSite-header.villa {
  background-color: #d0a5d8;
}
header#afSite-header.members {
  background-color: #d4356f;
}
header#afSite-header .HeadArea {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.5em 0;
}
@media (max-width: 1024px) and (orientation: portrait) {
  header#afSite-header .HeadArea {
    padding: 1vw 2vw;
  }
}
header#afSite-header .HeadArea p {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 767px) and (orientation: portrait) {
  header#afSite-header .HeadArea p {
    display: none;
  }
}
header#afSite-header .HeadArea h1 {
  font-size: 1rem;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media (max-width: 767px) and (orientation: portrait) {
  header#afSite-header .HeadArea h1 {
    margin: 0 auto;
  }
  header#afSite-header .HeadArea h1 span {
    display: none;
  }
}
header#afSite-header .HeadSpace {
  width: 100%;
  height: 0.2vw;
  background-color: #010101;
}
@media (max-width: 767px) and (orientation: portrait) {
  header#afSite-header .HeadSpace {
    display: none;
  }
}
header#afSite-header .SpHead {
  display: none;
}
@media (max-width: 767px) and (orientation: portrait) {
  header#afSite-header .SpHead {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 15vw;
    /*=== スマホヘッダー固定メニュー ===*/
  }
  header#afSite-header .SpHead.fukuoka {
    background: #c6f4ff;
  }
  header#afSite-header .SpHead.villa {
    background: white;
  }
  header#afSite-header .SpHead.members {
    background: white;
  }
  header#afSite-header .SpHead a {
    font-size: 4vw;
    padding-left: 10vw;
  }
  header#afSite-header .SpHead a.fukuoka {
    color: #00627a;
  }
  header#afSite-header .SpHead a.villa {
    color: #b470c1;
  }
  header#afSite-header .SpHead a.members {
    color: #9b214e;
  }
  header#afSite-header .SpHead a span {
    font-family: "didot";
    display: block;
    text-transform: uppercase;
    font-size: 5vw;
  }
  header#afSite-header .SpHead .sp_h_menu {
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    width: 8vw;
    height: 8vw;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    z-index: 3;
    -webkit-transition: all 400ms;
    transition: all 400ms;
  }
  header#afSite-header .SpHead .sp_h_menu span {
    position: absolute;
    width: 100%;
    height: 3px;
    background: #666;
    border-radius: 10px;
    -webkit-transition: all 400ms;
    transition: all 400ms;
  }
  header#afSite-header .SpHead .sp_h_menu span:nth-child(1) {
    top: 1em;
  }
  header#afSite-header .SpHead .sp_h_menu span:nth-child(2) {
    top: 0;
    bottom: 0;
    margin: auto 0;
  }
  header#afSite-header .SpHead .sp_h_menu span:nth-child(3) {
    bottom: 1em;
  }
  header#afSite-header .SpHead .sp_h_menu.open span:nth-child(1) {
    top: 0;
    bottom: 0;
    margin: auto 0;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  header#afSite-header .SpHead .sp_h_menu.open span:nth-child(2), header#afSite-header .SpHead .sp_h_menu.open span:nth-child(3) {
    top: 0;
    bottom: 0;
    margin: auto 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  header#afSite-header .SpHead.fukuoka .sp_h_menu span {
    background: #00627a;
  }
  header#afSite-header .SpHead.fukuoka .FixedMenu_sp {
    background: rgba(0, 160, 198, 0.8);
  }
  header#afSite-header .SpHead.villa .sp_h_menu span {
    background: #b470c1;
  }
  header#afSite-header .SpHead.villa .sp_tel {
    padding-left: 10vw;
  }
  header#afSite-header .SpHead.villa .FixedMenu_sp {
    background: rgba(208, 165, 216, 0.8);
  }
  header#afSite-header .SpHead.members .sp_h_menu span {
    background: #9b214e;
  }
  header#afSite-header .SpHead.members .FixedMenu_sp {
    background: rgba(212, 53, 111, 0.8);
  }
  header#afSite-header .SpHead .FixedMenu_sp {
    position: fixed;
    top: 20vw;
    /*閉じるボタン対応*/
    top: 0vw !important;
    left: -100%;
    width: 100%;
    height: 100%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    z-index: 999;
  }
  header#afSite-header .SpHead .FixedMenu_sp .sp_menu_title {
    width: 60%;
    /*閉じるボタン対応*/
  }
  header#afSite-header .SpHead .FixedMenu_sp .sp_menu_title .sp_h_menu {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 2vw;
    width: 6vw;
    height: 6vw;
    margin: auto 0;
    background-color: #FCFCFC;
  }
  header#afSite-header .SpHead .FixedMenu_sp .sp_menu_title .sp_h_menu span {
    width: 98%;
    height: 1px;
    background: #010101;
  }
  header#afSite-header .SpHead .FixedMenu_sp.open {
    left: 0;
  }
  header#afSite-header .SpHead .FixedMenuArea {
    width: 60%;
    height: 100%;
    margin: 1rem auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    padding: 0 5vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: #ededed;
    padding: 0 0 8vw;
    margin: 0;
  }
  header#afSite-header .SpHead .FixedMenuArea li:nth-child(even) {
    background: #dcdcdc;
  }
  header#afSite-header .SpHead .FixedMenuArea li a {
    color: #231815;
    display: block;
    padding: 2vw 0;
    font-size: 3.4vw;
    font-weight: 700;
    text-indent: 1em;
  }
  header#afSite-header .SpHead .FixedMenuArea li .sp {
    display: block;
    padding: 3vw 0;
    font-size: 3.4vw;
    font-family: "Lato", "Noto Sans JP", sans-serif;
    font-weight: 700;
    text-indent: 1em;
  }
}
header#afSite-header .MenuArea {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 3vw;
}
@media (max-width: 1024px) and (orientation: portrait) {
  header#afSite-header .MenuArea {
    padding: 1vw 3vw;
  }
}
header#afSite-header .MenuArea li {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  padding: 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header#afSite-header .MenuArea li::after {
  content: "";
  position: absolute;
  display: block;
  width: 1px;
  height: 60%;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #FCFCFC;
}
header#afSite-header .MenuArea li:first-child::before {
  content: "";
  position: absolute;
  display: block;
  width: 1px;
  height: 60%;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #FCFCFC;
}
header#afSite-header .MenuArea li a {
  width: 100%;
  padding: 3em 0 4em;
  text-align: center;
}
header#afSite-header .MenuArea li a.stand_out {
  background-color: yellow;
  font-weight: 500;
}
header#afSite-header .MenuArea li a.stand_out.fukuoka {
  color: #00627a;
}
header#afSite-header .MenuArea li a.stand_out.villa {
  color: #b470c1;
}
header#afSite-header .MenuArea li a.stand_out.members {
  color: #9b214e;
}
@media (max-width: 767px) and (orientation: portrait) {
  header#afSite-header .MenuArea li a.recLink_pc {
    display: none;
  }
}
header#afSite-header .MenuArea li a.recLink_sp {
  display: none;
}
@media (max-width: 767px) and (orientation: portrait) {
  header#afSite-header .MenuArea li a.recLink_sp {
    display: block;
  }
}
header#afSite-header .MenuArea li a .pc {
  text-align: center;
  width: 100%;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}
@media (max-width: 767px) and (orientation: portrait) {
  header#afSite-header .MenuArea li a .pc {
    display: none;
  }
}
header#afSite-header .MenuArea li a .sp {
  display: none;
}
@media (max-width: 767px) and (orientation: portrait) {
  header#afSite-header .MenuArea li a .sp {
    display: block;
    font-size: 3.2vw;
  }
}
@media (max-width: 767px) and (orientation: portrait) {
  header#afSite-header .MenuArea li.pc_only {
    display: none;
  }
}
header#afSite-header .StripeArea {
  width: 100%;
  height: 0.3vw;
  background-size: auto auto;
  background-color: rgb(255, 255, 255);
  background-image: repeating-linear-gradient(45deg, transparent, transparent 5px, #010101 5px, #010101 10px);
}
@media (max-width: 767px) and (orientation: portrait) {
  header#afSite-header .StripeArea {
    display: none;
  }
}
header#afSite-header .TelopArea {
  width: 100%;
  padding: 1em;
  background: -webkit-gradient(linear, left top, left bottom, from(#dbdbdd), to(#c8c8c8));
  background: linear-gradient(#dbdbdd, #c8c8c8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header#afSite-header .TelopArea .comment_box {
  width: 100%;
  height: 2.4rem;
  max-width: 1280px;
  margin: 0 auto;
  background-color: #FCFCFC;
  border-radius: 0.5em;
  overflow: hidden;
}
header#afSite-header .TelopArea .comment_box p {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 500;
  color: #231815;
  padding: 0.5em 0 0.5em 90%;
  margin: 0;
  white-space: nowrap;
  -webkit-animation-name: marquee;
          animation-name: marquee;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-duration: 15s;
          animation-duration: 15s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
@-webkit-keyframes marquee {
  from {
    -webkit-transform: translate(0%);
            transform: translate(0%);
  }
  99%, to {
    -webkit-transform: translate(-100%);
            transform: translate(-100%);
  }
}
@keyframes marquee {
  from {
    -webkit-transform: translate(0%);
            transform: translate(0%);
  }
  99%, to {
    -webkit-transform: translate(-100%);
            transform: translate(-100%);
  }
}

/*==========================================================
	フッター
==========================================================*/
.sp_menu_title {
  display: none;
}
@media (max-width: 767px) and (orientation: portrait) {
  .sp_menu_title {
    display: block;
    position: relative;
    width: 100%;
    background: #010101;
    color: #FCFCFC;
    font-family: "Bebas Neue", cursive;
    font-weight: 500;
    font-style: normal;
    font-size: 6vw;
    text-transform: uppercase;
    padding: 0.3em;
    text-indent: 8vw;
  }
  .sp_menu_title::before {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 2vw;
    width: 6vw;
    height: 6vw;
    background-image: url(../img/icon/menu.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    -webkit-filter: brightness(0) invert(93%);
            filter: brightness(0) invert(93%);
  }
}

.FooterMenuArea {
  width: 100%;
  max-width: 1280px;
  margin: 1rem auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 5vw;
}
.FooterMenuArea.area {
  display: none;
}
@media (max-width: 767px) and (orientation: portrait) {
  .FooterMenuArea.area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 1024px) and (orientation: portrait) {
  .FooterMenuArea {
    padding: 0 1vw;
  }
}
@media (max-width: 767px) and (orientation: portrait) {
  .FooterMenuArea {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: #ededed;
    padding: 0 0 8vw;
    margin: 0 auto;
  }
}
@media (max-width: 767px) and (orientation: portrait) {
  .FooterMenuArea li:nth-child(even) {
    background: #dcdcdc;
  }
}
.FooterMenuArea li a {
  color: #231815;
}
.FooterMenuArea li a .pc {
  font-size: 1.2rem;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .FooterMenuArea li a .pc {
    font-size: 1.3vw;
  }
}
@media (max-width: 767px) and (orientation: portrait) {
  .FooterMenuArea li a .pc {
    display: none;
  }
}
.FooterMenuArea li a .sp {
  display: none;
}
@media (max-width: 767px) and (orientation: portrait) {
  .FooterMenuArea li a .sp {
    display: block;
    padding: 3vw;
    font-size: 3.4vw;
    font-weight: 700;
    text-indent: 1em;
  }
}
.FooterMenuArea li a::before {
  font-size: 1.2rem;
  content: "|";
  margin: 0 1.2em;
}
@media (max-width: 767px) and (orientation: portrait) {
  .FooterMenuArea li a::before {
    display: none;
  }
}
.FooterMenuArea li a.last::after {
  font-size: 1.2rem;
  content: "|";
  margin: 0 1.2em;
}
@media (max-width: 767px) and (orientation: portrait) {
  .FooterMenuArea li a.last::after {
    display: none;
  }
}
@media (max-width: 767px) and (orientation: portrait) {
  .FooterMenuArea li a.recLink_pc {
    display: none;
  }
}
.FooterMenuArea li a.recLink_sp {
  display: none;
}
@media (max-width: 767px) and (orientation: portrait) {
  .FooterMenuArea li a.recLink_sp {
    display: block;
  }
}

footer#afSite-footer {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
footer#afSite-footer .sp_menu_title {
  display: none;
}
@media (max-width: 767px) and (orientation: portrait) {
  footer#afSite-footer .sp_menu_title {
    display: block;
    position: relative;
    width: 100%;
    background: #010101;
    color: #FCFCFC;
    font-family: "Bebas Neue", cursive;
    font-weight: 500;
    font-style: normal;
    font-size: 6vw;
    text-transform: uppercase;
    padding: 0.3em;
    text-indent: 8vw;
  }
  footer#afSite-footer .sp_menu_title::before {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 2vw;
    width: 6vw;
    height: 6vw;
    background-image: url(../img/icon/menu.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    -webkit-filter: brightness(0) invert(93%);
            filter: brightness(0) invert(93%);
  }
}
footer#afSite-footer .FooterMenuArea {
  width: 100%;
  max-width: 1280px;
  margin: 1rem auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 5vw;
}
@media (max-width: 1024px) and (orientation: portrait) {
  footer#afSite-footer .FooterMenuArea {
    padding: 0 1vw;
  }
}
@media (max-width: 767px) and (orientation: portrait) {
  footer#afSite-footer .FooterMenuArea {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: #ededed;
    padding: 0 0 8vw;
    margin: 0 auto;
  }
}
@media (max-width: 767px) and (orientation: portrait) {
  footer#afSite-footer .FooterMenuArea li:nth-child(even) {
    background: #dcdcdc;
  }
}
footer#afSite-footer .FooterMenuArea li a {
  color: #231815;
}
footer#afSite-footer .FooterMenuArea li a .pc {
  font-size: 1.2rem;
}
@media (max-width: 1024px) and (orientation: portrait) {
  footer#afSite-footer .FooterMenuArea li a .pc {
    font-size: 1.3vw;
  }
}
@media (max-width: 767px) and (orientation: portrait) {
  footer#afSite-footer .FooterMenuArea li a .pc {
    display: none;
  }
}
footer#afSite-footer .FooterMenuArea li a .sp {
  display: none;
}
@media (max-width: 767px) and (orientation: portrait) {
  footer#afSite-footer .FooterMenuArea li a .sp {
    display: block;
    padding: 3vw;
    font-size: 3.4vw;
    font-weight: 700;
    text-indent: 1em;
  }
}
footer#afSite-footer .FooterMenuArea li a::before {
  font-size: 1.2rem;
  content: "|";
  margin: 0 1.2em;
}
@media (max-width: 767px) and (orientation: portrait) {
  footer#afSite-footer .FooterMenuArea li a::before {
    display: none;
  }
}
footer#afSite-footer .FooterMenuArea li a.last::after {
  font-size: 1.2rem;
  content: "|";
  margin: 0 1.2em;
}
@media (max-width: 767px) and (orientation: portrait) {
  footer#afSite-footer .FooterMenuArea li a.last::after {
    display: none;
  }
}
footer#afSite-footer .FukuokaShop {
  position: relative;
  width: 100%;
  background-image: url(../img/footer_bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 6rem 0;
}
@media (max-width: 1024px) and (orientation: portrait) {
  footer#afSite-footer .FukuokaShop {
    padding: 3vw 0;
  }
}
@media (max-width: 767px) and (orientation: portrait) {
  footer#afSite-footer .FukuokaShop {
    background: #010101;
    padding: 3vw 1vw 0;
  }
}
footer#afSite-footer .FukuokaShop .sp_link_top {
  display: none;
}
@media (max-width: 767px) and (orientation: portrait) {
  footer#afSite-footer .FukuokaShop .sp_link_top {
    display: block;
    position: absolute;
    background-color: #010101;
    border-top-left-radius: 10vw;
    border-top-right-radius: 10vw;
    color: #FCFCFC;
    padding-top: 5vw;
    font-size: 2.6vw;
    text-align: center;
    text-transform: uppercase;
    top: -9vw;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 20vw;
    height: 12vw;
  }
}
footer#afSite-footer .FukuokaShop .area_title {
  font-family: "Bebas Neue", cursive;
  font-weight: 500;
  font-style: normal;
  text-align: center;
  color: #FCFCFC;
  text-transform: uppercase;
  font-size: 6rem;
  letter-spacing: 0.02em;
}
@media (max-width: 1024px) and (orientation: portrait) {
  footer#afSite-footer .FukuokaShop .area_title {
    font-size: 6vw;
    letter-spacing: -0.05em;
  }
}
@media (max-width: 767px) and (orientation: portrait) {
  footer#afSite-footer .FukuokaShop .area_title {
    font-size: 9vw;
    letter-spacing: -0.05em;
  }
}
footer#afSite-footer .FukuokaShop ul {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 5rem;
  gap: 2rem;
}
@media (max-width: 1024px) and (orientation: portrait) {
  footer#afSite-footer .FukuokaShop ul {
    margin-top: 2vw;
  }
}
@media (max-width: 767px) and (orientation: portrait) {
  footer#afSite-footer .FukuokaShop ul {
    display: grid;
    grid-template-columns: repeat(2, 50%);
    padding: 0 1vw;
    gap: 1vw;
    margin-top: 3vw;
  }
}
footer#afSite-footer .FukuokaShop ul li {
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) and (orientation: portrait) {
  footer#afSite-footer .FukuokaShop ul li {
    width: 100%;
    padding: 3vw 0;
  }
  footer#afSite-footer .FukuokaShop ul li.members {
    background-color: red;
  }
  footer#afSite-footer .FukuokaShop ul li.fukuoka {
    background-color: #00A0C6;
  }
  footer#afSite-footer .FukuokaShop ul li.villa {
    background-color: #d0a5d8;
  }
}
footer#afSite-footer .FukuokaShop ul li div {
  width: 100%;
  background-color: #FCFCFC;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10em 0;
}
@media (max-width: 1024px) and (orientation: portrait) {
  footer#afSite-footer .FukuokaShop ul li div {
    padding: 4vw 0;
  }
}
@media (max-width: 767px) and (orientation: portrait) {
  footer#afSite-footer .FukuokaShop ul li div {
    background-color: unset;
  }
}
footer#afSite-footer .FukuokaShop ul li div img {
  width: 70%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1024px) and (orientation: portrait) {
  footer#afSite-footer .FukuokaShop ul li div img {
    width: 90%;
  }
}
@media (max-width: 767px) and (orientation: portrait) {
  footer#afSite-footer .FukuokaShop ul li div img {
    width: 90%;
    -webkit-filter: brightness(0) invert(100%);
            filter: brightness(0) invert(100%);
  }
}
footer#afSite-footer .FukuokaShop ul li.center {
  margin: 0 6em;
}
@media (max-width: 767px) and (orientation: portrait) {
  footer#afSite-footer .FukuokaShop ul li.center {
    margin: unset;
  }
}
footer#afSite-footer .FukuokaShop ul li p {
  font-size: 1.6rem;
  color: #FCFCFC;
  font-weight: 700;
  margin: 0.5em 0 0.3em;
}
@media (max-width: 1024px) and (orientation: portrait) {
  footer#afSite-footer .FukuokaShop ul li p {
    margin: 0.5vw 0 0.2vw;
  }
}
@media (max-width: 767px) and (orientation: portrait) {
  footer#afSite-footer .FukuokaShop ul li p {
    font-size: 2.4vw;
  }
}
footer#afSite-footer .FukuokaShop ul li .tel {
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  font-weight: 500;
}
@media (max-width: 1024px) and (orientation: portrait) {
  footer#afSite-footer .FukuokaShop ul li .tel {
    font-size: 2vw;
  }
}
@media (max-width: 767px) and (orientation: portrait) {
  footer#afSite-footer .FukuokaShop ul li .tel {
    display: none;
  }
}
footer#afSite-footer .AreaShop {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5rem 0.5rem 2rem;
}
@media (max-width: 1024px) and (orientation: portrait) {
  footer#afSite-footer .AreaShop {
    padding: 2vw 2vw 2vw;
  }
}
@media (max-width: 767px) and (orientation: portrait) {
  footer#afSite-footer .AreaShop {
    display: grid;
    grid-template-columns: repeat(2, 50%);
    gap: 1vw 1vw;
    background: #010101;
    padding: 1vw 1.5vw;
  }
  footer#afSite-footer .AreaShop .fukuoka {
    grid-column: 1/3;
    grid-row: 1/2;
    background-color: #CFCFCF;
  }
  footer#afSite-footer .AreaShop .kyoto {
    background-color: #C6ECC8;
  }
  footer#afSite-footer .AreaShop .yokohama {
    background-color: #F0C4FB;
  }
  footer#afSite-footer .AreaShop .kobe {
    background-color: #C4DDFB;
  }
  footer#afSite-footer .AreaShop .kumamoto {
    background-color: #F9D5C0;
  }
}
footer#afSite-footer .AreaShop li {
  width: 100%;
  border-left: solid 1px #010101;
}
@media (max-width: 767px) and (orientation: portrait) {
  footer#afSite-footer .AreaShop li {
    border: none;
  }
}
footer#afSite-footer .AreaShop li:last-child {
  border-right: solid 1px #010101;
}
@media (max-width: 767px) and (orientation: portrait) {
  footer#afSite-footer .AreaShop li:last-child {
    border: none;
  }
}
footer#afSite-footer .AreaShop li a {
  width: 100%;
  color: #231815;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1rem 0 0.5rem;
}
@media (max-width: 767px) and (orientation: portrait) {
  footer#afSite-footer .AreaShop li a {
    font-family: "Bebas Neue", cursive;
    font-weight: 500;
    font-style: normal;
    font-size: 6vw;
    letter-spacing: -0.05em;
    padding: 2vw 0;
  }
}
footer#afSite-footer .AreaShop li a p {
  font-size: 1.8rem;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 1024px) and (orientation: portrait) {
  footer#afSite-footer .AreaShop li a p {
    font-size: 1.6vw;
  }
}
@media (max-width: 767px) and (orientation: portrait) {
  footer#afSite-footer .AreaShop li a p {
    font-size: 6vw;
  }
}
footer#afSite-footer .AreaShop li a p span {
  display: block;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 0.3em;
}
@media (max-width: 767px) and (orientation: portrait) {
  footer#afSite-footer .AreaShop li a p span {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 4vw;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-top: 0;
  }
}
footer#afSite-footer .AreaShop li a .arrow_bottom {
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  margin: 0.8rem auto;
  border-bottom: 0.2rem solid #010101;
  border-right: 0.2rem solid #010101;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media (max-width: 767px) and (orientation: portrait) {
  footer#afSite-footer .AreaShop li a .arrow_bottom {
    margin: 1vw auto 2vw;
  }
}
footer#afSite-footer .SpFooterMenu {
  display: none;
}
@media (max-width: 767px) and (orientation: portrait) {
  footer#afSite-footer .SpFooterMenu {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 2vw 5vw;
  }
  footer#afSite-footer .SpFooterMenu li {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -ms-flex-negative: 1;
        flex-shrink: 1;
    position: relative;
    text-align: center;
  }
  footer#afSite-footer .SpFooterMenu li a {
    font-size: 3.2vw;
  }
  footer#afSite-footer .SpFooterMenu li::before {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 0;
    width: 1px;
    height: 3vw;
    background-color: #FCFCFC;
  }
  footer#afSite-footer .SpFooterMenu li:last-child::after {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
    width: 1px;
    height: 3vw;
    background-color: #FCFCFC;
  }
}
footer#afSite-footer .SpFooterMenu.fukuoka {
  background-color: #00A0C6;
}
footer#afSite-footer .SpFooterMenu.villa {
  background-color: #d0a5d8;
}
footer#afSite-footer .SpFooterMenu.members {
  background-color: #d4356f;
}
footer#afSite-footer .copy_right {
  text-align: center;
  font-size: 1.4rem;
  margin: 1em 0 0.5em;
}
footer#afSite-footer .copy_right span {
  font-size: 1.3rem;
  text-transform: uppercase;
}
@media (max-width: 767px) and (orientation: portrait) {
  footer#afSite-footer .copy_right {
    display: none;
  }
}
footer#afSite-footer .FooterShopInfo {
  width: 100%;
  background-color: #010101;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1em 0;
}
footer#afSite-footer .FooterShopInfo p {
  color: #FCFCFC;
  font-size: 1.2em;
}
@media (max-width: 767px) and (orientation: portrait) {
  footer#afSite-footer .FooterShopInfo {
    padding: 0;
    background-color: #FCFCFC;
  }
  footer#afSite-footer .FooterShopInfo p {
    width: 100%;
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #231815;
    font-size: 5vw;
    line-height: 1em;
  }
  footer#afSite-footer .FooterShopInfo p .tel {
    width: 100%;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    background-color: #010101;
    color: #FCFCFC;
    text-align: center;
  }
  footer#afSite-footer .FooterShopInfo p .tel a, footer#afSite-footer .FooterShopInfo p .tel a span {
    font-size: 4vw;
    line-height: 2em;
  }
  footer#afSite-footer .FooterShopInfo p .add {
    padding-bottom: 3vw;
  }
}

/*==========================================================
    基本設定
==========================================================*/
body * {
  -webkit-transition-property: width;
  transition-property: width;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

hr {
  width: 90%;
  height: 0px;
  margin: 1rem auto;
  border: solid 1px #707070;
}
@media (max-width: 767px) and (orientation: portrait) {
  hr {
    display: none;
  }
}

body#afSite-page {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/*==========================================================
	ヘッダー
==========================================================*/
header#afSite-header {
  position: relative !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: auto;
  margin: 0px auto;
  padding: 2rem 0;
  background-image: none;
  background-color: #000000;
}
header#afSite-header img {
  width: 370px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
header#afSite-header h1 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 290px;
  height: 20px;
  margin-top: 1rem;
  text-align: center;
  color: #FFFFFF;
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "didot";
}
header#afSite-header h1:before {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 0px;
  left: 10px;
  width: 14px;
  height: 14px;
  margin: 0 auto;
  background-image: url(../img/logo/hpg_logo.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

/*==========================================================
    メイン画面
==========================================================*/
article {
  position: relative;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-image: url(../img/oneday_ranking_bg.jpg);
  /*==========================================================
      昨日のランキング
  ==========================================================*/
}
@media (max-width: 1024px) and (orientation: portrait) {
  article {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
article #realtime_ranking_box {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  /*前日／翌日ボタン*/
  /*ランキング入力無し*/
  /*共通項目*/
}
@media (max-width: 767px) and (orientation: portrait) {
  article #realtime_ranking_box {
    margin-bottom: 8vw;
  }
}
article #realtime_ranking_box h2 {
  padding: 2rem 0 1rem 0;
  color: #FCFCFC;
  font-size: 4rem;
}
article #realtime_ranking_box p.bygone_days {
  color: #F2B87C;
  font-size: 2rem;
}
article #realtime_ranking_box .fix_button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 767px) and (orientation: portrait) {
  article #realtime_ranking_box .fix_button {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 1rem 0;
  }
}
article #realtime_ranking_box .fix_button .fix_back,
article #realtime_ranking_box .fix_button .fix_next {
  position: absolute;
  top: 0;
  width: 140px;
  height: 60px;
  margin: 0 auto;
  font-size: 18px;
  z-index: 1;
}
@media (max-width: 767px) and (orientation: portrait) {
  article #realtime_ranking_box .fix_button .fix_back,
  article #realtime_ranking_box .fix_button .fix_next {
    position: relative;
    width: 36vw;
    max-width: 140px;
    height: auto;
    margin: 0;
    padding: 1rem 0;
  }
}
article #realtime_ranking_box .fix_button .fix_back {
  left: 1vw;
}
article #realtime_ranking_box .fix_button .fix_next {
  right: 1vw;
}
article #realtime_ranking_box .fix_button .fix_back a,
article #realtime_ranking_box .fix_button .fix_next a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  color: #010101;
  font-size: 2rem;
  background-color: #F5F5F5;
}
article #realtime_ranking_box .fix_button .fix_back a {
  padding-right: 0.5rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 767px) and (orientation: portrait) {
  article #realtime_ranking_box .fix_button .fix_back a {
    padding: 1rem 0.5rem 1rem 0;
  }
}
article #realtime_ranking_box .fix_button .fix_back a:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 2px;
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: auto 10px;
  border-left: 4px solid #000000;
  border-bottom: 4px solid #000000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media (max-width: 767px) and (orientation: portrait) {
  article #realtime_ranking_box .fix_button .fix_back a:after {
    width: 4vw;
    height: 4vw;
  }
}
article #realtime_ranking_box .fix_button .fix_next a {
  padding-left: 0.5rem;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media (max-width: 767px) and (orientation: portrait) {
  article #realtime_ranking_box .fix_button .fix_next a {
    padding: 1rem 0 1rem 0.5rem;
  }
}
article #realtime_ranking_box .fix_button .fix_next a:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2px;
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: auto 10px;
  border-top: 4px solid #000;
  border-right: 4px solid #000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media (max-width: 767px) and (orientation: portrait) {
  article #realtime_ranking_box .fix_button .fix_next a:after {
    width: 4vw;
    height: 4vw;
  }
}
article #realtime_ranking_box .rank_nashi {
  height: 100%;
  padding: 10em 0 25em 0;
  line-height: 1.4em;
  font-size: 3em;
  color: #CFCFCF;
}
article #realtime_ranking_box .rank_waku {
  position: relative;
  /*ランキングNo.1*/
  /*ランキングNo.2,3*/
  /*ランキングNo.4,5,6*/
  /*ランキングNo.7,8,9,10*/
}
article #realtime_ranking_box .rank_waku a {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 2/3;
}
article #realtime_ranking_box .rank_waku a img {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2235294118);
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2235294118);
  -o-object-fit: cover;
     object-fit: cover;
}
article #realtime_ranking_box .rank_waku .rank_profile_area {
  position: relative;
  width: 100%;
  vertical-align: top;
  text-align: left;
  color: #F0F0F0;
}
article #realtime_ranking_box .rank_waku .rank_profile_area .rank_icon {
  position: absolute;
}
article #realtime_ranking_box .rank_waku .rank_profile_area .rank_icon img {
  width: 100% !important;
  height: auto !important;
  -webkit-box-shadow: unset !important;
          box-shadow: unset !important;
}
article #realtime_ranking_box .rank_waku .rank_profile_area .rank_shop {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0.5rem 1rem;
  color: #F0F0F0;
  font-size: 1.4vw;
  font-weight: 400;
  font-family: "didot";
  border-radius: 3px;
  /*福岡ホットポイント*/
  /*ホットポイントヴィラ*/
  /*メンバーズホットポイント*/
}
article #realtime_ranking_box .rank_waku .rank_profile_area .rank_shop.hot {
  background-color: #00A0C6;
}
article #realtime_ranking_box .rank_waku .rank_profile_area .rank_shop.villa {
  background-color: #d0a5d8;
}
article #realtime_ranking_box .rank_waku .rank_profile_area .rank_shop.members {
  background-color: #d4356f;
}
article #realtime_ranking_box .rank_waku .rank_profile_area .rank_name {
  width: 100%;
  height: auto;
  margin: 1rem 0 0 0;
  font-size: clamp(16px, 2vw, 30px);
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}
article #realtime_ranking_box .rank_waku .rank_profile_area .rank_name span {
  display: inline-block;
  margin: 0 0 0 0.5rem;
  letter-spacing: -0.05em;
  font-size: clamp(14px, 1.6vw, 24px);
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  /*年齢：〇代前半 or 後半表示*/
}
article #realtime_ranking_box .rank_waku .rank_profile_area .rank_name span.age_about_box {
  font-size: clamp(14px, 1.4vw, 20px);
}
article #realtime_ranking_box .rank_waku .rank_profile_area .rank_name span.age_about_box span {
  display: inline-block;
  height: auto;
  margin: 0px 0px 0px 2px;
  vertical-align: baseline;
  font-size: clamp(14px, 1.4vw, 20px);
}
article #realtime_ranking_box .rank_waku .rank_profile_area .rank_name span span {
  font-size: clamp(14px, 1.4vw, 20px);
}
article #realtime_ranking_box .rank_waku .rank_profile_area .rank_size {
  width: 100%;
  margin: 1rem 0 0 0;
  letter-spacing: 0.01em;
  font-size: clamp(14px, 1.6vw, 20px);
  font-family: "Oswald", sans-serif;
}
article #realtime_ranking_box .rank_waku .rank_profile_area .rank_size span {
  font-size: clamp(14px, 1.4vw, 20px);
}
article #realtime_ranking_box .rank_waku .rank_profile_area .rank_schedule {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
article #realtime_ranking_box .rank_waku .rank_profile_area .rank_schedule .att_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0.05em;
  text-align: center;
  font-family: "Lato", "Noto Sans JP", sans-serif;
  /*通常出勤*/
  /*出勤開始時間*/
  /*出勤時間連結用「▼」*/
  /*出勤終了時間*/
  /*途中休憩有り*/
  /*TEL確認／公休日／届出休*/
  /*出勤入力無し*/
}
article #realtime_ranking_box .rank_waku .rank_profile_area .rank_schedule .att_box:nth-of-type(1) {
  color: #4D4D4D;
  background-color: #D3D3D3;
}
article #realtime_ranking_box .rank_waku .rank_profile_area .rank_schedule .att_box:nth-of-type(1) .waku_brin &gt; hr {
  border: none;
  border-bottom: dashed 2px #4D4D4D;
}
article #realtime_ranking_box .rank_waku .rank_profile_area .rank_schedule .att_box:nth-of-type(2), article #realtime_ranking_box .rank_waku .rank_profile_area .rank_schedule .att_box:nth-of-type(3) {
  color: #F0F0F0;
  background-color: #4D4D4D;
}
article #realtime_ranking_box .rank_waku .rank_profile_area .rank_schedule .att_box:nth-of-type(2) .waku_brin &gt; hr, article #realtime_ranking_box .rank_waku .rank_profile_area .rank_schedule .att_box:nth-of-type(3) .waku_brin &gt; hr {
  border: none;
  border-bottom: dashed 2px #F0F0F0;
}
article #realtime_ranking_box .rank_waku .rank_profile_area .rank_schedule .att_box .day {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0.6rem 0;
  font-size: 2.4rem;
}
article #realtime_ranking_box .rank_waku .rank_profile_area .rank_schedule .att_box .week {
  display: inline-block;
  margin: 0 0 0 0.2rem;
  font-size: 1.4rem;
}
article #realtime_ranking_box .rank_waku .rank_profile_area .rank_schedule .att_box .sat {
  color: #3FB4FF;
}
article #realtime_ranking_box .rank_waku .rank_profile_area .rank_schedule .att_box .sun {
  color: #FF448E;
}
article #realtime_ranking_box .rank_waku .rank_profile_area .rank_schedule .att_box .waku_normal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  font-size: 1.8rem;
}
article #realtime_ranking_box .rank_waku .rank_profile_area .rank_schedule .att_box .s_in_time {
  display: inline-block;
  position: relative;
  width: auto;
  padding: 0px 10px 0px 0px;
  font-size: 1.8rem;
}
article #realtime_ranking_box .rank_waku .rank_profile_area .rank_schedule .att_box .s_in_time:after {
  content: "&gt;";
  display: block;
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0px;
  width: 10px;
  height: 20px;
  margin: auto 0px;
  line-height: 20px;
  font-size: 1.4rem;
}
article #realtime_ranking_box .rank_waku .rank_profile_area .rank_schedule .att_box .waku_normal &gt; .s_arrow {
  display: none;
  margin: 10px auto;
}
article #realtime_ranking_box .rank_waku .rank_profile_area .rank_schedule .att_box .waku_brin &gt; .s_arrow {
  display: none;
  margin: 5px auto;
}
article #realtime_ranking_box .rank_waku .rank_profile_area .rank_schedule .att_box .s_out_time {
  display: inline-block;
  width: auto;
  font-size: 1.8rem;
}
article #realtime_ranking_box .rank_waku .rank_profile_area .rank_schedule .att_box .waku_brin {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding: 10px 0px;
}
article #realtime_ranking_box .rank_waku .rank_profile_area .rank_schedule .att_box .waku_oneline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  font-size: 1.8rem;
}
article #realtime_ranking_box .rank_waku .rank_profile_area .rank_schedule .att_box .waku_oneline span {
  font-size: 1.8rem;
}
article #realtime_ranking_box .rank_waku .rank_profile_area .rank_schedule .att_box .waku_noatt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  font-size: 1.8rem;
}
article #realtime_ranking_box .rank_waku.waku_no1 {
  width: 60rem;
  max-width: 600px;
  margin: 2vw auto;
}
article #realtime_ranking_box .rank_waku.waku_no1 .rank_profile_area {
  height: 12rem;
  padding: 1rem 0 0 1rem;
}
article #realtime_ranking_box .rank_waku.waku_no1 .rank_icon {
  top: -180px;
  left: 20px;
  width: 12vw;
  height: auto;
  max-width: 147px;
}
article #realtime_ranking_box .rank_waku.waku_no1 .rank_shop {
  font-size: clamp(14px, 1.4vw, 18px);
}
article #realtime_ranking_box .rank_waku.waku_no1 .rank_name {
  font-size: clamp(16px, 3vw, 24px);
}
article #realtime_ranking_box .rank_waku.waku_no1 .rank_size {
  font-size: clamp(16px, 1.8vw, 22px);
}
article #realtime_ranking_box .rank_waku.waku_no1 .rank_schedule {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 60%;
}
article #realtime_ranking_box .rank_waku.waku_no1 .rank_schedule p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0px;
  right: 0px;
  width: 98.6%;
  height: 100%;
  margin: 0px;
  text-align: center;
  color: #F0F0F0;
  font-size: 2.4rem;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
}
article #realtime_ranking_box .rank_waku.waku_no1 .rank_schedule .att_box {
  width: 33.3333333333%;
  height: 100%;
  margin: 0 0 0 0.5rem;
  /*通常出勤*/
  /*途中休憩有り*/
  /*TEL確認／公休日／届出休*/
  /*出勤入力無し*/
}
article #realtime_ranking_box .rank_waku.waku_no1 .rank_schedule .att_box .day {
  font-size: 1.8rem;
}
article #realtime_ranking_box .rank_waku.waku_no1 .rank_schedule .att_box .waku_normal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 3rem 0;
}
article #realtime_ranking_box .rank_waku.waku_no1 .rank_schedule .att_box .s_in_time, article #realtime_ranking_box .rank_waku.waku_no1 .rank_schedule .att_box .s_out_time {
  font-size: 1.8rem;
}
article #realtime_ranking_box .rank_waku.waku_no1 .rank_schedule .att_box .waku_brin {
  height: 85px;
  padding: 10px 0px;
}
article #realtime_ranking_box .rank_waku.waku_no1 .rank_schedule .att_box .waku_brin &gt; hr {
  width: 50px;
  margin: 10px auto;
}
article #realtime_ranking_box .rank_waku.waku_no1 .rank_schedule .att_box .waku_oneline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 3rem 0;
}
article #realtime_ranking_box .rank_waku.waku_no1 .rank_schedule .att_box .waku_noatt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 3rem 0;
}
@media (max-width: 1024px) and (orientation: portrait) {
  article #realtime_ranking_box .rank_waku.waku_no1 .rank_profile_area {
    height: auto;
    padding: 1rem 0 0 0;
  }
  article #realtime_ranking_box .rank_waku.waku_no1 .rank_icon {
    top: -3vw;
    left: -10px;
    width: 10vw;
    height: auto;
    max-width: 131px;
  }
  article #realtime_ranking_box .rank_waku.waku_no1 .rank_shop, article #realtime_ranking_box .rank_waku.waku_no1 .rank_name, article #realtime_ranking_box .rank_waku.waku_no1 .rank_size {
    margin-left: clamp(70px, 10vw, 130px);
  }
  article #realtime_ranking_box .rank_waku.waku_no1 .rank_schedule {
    position: unset;
    width: 100%;
  }
  article #realtime_ranking_box .rank_waku.waku_no1 .rank_schedule p {
    width: 100%;
  }
  article #realtime_ranking_box .rank_waku.waku_no1 .rank_schedule .att_box {
    margin: 1rem 0 0 0;
  }
  article #realtime_ranking_box .rank_waku.waku_no1 .rank_schedule .att_box:nth-of-type(2) {
    margin: 1rem 0.5rem 0 0.5rem;
  }
  article #realtime_ranking_box .rank_waku.waku_no1 .rank_schedule .att_box .day {
    font-size: 2rem;
  }
}
@media (max-width: 767px) and (orientation: portrait) {
  article #realtime_ranking_box .rank_waku.waku_no1 {
    width: 100%;
    margin: 0 auto 2rem auto;
  }
  article #realtime_ranking_box .rank_waku.waku_no1 .rank_icon {
    top: -3vw;
    left: 2vw;
    width: 20vw;
  }
  article #realtime_ranking_box .rank_waku.waku_no1 .rank_shop, article #realtime_ranking_box .rank_waku.waku_no1 .rank_name, article #realtime_ranking_box .rank_waku.waku_no1 .rank_size {
    margin-left: clamp(90px, 20vw, 150px);
  }
  article #realtime_ranking_box .rank_waku.waku_no1 .rank_schedule .att_box .day {
    padding: 0.4rem 0;
  }
  article #realtime_ranking_box .rank_waku.waku_no1 .rank_schedule .att_box .waku_normal, article #realtime_ranking_box .rank_waku.waku_no1 .rank_schedule .att_box .waku_oneline, article #realtime_ranking_box .rank_waku.waku_no1 .rank_schedule .att_box .waku_noatt {
    padding: 2rem 0;
  }
}
article #realtime_ranking_box .rank_waku.waku_no2, article #realtime_ranking_box .rank_waku.waku_no3 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40rem;
  max-width: 400px;
  margin: 2vw 1vw;
}
@media (max-width: 1024px) and (orientation: portrait) {
  article #realtime_ranking_box .rank_waku.waku_no2, article #realtime_ranking_box .rank_waku.waku_no3 {
    width: 40vw;
  }
}
article #realtime_ranking_box .rank_waku.waku_no2 .rank_profile_area, article #realtime_ranking_box .rank_waku.waku_no3 .rank_profile_area {
  height: auto;
  padding: 1rem 0;
}
article #realtime_ranking_box .rank_waku.waku_no2 .rank_icon, article #realtime_ranking_box .rank_waku.waku_no3 .rank_icon {
  top: -3vw;
  left: -10px;
  width: 10vw;
  height: auto;
  max-width: 131px;
}
article #realtime_ranking_box .rank_waku.waku_no2 .rank_shop, article #realtime_ranking_box .rank_waku.waku_no2 .rank_name, article #realtime_ranking_box .rank_waku.waku_no2 .rank_size, article #realtime_ranking_box .rank_waku.waku_no3 .rank_shop, article #realtime_ranking_box .rank_waku.waku_no3 .rank_name, article #realtime_ranking_box .rank_waku.waku_no3 .rank_size {
  margin-left: clamp(70px, 10vw, 130px);
}
article #realtime_ranking_box .rank_waku.waku_no2 .rank_shop, article #realtime_ranking_box .rank_waku.waku_no3 .rank_shop {
  font-size: 1vw;
}
article #realtime_ranking_box .rank_waku.waku_no2 .rank_name, article #realtime_ranking_box .rank_waku.waku_no3 .rank_name {
  font-size: clamp(14px, 1.8vw, 20px);
}
article #realtime_ranking_box .rank_waku.waku_no2 .rank_size, article #realtime_ranking_box .rank_waku.waku_no3 .rank_size {
  font-size: clamp(14px, 1.4vw, 20px);
}
article #realtime_ranking_box .rank_waku.waku_no2 .rank_schedule, article #realtime_ranking_box .rank_waku.waku_no3 .rank_schedule {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
article #realtime_ranking_box .rank_waku.waku_no2 .rank_schedule p, article #realtime_ranking_box .rank_waku.waku_no3 .rank_schedule p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 1rem;
  right: 0px;
  width: 100%;
  height: calc(100% - 1rem);
  margin: 0px;
  text-align: center;
  color: #F0F0F0;
  font-size: 1.8rem;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
}
article #realtime_ranking_box .rank_waku.waku_no2 .rank_schedule .att_box, article #realtime_ranking_box .rank_waku.waku_no3 .rank_schedule .att_box {
  width: 33.3333333333%;
  height: 100%;
  margin: 1rem 0 0 0;
  /*通常出勤*/
  /*途中休憩有り*/
  /*TEL確認／公休日／届出休*/
  /*出勤入力無し*/
}
article #realtime_ranking_box .rank_waku.waku_no2 .rank_schedule .att_box:nth-of-type(2), article #realtime_ranking_box .rank_waku.waku_no3 .rank_schedule .att_box:nth-of-type(2) {
  margin: 1rem 0.5rem 0 0.5rem;
}
article #realtime_ranking_box .rank_waku.waku_no2 .rank_schedule .att_box .day, article #realtime_ranking_box .rank_waku.waku_no3 .rank_schedule .att_box .day {
  font-size: 1.8rem;
}
article #realtime_ranking_box .rank_waku.waku_no2 .rank_schedule .att_box .waku_normal, article #realtime_ranking_box .rank_waku.waku_no3 .rank_schedule .att_box .waku_normal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2rem 0;
}
article #realtime_ranking_box .rank_waku.waku_no2 .rank_schedule .att_box .s_in_time, article #realtime_ranking_box .rank_waku.waku_no2 .rank_schedule .att_box .s_out_time, article #realtime_ranking_box .rank_waku.waku_no3 .rank_schedule .att_box .s_in_time, article #realtime_ranking_box .rank_waku.waku_no3 .rank_schedule .att_box .s_out_time {
  font-size: 1.6rem;
}
article #realtime_ranking_box .rank_waku.waku_no2 .rank_schedule .att_box .waku_brin, article #realtime_ranking_box .rank_waku.waku_no3 .rank_schedule .att_box .waku_brin {
  height: 85px;
  padding: 10px 0px;
}
article #realtime_ranking_box .rank_waku.waku_no2 .rank_schedule .att_box .waku_brin &gt; hr, article #realtime_ranking_box .rank_waku.waku_no3 .rank_schedule .att_box .waku_brin &gt; hr {
  width: 50px;
  margin: 10px auto;
}
article #realtime_ranking_box .rank_waku.waku_no2 .rank_schedule .att_box .waku_oneline, article #realtime_ranking_box .rank_waku.waku_no3 .rank_schedule .att_box .waku_oneline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2rem 0;
}
article #realtime_ranking_box .rank_waku.waku_no2 .rank_schedule .att_box .waku_oneline span, article #realtime_ranking_box .rank_waku.waku_no3 .rank_schedule .att_box .waku_oneline span {
  font-size: 1.6rem;
}
article #realtime_ranking_box .rank_waku.waku_no2 .rank_schedule .att_box .waku_noatt, article #realtime_ranking_box .rank_waku.waku_no3 .rank_schedule .att_box .waku_noatt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2rem 0;
}
@media (max-width: 1024px) and (orientation: portrait) {
  article #realtime_ranking_box .rank_waku.waku_no2 .rank_schedule .att_box .day, article #realtime_ranking_box .rank_waku.waku_no3 .rank_schedule .att_box .day {
    font-size: 1.6rem;
  }
  article #realtime_ranking_box .rank_waku.waku_no2 .rank_schedule .s_in_time, article #realtime_ranking_box .rank_waku.waku_no2 .rank_schedule .s_out_time, article #realtime_ranking_box .rank_waku.waku_no3 .rank_schedule .s_in_time, article #realtime_ranking_box .rank_waku.waku_no3 .rank_schedule .s_out_time {
    font-size: 1.4rem;
  }
  article #realtime_ranking_box .rank_waku.waku_no2 .rank_schedule .waku_oneline span, article #realtime_ranking_box .rank_waku.waku_no3 .rank_schedule .waku_oneline span {
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) and (orientation: portrait) {
  article #realtime_ranking_box .rank_waku.waku_no2, article #realtime_ranking_box .rank_waku.waku_no3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 2rem auto;
    background-color: rgba(0, 0, 0, 0.2);
  }
  article #realtime_ranking_box .rank_waku.waku_no2 a, article #realtime_ranking_box .rank_waku.waku_no3 a {
    width: 50%;
  }
  article #realtime_ranking_box .rank_waku.waku_no2 .rank_profile_area, article #realtime_ranking_box .rank_waku.waku_no3 .rank_profile_area {
    width: 50%;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  article #realtime_ranking_box .rank_waku.waku_no2 .rank_icon, article #realtime_ranking_box .rank_waku.waku_no3 .rank_icon {
    left: -8vw;
    width: 16vw;
  }
  article #realtime_ranking_box .rank_waku.waku_no2 .rank_shop, article #realtime_ranking_box .rank_waku.waku_no2 .rank_name, article #realtime_ranking_box .rank_waku.waku_no2 .rank_size, article #realtime_ranking_box .rank_waku.waku_no3 .rank_shop, article #realtime_ranking_box .rank_waku.waku_no3 .rank_name, article #realtime_ranking_box .rank_waku.waku_no3 .rank_size {
    margin: 0 0 1rem 0;
    text-align: center;
  }
  article #realtime_ranking_box .rank_waku.waku_no2 .rank_shop, article #realtime_ranking_box .rank_waku.waku_no3 .rank_shop {
    margin-top: 2rem;
    font-size: 1.4rem;
  }
  article #realtime_ranking_box .rank_waku.waku_no2 .rank_schedule, article #realtime_ranking_box .rank_waku.waku_no3 .rank_schedule {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  article #realtime_ranking_box .rank_waku.waku_no2 .rank_schedule .att_box, article #realtime_ranking_box .rank_waku.waku_no3 .rank_schedule .att_box {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    width: 90%;
    height: 3rem;
  }
  article #realtime_ranking_box .rank_waku.waku_no2 .rank_schedule .att_box .day, article #realtime_ranking_box .rank_waku.waku_no3 .rank_schedule .att_box .day {
    width: 50%;
    font-size: 1.2rem;
  }
  article #realtime_ranking_box .rank_waku.waku_no2 .rank_schedule .att_box .day span, article #realtime_ranking_box .rank_waku.waku_no3 .rank_schedule .att_box .day span {
    font-size: 1rem;
  }
  article #realtime_ranking_box .rank_waku.waku_no2 .rank_schedule .att_box .s_in_time, article #realtime_ranking_box .rank_waku.waku_no2 .rank_schedule .att_box .s_out_time, article #realtime_ranking_box .rank_waku.waku_no3 .rank_schedule .att_box .s_in_time, article #realtime_ranking_box .rank_waku.waku_no3 .rank_schedule .att_box .s_out_time {
    font-size: 1.2rem;
  }
  article #realtime_ranking_box .rank_waku.waku_no2 .rank_schedule .att_box .waku_oneline span, article #realtime_ranking_box .rank_waku.waku_no3 .rank_schedule .att_box .waku_oneline span {
    font-size: 1.2rem;
  }
}
article #realtime_ranking_box .rank_waku.waku_no4, article #realtime_ranking_box .rank_waku.waku_no5, article #realtime_ranking_box .rank_waku.waku_no6 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30vw;
  max-width: 380px;
  margin: 2vw 1vw;
}
@media (max-width: 1024px) and (orientation: portrait) {
  article #realtime_ranking_box .rank_waku.waku_no4, article #realtime_ranking_box .rank_waku.waku_no5, article #realtime_ranking_box .rank_waku.waku_no6 {
    width: 30vw;
  }
}
article #realtime_ranking_box .rank_waku.waku_no4 .rank_profile_area, article #realtime_ranking_box .rank_waku.waku_no5 .rank_profile_area, article #realtime_ranking_box .rank_waku.waku_no6 .rank_profile_area {
  height: auto;
  padding: 1rem 0;
}
article #realtime_ranking_box .rank_waku.waku_no4 .rank_icon, article #realtime_ranking_box .rank_waku.waku_no5 .rank_icon, article #realtime_ranking_box .rank_waku.waku_no6 .rank_icon {
  top: -3vw;
  left: 10px;
  width: 9vw;
  height: auto;
  max-width: 120px;
}
article #realtime_ranking_box .rank_waku.waku_no4 .rank_shop, article #realtime_ranking_box .rank_waku.waku_no4 .rank_name, article #realtime_ranking_box .rank_waku.waku_no4 .rank_size, article #realtime_ranking_box .rank_waku.waku_no5 .rank_shop, article #realtime_ranking_box .rank_waku.waku_no5 .rank_name, article #realtime_ranking_box .rank_waku.waku_no5 .rank_size, article #realtime_ranking_box .rank_waku.waku_no6 .rank_shop, article #realtime_ranking_box .rank_waku.waku_no6 .rank_name, article #realtime_ranking_box .rank_waku.waku_no6 .rank_size {
  margin-left: clamp(90px, 11vw, 140px);
}
article #realtime_ranking_box .rank_waku.waku_no4 .rank_shop, article #realtime_ranking_box .rank_waku.waku_no5 .rank_shop, article #realtime_ranking_box .rank_waku.waku_no6 .rank_shop {
  font-size: 1vw;
}
article #realtime_ranking_box .rank_waku.waku_no4 .rank_name, article #realtime_ranking_box .rank_waku.waku_no5 .rank_name, article #realtime_ranking_box .rank_waku.waku_no6 .rank_name {
  font-size: clamp(14px, 1.8vw, 20px);
}
article #realtime_ranking_box .rank_waku.waku_no4 .rank_size, article #realtime_ranking_box .rank_waku.waku_no5 .rank_size, article #realtime_ranking_box .rank_waku.waku_no6 .rank_size {
  font-size: clamp(14px, 1.4vw, 20px);
}
article #realtime_ranking_box .rank_waku.waku_no4 .rank_schedule, article #realtime_ranking_box .rank_waku.waku_no5 .rank_schedule, article #realtime_ranking_box .rank_waku.waku_no6 .rank_schedule {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
article #realtime_ranking_box .rank_waku.waku_no4 .rank_schedule p, article #realtime_ranking_box .rank_waku.waku_no5 .rank_schedule p, article #realtime_ranking_box .rank_waku.waku_no6 .rank_schedule p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 1rem;
  right: 0px;
  width: 100%;
  height: calc(100% - 1rem);
  margin: 0px;
  text-align: center;
  color: #F0F0F0;
  font-size: 1.8rem;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
}
article #realtime_ranking_box .rank_waku.waku_no4 .rank_schedule .att_box, article #realtime_ranking_box .rank_waku.waku_no5 .rank_schedule .att_box, article #realtime_ranking_box .rank_waku.waku_no6 .rank_schedule .att_box {
  width: 33.3333333333%;
  height: 100%;
  margin: 1rem 0 0 0;
  /*通常出勤*/
  /*途中休憩有り*/
  /*TEL確認／公休日／届出休*/
  /*出勤入力無し*/
}
article #realtime_ranking_box .rank_waku.waku_no4 .rank_schedule .att_box:nth-of-type(2), article #realtime_ranking_box .rank_waku.waku_no5 .rank_schedule .att_box:nth-of-type(2), article #realtime_ranking_box .rank_waku.waku_no6 .rank_schedule .att_box:nth-of-type(2) {
  margin: 1rem 0.5rem 0 0.5rem;
}
article #realtime_ranking_box .rank_waku.waku_no4 .rank_schedule .att_box .day, article #realtime_ranking_box .rank_waku.waku_no5 .rank_schedule .att_box .day, article #realtime_ranking_box .rank_waku.waku_no6 .rank_schedule .att_box .day {
  font-size: 1.8rem;
}
article #realtime_ranking_box .rank_waku.waku_no4 .rank_schedule .att_box .waku_normal, article #realtime_ranking_box .rank_waku.waku_no5 .rank_schedule .att_box .waku_normal, article #realtime_ranking_box .rank_waku.waku_no6 .rank_schedule .att_box .waku_normal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2rem 0;
}
article #realtime_ranking_box .rank_waku.waku_no4 .rank_schedule .att_box .s_in_time, article #realtime_ranking_box .rank_waku.waku_no4 .rank_schedule .att_box .s_out_time, article #realtime_ranking_box .rank_waku.waku_no5 .rank_schedule .att_box .s_in_time, article #realtime_ranking_box .rank_waku.waku_no5 .rank_schedule .att_box .s_out_time, article #realtime_ranking_box .rank_waku.waku_no6 .rank_schedule .att_box .s_in_time, article #realtime_ranking_box .rank_waku.waku_no6 .rank_schedule .att_box .s_out_time {
  font-size: 1.6rem;
}
article #realtime_ranking_box .rank_waku.waku_no4 .rank_schedule .att_box .waku_brin, article #realtime_ranking_box .rank_waku.waku_no5 .rank_schedule .att_box .waku_brin, article #realtime_ranking_box .rank_waku.waku_no6 .rank_schedule .att_box .waku_brin {
  height: 85px;
  padding: 10px 0px;
}
article #realtime_ranking_box .rank_waku.waku_no4 .rank_schedule .att_box .waku_brin &gt; hr, article #realtime_ranking_box .rank_waku.waku_no5 .rank_schedule .att_box .waku_brin &gt; hr, article #realtime_ranking_box .rank_waku.waku_no6 .rank_schedule .att_box .waku_brin &gt; hr {
  width: 50px;
  margin: 10px auto;
}
article #realtime_ranking_box .rank_waku.waku_no4 .rank_schedule .att_box .waku_oneline, article #realtime_ranking_box .rank_waku.waku_no5 .rank_schedule .att_box .waku_oneline, article #realtime_ranking_box .rank_waku.waku_no6 .rank_schedule .att_box .waku_oneline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2rem 0;
}
article #realtime_ranking_box .rank_waku.waku_no4 .rank_schedule .att_box .waku_oneline span, article #realtime_ranking_box .rank_waku.waku_no5 .rank_schedule .att_box .waku_oneline span, article #realtime_ranking_box .rank_waku.waku_no6 .rank_schedule .att_box .waku_oneline span {
  font-size: 1.4rem;
}
article #realtime_ranking_box .rank_waku.waku_no4 .rank_schedule .att_box .waku_noatt, article #realtime_ranking_box .rank_waku.waku_no5 .rank_schedule .att_box .waku_noatt, article #realtime_ranking_box .rank_waku.waku_no6 .rank_schedule .att_box .waku_noatt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 2rem auto;
}
@media (max-width: 1024px) and (orientation: portrait) {
  article #realtime_ranking_box .rank_waku.waku_no4 .rank_schedule .att_box .day, article #realtime_ranking_box .rank_waku.waku_no5 .rank_schedule .att_box .day, article #realtime_ranking_box .rank_waku.waku_no6 .rank_schedule .att_box .day {
    font-size: 1.4rem;
  }
  article #realtime_ranking_box .rank_waku.waku_no4 .rank_schedule .s_in_time, article #realtime_ranking_box .rank_waku.waku_no4 .rank_schedule .s_out_time, article #realtime_ranking_box .rank_waku.waku_no5 .rank_schedule .s_in_time, article #realtime_ranking_box .rank_waku.waku_no5 .rank_schedule .s_out_time, article #realtime_ranking_box .rank_waku.waku_no6 .rank_schedule .s_in_time, article #realtime_ranking_box .rank_waku.waku_no6 .rank_schedule .s_out_time {
    font-size: 1.2rem !important;
  }
  article #realtime_ranking_box .rank_waku.waku_no4 .rank_schedule .waku_oneline span, article #realtime_ranking_box .rank_waku.waku_no5 .rank_schedule .waku_oneline span, article #realtime_ranking_box .rank_waku.waku_no6 .rank_schedule .waku_oneline span {
    font-size: 1.2rem !important;
  }
}
@media (max-width: 767px) and (orientation: portrait) {
  article #realtime_ranking_box .rank_waku.waku_no4, article #realtime_ranking_box .rank_waku.waku_no5, article #realtime_ranking_box .rank_waku.waku_no6 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 2rem auto;
    background-color: rgba(0, 0, 0, 0.2);
  }
  article #realtime_ranking_box .rank_waku.waku_no4 a, article #realtime_ranking_box .rank_waku.waku_no5 a, article #realtime_ranking_box .rank_waku.waku_no6 a {
    width: 45%;
  }
  article #realtime_ranking_box .rank_waku.waku_no4 .rank_profile_area, article #realtime_ranking_box .rank_waku.waku_no5 .rank_profile_area, article #realtime_ranking_box .rank_waku.waku_no6 .rank_profile_area {
    width: 55%;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  article #realtime_ranking_box .rank_waku.waku_no4 .rank_icon, article #realtime_ranking_box .rank_waku.waku_no5 .rank_icon, article #realtime_ranking_box .rank_waku.waku_no6 .rank_icon {
    left: -8vw;
    width: 16vw;
  }
  article #realtime_ranking_box .rank_waku.waku_no4 .rank_shop, article #realtime_ranking_box .rank_waku.waku_no4 .rank_name, article #realtime_ranking_box .rank_waku.waku_no4 .rank_size, article #realtime_ranking_box .rank_waku.waku_no5 .rank_shop, article #realtime_ranking_box .rank_waku.waku_no5 .rank_name, article #realtime_ranking_box .rank_waku.waku_no5 .rank_size, article #realtime_ranking_box .rank_waku.waku_no6 .rank_shop, article #realtime_ranking_box .rank_waku.waku_no6 .rank_name, article #realtime_ranking_box .rank_waku.waku_no6 .rank_size {
    margin: 0 0 1rem 0;
    text-align: center;
  }
  article #realtime_ranking_box .rank_waku.waku_no4 .rank_shop, article #realtime_ranking_box .rank_waku.waku_no5 .rank_shop, article #realtime_ranking_box .rank_waku.waku_no6 .rank_shop {
    margin-top: 2rem;
    font-size: 1.4rem;
  }
  article #realtime_ranking_box .rank_waku.waku_no4 .rank_schedule, article #realtime_ranking_box .rank_waku.waku_no5 .rank_schedule, article #realtime_ranking_box .rank_waku.waku_no6 .rank_schedule {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  article #realtime_ranking_box .rank_waku.waku_no4 .rank_schedule .att_box, article #realtime_ranking_box .rank_waku.waku_no5 .rank_schedule .att_box, article #realtime_ranking_box .rank_waku.waku_no6 .rank_schedule .att_box {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    width: 90%;
    height: 3rem;
  }
  article #realtime_ranking_box .rank_waku.waku_no4 .rank_schedule .att_box .day, article #realtime_ranking_box .rank_waku.waku_no5 .rank_schedule .att_box .day, article #realtime_ranking_box .rank_waku.waku_no6 .rank_schedule .att_box .day {
    width: 50%;
    font-size: 1.2rem;
  }
  article #realtime_ranking_box .rank_waku.waku_no4 .rank_schedule .att_box .day span, article #realtime_ranking_box .rank_waku.waku_no5 .rank_schedule .att_box .day span, article #realtime_ranking_box .rank_waku.waku_no6 .rank_schedule .att_box .day span {
    font-size: 1rem;
  }
  article #realtime_ranking_box .rank_waku.waku_no4 .rank_schedule .att_box .s_in_time, article #realtime_ranking_box .rank_waku.waku_no4 .rank_schedule .att_box .s_out_time, article #realtime_ranking_box .rank_waku.waku_no5 .rank_schedule .att_box .s_in_time, article #realtime_ranking_box .rank_waku.waku_no5 .rank_schedule .att_box .s_out_time, article #realtime_ranking_box .rank_waku.waku_no6 .rank_schedule .att_box .s_in_time, article #realtime_ranking_box .rank_waku.waku_no6 .rank_schedule .att_box .s_out_time {
    font-size: 1.2rem;
  }
  article #realtime_ranking_box .rank_waku.waku_no4 .rank_schedule .att_box .waku_oneline span, article #realtime_ranking_box .rank_waku.waku_no5 .rank_schedule .att_box .waku_oneline span, article #realtime_ranking_box .rank_waku.waku_no6 .rank_schedule .att_box .waku_oneline span {
    font-size: 1.2rem;
  }
}
article #realtime_ranking_box .rank_waku.waku_no7, article #realtime_ranking_box .rank_waku.waku_no8, article #realtime_ranking_box .rank_waku.waku_no9, article #realtime_ranking_box .rank_waku.waku_no10 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  width: 45vw;
  max-width: 780px;
  margin: 2vw 0.5vw;
  background-color: rgba(0, 0, 0, 0.2);
}
article #realtime_ranking_box .rank_waku.waku_no7 a, article #realtime_ranking_box .rank_waku.waku_no8 a, article #realtime_ranking_box .rank_waku.waku_no9 a, article #realtime_ranking_box .rank_waku.waku_no10 a {
  width: 55%;
}
@media (max-width: 1024px) and (orientation: portrait) {
  article #realtime_ranking_box .rank_waku.waku_no7 a, article #realtime_ranking_box .rank_waku.waku_no8 a, article #realtime_ranking_box .rank_waku.waku_no9 a, article #realtime_ranking_box .rank_waku.waku_no10 a {
    width: 45vw;
  }
}
article #realtime_ranking_box .rank_waku.waku_no7 .rank_profile_area, article #realtime_ranking_box .rank_waku.waku_no8 .rank_profile_area, article #realtime_ranking_box .rank_waku.waku_no9 .rank_profile_area, article #realtime_ranking_box .rank_waku.waku_no10 .rank_profile_area {
  position: unset;
  height: auto;
}
article #realtime_ranking_box .rank_waku.waku_no7 .rank_icon, article #realtime_ranking_box .rank_waku.waku_no8 .rank_icon, article #realtime_ranking_box .rank_waku.waku_no9 .rank_icon, article #realtime_ranking_box .rank_waku.waku_no10 .rank_icon {
  top: -1vw;
  right: 5px;
  width: 8vw;
  height: auto;
  max-width: 110px;
}
article #realtime_ranking_box .rank_waku.waku_no7 .rank_shop, article #realtime_ranking_box .rank_waku.waku_no7 .rank_name, article #realtime_ranking_box .rank_waku.waku_no7 .rank_size, article #realtime_ranking_box .rank_waku.waku_no8 .rank_shop, article #realtime_ranking_box .rank_waku.waku_no8 .rank_name, article #realtime_ranking_box .rank_waku.waku_no8 .rank_size, article #realtime_ranking_box .rank_waku.waku_no9 .rank_shop, article #realtime_ranking_box .rank_waku.waku_no9 .rank_name, article #realtime_ranking_box .rank_waku.waku_no9 .rank_size, article #realtime_ranking_box .rank_waku.waku_no10 .rank_shop, article #realtime_ranking_box .rank_waku.waku_no10 .rank_name, article #realtime_ranking_box .rank_waku.waku_no10 .rank_size {
  margin-left: 1rem;
}
article #realtime_ranking_box .rank_waku.waku_no7 .rank_shop, article #realtime_ranking_box .rank_waku.waku_no8 .rank_shop, article #realtime_ranking_box .rank_waku.waku_no9 .rank_shop, article #realtime_ranking_box .rank_waku.waku_no10 .rank_shop {
  font-size: 1vw;
  margin-bottom: 1rem;
}
article #realtime_ranking_box .rank_waku.waku_no7 .rank_name, article #realtime_ranking_box .rank_waku.waku_no8 .rank_name, article #realtime_ranking_box .rank_waku.waku_no9 .rank_name, article #realtime_ranking_box .rank_waku.waku_no10 .rank_name {
  font-size: clamp(14px, 1.8vw, 20px);
  margin-bottom: 1rem;
}
article #realtime_ranking_box .rank_waku.waku_no7 .rank_size, article #realtime_ranking_box .rank_waku.waku_no8 .rank_size, article #realtime_ranking_box .rank_waku.waku_no9 .rank_size, article #realtime_ranking_box .rank_waku.waku_no10 .rank_size {
  font-size: clamp(14px, 1.4vw, 20px);
  margin-bottom: 4rem;
}
article #realtime_ranking_box .rank_waku.waku_no7 .rank_schedule, article #realtime_ranking_box .rank_waku.waku_no8 .rank_schedule, article #realtime_ranking_box .rank_waku.waku_no9 .rank_schedule, article #realtime_ranking_box .rank_waku.waku_no10 .rank_schedule {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
article #realtime_ranking_box .rank_waku.waku_no7 .rank_schedule p, article #realtime_ranking_box .rank_waku.waku_no8 .rank_schedule p, article #realtime_ranking_box .rank_waku.waku_no9 .rank_schedule p, article #realtime_ranking_box .rank_waku.waku_no10 .rank_schedule p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 1rem;
  right: 0px;
  width: 100%;
  height: calc(100% - 1rem);
  margin: 0px;
  text-align: center;
  color: #F0F0F0;
  font-size: 1.8rem;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
}
article #realtime_ranking_box .rank_waku.waku_no7 .rank_schedule .att_box, article #realtime_ranking_box .rank_waku.waku_no8 .rank_schedule .att_box, article #realtime_ranking_box .rank_waku.waku_no9 .rank_schedule .att_box, article #realtime_ranking_box .rank_waku.waku_no10 .rank_schedule .att_box {
  width: 33.3333333333%;
  height: 100%;
  margin: 1rem 0.5rem 0 0.5rem;
  /*通常出勤*/
  /*途中休憩有り*/
  /*TEL確認／公休日／届出休*/
  /*出勤入力無し*/
}
article #realtime_ranking_box .rank_waku.waku_no7 .rank_schedule .att_box .day, article #realtime_ranking_box .rank_waku.waku_no8 .rank_schedule .att_box .day, article #realtime_ranking_box .rank_waku.waku_no9 .rank_schedule .att_box .day, article #realtime_ranking_box .rank_waku.waku_no10 .rank_schedule .att_box .day {
  font-size: 1.4rem;
}
article #realtime_ranking_box .rank_waku.waku_no7 .rank_schedule .att_box .waku_normal, article #realtime_ranking_box .rank_waku.waku_no8 .rank_schedule .att_box .waku_normal, article #realtime_ranking_box .rank_waku.waku_no9 .rank_schedule .att_box .waku_normal, article #realtime_ranking_box .rank_waku.waku_no10 .rank_schedule .att_box .waku_normal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2rem 0;
}
article #realtime_ranking_box .rank_waku.waku_no7 .rank_schedule .att_box .s_in_time, article #realtime_ranking_box .rank_waku.waku_no7 .rank_schedule .att_box .s_out_time, article #realtime_ranking_box .rank_waku.waku_no8 .rank_schedule .att_box .s_in_time, article #realtime_ranking_box .rank_waku.waku_no8 .rank_schedule .att_box .s_out_time, article #realtime_ranking_box .rank_waku.waku_no9 .rank_schedule .att_box .s_in_time, article #realtime_ranking_box .rank_waku.waku_no9 .rank_schedule .att_box .s_out_time, article #realtime_ranking_box .rank_waku.waku_no10 .rank_schedule .att_box .s_in_time, article #realtime_ranking_box .rank_waku.waku_no10 .rank_schedule .att_box .s_out_time {
  font-size: 1.4rem;
}
article #realtime_ranking_box .rank_waku.waku_no7 .rank_schedule .att_box .waku_brin, article #realtime_ranking_box .rank_waku.waku_no8 .rank_schedule .att_box .waku_brin, article #realtime_ranking_box .rank_waku.waku_no9 .rank_schedule .att_box .waku_brin, article #realtime_ranking_box .rank_waku.waku_no10 .rank_schedule .att_box .waku_brin {
  height: 85px;
  padding: 10px 0px;
}
article #realtime_ranking_box .rank_waku.waku_no7 .rank_schedule .att_box .waku_brin &gt; hr, article #realtime_ranking_box .rank_waku.waku_no8 .rank_schedule .att_box .waku_brin &gt; hr, article #realtime_ranking_box .rank_waku.waku_no9 .rank_schedule .att_box .waku_brin &gt; hr, article #realtime_ranking_box .rank_waku.waku_no10 .rank_schedule .att_box .waku_brin &gt; hr {
  width: 50px;
  margin: 10px auto;
}
article #realtime_ranking_box .rank_waku.waku_no7 .rank_schedule .att_box .waku_oneline, article #realtime_ranking_box .rank_waku.waku_no8 .rank_schedule .att_box .waku_oneline, article #realtime_ranking_box .rank_waku.waku_no9 .rank_schedule .att_box .waku_oneline, article #realtime_ranking_box .rank_waku.waku_no10 .rank_schedule .att_box .waku_oneline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2rem 0;
  font-size: 1.4rem;
}
article #realtime_ranking_box .rank_waku.waku_no7 .rank_schedule .att_box .waku_oneline span, article #realtime_ranking_box .rank_waku.waku_no8 .rank_schedule .att_box .waku_oneline span, article #realtime_ranking_box .rank_waku.waku_no9 .rank_schedule .att_box .waku_oneline span, article #realtime_ranking_box .rank_waku.waku_no10 .rank_schedule .att_box .waku_oneline span {
  font-size: 1.4rem;
}
article #realtime_ranking_box .rank_waku.waku_no7 .rank_schedule .att_box .waku_noatt, article #realtime_ranking_box .rank_waku.waku_no8 .rank_schedule .att_box .waku_noatt, article #realtime_ranking_box .rank_waku.waku_no9 .rank_schedule .att_box .waku_noatt, article #realtime_ranking_box .rank_waku.waku_no10 .rank_schedule .att_box .waku_noatt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2rem 0;
}
@media (max-width: 1300px) {
  article #realtime_ranking_box .rank_waku.waku_no7 .rank_profile_area, article #realtime_ranking_box .rank_waku.waku_no8 .rank_profile_area, article #realtime_ranking_box .rank_waku.waku_no9 .rank_profile_area, article #realtime_ranking_box .rank_waku.waku_no10 .rank_profile_area {
    width: 120%;
  }
}
@media (max-width: 1024px) and (orientation: portrait) {
  article #realtime_ranking_box .rank_waku.waku_no7 .rank_profile_area, article #realtime_ranking_box .rank_waku.waku_no8 .rank_profile_area, article #realtime_ranking_box .rank_waku.waku_no9 .rank_profile_area, article #realtime_ranking_box .rank_waku.waku_no10 .rank_profile_area {
    width: 150%;
  }
  article #realtime_ranking_box .rank_waku.waku_no7 .rank_shop, article #realtime_ranking_box .rank_waku.waku_no7 .rank_size, article #realtime_ranking_box .rank_waku.waku_no8 .rank_shop, article #realtime_ranking_box .rank_waku.waku_no8 .rank_size, article #realtime_ranking_box .rank_waku.waku_no9 .rank_shop, article #realtime_ranking_box .rank_waku.waku_no9 .rank_size, article #realtime_ranking_box .rank_waku.waku_no10 .rank_shop, article #realtime_ranking_box .rank_waku.waku_no10 .rank_size {
    margin-bottom: 0;
  }
  article #realtime_ranking_box .rank_waku.waku_no7 .rank_schedule, article #realtime_ranking_box .rank_waku.waku_no8 .rank_schedule, article #realtime_ranking_box .rank_waku.waku_no9 .rank_schedule, article #realtime_ranking_box .rank_waku.waku_no10 .rank_schedule {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  article #realtime_ranking_box .rank_waku.waku_no7 .rank_schedule .att_box, article #realtime_ranking_box .rank_waku.waku_no8 .rank_schedule .att_box, article #realtime_ranking_box .rank_waku.waku_no9 .rank_schedule .att_box, article #realtime_ranking_box .rank_waku.waku_no10 .rank_schedule .att_box {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    width: 90%;
    height: 3.4rem;
  }
  article #realtime_ranking_box .rank_waku.waku_no7 .rank_schedule .att_box .day, article #realtime_ranking_box .rank_waku.waku_no8 .rank_schedule .att_box .day, article #realtime_ranking_box .rank_waku.waku_no9 .rank_schedule .att_box .day, article #realtime_ranking_box .rank_waku.waku_no10 .rank_schedule .att_box .day {
    width: 50%;
    font-size: 1.2rem;
  }
  article #realtime_ranking_box .rank_waku.waku_no7 .rank_schedule .att_box .day span, article #realtime_ranking_box .rank_waku.waku_no8 .rank_schedule .att_box .day span, article #realtime_ranking_box .rank_waku.waku_no9 .rank_schedule .att_box .day span, article #realtime_ranking_box .rank_waku.waku_no10 .rank_schedule .att_box .day span {
    font-size: 1rem;
  }
  article #realtime_ranking_box .rank_waku.waku_no7 .rank_schedule .att_box .s_in_time, article #realtime_ranking_box .rank_waku.waku_no7 .rank_schedule .att_box .s_out_time, article #realtime_ranking_box .rank_waku.waku_no8 .rank_schedule .att_box .s_in_time, article #realtime_ranking_box .rank_waku.waku_no8 .rank_schedule .att_box .s_out_time, article #realtime_ranking_box .rank_waku.waku_no9 .rank_schedule .att_box .s_in_time, article #realtime_ranking_box .rank_waku.waku_no9 .rank_schedule .att_box .s_out_time, article #realtime_ranking_box .rank_waku.waku_no10 .rank_schedule .att_box .s_in_time, article #realtime_ranking_box .rank_waku.waku_no10 .rank_schedule .att_box .s_out_time {
    font-size: 1.2rem;
  }
  article #realtime_ranking_box .rank_waku.waku_no7 .rank_schedule .att_box .waku_oneline span, article #realtime_ranking_box .rank_waku.waku_no8 .rank_schedule .att_box .waku_oneline span, article #realtime_ranking_box .rank_waku.waku_no9 .rank_schedule .att_box .waku_oneline span, article #realtime_ranking_box .rank_waku.waku_no10 .rank_schedule .att_box .waku_oneline span {
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) and (orientation: portrait) {
  article #realtime_ranking_box .rank_waku.waku_no7, article #realtime_ranking_box .rank_waku.waku_no8, article #realtime_ranking_box .rank_waku.waku_no9, article #realtime_ranking_box .rank_waku.waku_no10 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 2rem auto;
  }
  article #realtime_ranking_box .rank_waku.waku_no7 a, article #realtime_ranking_box .rank_waku.waku_no8 a, article #realtime_ranking_box .rank_waku.waku_no9 a, article #realtime_ranking_box .rank_waku.waku_no10 a {
    width: 45%;
  }
  article #realtime_ranking_box .rank_waku.waku_no7 .rank_profile_area, article #realtime_ranking_box .rank_waku.waku_no8 .rank_profile_area, article #realtime_ranking_box .rank_waku.waku_no9 .rank_profile_area, article #realtime_ranking_box .rank_waku.waku_no10 .rank_profile_area {
    width: 55%;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  article #realtime_ranking_box .rank_waku.waku_no7 .rank_icon, article #realtime_ranking_box .rank_waku.waku_no8 .rank_icon, article #realtime_ranking_box .rank_waku.waku_no9 .rank_icon, article #realtime_ranking_box .rank_waku.waku_no10 .rank_icon {
    top: -3vw;
    left: -8vw;
    right: 0;
    width: 16vw;
    margin: 0 auto;
  }
  article #realtime_ranking_box .rank_waku.waku_no7 .rank_shop, article #realtime_ranking_box .rank_waku.waku_no7 .rank_name, article #realtime_ranking_box .rank_waku.waku_no7 .rank_size, article #realtime_ranking_box .rank_waku.waku_no8 .rank_shop, article #realtime_ranking_box .rank_waku.waku_no8 .rank_name, article #realtime_ranking_box .rank_waku.waku_no8 .rank_size, article #realtime_ranking_box .rank_waku.waku_no9 .rank_shop, article #realtime_ranking_box .rank_waku.waku_no9 .rank_name, article #realtime_ranking_box .rank_waku.waku_no9 .rank_size, article #realtime_ranking_box .rank_waku.waku_no10 .rank_shop, article #realtime_ranking_box .rank_waku.waku_no10 .rank_name, article #realtime_ranking_box .rank_waku.waku_no10 .rank_size {
    margin: 0 0 1rem 0;
    text-align: center;
  }
  article #realtime_ranking_box .rank_waku.waku_no7 .rank_shop, article #realtime_ranking_box .rank_waku.waku_no8 .rank_shop, article #realtime_ranking_box .rank_waku.waku_no9 .rank_shop, article #realtime_ranking_box .rank_waku.waku_no10 .rank_shop {
    margin-top: 2rem;
    font-size: 1.4rem;
  }
  article #realtime_ranking_box .rank_waku.waku_no7 .rank_schedule .att_box, article #realtime_ranking_box .rank_waku.waku_no8 .rank_schedule .att_box, article #realtime_ranking_box .rank_waku.waku_no9 .rank_schedule .att_box, article #realtime_ranking_box .rank_waku.waku_no10 .rank_schedule .att_box {
    height: 3rem;
  }
}

/*==========================================================
    フッター
==========================================================*/
.ShopLink {
  position: relative;
  width: 100%;
  padding: 3rem 0 2rem;
  z-index: 0;
}
@media (max-width: 767px) and (orientation: portrait) {
  .ShopLink.top {
    padding: 0;
  }
}
.ShopLink.top .sp_link_top {
  display: none;
}
@media (max-width: 767px) and (orientation: portrait) {
  .ShopLink.top ul {
    margin-top: unset;
  }
}
.ShopLink.sp {
  display: none;
}
@media (max-width: 767px) and (orientation: portrait) {
  .ShopLink.sp {
    display: block;
  }
}
.ShopLink::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/footer_bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-filter: brightness(0.82) saturate(0%);
          filter: brightness(0.82) saturate(0%);
  z-index: -1;
}
@media (max-width: 767px) and (orientation: portrait) {
  .ShopLink::after {
    display: none;
  }
}
@media (max-width: 1024px) and (orientation: portrait) {
  .ShopLink {
    padding: 3vw 0;
  }
}
@media (max-width: 767px) and (orientation: portrait) {
  .ShopLink {
    background: #010101;
    padding: 3vw 1vw 0;
  }
}
.ShopLink .sp_link_top {
  display: none;
}
@media (max-width: 767px) and (orientation: portrait) {
  .ShopLink .sp_link_top {
    display: block;
    position: absolute;
    background-color: #010101;
    border-top-left-radius: 10vw;
    border-top-right-radius: 10vw;
    color: #FCFCFC;
    padding-top: 5vw;
    font-size: 2.6vw;
    text-align: center;
    text-transform: uppercase;
    top: -9vw;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 20vw;
    height: 12vw;
  }
}
.ShopLink .area_title {
  font-family: "Bebas Neue", cursive;
  font-weight: 500;
  font-style: normal;
  text-align: center;
  color: #FCFCFC;
  text-transform: uppercase;
  font-size: 6rem;
  letter-spacing: 0.02em;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .ShopLink .area_title {
    font-size: 6vw;
    letter-spacing: -0.05em;
  }
}
@media (max-width: 767px) and (orientation: portrait) {
  .ShopLink .area_title {
    display: none;
  }
}
.ShopLink ul {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2rem;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .ShopLink ul {
    margin-top: 2vw;
  }
}
@media (max-width: 767px) and (orientation: portrait) {
  .ShopLink ul {
    display: grid;
    grid-template-columns: repeat(2, 50%);
    padding: 0 1vw;
    gap: 1vw;
    margin-top: 3vw;
  }
}
.ShopLink ul li {
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) and (orientation: portrait) {
  .ShopLink ul li {
    width: 100%;
    padding: 3vw 0;
  }
  .ShopLink ul li.members {
    background-color: #d4356f;
  }
  .ShopLink ul li.fukuoka {
    background-color: #00A0C6;
  }
  .ShopLink ul li.villa {
    background-color: #d0a5d8;
  }
}
.ShopLink ul li div {
  width: 100%;
  background-color: #FCFCFC;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10em 0;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .ShopLink ul li div {
    padding: 4vw 0;
  }
}
@media (max-width: 767px) and (orientation: portrait) {
  .ShopLink ul li div {
    background-color: unset;
  }
}
.ShopLink ul li div img {
  width: 70%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .ShopLink ul li div img {
    width: 90%;
  }
}
@media (max-width: 767px) and (orientation: portrait) {
  .ShopLink ul li div img {
    width: 90%;
    -webkit-filter: brightness(0) invert(100%);
            filter: brightness(0) invert(100%);
  }
}
.ShopLink ul li.center {
  margin: 0 6em;
}
@media (max-width: 767px) and (orientation: portrait) {
  .ShopLink ul li.center {
    margin: unset;
  }
}
.ShopLink ul li p {
  font-size: 1.6rem;
  color: #FCFCFC;
  font-weight: 700;
  margin: 0.5em 0 0.3em;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .ShopLink ul li p {
    margin: 0.5vw 0 0.2vw;
  }
}
@media (max-width: 767px) and (orientation: portrait) {
  .ShopLink ul li p {
    font-size: 2.4vw;
  }
}
.ShopLink ul li .tel {
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  font-weight: 500;
  color: #FCFCFC;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .ShopLink ul li .tel {
    font-size: 2vw;
  }
}
@media (max-width: 767px) and (orientation: portrait) {
  .ShopLink ul li .tel {
    display: none;
  }
}

.FooterAreaLink {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5rem 0.5rem 2rem;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .FooterAreaLink {
    padding: 2vw 2vw 2vw;
  }
}
@media (max-width: 767px) and (orientation: portrait) {
  .FooterAreaLink {
    display: grid;
    grid-template-columns: repeat(2, 50%);
    gap: 1vw 1vw;
    background: #010101;
    padding: 1vw 1.5vw;
  }
  .FooterAreaLink .yokohama {
    background-color: #f0c4fb;
    grid-column: 1/3;
    grid-row: 1/2;
  }
  .FooterAreaLink .kyoto {
    background-color: #c6ecc8;
  }
  .FooterAreaLink .kobe {
    background-color: #c4ddfb;
  }
  .FooterAreaLink .fukuoka {
    background-color: #cfcfcf;
  }
  .FooterAreaLink .kumamoto {
    background-color: #f9d5c0;
  }
}
.FooterAreaLink li {
  width: 100%;
  border-left: solid 1px #010101;
}
@media (max-width: 767px) and (orientation: portrait) {
  .FooterAreaLink li {
    border: none;
  }
}
.FooterAreaLink li:last-child {
  border-right: solid 1px #010101;
}
@media (max-width: 767px) and (orientation: portrait) {
  .FooterAreaLink li:last-child {
    border: none;
  }
}
.FooterAreaLink li a {
  width: 100%;
  color: #231815;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1rem 0 0.5rem;
}
@media (max-width: 767px) and (orientation: portrait) {
  .FooterAreaLink li a {
    font-family: "Bebas Neue", cursive;
    font-weight: 500;
    font-style: normal;
    font-size: 6vw;
    letter-spacing: -0.05em;
    padding: 2vw 0;
  }
}
.FooterAreaLink li a p {
  font-size: 1.8rem;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 1024px) and (orientation: portrait) {
  .FooterAreaLink li a p {
    font-size: 1.6vw;
  }
}
@media (max-width: 767px) and (orientation: portrait) {
  .FooterAreaLink li a p {
    font-size: 6vw;
  }
}
.FooterAreaLink li a p span {
  display: block;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 0.3em;
}
@media (max-width: 767px) and (orientation: portrait) {
  .FooterAreaLink li a p span {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 4vw;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-top: 0;
  }
}
.FooterAreaLink li a .arrow_bottom {
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  margin: 0.8rem auto;
  border-bottom: 0.2rem solid #010101;
  border-right: 0.2rem solid #010101;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media (max-width: 767px) and (orientation: portrait) {
  .FooterAreaLink li a .arrow_bottom {
    margin: 1vw auto 2vw;
  }
}</pre></body></html>