@charset "utf-8";

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6em;
  font-feature-settings: "palt";
  font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
  line-height: 1.8;
  /* 変更 */
  -webkit-text-size-adjust: 100%;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

body::-webkit-scrollbar {
  display: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
strong,
th {
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

/*android版クローム　フォントサイズが大きくなる不具合対策*/
p {
  max-height: 999999px;
}

ins {
  background-color: #ff9;
  /* 変更 */
  color: #000;
  /* 変更 */
  text-decoration: none;
}

mark {
  background-color: #ff9;
  /* 変更 */
  color: #000;
  /* 変更 */
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

img {
  vertical-align: bottom;
}

/* form */
input,
select {
  vertical-align: middle;
}

input::placeholder {
  color: #d6d6d6;
}

/* float解除 */
header:after,
footer:after,
section:after,
article:after,
aside:after,
main:after,
div:after,
dl:after,
ul:after,
ol:after,
li:after {
  display: block;
  clear: both;
  height: 0;
  content: "";
}

/*フォームリセット*/
:focus {
  outline: none;
}

form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

::-ms-expand {
  display: none;
}

form input[type="text"],
form input[type="reset"],
form textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: none;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
}

form input[type="text"]:focus {
  border: 1px solid rgba(0, 0, 0, 0.32);
  box-shadow: none;
  outline: none;
  border: 2px solid #a5a5a5;
}

form input[type="text"] {
  width: 100%;
}

form textarea {
  height: 100px;
  width: 100%;
}

input[type="submit"] {
  -webkit-appearance: none;
  background-color: #fff;
  background-image: none;
  border: none;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}

input[type="button"],
input[type="button"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
  outline: none;
}

input[type="button"]::-moz-foucus-inner,
input[type="submit"]::-moz-foucus-inner {
  border: none;
  padding: 0;
}

/*フォーム*/
form input[type="submit"] {
  display: block;
  width: 90%;
  max-width: 300px;
  margin: 20px auto;
  border-radius: 3rem;
  line-height: 40px;
  font-size: 1.8rem;
  border: 2px solid;
  box-shadow: 0px 0px 4px #d0d0d0;
  background: -webkit-gradient(linear, right top, left top, from(#F18EBB), to(#e4bef7));
  background: -o-linear-gradient(top, #F18EBB, #e4bef7);
  background: linear-gradient(to bottom, #F18EBB, #e4bef7);
  color: #fff;
  border: none;
}

form input[type="submit"]:hover {
  box-shadow: none;
}

form input[type="reset"],
form ul li:nth-child(2) input[type="button"] {
  color: #ffffff;
  font-size: 1.4rem;
  width: 90%;
  max-width: 200px;
  line-height: 2;
  border-radius: 2rem;
  border: 2px solid;
  background-color: #d4d4d4;
  border: none;
  box-shadow: none;
}

form input[type="reset"]:hover {
  transition: all 0.25s ease;
  background: #b95b55;
}

input[type="button"],
form ul li input[type="button"],
form input[type="submit"][name="confirm"],
a.top_btn {
  display: block;
  width: 90%;
  max-width: 300px;
  margin: 20px auto;
  border-radius: 3rem;
  line-height: 40px;
  font-size: 1.8rem;
  color: #fff;
  border: 0;
  background: -webkit-gradient(linear, right top, left top, from(#9edac4), to(#91dcf9));
  background: -o-linear-gradient(top, #9edac4, #91dcf9);
  background: linear-gradient(to bottom, #9edac4, #91dcf9);
  box-shadow: 0px 0px 4px #d0d0d0;
}

input[type="button"]:hover,
form ul li input[type="button"]:hover,
form input[type="submit"][name="confirm"]:hover,
a.top_btn:hover {
  box-shadow: none;
}

form span.req {
  background: #e24747;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.8rem;
  width: 3.4rem;
  display: inline-block;
  text-align: center;
  border-radius: 2px;
}

form dl.confirm dt {
  background: #e2e2e2;
  padding-left: 10px;
  box-sizing: border-box;
  border-radius: 4px;
}

form dl.confirm dt.err {
  background: #ecacac;
  color: #fff;
}

form dl.confirm dd span.post {
  color: #b7b7b7;
}

.wickedpicker__controls__control-up:before,
.wickedpicker__controls__control-down:after {
  font-size: 1rem;
  border: 1px solid;
  line-height: 2rem !important;
  width: 1rem !important;
  display: block !important;
  color: #D286BB;
  margin: 0 auto !important;
  padding: 0 10px;
  border: 1px solid;
  border-radius: 4px;
  box-sizing: content-box;
}

.wickedpicker__controls__control-up:before {
  content: '▲';
}

.wickedpicker__controls__control-down:after {
  content: '▼';
}

.wickedpicker__controls {
  padding: 2px 0;
}

.ib {
  display: inline-block;
}

/****************************************
common (共通スタイル)
****************************************/
body {
  text-align: center;
  position: relative;
  margin: 0 auto;
}

/*ボタン*/
a.btn {
  line-height: 2;
  background: #fff;
  box-shadow: 0px 0px 4px rgb(22 81 18);
  width: 90%;
  max-width: 260px;
  font-size: 1.8rem;
  margin: 20px auto;
  color: #fff;
  display: block;
  border-radius: 20rem;
  display: inline-block;
}

.inner {
  width: 100%;
  margin: 0 auto;
}

/* 見出し */
.title {
  height: 70px;
  margin-bottom: 10px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

/* 文字色 */
.atten_01,
.atten_01 a {
  color: #d25757;
}

.atten_02,
.atten_02 a {
  color: #ffff00;
}

.atten_03,
.atten_03 a {
  color: #4c9ee6;
}

.atten_04,
.atten_04 a {
  color: #ea3b78;
}
.mb_20 {
  margin-bottom: 20px;
}

.mb_30 {
  margin-bottom: 30px;
}

.mb_40 {
  margin-bottom: 40px;
}

.fs11 {
  font-size: 11px !important;
}

#loader {
  line-height: 1;
  opacity: 1;
  position: fixed;
  z-index: 100000;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.96);
  top: 0;
  left: 0;
  pointer-events: none;
}

.spinner {
  pointer-events: none;
  font-size: 4rem;
  position: absolute;
  left: 0;
  right: 0;
  top: 40vh;
}

.spinner span {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
  position: relative;
  display: inline-block;
  margin: 0 -.05em;
  color: rgba(0, 0, 0, .2);
  animation: loading-parent 5s infinite;
}

.spinner span::after {
  position: absolute;
  top: 0;
  left: 0;
  content: attr(data-text);
  color: #f7a5e1;
  opacity: 0;
  animation: loading-child 5s infinite;
}

.spinner span:nth-child(2)::after {
  animation-delay: .2s;
}

.spinner span:nth-child(3)::after {
  animation-delay: .4s;
}

.spinner span:nth-child(4)::after {
  animation-delay: .6s;
}

.spinner span:nth-child(5)::after {
  animation-delay: .8s;
}

.spinner span:nth-child(6)::after {
  animation-delay: 1s;
}

.spinner span:nth-child(7)::after {
  animation-delay: 1.2s;
}

.spinner span:nth-child(8)::after {
  animation-delay: 1.4s;
}

.spinner span:nth-child(9)::after {
  animation-delay: 1.6s;
}

.spinner span:nth-child(10)::after {
  animation-delay: .2s;
}

.spinner span:nth-child(11)::after {
  animation-delay: .4s;
}

.spinner span:nth-child(12)::after {
  animation-delay: .6s;
}

.spinner span:nth-child(13)::after {
  animation-delay: .8s;
}

@keyframes loading-parent {

  0%,
  35%,
  100% {
    color: #ead3e4;
  }

  60%,
  80% {
    color: #dcdcdce6;
  }
}

@keyframes loading-child {
  0% {
    opacity: 1;
  }

  25%,
  100% {
    opacity: 0;
  }
}

/*スライダーvis枠*/
/*.flame_box {
padding: 20px 0;
width: 96%;
margin: 0 auto;
}*/
#today_schedule .flame_box {
  background: url(../images/vis_01.png), url(../images/bg_02.jpg);
  background-size: 200px, cover;
  background-repeat: no-repeat, repeat;
  background-position: left top, left;
  max-width: 800px;
  margin: 40px auto 0;
  padding-top: 0;
}

#sub #today_schedule .flame_box h4 {
  background: rgba(255, 255, 255, 0.7);
  padding: 10px;
  margin-bottom: 10px;
  font-size: 2.2rem;
  color: #a58a4d;
}

/*スタッフ共通*/
.cast_box li {
  width: 200px;
  max-height: 400px;
  position: relative;
}

ul.cast_box li .img_box span {
  position: absolute;
  bottom: 0;
  right: 0;
}

ul.cast_box li .img_box span img {
  width: 60px;
}

.cast_box .name a.icon_twitter {
  width: 20px;
  display: inline-block;
}

.cast_box .name a.icon_twitter img {
  width: 100%;
  vertical-align: sub;
}

.short_t {
  color: #dc296a
}

/*スライダーなし*/
ul.cast_box li .img_box>img {
  width: 100%;
  height: auto;
  flex-shrink: 0
}

main.schedule .flame_box,
main.profile .flame_box {
  display: none;
}

/*ページ下共通本日出勤*/
#today_schedule ul.cast_box.default p.img_box {
  max-height: 200px;
}

#today_schedule ul.cast_box.default {
  width: 100%;
}

/* 各ページ上部のテキストボックス */
ul.cast_box.default {
  display: flex;
  width: 98%;
  max-width: 1000px;
  flex-wrap: wrap;
  margin: 0 auto;
}

ul.cast_box.default p.img_box {
  width: 92%;
  margin: 3% auto;
  max-height: 240px;
  overflow: hidden;
  position: relative;
}

ul.cast_box.default li {
  width: calc(96%/2);
  background: #ffffff;
  margin: 1%;
  box-shadow: 0px 0px 3px #c1c1c1;
  border-radius: 4px;
}

ul.cast_box.default .txt_box {
  color: #545454;
  padding-bottom: 10px;
}

ul.cast_box.default .size {
  font-size: 1.4rem;
  line-height: 1.2;
}

ul.cast_box.default .time {
  color: #c391e8;
  font-size: 1.4rem;
  border: 1px solid;
  width: 90%;
  margin: 8px auto;
}

ul.cast_box.side .icon_01,
ul.cast_box.default .icon_01 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

ul.cast_box.side .icon_01 img,
ul.cast_box.default .icon_01 img {
  width: auto;
  height: 18px;
  margin: 0 2px 2px 0;
}

ul.cast_box.side .icon_02,
ul.cast_box.default .icon_02 {
  position: absolute;
  left: 4px;
  bottom: 4px;
  right: auto;
}

ul.cast_box.side .icon_02 img,
ul.cast_box.default .icon_02 img {
  width: auto;
  height: 18px;
}

.cast_box.side .name a.icon_twitter {
  width: 15px;
  display: inline-block;
}

/* リンクボックス */
#contents_link dd img {
  margin-bottom: 10px;
  ;
}

.list_link_box {
  margin-right: -30px;
  font-size: 10px;
}

.list_link_box li {
  float: left;
  margin: 0 30px 20px 0;
}

.list_link_box_bnr {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}

.list_link_box_bnr li {
  padding-right: 10px;
}

.list_link_box_bnr li a {
  font-size: 12px;
  color: #000;
}

/*　相互リンクフリースペース　*/
.freetxt_pc p img {
  max-width: 100%;
}

/*ヘッダー*/
header {
  width: 100%;
  background: url(../images/bg_header.jpg) 0 0 repeat;
  background-size: 50px;
}
header .inner{
  position: relative;
}
#sub header h2 {
  text-align: center;
  color: #c05d82;
  text-shadow: 0px 0px 6px #fff, 0px 0px 10px #fff;
}


header h2.logo {
  position: relative;
  min-width: 300px;
}

header h2.logo span {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
  position: absolute;
  display: block;
  top: 52%;
  left: 0;
  right: 0;
  font-size: 1.8rem;
  letter-spacing: 2px;
  color: #fff;
  text-shadow: 0px 0px 4px #000;
  animation: show 1s both;
  animation-delay: 2s;
}

@keyframes show {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

header .nav {
  background: #ddd677;
  height: 40px;
  width: 90px;
  position: fixed;
  top: 16px;
  right: 4px;
  border-radius: 6px;
  z-index: 8;
}

#top header h2 img {
  max-width: 300px;
}


#top header .inner .scroll {
  position: absolute;
  bottom: 70px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 4;
}

#top header .inner .scroll::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 0;
  width: 20px;
  height: 20px;
  box-shadow: 0 0 0 0 rgb(158 224 123);
  border-radius: 50%;
  opacity: 0;
  animation: ripple1 3s infinite;
  background: rgb(220 250 204 / 84%);
}

#top header .inner .scroll span {
  width: 18px;
  height: 18px;
  position: absolute;
  top: 6px;
  left: 0px;
  transform: rotate(-45deg);
  border-left: 2px solid #F5F5F5;
  border-bottom: 2px solid #F5F5F5;
  z-index: 2;
}

