@charset "utf-8";
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css);
@import url(https://use.fontawesome.com/releases/v5.6.3/css/all.css);

/*
====================================================
■ BASE
====================================================
*/

/*
===== reset ===========================
*/

* {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img {
  border: 0;
}

img {
  vertical-align: top;
  width: 100%;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
  overflow: hidden;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
}

iframe {
  border: none;
}

input:focus {
  outline: none;
}

/*
===== base ===========================
*/

abbr,
acronym {
  border-bottom: 1px dotted #000;
  cursor: help;
}

em {
  font-style: italic;
}

blockquote,
ul,
ol,
dl {
  margin: 0;
}

ol,
ul,
dl {
  margin: 0;
}

ol li {
  list-style: none;
}

ul li {
  list-style: none;
}

dl dd {
  margin: 0;
}

th,
td {
  padding: 0;
}

th {
  /*font-weight: bold;*/
  text-align: center;
}

caption {
  margin-bottom: 0.5em;
  text-align: center;
}

p,
fieldset,
table {
  margin: 0;
}

/* =============================================================================
   HTML5 display definitions
   ========================================================================== */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

audio:not([controls]) {
  display: none;
}

[hidden] {
  display: none;
}

input,
option,
button {
  font-family: inherit;
}

/*
===== link setting ===========================
*/

a {
  color: #c22047;
  text-decoration: none;
  transition: all 0.4s ease 0s;
}

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

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

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

/*
===== CLEARFIX ==========================================
*/

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.clearfix {
  min-height: 1px;
}

* html .clearfix {
  height: 1px;
  /*¥*/
  /*/
  height: auto;
  overflow: hidden;
  /**/
}

/*
====================================================
■ all
====================================================
*/

html,
body {
  width: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  color: #333;
  font-size: 62.5%;
  /*font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;*/
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: subpixel-antialiased;
  background: url(/img/bg_f.jpg) no-repeat fixed center top;
  background-size: cover;
}

/*


/* =============================================================================
   MENU
   ========================================================================== */

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

header {
  position: fixed;
  width: 100%;
  z-index: 1000;
  top: 0;
  text-align: center;
}

.head_top {
  background: #c22047;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 4px;
}

#logo_lay a,
#logo_lay span {
  display: inline-block;
}

#header img {
  max-height: 50px;
}

.logo_img {
  max-width: 170px;
}

#tabs > div[id^="tabs-"]:not(:first-of-type),
.js_swipe > div[id^="tabs-"]:not(:first-of-type) {
  display: none;
}

/*ヘッダー　アイコン*/