@keyframes ripple1 {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  40% {
    opacity: 1;
  }

  90% {
    box-shadow: 0 0 0 20px rgb(215 239 202 / 82%);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.drawer-list h1 img.logo {
  max-width: 80px;
}

.drawer-list h1 img.logo a {
  display: block;
}

.drawer-list {
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  transform: translate(100vw, 0);
  -ms-transform: translatex(-100vw);
  box-sizing: border-box;
  pointer-events: none;
  transition: width 475ms ease-out, transform 450ms ease, border-radius 0.8s 0.1s ease;
  border-bottom-left-radius: 100vw;
  background: url(../images/bg_10.jpg);
  background-size: 15px;
  background-repeat: repeat;
}

.drawer-list ul li:nth-child(n+4) {
  width: 100%;
}

.drawer-list ul li:nth-child(n+4) a {
  border: 2px dotted #8e8e8e;
  border-radius: 20rem;
  margin: 0 auto;
  text-align: center;
  font-size: 1.4rem;
  line-height: 39px;
  margin: 5px 0 0;
}

.drawer-list ul {
  width: 100%;
  margin: 10px auto 0;
  padding: 0;
  overflow: auto;
  pointer-events: auto;
  display: flex;
  flex-wrap: wrap;
  max-width: 200px;
  box-sizing: content-box;
  height: 100vh;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  max-height: 500px;
}

.drawer-list ul::-webkit-scrollbar {
  /* Chrome, Safari 対応 */
  display: none;
}

.drawer-list li {
  width: calc(100%/2);
}

.drawer-list li:nth-child(2),
.drawer-list li:nth-child(3) {
  width: 100%;
  line-height: 1.4;
}

.drawer-list li:nth-child(2) a {
  padding-top: 14px;
  display: block;
}

.drawer-list li:nth-child(3) {
  padding-bottom: 14px;
}

.drawer-list li:nth-child(2) a,
.drawer-list li:nth-child(3) {
  color: #5c7259;
}

.drawer-list li:first-child a {
  border: none;
}

.drawer-list li:nth-child(4) a,
.drawer-list li:nth-child(6) a,
.drawer-list li:nth-child(8) a {
  border-right: 2px dotted #e8e8e8;
}

.drawer-list li:first-child {
  width: 100%;
}

.drawer-list li:last-child {
  margin-bottom: 2em;
}

.drawer-list li:nth-child(n+3) a {
  color: #8e8e8e;
  text-align: left;
  display: block;
  line-height: 40px;
  text-align: center;
  border-bottom: 2px dotted #e8e7e8;
}

input.hamburger {
  display: none;
}

input.hamburger:checked~.drawer-list {
  transform: translatex(0);
  border-bottom-left-radius: 0;
}

input.hamburger:checked~.drawer-list li {
  transform: translatex(0);
}

input.hamburger:checked~label>i {
  background-color: transparent;
  transform: rotate(90deg);
}

input.hamburger:checked~label>i:before {
  transform: translate(-50%, -50%) rotate(315deg);
}

input.hamburger:checked~label>i:after {
  transform: translate(-50%, -50%) rotate(-315deg);
}

input.hamburger:checked~label close {
  position: absolute;
  color: #FEFEFE;
  width: 90%;
  top: -50px;
  right: 10px;
  background: #bdbdbd;
  padding: 8px 8px 8px 0;
  height: 23px;
  border-radius: 4px;
  text-align: right;
  box-sizing: content-box;
}

input.hamburger:checked~label open {
  color: rgba(0, 0, 0, 0);
  width: 0;
}

label.hamburger {
  z-index: 9999;
  position: absolute;
  display: flex;
  height: 36px;
  width: 100%;
  top: 0px;
  left: 8px;
}

label.hamburger:hover {
  /*  cursor: pointer;*/
}

label.hamburger text {
  width: 100%;
  position: relative;
}

label.hamburger text close,
label.hamburger text open {
  text-transform: uppercase;
  font-size: 1.2rem;
  right: 0;
  bottom: 30px;
  position: absolute;
  transform: translateY(50px);
  text-align: center;
  overflow: hidden;
}

label.hamburger text close {
  color: rgba(0, 0, 0, 0);
  right: 0;
  width: 0;
}

label.hamburger text open {
  color: #FEFEFE;
  width: 56px;
  right: 6px;
  top: -40px;
}

label.hamburger>i {
  position: absolute;
  width: 28px;
  height: 4px;
  top: 50%;
  left: 0;
  background-color: #FEFEFE;
  pointer-events: auto;
  transition-duration: 0.35s;
  transition-delay: 0.35s;
  z-index: 999;
}

label.hamburger>i:before,
label.hamburger>i:after {
  position: absolute;
  display: block;
  width: 100%;
  height: 4px;
  left: 50%;
  background-color: #FEFEFE;
  content: "";
  transition: transform 0.35s;
  transform-origin: 50% 50%;
}

label.hamburger>i:before {
  transform: translate(-50%, -10px);
}

label.hamburger>i:after {
  transform: translate(-50%, 10px);
}

/*mainvisualメインビジュアル*/
#mainvisual{
	width: 100%;
	height: 80vh;
	position: relative;
}
#mainvisual ul{
	width: 100%;
	height: 80vh;
}
#mainvisual ul li{
	width: 100%;
	height: 100%;
}
#mainvisual img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}
#mainvisual video#video{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}
@media screen and (max-width: 768px){
  #mainvisual{
    width: 100%;
    height: 50vh;
    position: relative;
  }
  #mainvisual ul{
    width: 100%;
    height: 50vh;
  }
	#mainvisual img{
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: 50% 50%;
	}
}
#sub #mainvisual {
  display: none;
}