.icons {
  box-sizing: border-box;
  position: absolute;
  right: 60px;
  height: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.icons li a {
  display: block;
}

.icons li img {
  height: 32px;
  width: auto;
}

@media screen and (max-width: 480px) {
  .head_top {
    display: block;
    padding: 0 !important;
  }
  .icons {
    position: static;
    width: 100%;
    padding: 20px 10px;
  }
  .icons li {
    width: calc(100% / 6);
  }

  .icons li img {
    height: 24px;
    width: auto;
  }
}

/*ヘッダー　時間＆電話*/

.timeandtel {
  background: #eee;
  width: 100%;
  max-width: 768px;
  box-sizing: border-box;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 2px 5px;
  text-align: center;
  font-size: 1.8rem;
}

.timeandtel a {
  color: #000;
  text-decoration: none;
}

/*ハンバーガーメニュー*/

.menu-container {
  height: 100%;
  -webkit-overflow-scrolling: touch;
}

/*Togglerアイコン*/

.toggle-input {
  left: -9999px;
  position: absolute;
  top: -9999px;
}

.toggle-label {
  display: none;
  cursor: pointer;
  display: block;
  position: absolute;
  top: 18px;
  /*30%*/
  right: 10px;
  margin-top: -15px;
  z-index: 99;
  color: #fff;
  width: 42px;
  height: 42px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  font-size: 10px;
  transition: all 400ms ease-in-out;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.toggle-label:active {
  -webkit-tap-highlight-color: transparent;
}

.toggle-label .toggle-icon,
.toggle-label .toggle-icon:before,
.toggle-label .toggle-icon:after {
  position: absolute;
  top: 40%;
  left: 50%;
  height: 3px;
  width: 28px;
  cursor: pointer;
  background: #fff;
  display: block;
  content: "";
  transition: all 500ms ease-in-out;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}

.toggle-label .toggle-icon {
  transform: translate3d(-50%, 0, 0);
  -webkit-transform: translate3d(-50%, 0, 0);
}

.toggle-label .toggle-icon:before {
  transform: translate3d(-50%, -10px, 0);
  -webkit-transform: translate3d(-50%, -10px, 0);
}

.toggle-label .toggle-icon:after {
  transform: translate3d(-50%, 8px, 0);
  -webkit-transform: translate3d(-50%, 8px, 0);
}

.toggle-label p {
  position: absolute;
  bottom: 0px;
  width: 100%;
  text-align: center;
  left: 0;
  line-height: 1;
}

.toggle-input:checked ~ .toggle-label {
  color: #fff;
}

.toggle-input:checked ~ .toggle-label .toggle-icon {
  background-color: transparent;
}

.toggle-input:checked ~ .toggle-label .toggle-icon:before,
.toggle-input:checked ~ .toggle-label .toggle-icon:after {
  top: 0;
  background: #fff;
}

.toggle-input:checked ~ .toggle-label .toggle-icon:before {
  transform: translateX(-50%) rotate(45deg);
  -webkit-transform: translateX(-50%) rotate(45deg);
}

.toggle-input:checked ~ .toggle-label .toggle-icon:after {
  transform: translateX(-50%) translateY(-10px) rotate(-45deg);
  -webkit-transform: translateX(-50%) translateY(-10px) rotate(-45deg);
  top: 10px;
}

/*メニュー*/

.drawer_menu {
  position: fixed;
  top: 0;
  left: auto;
  right: 0;
  z-index: 1;
  height: 100%;
  visibility: hidden;
  background-color: #c22047;
  transition-property: all;
  transition-duration: 500ms;
  transition-timing-function: ease-out;
  width: 100%;
  max-width: 500px;
  overflow: scroll;
}

.drawer_menu {
  z-index: 3;
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.toggle-input:checked ~ .drawer_menu {
  visibility: visible;
}

.fadeInRight,
[data-effect="pure-effect-fade"] .toggle-input:checked ~ .drawer_menu {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

.fadeOutRight,
[data-effect="pure-effect-fade"] .drawer_menu {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

.spmene_center {
  /*メニュータブ*/
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #222;
}

.spmene_center .spmene_top {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
}

.spmene_center input[type="radio"] {
  display: none;
}

.spmene_center .spmene_tab {
  position: relative;
  float: left;
  z-index: 5;
  width: 100%;
  /*width: 30%;*/
  /*cursor: pointer;*/
  height: 50px;
  text-align: center;
  line-height: 48px;
  font-size: 12px;
  transition: background 0.5s ease-in-out;
  color: #858585;
  font-weight: bold;
}

.spmene_center .tabspmene_:hover {
  color: #fff;
}

.spmene_center input[type="radio"]:checked + .spmene_tab {
  color: #c22047;
}

.spmene_center .spmene_content {
  position: absolute;
  top: 50px;
  width: 100%;
}

.spmene_center .spmene_content .spmene_box {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transform: translateY(3px);
  transform: translateY(3px);
  pointer-events: none;
  transition: all 0.3s ease-in;
  width: 100%;
}

#menutab-1:checked ~ .spmene_content #box-1,
#menutab-2:checked ~ .spmene_content #box-2,
#menutab-3:checked ~ .spmene_content #box-3 {
  opacity: 1;
  pointer-events: all;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  transition: all 0.5s ease-out 0.4s;
}

.spmenu_wrap {
  color: #fff;
}

.spmenu_wrap dt {
  background-color: #111;
  padding: 10px 15px;
  border-bottom: 1px solid #333;
  font-size: 1.4rem;
}

.sl_label {
  display: block;
  text-align: center;
  background-color: #222;
  line-height: 40px;
  border-bottom: 1px solid #333;
  position: relative;
  font-size: 1.2rem;
}

.sl_label:before,
.sl_label:after {
  content: "";
  position: absolute;
  display: block;
  background: #a3a3a3;
  top: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.sl_label:before {
  height: 1px;
  width: 7px;
  left: 20px;
  margin-top: -2px;
}

.sl_label:after {
  height: 7px;
  width: 1px;
  left: 23px;
  margin-top: -5px;
}

.spmenu_acbox {
  max-height: 0;
  overflow: hidden;
  transition: height 0.2s ease-in-out;
  opacity: 0;
}

.ac_list input:checked ~ .spmenu_acbox {
  max-height: 500px;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1;
}

.spmenu_wrap input:checked + label:after,
.spmenu_wrap input:checked + label:before {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.spmene_box li {
  height: 50px;
  display: table;
  vertical-align: middle;
  box-sizing: border-box;
}

.spmene_box li span {
  display: block;
}

.spmene_box .cont1 li,
.spmene_box .cont2 li {
  border-bottom: 1px solid #333;
}

.spmene_box li a {
  vertical-align: middle;
  display: table-cell;
  height: 100%;
  text-align: center;
  color: #fff;
  text-decoration: none;
  padding: 0 5px;
}

.spmene_box ul {
  width: 100%;
  background: #000;
  font-size: 1.2rem;
}

.spmene_box ul.list_odd {
  border-bottom: 1px solid #333;
}

.spmene_box .btop {
  border-top: 1px solid #333;
}

.spmene_box .bbot {
  border-bottom: 1px solid #333;
}

.spmene_box .bbotnon {
  border-bottom: none;
}

.spmene_box .btopnon {
  border-top: none;
}

.spmene_box .cont1 li {
  width: 100%;
  background-color: #000;
  line-height: 50px;
  text-align: center;
  color: #fff;
}

.spmene_box .cont2 li {
  width: 50%;
  float: left;
}

.spmene_box .cont2 li:nth-child(odd) {
  border-right: 1px solid #333;
}

.spmene_box .cont2.list_odd li:nth-last-child(1),
.spmene_box .cont3.list_odd li:nth-last-child(1) {
  border-bottom: none;
}

.spmene_box .cont3 {
  border-bottom: 1px solid #333;
}

.spmene_box .cont3 li {
  float: left;
  width: 33.3%;
  border-right: 1px solid #333;
}

.spmene_box .cont3 li:nth-child(3n) {
  width: 33.4%;
  border-right: none;
}

.spmene_box .acount {
  margin-top: 50px;
}

.spmene_box .acount li:first-child {
  width: 100%;
  background-color: #d6d6d6;
  text-align: center;
  line-height: 50px;
}

.spmene_box .acount li:nth-child(2) {
  border-right: 1px solid #333;
}

.spmene_box .acount li:not(:first-child) {
  width: 50%;
  float: left;
}

@media screen and (min-width: 769px) {
  #logo {
    padding-top: 0.2vh;
  }
}

@media screen and (max-width: 768px) {
  header {
    padding: 0;
  }
  #logo {
    width: 39%;
  }
  #logo_lay a.bystargroup,
  #logo_lay .logo_lay_txt {
    display: none;
  }
  #header.header_regi {
    padding: 0;
  }
  .head_top {
    padding: 5px 50px 5px 5px;
  }
  #logo_lay {
    /*width: 39%;*/
  }
}

@media screen and (max-width: 375px) {
  .toggle-label .toggle-icon {
    top: 38%;
  }
  .toggle-input:checked ~ .toggle-label {
    margin-top: -20px;
  }
}

.btn_dn {
  display: none;
}

/* =============================================================================
   Navi
   ========================================================================== */

#gnavi {
  width: 100%;
  margin: auto;
  font-weight: bold;
  min-width: 1100px;
}

#gnavi ul {
  font-size: 0;
}

#gnavi li:first-child {
  width: 11%;
  padding: 0 0.5%;
}

#gnavi li {
  display: inline-block;
  width: calc(88% / 11);
  vertical-align: middle;
}

#gnavi li a {
  text-align: center;
  display: table;
  width: 100%;
  height: 50px;
  line-height: 50px;
  text-decoration: none;
  font-size: 1.7rem;
  color: #333;
}

#gnavi li a:hover {
  color: #fff;
  background: #c22047;
}

#gnavi li:first-child a:hover {
  background: #fff;
}

/*カレント*/

#gnavi li a.current {
  font-weight: bold;
  color: #c22047;
  border-top: 1px solid #c22047;
}

#gnavi li a.current:hover {
  color: #fff;
}

#gnavi li img {
}

@media screen and (max-width: 1100px) {
  #gnavi {
    width: 100%;
  }
}

/* Overlay style */

.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(246, 121, 177, 0.9);
  z-index: 10000;
}

/* Overlay closing cross */

.overlay .overlay-close {
  position: absolute;
  right: 15px;
  top: 15px;
  overflow: hidden;
  border: none;
  background: url(../img/cross.png) no-repeat center center / 100% auto;
  height: 83px;
  color: transparent;
  outline: none;
  z-index: 10000;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

/* Menu style */

.overlay nav {
  text-align: left;
  position: relative;
  top: 48%;
  height: 74%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.overlay ul {
  list-style: none;
  padding: 25% 0 0;
  margin: 0 auto;
  display: inline-block;
  height: 100%;
  position: relative;
}

.overlay ul li {
  /*
	height: 20%;
	height: calc(100% / 4);
	*/
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: inline-block;
  width: 100%;
  text-align: center;
}

.overlay ul li a {
  font-size: 1em;
  font-weight: 300;
  display: block;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  text-decoration: none;
  padding: 1.5% 0;
  font-weight: bold;
  text-shadow: 4px 0 0 #fff, 0 -4px 0 #fff, -4px 0 0 #fff, 0 4px 0 #fff, 4px 2px 0 #fff, 2px -4px 0 #fff, -4px 2px 0 #fff, 2px 4px 0 #fff, 4px -2px 0 #fff, -2px -4px 0 #fff, -4px -2px 0 #fff, -2px 4px 0 #fff, 4px 4px 0 #fff, 4px -4px 0 #fff, -4px 4px 0 #fff, -4px -4px 0 #fff, 0 4px 8px rgba(0, 0, 0, 0.8);
}

.overlay ul li a::before {
}

.overlay ul li a:hover,
.overlay ul li a:focus {
  color: #c22047;
}

/* Effects */

.overlay-scale {
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transition: -webkit-transform 0.2s, opacity 0.2s, visibility 0s 0.2s;
  transition: transform 0.2s, opacity 0.2s, visibility 0s 0.2s;
}

.overlay-scale.open {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
  transition: transform 0.4s, opacity 0.4s;
}

.genericon {
  vertical-align: middle;
  display: inline;
}

.genericon:before {
  /* content: '\f429';
	color:#FFF; */
  margin: 0 2% 0 0;
}

@media screen and (max-height: 30.5em) {
  .overlay nav {
    height: 70%;
    font-size: 34px;
  }
  .overlay ul li {
    min-height: 34px;
  }
}

#navi {
  background: url("/img/nv_bg.png") no-repeat right center / cover;
  height: 83px;
  padding: 2px 5px 0 0;
  position: fixed;
  right: 0;
  text-align: right;
  top: 0;
  width: 80px;
  z-index: 5500;
  display: none;
}

#trigger-overlay {
  border: none;
  background: none;
  cursor: pointer;
}