/*ロゴ*/
header p.logo {
  position: fixed;
  top: 6px;
  left: 0;
  right: 0;
  z-index: 7;
}

header p.main_text {
  display: none;
}

/* ヘッドライン */
.headline {
  height: auto;
  background: #d7efca;
}

.headline ul {
  box-shadow: 1px 0px 3px rgba(175, 175, 175, 0.5);
  font-size: 1.4rem;
  width: 100% !important;
}

.headline ul li {
  width: 100%;
  height: auto;
  text-align: left;
  color: #656565;
  word-break: break-all;
  padding: 0 4px;
}

.swiper-container-fade .swiper-slide {
  background: #e4acc8;
}

header ul.info_box {
  display: flex;
  position: fixed;
  top: 12px;
  z-index: 9;
  left: 0;
}

header ul.info_box li a {
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.6);
  font-size: 2.4rem;
  color: #fff;
  display: block;
  width: 50px;
  height: 50px;
  line-height: 46px;
  text-align: center;
  border-radius: 20rem;
  margin: 0 4px;
  display: block;
  box-sizing: border-box;
  line-height: 0.2;
  padding: 5px 0;
}

header ul.info_box li:nth-child(1) a {
  background: #c9c2ef;
}

header ul.info_box li:nth-child(2) a {
  background: #bacfe8;
}

header ul.info_box span {
  font-size: 0.8rem;
  font-weight: bold;
}

/* パンくずリスト */
.breadcrumbs {
  background: #d2d2d2;
  text-align: left;
  color: #fff;
  width: 100%;
  padding: 10px 0;
  font-size: 0.4rem;
}

.breadcrumbs ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.breadcrumbs ul li {
  font-size: 1.2rem;
  text-align: center;
}

.breadcrumbs ul li:before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  margin: 0 8px 0;
  font-weight: 900;
}

.breadcrumbs ul li:first-child:before {
  margin: 0;
  content: "\f015";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
}

.breadcrumbs ul li a {
  color: #808080;
  display: inline-block;
}

/*コンテンツ*/
main {
  margin: 0 auto;
  /*  max-width: 1920px;*/
  width: 100%;
}

/*フッター*/
footer {
  padding-bottom: 80px;
}

footer #inner {
  background: url(../images/bg_13.jpg);
  /*background-size: contain;*/
  /*background-repeat: repeat-x;*/
  color: #9c9c9c;
  padding: 20px 0;
  background-size: 31px;
}

#sub footer #inner {
  background: url(../images/bg_header.jpg);
  background-size: 25px;
  background-repeat: repeat;
  color: #9c9c9c;
  padding: 20px 0;
}

footer a {
  display: block;
  color: #9c9c9c;
}

footer .logo img {
  max-width: 140px;
  width: 90%;
}

footer #name {
  color: #000000;
  font-size: 1rem;
}

footer ul.info_box {
  display: flex;
  position: fixed;
  bottom: 10px;
  left: 10px;
  z-index: 999;
}

footer ul.info_box li:nth-child(1) a {
  background: #85bbcd;
}



footer ul.info_box li:nth-child(2) a {
  background: #ef9dc1;
}

footer ul.info_box li a {
  display: block;
  width: 60px;
  height: 34px;
  border-radius: 2px;
  color: #fff;
  line-height: 0.8;
  font-size: 20px;
  padding: 10px;
  display: inline-block;
}

footer ul.info_box li {
  margin-right: 6px;
}

footer ul.info_box li a span {
  font-size: 1.2rem;
}

footer .line_bnr {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
  flex-direction: column;
}

footer .line_bnr li {
  padding-bottom: 10px;
}

/* 会社概要 */
footer .gaiyo {
  display: inline-block;
  margin-bottom: 20px;
}

.img_gaiyo {
  width: 90%;
  max-width: 400px;
  /* margin-right: 20px; */
  margin-bottom: 20px;
}

.img_24h {
  width: 90%;
  max-width: 500px;
}

/******************************
トップページ
******************************/
/*電話・営業時間*/
section#section_news {
  background: url(../images/bg_11.jpg);
  background-size: 50px;
  background-repeat: repeat;
}

/*#sub ul.info_01 {
display: none;
}
*/
#top ul.info_01 {
  padding: 0 0 20px;
  font-weight: 600;
}

#top ul.info_01 li:first-child {
  font-size: 2rem;
  color: #ef3d96;
  text-shadow: 0px 0px 4px #fff, 0px 0px 1px #fff;
}

ul.info_01 li:last-child a {
  background: url(../images/bg_05.jpg);
  width: 90%;
  max-width: 260px;
  font-size: 1.8rem;
  margin: 0 auto;
  color: #fff;
  display: block;
  border-radius: 20rem;
  line-height: 2;
}

/*下層ページ電話・OPEN*/
#sub ul.info_01 {
  display: none;
}

/* 電話・営業時間 */
#sp_info {
  padding: 10px 0;
}

#sp_info ul li:first-child {
  margin: 10px auto;
}

#sp_info ul li:nth-child(2) {
  color: #80bc7d;
  font-weight: 600;
}

#sp_info ul li a {
  color: #345726;
  border: 2px dotted #345726;
  display: block;
  border-radius: 20rem;
  max-width: 230px;
  margin: 0 auto;
  font-weight: 600;
  box-sizing: border-box;
  font-size: 1.5rem;
}

/* 改行 */
.sp_block {
  display: block;
}

/* ポイント割引 */
#point {
  background: #ffffff;
  padding: 0 0;
  display: flex;
  flex-wrap: wrap;
  width: 98%;
  max-width: 500px;
  margin: auto;
}

#point p.point_box {
  margin-top: 10px;
  max-width: 400px;
  margin: 0px auto 30px;
}

/*イベントスライダーの画像設定*/
#point .flexslider img {
  width: 100%;
  height: auto;
}

/* メッセージ */
#section_message {
  background: url(../images/vis_01.png), url(../images/vis_02.png), #ffffff;
  background-size: 160px, 200px, 100%;
  background-repeat: no-repeat, no-repeat;
  background-position: right top, left bottom, 0;
  padding: 20px 1%;
}

#section_message h2 {
  background: url(../images/title_message.png), url(../images/vis_16.png);
  background-repeat: no-repeat;
  background-size: 289px, 38px;
  background-position: 2px top, left top;
  max-width: 300px;
  margin: 0 auto;
}

#section_message div.box {
  width: 90%;
  margin: 0 auto;
}

#section_message p.title_02 span {
  background: linear-gradient(transparent 50%, #e2eedf 50%);
  font-size: 2rem;
}

#section_message p.text span span {
  color: #30bc1c;
}

#section_message p.text span {
  line-height: 2.8rem;
  border-bottom: 1px dashed #b1b1b1;
  display: inline;
  text-align: left;
}

#section_message p.text {
  text-align: left;
  line-height: 1.4rem;
  max-width: 600px;
  margin: 0 auto;
}

/*新着情報*/
section#section_news #box {
  max-width: 700px;
  margin: 10px auto 0;
  padding: 30px 0;
}

#section_news .title {
  background: url(../images/title_news.png), url(../images/vis_09.png), url(../images/vis_10.png);
  background-repeat: no-repeat;
  background-size: 200px, 80px, 60px;
  background-position: center, left top, right top;
  margin: 0;
  height: 120px;
  max-width: 300px;
  margin: 0 auto;
}

#section_news #info_box tbody tr td {
  border: 1px solid #000;
}

#section_news #info_box article {
  margin-bottom: 30px;
  text-align: left;
}

#section_news #info_box article h3 {
  text-align: left;
  font-size: 2rem;
  color: #345726;
  border-left: 4px solid #345726;
  font-weight: 600;
  line-height: 1.4;
  padding-left: 6px;
}

#section_news #info_box article time {
  font-size: 1.2rem;
  color: #8c8b8b;
}

#section_news #info_box article p img {
  max-width: 100%;
}

#section_news #info_box strong {
  font-weight: bold;
}

#section_news #info_box ul.button {
  display: flex;
  justify-content: center;
}

#section_news #info_box ul.button li a {
  background: #d19eea;
  display: block;
  border-radius: 20rem;
  color: #ffffff;
  max-width: 100px;
  margin: 0 2px;
  padding: 0 10px;
}