#navi span {
  background-color: #fff;
  display: block;
  height: 1px;
  margin: 30% 0;
  width: 26px;
}

#navi span:last-of-type {
  margin-bottom: 20%;
}

#navi .menu {
  font-size: 0.55rem;
  line-height: 1;
  text-align: center;
  color: #fff;
}

#nav-menu {
  background-color: rgba(211, 0, 0, 0.8);
  text-align: center;
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 1.4;
  width: 90%;
  margin: 0 auto;
}

#nav-menu a:link {
  color: #fff;
  padding: 2% 0;
  display: block;
}

.nav-tel {
  font-size: 1.1rem;
}

.nav-time {
}

/*
====================================================
■ btn_menu_sp
====================================================
*/

#btn_menu_sp {
  display: none;
}

@media screen and (max-width: 768px) {
  #btn_menu_sp {
    display: block;
    position: fixed;
    z-index: 200;
    right: 0px;
    top: 0px;
    width: 50px;
    height: 50px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    tap-highlight-color: rgba(0, 0, 0, 0);
  }
  #btn_menu_sp span {
    display: block;
    position: absolute;
    left: 10px;
    width: 27px;
    height: 3px;
    background: #fff;
  }
  #btn_menu_sp .line1 {
    top: 14px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  #btn_menu_sp .line2 {
    top: 23px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  #btn_menu_sp .line3 {
    top: 32px;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  #btn_menu_sp.open .line1 {
    top: 14px;
    -webkit-transform: translate(0px, 9px) rotate(135deg);
    -moz-transform: translate(0px, 9px) rotate(135deg);
    -ms-transform: translate(0px, 9px) rotate(135deg);
    -o-transform: translate(0px, 9px) rotate(135deg);
  }
  #btn_menu_sp.open .line2 {
    top: 23px;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
  }
  #btn_menu_sp.open .line3 {
    top: 32px;
    -webkit-transform: translate(0px, -9px) rotate(-135deg);
    -moz-transform: translate(0px, -9px) rotate(-135deg);
    -ms-transform: translate(0px, -9px) rotate(-135deg);
    -o-transform: translate(0px, -9px) rotate(-135deg);
  }
}

/*
====================================================
■ btn_menu_sp
====================================================
*/

#btn_menu_tel_sp {
  display: none;
}

@media screen and (max-width: 768px) {
  #btn_menu_tel_sp {
    display: block;
    position: fixed;
    z-index: 200;
    right: 50px;
    top: 0px;
    width: 50px;
    height: 50px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    tap-highlight-color: rgba(0, 0, 0, 0);
    font-size: 2.4rem;
    text-align: center;
  }
  #btn_menu_tel_sp i {
    margin-top: 10px;
  }
  #btn_menu_tel_sp a {
    color: #7380a2;
  }
}

/*
====================================================
■ gnav_sp
====================================================
*/

#gnav_sp {
  display: none;
}

@media screen and (max-width: 768px) {
  #gnav_sp {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99;
    width: 100%;
    height: 100%;
    overflow: auto;
    /* scroll*/
    -webkit-overflow-scrolling: touch;
    display: none;
    background: rgba(255, 255, 255, 0.95) url(/img/bg_gnav_sp.jpg) no-repeat bottom right;
  }
  #gnav_sp .inner {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  #gnav_sp a {
  }
  #gnav_sp .navbox {
    margin-top: 0px;
  }
  #gnav_sp .navbox .jp {
    display: block;
    font-weight: bold;
    color: #c22047;
    letter-spacing: 0.05em;
    font-size: 1.6rem;
    line-height: 2;
  }
  #gnav_sp .navbox ul {
    width: 100%;
  }
  #gnav_sp .navbox ul a,
  #gnav_sp .navbox ul p {
    padding-top: 10px;
    padding-bottom: 10px;
    position: relative;
    border-bottom: 1px solid #849fb4;
    border-right: 1px solid #849fb4;
  }
  #gnav_sp .navbox ul a:after {
    content: "";
    display: block;
    position: absolute;
    right: 4%;
    top: 50%;
    z-index: 2;
    background: url(/img/arrow.png) no-repeat;
    width: 9px;
    height: 14px;
    margin-top: -7px;
    background-size: contain;
  }
  #gnav_sp .navbox ul a.blank:after {
    content: "";
    display: block;
    position: absolute;
    right: 4%;
    top: 50%;
    z-index: 2;
    background: url(/img/blank.png) no-repeat;
    width: 11px;
    height: 9px;
    margin-top: -4px;
    background-size: contain;
  }
  #gnav_sp .navbox ul > li {
    width: 50%;
    float: left;
    text-indent: 10px;
  }
  #gnav_sp .navbox ul > li > a {
    display: block;
    width: 100%;
  }
  #gnav_sp .navbox ul > li ul {
    border-top: none;
  }
  #gnav_sp .navbox ul > li ul > li:first-child {
    border-top: none;
  }
  #gnav_sp .navbox ul > li ul > li > a {
    display: block;
    width: 100%;
  }
  #gnav_sp .tel {
    float: left;
    margin-top: 20px;
    text-align: center;
    width: 100%;
  }
  #gnav_sp .tel dt {
    float: left;
    font-size: 1.2rem;
    margin-bottom: 5px;
    width: 100%;
  }
  #gnav_sp .tel dd {
    float: left;
    font-family: "Oswald", sans-serif;
    font-size: 3rem;
    font-weight: bold;
    width: 100%;
    color: #c22047;
  }
  #gnav_sp .tel dd a {
    color: #c22047;
  }
}

/*
====================================================
■ Gnavi
====================================================
*/

#gnav {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  /*position: relative;
  width:100%;*/
  left: 23%;
  position: absolute;
  top: 5px;
  width: 50%;
}

#gnav ul {
  /*max-width:1100px;*/
  margin: auto;
}

#gnav ul li.gli {
  width: 16.7%;
  float: left;
}

#gnav ul li.gli a.gbtn {
  display: block;
  position: relative;
  padding: 15px 0;
  width: 100%;
  color: #fff;
  text-shadow: -1px -2px 0 rgba(0, 0, 0, 1);
}

#gnav ul li.gli a.gbtn:hover {
  color: #ebdd90;
}

#gnav ul li.gli a.gbtn .jp {
  position: absolute;
  width: 100%;
  top: 15px;
  text-align: center;
  z-index: 4;
  font-size: 1.4rem;
  -webkit-transition: all 0.15s ease 0s;
  -moz-transition: all 0.15s ease 0s;
  -o-transition: all 0.15s ease 0s;
  transition: all 0.15s ease 0s;
}

#gnav ul li.gli a.gbtn .bg {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  /*background: background:#000;;
  /*-webkit-transform: skew(-13deg, 0);
  -moz-transform: skew(-13deg, 0);
  -o-transform: skew(-13deg, 0);
  transform: skew(-13deg, 0);*/
}

#gnav ul li.gli a.gbtn .bg:after {
  content: "";
  display: block;
  position: absolute;
  left: 0%;
  top: 100px;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-bottom: 1px solid #ccc;
  -webkit-transition: all 0.15s ease 0s;
  -moz-transition: all 0.15s ease 0s;
  -o-transition: all 0.15s ease 0s;
  transition: all 0.15s ease 0s;
}

/*#gnav ul li:hover a.gbtn .en {
  top: 5px;
}
#gnav ul li:hover a.gbtn .jp {
  top: 20px;
  visibility: visible;
  opacity: 1;
}*/

#gnav ul li:hover a.gbtn .bg:after {
  top: 0px;
  left: 0px;
}

#gnav ul li.gli:first-child a.gbtn .jp {
  width: 97%;
}

#gnav ul li.gli:first-child a.gbtn .bg {
  border: none;
}

#gnav ul li.gli:first-child a.gbtn .bg:after {
  border: none;
}

@media screen and (max-width: 1024px) {
  #header .logo {
    padding: 20px 0 0;
  }
  #gnav ul li.gli a.gbtn .jp {
    font-size: 1.1rem;
  }
  /*#gnav ul li.gli a.gbtn {
    height: 20px;
}*/
  #header .header_info .time {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  #gnav {
    display: none;
  }
  #header .logo {
    padding: 5px 0 5px;
  }
}

/*
====================================================
■ FOOTER
====================================================
*/

#footer {
  background: #fff;
  margin: 10px auto 0;
  padding-bottom: 60px;
  max-width: 768px;
}

#footer .inner {
  max-width: none;
  margin: 0 auto;
  padding: 0;
}

#footer .copyright {
  letter-spacing: 0.1em;
  text-align: center;
  font-size: 1.3rem;
  line-height: 150%;
  margin-top: 15px;
  color: #fff;
  font-weight: bold;
}

#footer .copyright2 {
  text-align: left;
  font-size: 1.2rem;
  line-height: 150%;
  color: #333;
  padding: 4% 4% 2%;
  font-family: "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
}

@media screen and (max-width: 768px) {
  #footer .copyright {
    font-size: 1.1rem;
    line-height: 2;
    margin-top: 10px;
  }
  #footer .copyright2 {
    font-size: 1rem;
    line-height: 150%;
    text-align: left;
  }
}