#section_news #box #info_box {
  max-height: 400px;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  background: #fff;
  width: 90%;
  margin: 0 auto 2%;
  padding: 4%;
  box-sizing: border-box;
  border: 2px solid #85b684;
}

#section_news #box #info_box::-webkit-scrollbar {
  display: none;
}

/* 新人情報 */
#section_newface {
  background: url(../images/vis_05.png), url(../images/vis_06.png);
  background-size: 140px, 200px;
  background-repeat: no-repeat, no-repeat;
  background-position: right top, bottom left;
  padding: 20px 1%;
}

#section_newface h2 {
  background: url(../images/title_newface.png) 0 0 no-repeat;
  background-size: contain;
  background-position: 50%;
}

#section_newface .swiper-container {
  background: -webkit-gradient(linear, left top, left bottom, from(#eacff3), to(#fbd6e3));
  background: linear-gradient(to bottom, #eacff3, #fbd6e3);
  position: relative;
}

.swiper-pagination {
  position: unset;
}

#section_newface .swiper-container:after {
  content: "";
  background: url(../images/vis_07.png) no-repeat;
  background-size: 70px;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 84px;
  width: 70px;
}

/*ツイッター*/
#twitter {
  background: url(../images/vis_05.png), url(../images/vis_11.png);
  background-size: 140px, 160px;
  background-repeat: no-repeat, no-repeat;
  background-position: right top, left bottom;
  padding: 20px 0;
}

/* ピックアップ */
#twitter h2.title {
  background: url(../images/title_twitter.png) 0 0 no-repeat;
  background-size: contain;
  background-position: 50%;
  margin-bottom: 10px;
  height: 90px;
}

section#twitter p {
  max-height: 400px;
  overflow-y: scroll;
  -ms-overflow-style: none;
  /* IE, Edge 対応 */
  scrollbar-width: none;
  /* Firefox 対応 */
}

section#twitter p::-webkit-scrollbar {
  /* Chrome, Safari 対応 */
  display: none;
}

section#twitter a.btn {
  color: #81d9ec;
  border: 2px solid #81d9ec;
}

#twitter iframe {
  box-shadow: 0 0 4px #c3c3c3;
}

section#twitter #box {
  background: url(../images/bg_02.jpg);
  max-width: 600px;
  width: 90%;
  margin: 0 auto;
  box-shadow: 0px 0px 4px #b9b9b9;
  padding: 20px 0 0;
  position: relative;
}

section#twitter #box:before {
  content: "";
  background: url(../images/vis_15.png) no-repeat;
  width: 60px;
  height: 70px;
  top: 0;
  right: 0;
  position: absolute;
  background-size: 50px;
}

/*newstaff pickup共通*/
ul.cast_box.side {
  width: 100% !important;
  max-height: 1150px;
}

ul.cast_box.side li .img_box>img {
  /*  width: 90%;*/
  /*  padding-left: 10%;*/
}

ul.cast_box.side li {
  width: 100% !important;
  margin: 0 auto;
}

ul.cast_box.side li .img_box,
ul.cast_box.side li .txt_box {
  position: relative;
  width: calc(100%/2);
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  max-height: 350px;
}

/* ピックアップ */
#section_covergirl h2 {
  background: url(../images/title_pickup.png), url(../images/vis_08.png);
  background-repeat: no-repeat;
  background-size: contain, 40px;
  background-position: 50%, left;
  max-width: 350px;
  margin: 0 auto 10px;
}

#section_covergirl .swiper-container {
  background: #fff;
  box-shadow: 0px 0px 4px #d2d2d2;
}

#section_covergirl ul.cast_box.side li .img_box {
  position: relative;
  /*  max-height: 240px;*/
  overflow: hidden;
}

/*#section_newface ul.cast_box.side li .img_box {
max-height: 300px;
}*/
#section_covergirl {
  background: #fafaf8;
  padding: 20px 3%;
}

#section_covergirl .flame_box {
  background: top left no-repeat;
  background-size: 40px;
}

ul.cast_box.side li .txt_box p {
  color: #8e8e8e;
  font-size: 1.8rem;
  width: 90%;
  margin: 0 auto;
}

ul.cast_box.side li .txt_box p.name {
  line-height: 1;
  margin-bottom: 10px;
}

ul.cast_box.side li .txt_box p.size {
  font-size: 1.4rem;
  line-height: 1.2;
}

ul.cast_box.side li .txt_box p.time {
  border: 1px solid #daace8;
  color: #daace8;
  background: rgba(255, 255, 255, 0.7);
  font-size: 1.4rem;
  margin-top: 10px;
  margin-bottom: 4px;
}

ul.cast_box.side li a {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* 出勤情報　*/
#section_schedule_today {
  background: url(../images/bg_01.jpg) repeat;
  background-size: 87px;
  padding: 20px 0;
  clear: both;
}

#section_schedule_today a.btn {
  color: #ec89b5;
  border: 2px solid #ec89b5;
  box-sizing: border-box;
}

#section_schedule_today .title {
  background: url(../images/title_scheduletoday.png), url(../images/vis_04.png), url(../images/vis_03.png);
  background-size: 220px, 56px, 60px;
  background-repeat: no-repeat;
  background-position: 50%, left, right;
  max-width: 320px;
  margin: 0 auto;
}

/*下層ページ共通*/
#sub main {
  background: url(../images/bg_02.jpg) repeat;
  background-size: 26px;
  padding: 0 0 20px;
}

#sub main .inner {
  max-width: 800px;
  margin: 0 auto;
}

#sub header {
  background: url(../images/vis_01.jpg);
  background-size: 40px;
  height: 74px;
  background-position: 50%;
}

#sub h2.sub_title {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
  background: #e8e8e8;
  color: #b1b1b1;
}

header h2.sub_title span {
  font-size: 2rem;
  display: block;
}

#sub p.text_box {
  font-size: 1.4rem;
  color: #909090;
  text-align: left;
  width: 95%;
  max-width: 400px;
  margin: 0 auto;
}

#sub p.text_box a {
  color: #d63e90;
}

#sub p.text_box span {
  font-size: 1.8rem;
}

.title_vis {
  display: inline-block;
  position: relative;
  height: 60px;
  line-height: 60px;
  text-align: center;
  padding: 7px 0;
  font-size: 18px;
  color: #FFF;
  box-sizing: border-box;
  width: 95%;
  max-width: 500px;
  margin: 20px auto 10px;
  background: -webkit-gradient(linear, right top, left top, from(#F18EBB), to(#e4bef7));
  background: -o-linear-gradient(top, #F18EBB, #e4bef7);
  background: linear-gradient(to bottom, #a9cfa5, #75a872);
}

.title_vis h3 {
  margin: 0;
  padding: 0 30px;
  border-top: dashed 1px #FFF;
  /*上の破線*/
  border-bottom: dashed 1px #FFF;
  /*下の破線*/
  line-height: 46px;
}

.title_vis:before,
.title_vis:after {
  position: absolute;
  content: '';
  width: 0px;
  height: 0px;
  z-index: 1;
}

.title_vis:before {
  /*左端の山形*/
  top: 0;
  left: 0;
  border-width: 30px 0px 30px 15px;
  border-color: transparent transparent transparent #fff;
  border-style: solid;
}

.title_vis:after {
  /*右端の山形*/
  top: 0;
  right: 0;
  border-width: 30px 15px 30px 0px;
  border-color: transparent #fff transparent transparent;
  border-style: solid;
}

#sub h4 {
  font-size: 2rem;
  font-weight: 600;
  color: #e656ab;
}

#sub .inner .pink {
  color: #d8488d
}

#sub p.text_box.size_s {
  font-size: 1.2rem;
}

/*共通dlリスト*/
#sub section dl.info {
  width: 96%;
  max-width: 500px;
  margin: 0 auto;
}

#sub section dl.info dt {
  color: #eaa6da;
  border-radius: 2px;
  padding: 0 10px;
  box-sizing: border-box;
  text-align: left;
  font-weight: 600;
  border-left: 6px solid;
  margin-top: 20px;
}

#sub section dl.info dd {
  margin-bottom: 10px;
  color: #6f6f6f;
  text-align: left;
}

#sub section dl.info dd.exe span.box_01 {
  font-weight: 600;
  display: block;
  color: #ef6d7e;
  font-size: 1.8rem;
  text-align: center;
  background: #fbeeef;
  margin: 20px 0;
  border-radius: 6px;
}

#sub section dl.info dd.exe span.title_01 {
  display: block;
  background: #f5abb5;
  text-align: center;
  border-radius: 2rem;
  margin-top: 20px;
  color: #fff;
  font-size: 1.8rem;
  max-width: 350px;
  margin: 10px auto 0;
  width: 96%;
}

#sub section dl.info dd.exe ul {
  max-width: 350px;
  margin: 0 auto;
  width: 96%;
}

#sub section dl.info dd.exe ul li:first-child {
  font-weight: 600;
  color: #e2828f;
  margin-top: 10px;
}

#sub section dl.info dd.exe ul li:nth-child(2) {
  font-size: 1.4rem;
  color: #e2828f;
  border-bottom: 1px dashed;
}

#sub section dl.info dd.exe ul li:nth-child(3) {}