/*
====================================================
■ GROUP LINK
====================================================
*/

#footer_groupnav {
  padding: 20px 0;
  width: 100%;
  max-width: 768px;
  margin: auto;
}

#footer_groupnav a,
#footer_groupnav a:visited {
}

#group_nav {
  border-bottom: 1px dotted #ccc;
}

#group_nav li ul li {
  float: left;
  text-align: left;
  vertical-align: top;
  width: 100%;
  /*210px;*/
  border-top: 1px dotted #ccc;
}

#group_nav li ul li ul li {
  width: 100%;
}

#group_nav li ul li a {
  /*color: #FFF;*/
  line-height: 1.6;
  font-size: 1.4rem;
  padding: 10px;
  display: block;
  position: relative;
}

#group_nav li ul li div h4 {
  /*color: #FFF;*/
  font-size: 1.5rem;
  font-weight: bold;
  margin: 10px;
}

#group_nav li ul li div h4::before {
  /*color: #FFF;*/
  content: "▼";
  display: inline-block;
}

#group_nav li ul li a:after {
  content: "\f061";
  font-family: "FontAwesome";
  font-size: 10px;
  line-height: 40px;
  position: absolute;
  right: 15px;
  top: 0;
  transition: all 0.3s ease 0s;
  z-index: 1;
}

/*
====================================================
■ wrap設定(メインコンテナ)
====================================================
*/

/*#wrap {
    margin: 0 auto 0;
    overflow: hidden;
    padding: 50px 0;
}*/

#wrap {
  width: 100%;
  margin: 0px auto 0px;
  height: auto;
  text-align: center;
  overflow: hidden;
  min-width: 320px;
  max-width: 768px;
  min-height: 100%;
  position: relative;
  background: #fff;
  padding-top: 80px;
}

@media screen and (max-width: 480px) {
  #wrap {
    margin: 110px auto 0;
    padding: 0 0 20px;
  }
}

/*
====================================================
■ main_con設定(メインコンテナ／top以外)
====================================================
*/

#main_con {
  width: 100%;
  text-align: center;
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  /*background: url(/img/bg_splash.png) no-repeat top center;*/
}

/*
====================================================
■ サブ見出し設定（トップページ内見出し、各ページタイトル）
====================================================
*/

.subtitle {
  position: relative;
  font-size: 2.4rem;
  /*font-weight: 700;*/
  text-align: center;
  /*display: inline-block;*/
  text-align: center;
  padding: 0.5%;
  color: #fff;
  background: #c22047;
  margin-bottom: 10px;
}

.subtitle span {
  display: inline;
  font-weight: normal;
  font-size: 1.2rem;
  vertical-align: middle;
  text-align: right;
  /*margin: 0;
    padding-bottom: 5px;
    letter-spacing: 0.15em;
    margin: 0 0 -5px 0;*/
  position: absolute;
  right: 5px;
  top: 15px;
}

.subtitle span img {
  width: 80%;
}

/*
====================================================
■ b_title (h2画像タイトル)
====================================================
*/

.b_title,
.b_title2 {
  position: absolute;
  top: 0;
  left: 0;
}

/*
====================================================
■ kana
====================================================
*/

.kana {
  /*font-family: "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;*/
}

/*
====================================================
■ nowrap
====================================================
*/

#column_con ul#news_headline li .title,
ul#news_headline li,
#lists li .types p,
#deli .topiclist li .comment,
#prof_option li,
.site li p,
#toppage #schedule li .types p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/*
====================================================
■ pagetitle / h2設定（トップ以外）
====================================================
*/

.pagetitle {
  width: 100%;
  position: relative;
  font-family: "Pinyon Script", cursive;
  font-size: 6rem;
  color: #051563;
  padding: 30px 0;
  font-weight: 400;
  text-align: center;
  line-height: 1;
  background-size: 180px auto;
  margin-top: 95px;
  border-bottom: 1px solid #e9e9e9;
}

.pagetitle span {
  font-size: 1.6rem;
  font-weight: normal;
  vertical-align: top;
  display: block;
  color: #c22047;
  letter-spacing: 0.15em;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Hiragino Mincho ProN", "HGS明朝E", "ＭＳ Ｐ明朝", serif;
  margin: 15px 0 -15px 0;
}

@media screen and (max-width: 1024px) {
  .pagetitle {
    margin-top: 85px;
  }
}

@media screen and (max-width: 768px) {
  .pagetitle {
    font-size: 4rem;
    margin-top: 50px;
    padding: 20px 0;
    background-size: 120px auto;
  }
  .pagetitle span {
    font-size: 1.2rem;
  }
}

/*
====================================================
■ LIST 設定
====================================================
*/

.ph {
  position: relative;
}

/*サムHOVER*/

a:hover .thum-over {
  opacity: 1;
}