#sub section dl.info dd.exe ul li:nth-child(4) {
  border: 1px solid #e2828f;
  color: #e2828f;
  text-align: center;
  border-radius: 4px;
}

/*フッター上本日の出勤*/
#sub #today_schedule ul.cast_box.default {
  flex-wrap: nowrap;
  justify-content: flex-start;
}

#sub #today_schedule ul.cast_box.default li {
  margin: 0;
}

/*フォーム共通*/
form dl {
  max-width: 400px;
  width: 90%;
  margin: 0 auto;
}

form dl dt {
  margin-top: 16px;
  text-align: left;
  width: 100%;
  margin: 16px auto 0;
  color: #676767;
  font-weight: 600;
}

form dl dd {
  text-align: left;
  border: 2px solid #a5a5a5;
    font-size: 1.6rem;
    line-height: 30px;
    border-radius: 4px;
	background: #fff;
	  padding: 2px 8px;
	  box-sizing: border-box;
}

form dl dd label {
  background: #f3f3f3;
  border-radius: 4px;
  padding: 5px;
  margin-bottom: 6px;
  display: block;
  font-size: 1.4rem;
  color: #9e9e9e;
}

form dd.select,
form dd span.select {
  position: relative;
  display: block;
}

form dd span.select select,
form dd.select select {
  font-size: 1.6rem;
  color: #868686;
  display: inline-block;
  width: 100%;
  height: 40px;
  border-radius: 2rem;
  background: #fff;
  border: 2px solid #a5a5a5;
  padding: 0 8px;
}

form dd span.select:before,
form dd.select:before {
  pointer-events: none;
  display: inline-block;
  content: "▼";
  position: absolute;
  right: 8px;
  top: 8px;
  color: #bbb;
  font-size: 12px;
}

form dl select[name="hour"],
form dl select[name="min"] {
  max-width: 50px;
}

form dl input[type="text"],
form dl input[type="email"],
form dl input[type="tel"] {
  border: 2px solid #a5a5a5;
  font-size: 1.6rem;
  line-height: 30px;
  border-radius: 4px;
  width: 100%;
  background: #fff;
  padding: 2px 8px;
  box-sizing: border-box;
}

form dl input[type="text"][name="day"] {
  margin-bottom: 4px;
}

form dd textarea {
  width: 100%;
  background: #fff;
  padding: 2px 8px;
  box-sizing: border-box;
  border: 2px solid #a5a5a5;
}

/*
システムページ
(管理画面からエディタ入力ができる設定のためのCSSも記述されています)
*/
#contents_system .text_box.system_top {
 margin: 10px auto 0;
}
#contents_system p.text_box {
  max-width: 450px;
}
#contents_system p.text_box.text_box_2 {
  max-width: 400px;
}
#contents_system p.text_box span.vis {
  font-weight: 600;
  color: #345726;
}

#contents_system .bnr_box {
margin: 10px auto;
display: block;
background: #efefef;
padding: 10px 4px;
max-width: 400px;
width: 95%;
box-sizing: border-box;
}
#contents_system .bnr_box img {
  width: min(20%,60px);
  height: auto;
  box-shadow: 1px 1px 1px #000;
}
#contents_system .bnr_box p {
  font-size: 1.8rem;
  border-radius: 4rem;
  margin: 10px auto 0;
  width: 100%;
  color: #fff;
  background: -webkit-gradient(linear, right top, left top, from(#82cae6), to(#9de8d1));
  background: -o-linear-gradient(right, #82cae6, #9de8d1);
  background: linear-gradient(to left, #82cae6, #9de8d1);
  max-width: 300px;
  padding: 4px 0;
}
#contents_system .bnr_box p a{
  color: #fff;
  height: 100%;
  width: 100%;
  display: block;
}
#contents_system .bnr_box p i {
  margin: 0 0 0 10px;
}
#contents_system table {
  max-width: 400px;
  margin: 0 auto;
  width: 95%;
  border: 1px solid #dd9dbb;
}

#contents_system table tr {
  line-height: 2;
}

#contents_system table tr th {
  background: #f4edf5;
  color: #d2488d;
  width: 40%;
  border-bottom: 1px solid #ecb5cf;
  vertical-align: middle;
}

#contents_system table tr td {
  width: 60%;
  background: rgba(255, 255, 255, 0.6);
  color: #d2488e;
  border-bottom: 1px dashed #de9dbc;
  box-sizing: border-box;
  font-size: 1.8rem;
  vertical-align: middle;
}

#contents_system table span {
  font-size: 1.2rem;
  line-height: 1.6;
  display: block;
}

#contents_system p.text_box.pink {
  font-size: 1.2rem;
}

#contents_system ul.event {
  width: 90%;
  margin: 0 auto;
  max-width: 500px;
  background: #fff;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4);
}


ul.flow {
  text-align: left;
  max-width: 94%;
  margin: 10px auto;
  background: #fff;
  border-radius: 4px;
  max-width: 500px;
}

ul.flow li {
  margin-bottom: 24px;
  color: #e783a7;
  padding: 2px 14px;
  background: #f5f5f5;
  border-radius: 4px;
  font-weight: 600;
}

ul.flow li:last-child {
  margin-bottom: 0;
}

ul.flow li:after {
  content: "\f103";
  font-family: "Font Awesome 5 Free";
  color: #e783a7;
  text-align: center;
  font-weight: 900;
}

ul.flow li:last-child:after {
  display: none;
}

#sub #contents_system h4 {
  background: url(../images/bg_01.jpg);
  max-width: 500px;
  margin: 10px auto 0px;
  width: 94%;
  background-size: cover;
  font-size: 2.4rem;
}

/*スケジュールページ*/
#contents_schedule p.day {
  background: #e2e2e2;
  color: #484848;
  font-size: 1.8rem;
  margin: 20px 2% 4px;
  border-radius: 4px;
}

/* メルマガページ */
#contents_magazine form input[type="text"] {
  background: #fff;
  border: 2px solid #9a9a9a;
  padding: 8px;
  border-radius: 40px;
  max-width: 370px;
  display: block;
  margin: 0 auto;
  width: 90%;
}

#contents_magazine form label {
  display: inline-block;
  background: #dcdcdc;
  border-radius: 50px;
  padding: 0px 10px;
  line-height: 2;
  margin-top: 10px;
}

#contents_schedule ul.schedule_nav {
  display: flex;
  flex-wrap: wrap;
  width: 98%;
  margin: 0 auto;
  max-width: 500px;
}

#contents_schedule ul.schedule_nav li {
  width: calc(99%/3);
}

#contents_schedule ul.schedule_nav li a {
  background: #e4e4e4;
  display: block;
  color: #333;
  margin-bottom: 4px;
  border-radius: 4px;
}

#contents_schedule ul.schedule_nav li:first-child {
  width: 100%;
}

#contents_schedule ul.schedule_nav li:nth-child(3n) {
  margin: 0 0.5%;
}

#contents_schedule ul.schedule_nav li.active a {
  background: #c1bce6;
}

/*求人ページ*/
#contents_recruit section.flow dl {
  max-width: 500px;
  width: 94%;
  margin: 0 auto;
}

#contents_recruit section.flow dt {
  /*
color: #d872a0;
margin-top: 10px;*/
  /*  font-size: 1.8rem;
padding: 4px 2px;*/
  background: #f6ebfb;
}

#contents_recruit section.flow dd {
  font-size: 1.6rem;
  text-align: left;
  color: #7b7b7b;
}

#contents_recruit section.flow dd span {
  color: #d776a7;
}

#contents_recruit section.flow dd.box_01 span {
  background: #a0a0a0;
  text-align: center;
  color: #fff;
  border-radius: 4px;
  max-width: 70px;
  font-size: 1.4rem;
  padding: 0px 10px;
  margin-right: 10px;
  line-height: 1.6rem;
}

#contents_recruit .top {
  background: url(../images/bg_04.jpg);
  background-size: cover;
  max-width: 500px;
  margin: 20px auto 10px;
  width: 100%;
  text-align: left;
  padding: 14px;
  box-sizing: border-box;
  color: #8e8e8e;
  font-size: 1.8rem;
}

#contents_recruit .top span {
  background: rgba(255, 255, 255, 0.8);
  display: block;
  padding: 0 10px;
  box-shadow: 0px 0px 6px #d2d2d2;
}

#contents_recruit h4 {
  background: url(../images/bg_01.jpg);
  background-size: 140%;
  margin-top: 20px;
  border-radius: 4px;
  width: 96%;
  margin: 20px auto 10px;
  padding: 6px 0;
}

#contents_recruit section.flow dd ul.contact li:nth-child(1) a span {
  color: #84bdd8;
}

#contents_recruit section.flow dd ul.contact li:nth-child(3) a span {
  color: #a0d884;
}

#contents_recruit p.text_box {
  max-width: 450px;
}

#contents_recruit p.text_box span {
  font-weight: 600;
  color: #E574B9;
}

/*アクセスページ*/
/*#sub section#contents_access dl.info dd {
display: flex;
align-items: start;
}
#sub section#contents_access dl.info dd img {
width: calc(100%/2);
height: 100%;
}*/
#contents_access div.text_box {
  font-size: 1.4rem;
  color: #909090;
  text-align: left;
  width: 94%;
  max-width: 400px;
  margin: 0 auto;
}

#contents_access div.text_box a {
  color: #345726;
}

#contents_access div.text_box .access_info {
  border: 2px solid #ddd;
  padding: 10px;
  background: #fff;
  border-radius: 3px;
  margin-bottom: 20px;
}

#contents_access div.text_box .room_name {
  font-size: 1.2em;
  font-weight: bold;
  color: #345726;
}

#contents_access .map_list li {
  margin-bottom: 20px;
}

/*アメニティページ*/
#contents_secret dl {
  max-width: 500px;
  margin: 0 auto;
  width: 96%;
}

#contents_secret dl dt {
  background: url(../images/bg_01.jpg);
  background-size: cover;
  color: #c54073;
}

#contents_secret dl dd {
  color: #c15966;
  font-size: 1.4rem;
  text-align: left;
  margin-bottom: 20px;
  background: #fff;
  padding: 10px;
  box-sizing: content-box;
  display: inline-block;
}

#contents_secret dl dd img {
  width: 100%;
}

/*お問い合わせページ*/
ul.contact li a {
  display: block;
  text-align: center;
  color: #fff;
  border-radius: 6px;
  box-shadow: 0 0 2px #d4d4d4;
  padding: 8px 0;
  margin: 10px 0;
  font-size: 1.4rem;
}

ul.contact li a span {
  display: block;
  background: rgba(255, 255, 255, 0.9);
  width: 96%;
  max-width: 180px;
  margin: 0 auto;
  border-radius: 2rem;
  font-size: 1.6rem;
}

/*ul.contact li:nth-child(1) a {
background: #d8ca84;
font-size: 1.6rem;
}*/
ul.contact li:nth-child(1) a {
  background: #84bdd8;
}

ul.contact li:nth-child(1) a span {
  color: #84bdd8;
}

ul.contact li:nth-child(2) a {
  background: #d885a0;
}

ul.contact li:nth-child(2) a span {
  color: #d885a0;
}

ul.contact li:nth-child(3) a {
  background: #a0d884;
}

ul.contact li:nth-child(3) a img {
  margin: 10px auto 0;
  display: block;
}

ul.contact li:nth-child(3) a span {
  color: #a0d884;
}

/*プロフィールページ*/
main.profile .img_box {
  position: relative;
}

#contents_profile .img_box>img.new {
  position: absolute;
  right: 0;
  bottom: 0;
  left: auto;
  width: 80px;
}

#contents_profile .img_box>img.rnk {
  position: absolute;
  bottom: 4px;
  left: 4px;
}

#contents_profile .img_box {
  width: 220px;
  height: 330px;
  overflow: hidden;
  margin: 0 auto 10px;
  position: relative;
  text-align: center;
}

main.profile .inner dl.qa {
  border: 1px solid #e6e6e6;
  width: 94%;
  margin: 10px auto;
  border-radius: 4px;
  text-align: left;
  box-shadow: 0px 0px 4px #d6d6d6;
}

main.profile .inner dl.qa dt {
  padding: 6px;
  background: #e0ebdf;
  color: #1a5417;
}

main.profile .inner dl.qa dd {
  padding: 6px;
  padding-left: 10px;
  color: #909090;
}

#sub #contents_profile h4 {
  background: url(../images/bg_01.jpg);
  margin: 10px auto 0px;
  width: 100%;
  background-size: cover;
}

#contents_profile .img_box>img {
  max-width: 220px;
  max-height: auto;
  position: absolute;
  left: 0;
}

main.profile .inner dl.qa dd img.icon_01 {
  width: auto;
  height: 22px;
}

main.profile .inner dl.qa dd img.twitter {
  width: 20px;
}

.profile_sch_box {
  display: block;
  width: 94%;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0px 0px 4px #d6d6d6;
  box-sizing: border-box;
  border-radius: 4px;
}

ul.profile_sch_variable {
  flex-grow: unset;
  display: flex;
  height: 40px;
  border-bottom: 1px dashed #c3c3c3;
  justify-content: center;
  align-items: center;
}

ul:last-child.profile_sch_variable {
  border-bottom: 0;
}

ul.profile_sch_variable li:nth-child(1) {
  flex-basis: 50%;
  background: #d7e0f7;
  color: #565656;
  line-height: 4rem;
}

ul.profile_sch_variable li:nth-child(2) {
  flex-basis: 50%;
  color: #7b7b7b;
}

/*リンク*/
#recruit_bnr {
  background: url(../images/bg_10.jpg);
  background-size: 50px;
  background-repeat: repeat;
  padding: 15px;
  padding: 3%;
}

#recruit_bnr a.btn {
  background: -webkit-gradient(linear, left top, left bottom, from(#d060aa), to(#fc9dbf));
  background: linear-gradient(to bottom, #a9cfa5, #75a872);
  max-width: 180px;
  margin: 0 auto 0;
  display: block;
  9jn
}

#recruit_bnr .box {
  background: url(../images/vis_04.png), url(../images/vis_12.png);
  background-position: right bottom, right bottom;
  background-repeat: no-repeat;
  background-size: 60px, 220px;
  padding: 10px;
  box-shadow: 0 0 0 2px #a5cca3, 0 0 0 4px #fff, 0 0 0 6px #a5cca3;
  max-width: 600px;
  margin: 0 auto;
  box-sizing: border-box;
}

#recruit_bnr p {
  width: 70%;
}

#recruit_bnr p.text_01 {
  text-shadow: 0px 0px 4px #fff, 0px 0px 4px #fff;
  text-align: left;
  margin: 20px 0;
}

#recruit_bnr p.text_01 span {
  color: #30bc1c;
}

#recruit_bnr h2 {
  background: url(../images/vis_08.png) top left no-repeat;
  background-size: 40px;
  width: 70%;
}

#recruit_bnr h2 img {
  max-width: 220px;
}

/*RESEXT*/
#bnr_01 ul li p {
  padding: 20px 0;
  line-height: 1.4;
}

#bnr_01 ul li:first-child p img {
  width: 94%;
  max-width: 316px;
}

#bnr_01 ul li:first-child {
  background: url(../images/bg_03.jpg) no-repeat;
  background-position: 60%;
  padding: 3%;
  background-size: cover;
}

#bnr_01 ul li:first-child p {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 0px 1px 6px rgba(228, 120, 150, 0.7);
  position: relative;
  max-width: 600px;
  margin: 1% auto;
}

#bnr_01 ul li:first-child p:before {
  content: "";
  background-repeat: no-repeat;
  background-position: -10% -30%, 110% 120%;
  background-size: 120px;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

#bnr_01 ul li:first-child p a.btn {
  background: #e47996;
  margin: 10px 0 0 0;
}

/*レオン*/
#bnr_01 ul li:nth-child(2) {
  background: url(../images/bg_17.jpg) no-repeat;
  padding: 3%;
  background-size: cover;
  margin: 1% 0;
}

#bnr_01 ul li:nth-child(2) p {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 0px 1px 6px rgba(223, 150, 204, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

#bnr_01 ul li:nth-child(2) p img {
  width: 95%;
  max-width: 320px;
  padding: 5px 0 5px 0;
}

/*メルマガ*/
#bnr_01 ul li:nth-child(3) {
  background: url(../images/bg_04.jpg) no-repeat;
  padding: 3%;
  background-size: cover;
  margin-top: 1%;
}

#bnr_01 ul li:nth-child(3) p {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 0px 1px 6px rgba(209, 158, 234, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

#bnr_01 ul li:nth-child(3) p a.btn {
  background: #d19eea;
  margin: 10px 0 0 0;
}

#bnr_01 ul li:nth-child(3) p img {
  width: 90%;
  max-width: 250px;
  margin-bottom: 10px;
}

/*アンケート*/
#bnr_01 ul li:nth-child(4) {
  background: url(../images/bg_05.jpg) no-repeat;
  padding: 3%;
  background-size: cover;
  margin: 1% 0;
}

#bnr_01 ul li:nth-child(4) p {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 0px 1px 6px rgba(143, 198, 212, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

#bnr_01 ul li:nth-child(4) p img {
  width: 90%;
  max-width: 200px;
  padding: 15px 0 5px 0;
}

#bnr_01 ul li:nth-child(4) p a.btn {
  background: #8fc6d4;
  margin: 0px 0 0 0;
}

#bnr_01 ul li:nth-child(4) p span {
  color: #ea5395;
}

/*領収書*/
#bnr_01 ul li:nth-child(5) {
  background: url(../images/bg_15.jpg) no-repeat;
  padding: 3%;
  background-size: cover;
  margin: 1% 0;
}

#bnr_01 ul li:nth-child(5) p {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 0px 1px 6px rgba(105, 207, 145, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

#bnr_01 ul li:nth-child(5) p img {
  width: 95%;
  max-width: 280px;
  padding: 5px 0 5px 0;
}