.thum-over {
  background-color: rgba(255, 255, 255, 0.75);
  height: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  text-align: center;
  -webkit-transition: all 0.7s ease 0s;
  -moz-transition: all 0.7s ease 0s;
  -o-transition: all 0.7s ease 0s;
  transition: all 0.7s ease 0s;
  width: 100%;
  z-index: 10;
  align-items: center;
  display: flex;
  justify-content: center;
  display: flex;
  /*display: none;*/
}

.thum-over p.more {
  /*border: 1px solid #fefefe;padding:0 5%;color: #fff*/
  box-sizing: border-box;
  color: #000;
  display: inline-block;
  padding: 1%;
  font-size: 2rem;
  /*font-weight: bold;
    font-style: italic;*/
  text-align: center;
  transition: all 0.4s ease 0s;
  text-shadow: 0 1px 0 rgb(255, 255, 255);
  /*display: none;*/
}

@media screen and (max-width: 1024px) {
  .thum-over p.more {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 768px) {
  .thum-over p.more {
    font-size: 1.5rem;
  }
}

/*NEWアイコン・本日出勤・指名料ランク・ランキング*/

.list_icons {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 4;
}

.list_icons img {
  width: 60px;
  float: right;
}

.list_rank {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 4;
}

.list_rank img {
  float: left;
  width: 22px;
}

.list_ranking {
  display: block;
  position: absolute;
  right: 0;
  bottom: 34px;
  z-index: 6;
  width: 38%;
}

@media screen and (max-width: 768px) {
}

/*タイプアイコン*/

.types {
  /*タイプ*/
  display: block;
  overflow: hidden;
  width: 100%;
}

.types p {
  /*タイプ*/
  float: left;
  width: 49%;
  margin: 0.5%;
  text-align: center;
  font-size: 1.2rem;
  padding: 3px 0;
  border: 1px solid #ccc;
  box-sizing: border-box;
  color: #000;
  background: url(/img/bg_icn.gif) no-repeat center center;
  background-size: cover;
  /*background:rgba(255,255,255,0.9);
    background: linear-gradient(135deg, #E3DBC8, #fcf5e6);*/
}

/*案内時刻*/

.time {
  font-size: 1.7rem;
  color: #fff;
  background: rgba(1, 1, 1, 0.8);
  padding: 3px 0;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .time {
    font-size: 1.2rem;
  }
}

/*title h3 設定*/

.caption_bg {
  /*background: url("/img/bg_h3.png") no-repeat top left;*/
  bottom: 0;
  height: 6vw;
  padding: 0 0 0 2%;
  position: absolute;
  width: 98%;
  /*background: rgba(1,1,1,0.5);*/
  color: #fff;
}

@media screen and (max-width: 1024px) {
  #schedule li .caption_bg {
    height: 80px;
  }
}

/*color h3 title 設定*/

/*h3,.ttl,*/

#reviewlist div .reviewer {
  /*color: #fff;*/
}

/*Topictype 設定*/

.topictype {
  margin-right: 10px;
  padding: 2px 5px;
  font-size: 1.2rem;
  color: #fff;
  font-weight: bold;
  font-family: "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
}

.tp_sch {
  background: #ff0000;
}

.tp_new {
  background: #ffa800;
}

.tp_eve {
  background: #00d936;
}

.tp_osusume {
  background: #00baff;
}

.tp_nf {
  background: #9a3ad2;
}

.tp_now {
  background: #ff6c6c;
}

.tp_wait {
  background: #b06cbf;
}

/*not use*/

.tp_now {
  background: #ff6c6c;
}

.tp_wait {
  background: #b06cbf;
}

.tp_note {
  background: #dd4b39;
}

.tp_oth {
  background: #0073b7;
}

/*not use ここまで*/

/*
====================================================
■ BOTTOM NAVI only SP site
====================================================
*/

#bottomNavi {
  bottom: 0;
  color: #fff;
  overflow: hidden;
  position: fixed;
  width: 100%;
  z-index: 100;
  display: block;
  /*background: rgba(255,255,255,0.6);*/
  background: rgba(140, 103, 0, 0.9);
  /* #c22047*/
}

#bottomNavi ul {
  margin: 0;
  display: table;
  table-layout: fixed;
  width: 100%;
}

#bottomNavi ul li {
  /*
  float: left;
  width: calc(100% / 6);
  */
  border: none;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

#bottomNavi li a {
  display: block;
  padding: 10px 0 3px;
  color: #fff;
}

#bottomNavi li span {
  display: block;
  font-size: 1rem;
  line-height: 2;
  font-weight: bold;
}

#bottomNavi li i {
  font-size: 2rem;
}

/*
====================================================
■ breadcrumb
====================================================
*/

ol.breadcrumb {
  font-size: 1.1rem;
  list-style-type: none;
  margin: 10px auto 0;
  /*max-width: 1200px;*/
  padding: 3px 0 5px;
  text-align: left;
}

ol.breadcrumb li {
  display: inline;
}

ol.breadcrumb li::before {
  content: "\f105";
  font-family: FontAwesome;
  margin: 0 5px;
}