/* LINE pay */
#bnr_01 ul li:nth-child(6) {
  background: url(../images/bg_19.jpg) no-repeat;
  padding: 3%;
  background-size: cover;
  margin: 1% 0;
}

#bnr_01 ul li:nth-child(6) p {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 0px 1px 6px rgb(255, 255, 137, 70%);
  max-width: 600px;
  margin: 0 auto;
}

#bnr_01 ul li:nth-child(6) p img {
  width: 95%;
  max-width: 320px;
  padding: 5px 0 5px 0;
}

/*アンジュスパ*/
#bnr_01 ul li:nth-child(7) {
  background: url(../images/bg_16.jpg) no-repeat;
  padding: 3%;
  background-size: cover;
  margin: 1% 0;
}

#bnr_01 ul li:nth-child(7) p {
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0px 0px 1px 6px rgb(187 210 77 / 70%);
  max-width: 600px;
  margin: 0 auto;
}

#bnr_01 ul li:nth-child(7) p img {
  width: 95%;
  max-width: 320px;
  padding: 5px 0 5px 0;
}

/*暁*/
#bnr_01 ul li:nth-child(8) {
  background: url(../images/bg_18.jpg) no-repeat;
  padding: 3%;
  background-size: cover;
  margin: 1% 0;
}

#bnr_01 ul li:nth-child(8) p {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 0px 1px 6px rgba(207, 163, 105, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

#bnr_01 ul li:nth-child(8) p img {
  width: 95%;
  max-width: 320px;
  padding: 5px 0 5px 0;
}



#bnr_02 {
  display: flex;
  flex-wrap: wrap;
}

#bnr_02 ul {
  width: calc(97%/2);
  background-size: cover;
}

#bnr_02 ul:nth-child(odd) {
  margin: 0 0.5% 1% 1%;
}

#bnr_02 ul:nth-child(even) {
  margin: 0 1% 1% 0.5%;
}

#bnr_02 ul li img {
  width: 66%;
  max-width: 120px;
}

#bnr_02 ul li:first-child {
  height: 122px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#bnr_02 ul:nth-child(1) {
  background: url(../images/bg_06.jpg);
  background-size: cover;
}

#bnr_02 ul:nth-child(1) li:nth-child(2) a {
  background: #ddd677;
  color: #fff;
  display: block;
}

#bnr_02 ul:nth-child(2) {
  background: url(../images/bg_07.jpg);
  background-size: cover;
  background-position: bottom;
}

#bnr_02 ul:nth-child(2) li:nth-child(2) a {
  background: #d19eea;
  color: #fff;
  display: block;
}

#bnr_02 ul:nth-child(3) {
  background: url(../images/bg_08.jpg);
  background-size: cover;
}

#bnr_02 ul:nth-child(3) li:nth-child(2) a {
  background: #69cf91;
  color: #fff;
  display: block;
}

#bnr_02 ul:nth-child(3) li img {
  max-width: 210px;
}

#bnr_02 ul:nth-child(4) {
  background: url(../images/bg_09.jpg);
  background-size: cover;
}

#bnr_02 ul:nth-child(4) li:nth-child(2) a {
  background: #ef9dc1;
  color: #fff;
  display: block;
}

#bnr_02 ul:nth-child(5) {
  background: url(../images/bg_09.jpg);
  background-size: cover;
}

#bnr_02 ul:nth-child(5) li:nth-child(2) a {
  background: #ef9dc1;
  color: #fff;
  display: block;
}

.img_recruit_bnr_box {
  padding-bottom: 30px;
  display: grid;
  justify-content: center;
}
.img_recruit_bnr {
  width: 97%;
  max-width: 400px;
}


/****************************************
480px以上
****************************************/
@media (min-width: 480px) {
  .drawer-list h1 img.logo {
    max-width: 120px;
    margin-top: 20px;
  }

  /*ページ下共通本日出勤*/
  #today_schedule ul.cast_box.default p.img_box {
    max-height: 400px;
  }

  #top header ul.info_box {
    display: none;
  }

  header p.logo {
    right: auto;
    left: 10px;
  }

  #sub header p.logo {
    left: 0;
    right: 0;
  }

  /*電話・営業時間・twitter*/
  #sub ul.info {
    display: flex;
  }

  section#section_news #box {
    margin: 0 auto;
  }

  section#twitter p iframe {
    width: 100% !important;
  }

  section#twitter p {
    max-height: 400px;
    width: 86%;
    max-width: 500px;
    overflow: scroll !important;
    margin: 0 auto;
    border-radius: 4px;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  section#twitter p::-webkit-scrollbar {
    display: none;
  }

  #top header .inner header p.logo img {
    width: 150px;
  }

  /*新人情報*/
  #section_newface ul.cast_box.side li .img_box {
    max-width: 180px;
  }

  /*ピックアップ*/
  #section_covergirl ul.cast_box.side li .img_box {
    max-width: 180px;
  }

  /* スタッフ一覧共通*/
  ul.cast_box.side li .img_box>img {
    width: 100%;
    padding-left: 0;
    height: auto;
    max-width: 180px;
  }

  ul.cast_box.side li .txt_box p {
    width: 85%;
  }

  /*共通*/
  ul.cast_box.default {
    justify-content: center;
  }

  ul.cast_box.default p.img_box {
    max-height: 340px;
    width: 220px;
    margin: 5px;
  }

  ul.cast_box.default li {
    width: 230px;
  }

  .cast_box li {
    max-height: initial;
  }

  .flame_box {
    max-width: 500px;
    margin: 0 auto;
  }

  /*アメニティーページ*/
  #contents_secret dl dd {
    display: flex;
    align-items: start;
  }

  #contents_secret dl dd img {
    max-width: 220px;
    margin-right: 20px;
  }

  footer .line_bnr li {
    padding-right: 10px;
  }

  footer .line_bnr {
    flex-direction: row;
  }

  /* 会社概要 */
  footer .gaiyo {
    display: flex;
    margin: 0 auto;
    justify-content: center;
  }

  .img_24h {
    width: 100%;
    margin-left: 20px;
  }

  /* 改行 */
  .sp_block {
    display: none;
  }
}

@media (min-width: 768px) {


  header ul.info_box li a {
    font-size: 2.8rem;
    width: 54px;
    height: 54px;
  }

  footer #name {
    padding: 10px;
  }

  .headline ul li {
    padding: 4px;
  }

  #section_schedule_today ul.cast_box.default p.img_box {
    max-height: 300px;
    overflow: hidden;
  }

  #sp_info ul {
    /* display: flex;
justify-content: center;
font-size: 2rem; */
  }

  #sp_info ul li:first-child {
    width: 320px;
  }

  #sp_info ul li:first-child a {
    max-width: 300px;
    font-size: 2rem;
  }

  /*新人情報*/
  section#section_newface {
    background: none;
    float: left;
    width: 50%;
    box-sizing: border-box;
    height: auto;
    padding: 0;
  }

  section#section_newface .flame_box {
    max-width: 360px;
    margin: 0 20px 0 auto;
  }

  .pc_bg01 {
    background: url(../images/bg_02.jpg);
    background-size: 32px;
    background-repeat: repeat;
    padding: 40px 0;
  }

  /*カバーガール*/
  #section_covergirl {
    background: none;
    float: left;
    width: 50%;
    box-sizing: border-box;
    height: auto;
    padding: 0;
  }

  /*NEWS*/
  #section_news {
    clear: both;
  }

  /*ピックアップ*/
  /*  #section_covergirl ul.cast_box.side li .img_box {
height: 220px;
}*/
  /*ツイッター*/
  section#twitter p {
    max-height: 320px;
    width: 90%;
    margin: 0 auto;
    max-width: 300px;
  }

  /*スケジュール*/
  /*ピックアップ*/
  section#section_covergirl .flame_box {
    max-width: 360px;
    margin: 30px auto;
  }

  #bnr_02 ul {
    width: calc(97%/4);
  }

  #bnr_02 ul:nth-child(odd) {
    margin: 1% 1% 1% 0;
  }

  #bnr_02 ul:nth-child(even) {
    margin: 1% 1% 1% 0;
  }

  #bnr_02 ul:nth-child(4) {
    margin: 1% 0 1% 0;
  }

  /*フッター*/
  footer #nav ul.nav li:nth-child(-n+8) {
    width: calc(96%/8);
    text-align: center;
    margin: 0;
  }

  footer #nav ul.nav {
    max-width: 600px;
  }

  footer {
    padding-bottom: 0;
  }

  /* 会社概要 */
  .img_gaiyo {
    width: 94%;
  }

  .img_24h {
    width: 90%;
  }

  /*プロフィールページ*/
  #sub #contents_profile h4 {
    margin: 0;
  }

  .profile_sch_box {
    width: 100%;
    display: flex;
    box-sizing: border-box;
    max-width: 760px;
    flex-wrap: wrap;
  }

  .profile_sch_box ul.profile_sch_variable {
    width: calc(100%/7);
    display: unset;
    height: auto;
    border: 0;
    border-right: 1px dashed #dadada;
    box-sizing: border-box;
  }

  .profile_sch_box ul.profile_sch_variable:last-child {
    border: 0;
  }

  .profile_sch_box ul.profile_sch_variable li:nth-child,
  .profile_sch_box ul.profile_sch_variable li:nth-child(2) {
    border-left: none;
  }

  .profile_sch_box ul.profile_sch_variable li {
    padding: 10px 0;
    font-size: 12px;
  }
}