ol.breadcrumb li:first-child::before {
  content: "";
}

ol.breadcrumb li a:hover {
  text-decoration: underline;
}

/*
====================================================
■ MORE BTN
====================================================
*/

.moreBtn a {
  border: 1px solid #c22047;
  color: #c22047;
  display: block;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  line-height: 40px;
  padding: 0;
  position: relative;
  text-align: center;
  text-decoration: none;
  max-width: 250px;
  margin: 10px auto;
  font-weight: bold;
  font-style: normal;
}

.moreBtn a:hover {
  background: #c22047;
  border: 1px solid #c22047;
  color: #fff;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.moreBtn a:after {
  content: "\f061";
  font-family: "FontAwesome";
  font-size: 10px;
  line-height: 40px;
  position: absolute;
  right: 15px;
  top: 0;
  transition: all 0.3s ease 0s;
  z-index: 1;
}

/*
====================================================
■ MORE BTN 2  (input/bottun)
====================================================
*/

.moreBtn2 {
  border: 1px solid #c22047;
  background-color: rgba(0, 0, 0, 0);
  box-sizing: border-box;
  color: #c22047;
  cursor: pointer;
  display: block;
  font-weight: bold;
  line-height: 40px;
  margin: 20px auto;
  position: relative;
  text-align: center;
  transition: all 0.4s ease 0s;
  max-width: 250px;
  width: 100%;
  font-size: 1.4rem;
}

.moreBtn2:after {
  content: "\f061";
  font-family: "FontAwesome";
  font-size: 10px;
  line-height: 40px;
  position: absolute;
  right: 15px;
  top: 0;
  transition: all 0.3s ease 0s;
  z-index: 1;
}

.moreBtn2:hover {
  background: #c22047;
  border: 1px solid #c22047;
  color: #fff;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

/*
====================================================
■ pager
====================================================
*/

ul.pager {
  padding: 4% 0;
  text-align: center;
}

ul.pager li {
  display: inline;
  margin: 0 2px;
  padding: 0;
  font-size: 1.4rem;
}

ul.pager li span,
ul.pager li a {
  background: #fff none repeat scroll 0 0;
  border: 1px solid #fff;
  display: inline-block;
  margin-bottom: 5px;
  padding: 8px 15px;
  text-decoration: none;
  vertical-align: middle;
}

ul.pager li a:hover {
  background: #c22047 none repeat scroll 0 0;
  color: #fff;
}

/*
====================================================
■ scrollUp
====================================================
*/

#scrollUp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 98;
}

#scrollUp i {
  font-size: 2rem;
  line-height: 6rem;
  font-family: "FontAwesome";
}

#scrollUp a {
  width: 60px;
  height: 60px;
  display: block;
  color: #fefefe;
  background: rgba(185, 43, 135, 0.75);
  text-align: center;
  z-index: 11;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: rgba(185, 43, 135, 0.65) 1px solid;
}

/*#scrollUp a:hover { background:rgba(255, 255, 255, 0.75); color: #c22047;}*/

@media screen and (max-width: 768px) {
  #scrollUp {
    bottom: 60px;
    right: 10px;
  }
  /*#scrollUp a:hover { background:rgba(204, 204, 204, 0.9); color: #fefefe;}*/
}

/*
====================================================
■ floatingArea
====================================================
*/

div.floatingArea {
  width: 50px;
  height: 50px;
  box-sizing: border-box;
  position: fixed;
  left: 10px;
  bottom: 60px;
  z-index: 9999;
  border-radius: 4px;
  box-shadow: 1px 2px 2px #381b27;
  background: #c22047;
}

div.floatingArea a {
  text-align: center;
  width: 100%;
  padding: 5px 0 0;
  display: block;
  color: #fff;
  font-size: 10px;
}

div.floatingArea a img {
  height: 25px;
}

/*
====================================================
■ floatingReserve
====================================================
*/

div.floatingReserve {
  width: 122px;
  height: 45px;
  box-sizing: border-box;
  position: fixed;
  right: 20px;
  bottom: 115px;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  box-shadow: 1px 2px 2px #381b27;
  background: #c22047;
}

div.floatingReserve a {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 10px;
}

div.floatingReserve a img {
  height: 25px;
  width: auto;
}

div.floatingReserve a span {
  margin-left: 0.2em;
}

/*
====================================================
■ GTranslate
====================================================
*/
.gtranslate_wrapper #gt_float_wrapper {
  bottom: 57px !important;
}

/*
====================================================
■ SWITCH PC or SP
====================================================
*/

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp {
    display: inherit;
  }
  .pc {
    display: none;
  }
  /* iOSでのデフォルトスタイルをリセット */
  input[type="submit"],
  input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
  }
  input[type="submit"]::-webkit-search-decoration,
  input[type="button"]::-webkit-search-decoration {
    display: none;
  }
  input[type="submit"]::focus,
  input[type="button"]::focus {
    outline-offset: -2px;
  }
}