@media (min-width: 1024px) {
  header p.logo {
    position: absolute;
  }

  /*ナビ*/
  .drawer-list h1 a {
    display: block;
    background: #fff;
    max-width: 118px;
    height: 118px;
    margin: 10px auto;
    width: 100%;
    padding: 10px;
    border-radius: 80px;
    padding: 28px 0;
    box-sizing: border-box;
    box-shadow: 0px 0px 0px 3px #92d28a, 0px 0px 0px 5px #fff;
  }

  .drawer-list {
    background: #cee3be;
  }

  .drawer-list ul li:nth-child(n+4) a {
    border: 2px dotted #5c7259;
    margin: 4px auto 8px;
  }

  .drawer-list h1 img.logo {
    width: 100px;
    margin-top: 0;
  }

  .drawer-list ul {
    padding: 0;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    margin: 0 auto;
    max-height: 690px;
  }

  /*メインビジュアル*/
  #top header .inner .scroll {
    bottom: 80px;
  }

  #top header .inner .scroll span {
    width: 20px;
    height: 20px;
  }

  #top header .inner .scroll::before {
    top: 6px;
    width: 22px;
    height: 22px;
  }

  /*ヘッダー*/
  header p.logo img {
    width: 100px;
  }

  header p.main_text {
    display: block;
    font-size: 3rem;
    color: #f5ffed;
    text-shadow: 0px 0px 6px #b1ff73;
    position: absolute;
    bottom: 100px;
    left: 0;
    right: 0;
    z-index: 10;
  }

  header p.main_text span {
    font-size: 2.2rem;
  }

  header h2.logo span {
    font-size: 2rem;
  }

  header {
    padding-right: 180px;
    box-sizing: border-box;
  }



  header .nav {
    background: none;
  }

  /*ヘッダー電話番号*/
  #top ul.info_01,
  #sub ul.info_01 {
    width: 240px;
    left: 0;
    bottom: 10px;
    position: fixed;
    z-index: 9;
    padding: 0;
  }

  #top ul.info_01 li:first-child,
  #sub ul.info_01 li:first-child {
    font-size: 1.6rem;
    color: #fff;
    text-shadow: none;
  }

  ul.info_01 li:last-child a {
    margin: 0;
    background: none;
    font-size: 1.6rem;
  }

  main.inner,
  footer {
    box-sizing: border-box;
    padding-right: 180px;
    margin-bottom: 0;
  }

  /*下層ページ共通N*/
  #sub ul.info_01 {
    display: block;
  }

  #sub main {
    padding: 10px 180px 30px 0;
  }

  .spinner {
    font-size: 6rem;
  }

  #sub header {
    height: 100px;
  }

  #sub header p.logo {
    /*margin-right: 180px;*/
    top: 20px;
  }

  #sub header p.main_text {
    display: none;
  }

  /*トップページのみ*/
  #top header h2 img {
    max-width: 400px;
  }

  /*出勤情報*/
  #section_schedule_today ul.cast_box.default li {
    width: 230px;
  }

  /*新着情報*/
  section#section_news {
    background: none;
    padding: 0;
    width: 100%;
    ;
    /* width: 50%; */
    /* float: left; */
  }

  #section_message {
    padding: 40px 0;
  }

  /* NEWS/ツイッター*/
  #section_news #box #info_box {
    width: 100%;
    max-height: 390px;
    height: 390px;
    margin-bottom: 0;
  }

  section#section_news #box {
    max-width: 360px;
    /* margin: 0 20px 0 auto; */
    width: 96%;
    padding: 0;
  }

  section#twitter #box {
    height: 490px;
    max-width: 370px;
    margin: 0 auto 0 20px;
  }

  section#twitter {
    background: none;
    float: left;
    width: 50%;
    padding: 0;
  }

  .pc_bg02 {
    /*background: #ffeff7;*/
    padding: 40px 0;
  }

  /*トップページ求人〜アンケートバナー*/
  #recruit_bnr h2 {
    width: 58%;
    margin: 0 auto 0 20px;
  }

  #recruit_bnr p {
    width: 60%;
    max-width: 300px;
  }

  #recruit_bnr .box {
    background-size: 60px, 520px;
    padding: 59px 0;
    margin: 0 auto;
    max-width: 614px;
    min-height: 1454px;
  }

  #recruit_bnr h2 img {
    max-width: 300px;
  }

  #recruit_bnr a.btn {
    max-width: 100%;
    width: 100%;
    line-height: 4.4rem;
    margin-left: 40px;
  }

  #recruit_bnr p.text_01 {
    margin: 34px 0 34px 46px;
    font-size: 1.8rem;
  }

  #bnr_01 {
    /*  padding: 2% 0;*/
  }

  #bnr_01 ul li:first-child p:before {
    background-size: 90px;
  }

  #bnr_01 ul li p {
    padding: 8px;
    font-size: 1.4rem;
    line-height: 1.4;
  }

  #bnr_01 ul li:first-child {
    padding: 0 20px 0;
  }

  #bnr_01 ul li:nth-child(2) {
    padding: 18px 20px 0;
  }

  #bnr_01 ul li:nth-child(3) {
    padding: 18px 20px 0;
  }

  #bnr_01 ul li:nth-child(4) {
    padding: 18px 20px 0;
  }

  #bnr_01 ul li:nth-child(5) {
    padding: 18px 20px 0;
  }

  #bnr_01 ul li:nth-child(6) {
    padding: 18px 20px 0;
  }

  #bnr_01 ul li:nth-child(7) {
    padding: 18px 20px 0;
  }

  #bnr_01 ul li:nth-child(8) {
    padding: 18px 20px 0;
  }

  #recruit_bnr {
    background: none;
    width: 100%;
    float: left;
    box-sizing: border-box;
    padding: 4px;
  }

  #bnr_01 ul li:first-child,
  #bnr_01 ul li:nth-child(2),
  #bnr_01 ul li:nth-child(3),
  #bnr_01 ul li:nth-child(4),
  #bnr_01 ul li:nth-child(5),
  #bnr_01 ul li:nth-child(6),
  #bnr_01 ul li:nth-child(7),
  #bnr_01 ul li:nth-child(8) {

    background: none;
    max-width: 390px;
    margin: 0 auto 0 10px;
    box-sizing: border-box;
    width: 100%;
  }

  #bnr_01 {
    width: 40%;
    float: left;
  }

  #bnr_02 {
    clear: both;
  }

  .pc_bg03 {
    background: url(../images/bg_10.jpg);
    background-size: 50px;
    background-repeat: repeat;
    padding: 40px 0;
  }

  /*アイコン*/
  #top header ul.info_box {
    display: none;
  }

  label.hamburger {
    display: none;
  }

  /*フッター*/
  footer ul.info_box_02 li:first-child {
    pointer-events: none;
  }

  .headline {
    padding-right: 240px;
  }

  .headline ul li {
    text-align: center;
  }

  nav.drawer-list {
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  nav.drawer-list::-webkit-scrollbar {
    display: none;
  }

  .drawer-list h1 img.logo {}

  .drawer-list li:nth-child(2) a,
  .drawer-list li:nth-child(3) {
    color: #5c7259;
    font-size: 1.6rem;
  }

  .drawer-list li:nth-child(n+3) a {
    color: #5c7259;
    border: 0;
  }

  .drawer-list,
  .drawer-list li {
    width: 180px;
    transform: translatex(0);
    border-bottom-left-radius: 0;
  }

  .drawer-list li:nth-child(2) a,
  .drawer-list li:nth-child(4) a,
  .drawer-list li:nth-child(6) a {
    border: none;
  }

  .drawer-list li a {
    color: #fff;
    border: none;
  }

  .drawer-list ul li:nth-child(n+4) {
    width: 140px;
    margin: 0 auto;
  }

  /*新人情報*/
  #section_newface .swiper-container {
    width: 100%;
    margin: 0 0 0 auto;
  }

  section#section_newface {
    padding: 0;
  }

  #section_newface h2 {
    height: 120px;
    margin: 0 auto;
    max-width: 400px;
  }

  /*本日の出勤*/
  section#section_schedule_today {
    padding: 20px 0;
  }

  .flame_box {
    width: 94%;
  }

  /*ピックアップ*/
  section#section_covergirl {
    padding: 0;
    float: left;
    width: 100%;
    box-sizing: border-box;
  }

  #section_covergirl h2 {
    margin: 0 auto 30px 20px;
    height: 90px;
    max-width: 516px;
  }

  section#section_covergirl .swiper-container {
    max-width: 480px;
    margin: 0 auto 0 0;
  }

  /* 下層ページ*/
  #sub main h3 {
    background-size: 100%;
  }

}