@charset "UTF-8";
/*===============================

    Reset

================================*/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
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;
}

body {
  line-height: 1;
}

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

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;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
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;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  background-repeat: no-repeat;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

/*===============================

    Base

================================*/
:root {
  --max-width: 1000px;
  --color-font: #333333;
  --color-primary: #04489D;
  --border-gray: #CED5DC;
  --base-margin: 8px;
  --margin-xs: calc(var(--base-margin) * 0.5);
  --margin-sm: var(--base-margin);
  --margin-md: calc(var(--base-margin) * 2);
  --margin-lg: calc(var(--base-margin) * 3);
  --margin-xl: calc(var(--base-margin) * 4);
}

html {
  color: #333333;
  font-size: 16px;
}
@media screen and (max-width: 320px) {
  html {
    font-size: 14px;
  }
}
@media screen and (min-width: 481px) {
  html {
    font-size: 26px;
  }
}

body {
  font-family: "Noto Sans JP", "Avenir", "Helvetica Neue", "Helvetica", "Arial", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic";
}

p:not([class]) {
  line-height: 1.8;
}

a {
  color: #333333;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  -webkit-backface-visibility: hidden;
}

.img {
  text-align: center;
}

.inner {
  max-width: 960px;
  margin: auto;
  padding: 0 20px;
}

#wrap {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/*===============================

    Utility

================================*/
.fixedBgImg {
  position: relative;
}
.fixedBgImg::before {
  content: "";
  display: block;
  width: 100%;
  height: 100vh;
  background: url(../images/bg_site.jpg);
  background-size: cover;
  background-position: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

.huti {
  text-shadow: #333333 2px 0px, #333333 -2px 0px, #333333 0px -2px, #333333 0px 2px, #333333 2px 2px, #333333 -2px 2px, #333333 2px -2px, #333333 -2px -2px, #333333 1px 2px, #333333 -1px 2px, #333333 1px -2px, #333333 -1px -2px, #333333 2px 1px, #333333 -2px 1px, #333333 2px -1px, #333333 -2px -1px;
}

.txt-center {
  text-align: center;
}

.txt-bold {
  font-weight: bold;
}

.txt-link {
  color: #FF0066;
  text-decoration: underline;
}

.underline {
  font-weight: bold;
  background: linear-gradient(transparent 85%, #FFD101 85%);
}

.marker {
  font-weight: bold;
  background: linear-gradient(transparent 0%, #FFD101 0%);
  padding: 0 0.1em;
}

.hukidashi {
  display: flex;
  justify-content: center;
  font-weight: bold;
  text-align: center;
  gap: 0.5em;
}
.hukidashi::before, .hukidashi::after {
  content: "";
  display: block;
  width: 1px;
  background-color: #fff;
}
.hukidashi::before {
  transform: rotate(-12deg);
}
.hukidashi::after {
  transform: rotate(12deg);
}

.iframeWrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.iframeWrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.flexbox {
  display: flex;
  justify-content: space-between;
}

.lock {
  overflow: hidden;
}

@media screen and (min-width: 769px) {
  .flexbox-pc {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}
/*===============================

    animation

================================*/
.effectFadeIn {
  opacity: 0;
  transition: all 3s;
}
.effectFadeIn.effectScroll {
  opacity: 1;
}

.effectFadeUp {
  opacity: 0;
  transform: translate(0, 45px);
  transition: all 1s;
}
.effectFadeUp.effectScroll {
  opacity: 1;
  transform: translate(0, 0);
}

.effectFadeRight {
  opacity: 0;
  transform: translate(45px, 0);
  transition: all 1s;
}
.effectFadeRight.effectScroll {
  opacity: 1;
  transform: translate(0, 0);
}

.effectFadeLeft {
  opacity: 0;
  transform: translate(-45px, 0);
  transition: all 1s;
}
.effectFadeLeft.effectScroll {
  opacity: 1;
  transform: translate(0, 0);
}

.effectZoom {
  transition: all 6s;
}
.effectZoom.effectScroll {
  transform: scale(1.1);
}

.effectMaker {
  font-weight: bold;
  background: linear-gradient(transparent 50%, rgba(253, 242, 161, 0.6) 50%);
  background-repeat: no-repeat;
  background-size: 200% 100%;
  background-position: 200% 0;
  transition: 2.5s;
}
.effectMaker.effectScroll {
  background-position: 100% 0;
}

.floatingEffect {
  animation: fuwafuwa 3s infinite;
}

@keyframes fuwafuwa {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0px);
  }
}
/*===============================

    Layout

================================*/
/*
    メインコンテンツ上下余白
================================*/
#mainContents {
  overflow: hidden;
}

/*
    余白
================================*/
.sc {
  padding: 40px 0;
}
.sc_inner {
  margin-top: 2.5rem;
}

/*===============================

    Component

================================*/
/*
    セクション見出し
================================*/
.sc_header {
  text-align: center;
}

.heading {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  color: var(--color-primary);
  text-shadow: 2px 3px 0px rgba(4, 72, 157, 0.1);
}

.heading-bg {
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
  line-height: 1.5;
  color: #fff;
  text-shadow: 0px 0px 8px #BB2F88;
  border: solid 1px #bb2f88;
  background-image: url(../images/bg_zarazara.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 0.1em 0.4em;
}

.btn {
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  color: #000;
  display: inline-block;
  padding: 0.8888888889em;
  background: linear-gradient(to bottom, #FFD100 0%, #FFD100 50%, #EFC400 50%, #EFC400 100%);
  position: relative;
  letter-spacing: 0.1em;
  transition: all 0.2s ease;
  min-width: 280px;
  border-radius: 1000px;
}
@media screen and (min-width: 481px) {
  .btn {
    width: 460px;
  }
}
.btn::after {
  content: "";
  display: block;
  width: 1.3888888889em;
  height: 1.3888888889em;
  background-image: url(../images/icon_arrow.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 0.8888888889em;
  top: 50%;
  transform: translateY(-50%);
}
.btn-line {
  background: linear-gradient(to bottom, #00C053 0%, #00C053 50%, #00B24D 50%, #00B24D 100%);
}

/*
    CTA
================================*/
.cta_body {
  background-color: var(--color-primary);
  padding: 2.5rem 1.25rem;
}
.cta_body > p {
  color: #fff;
}
.cta .hukidashi {
  font-size: 1.25rem;
  color: #fff;
  margin-top: 2.5rem;
}
.cta .marker {
  color: var(--color-primary);
  background: linear-gradient(transparent 0%, #fff 0%);
}
.cta_logo {
  text-align: center;
  margin-top: 1.25rem;
}
.cta_btn {
  margin-top: 1.25rem;
  text-align: center;
}
.cta_btn .btn + .btn {
  margin-top: 1.25rem;
}

/*
    画面下部オーバーレイ
================================*/
.overlayArea {
  opacity: 0;
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 100;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.overlayArea_btn {
  color: #000;
  display: block;
  background: linear-gradient(to bottom, #FFD100 0%, #FFD100 50%, #EFC400 50%, #EFC400 100%);
  text-align: center;
  padding: 1em;
  font-weight: bold;
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.overlayArea_btn::after {
  content: "";
  display: block;
  width: 1.3888888889em;
  height: 1.3888888889em;
  background-image: url(../images/icon_arrow.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 0.5em;
}

#sitefooter {
  background-color: #02316B;
  text-align: center;
  color: #fff;
  font-size: 0.875rem;
  padding: 0.625rem;
}

/*===============================

    Page

================================*/
/*
    トップビジュアル
================================*/
.topVisual {
  text-align: center;
}
.topVisual_btn {
  margin-top: -8.375rem;
}

/*
    ホスト経験を活かし 〜
================================*/
.intro {
  background-image: url(../images/bg_office.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 1.25rem 0 2.5rem;
}
.intro_body {
  color: #fff;
  margin-top: 0.3125rem;
}
.intro_img {
  text-align: center;
  margin-top: 1.25rem;
}

/*
    経験が武器になる 〜
================================*/
.experience {
  background: linear-gradient(to bottom, #FFFFFF, #B1DCFC);
}
.experience_img {
  margin-top: 1.25rem;
}
.experience_img_txt {
  margin-top: 1.25rem;
}

.skill {
  counter-reset: num;
  margin-top: 2.5rem;
}
.skill_item {
  counter-increment: num;
  background-color: #fff;
}
.skill_item + .skill_item {
  margin-top: 2.5rem;
}
.skill_item_ttl {
  font-size: 1.375rem;
  text-align: center;
  color: #fff;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  padding: 1.0909090909em;
  background-image: url(../images/bg_hexagon.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  line-height: 1.5;
}
.skill_item_ttl_num {
  display: block;
  color: var(--color-primary);
  background-color: #fff;
  font-size: 0.875rem;
  padding: 0.5em;
  text-align: center;
  width: 7.5em;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  text-shadow: none;
  line-height: 1;
}
.skill_item_ttl_num::before, .skill_item_ttl_num::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  position: absolute;
}
.skill_item_ttl_num::before {
  border-top: 1em solid transparent;
  border-bottom: 1em solid transparent;
  border-left: 0px solid transparent;
  border-right: 0.7142857143em solid #fff;
  right: 100%;
  top: 0;
}
.skill_item_ttl_num::after {
  border-top: 1em solid transparent;
  border-bottom: 1em solid transparent;
  border-left: 0.7142857143em solid #fff;
  border-right: 0px solid transparent;
  left: 100%;
  top: 0;
}
.skill_item_icon {
  text-align: center;
}
.skill_item_txt {
  margin-top: 0.625rem;
  line-height: 1.8;
}
.skill_item_body {
  padding: 1.25rem;
}

/*
    ホスト業界からのセカンドキャリア 〜
================================*/
.career {
  background-color: #E6EDF5;
  padding-bottom: 2.5rem;
}

.job {
  margin-top: 2.5rem;
}
.job_item {
  border: solid 1px var(--color-primary);
}
.job_item + .job_item {
  margin-top: 2.5rem;
}
.job_item_body {
  background-color: #fff;
  padding: 1.25rem;
}
.job_item_body_skills {
  font-size: 0.8125rem;
  background-color: #F0F0F0;
  padding: 0.6153846154em;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4615384615em;
  margin-top: 1rem;
}
.job_item_body_skills li::after {
  content: "/";
  display: inline-block;
  margin-left: 0.4615384615em;
}

.industry {
  margin-top: 2.5rem;
}
.industry_ttl {
  text-align: center;
  font-size: 1.625rem;
  font-weight: bold;
}
.industry_ttl::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-top: 0.8461538462em solid var(--color-primary);
  border-bottom: 0px solid transparent;
  border-left: 0.9615384615em solid transparent;
  border-right: 0.9615384615em solid transparent;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.6153846154em;
}
.industry_list {
  margin-top: 2rem;
}
.industry_body {
  margin-top: 2.5rem;
  background-color: #fff;
  padding: 1.25rem;
  box-shadow: 0px 4px 20px rgba(4, 72, 157, 0.15);
}

/*
    声
================================*/
.interview {
  margin-top: 2.5rem;
}
.interview_user_img {
  text-align: center;
}
.interview_user_img img {
  max-width: 60%;
}
.interview_user_data {
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 1rem;
}
.interview_user_data dl {
  margin-top: 0.5em;
  display: flex;
}
.interview_user_data dt, .interview_user_data dd {
  padding: 0.5em 1em;
}
.interview_user_data dt {
  color: #fff;
  text-align: center;
  background-color: var(--color-primary);
  width: 30%;
}
.interview_user_data dd {
  background-color: #EBF3F9;
  flex: 1;
}
.interview_user_data > p {
  margin-top: 1.25rem;
}
.interview_body h3 {
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--color-primary);
  font-weight: bold;
  margin-top: 2.5rem;
}
.interview_body h3::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #D9D9D9;
  margin-top: 0.2222222222em;
}
.interview_body h3 + p {
  margin-top: 1rem;
}

.closing .hukidashi {
  margin-top: 0;
}

.summary {
  position: relative;
  z-index: 2;
  line-height: 1.8;
}
.summary_ttl {
  font-size: 1.375rem;
  letter-spacing: 0.1em;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  color: #FFFFFF;
  padding: 0.4em;
  margin-top: 2rem;
}
.summary_ttl:first-child {
  margin-top: 0;
}
.summary_ttl::before {
  background-color: rgba(0, 0, 0, 0.5);
}
.summary_body {
  margin-top: 0.625rem;
  color: rgba(255, 255, 255, 0.9);
}
.summary_body p + p {
  margin-top: 1rem;
}
.summary_note {
  font-size: 0.875rem;
  line-height: 1.5;
}
.summary .txt-bold {
  color: #FFFFFF;
  font-size: 1.25rem;
  text-shadow: 0px 0px 8px #FF0066;
}

.box {
  background-color: #150225;
  padding: 2rem 0.625rem;
  position: relative;
  box-shadow: 0px 0px 10px #9b00ff;
}
.box::before, .box::after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-top: 87.1641791045%;
  background-image: url(../images/box_bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
}
.box::before {
  top: 0;
}
.box::after {
  bottom: 0;
  transform: scale(-1, -1);
}
.box .form_submit_button {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  .box {
    padding: 2rem;
  }
}
.box_header {
  text-align: center;
  line-height: 1.5;
  margin-bottom: 2.5rem;
}
.box_header_ttl {
  font-size: 2rem;
  font-weight: 900;
  color: #FFFFFF;
  text-shadow: 0px 1px 4px rgba(187, 139, 16, 0.48);
}
.box_header_subtxt {
  color: #FFFFFF;
}
.box_header::before {
  content: "";
  display: block;
  width: 116px;
  height: 30px;
  background-image: url(../images/box_header_icon.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.3125rem;
}

.line, .summary_ttl {
  overflow: hidden;
  position: relative;
  /*ボタンの枠線*/
  /*** ボタン線上の光沢 ***/
  /*** 線上を回るアニメーション ***/
}
.line::before, .summary_ttl::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  border: 2px solid #FF0066;
  border-image: linear-gradient(to right, #FF0066 0%, #331575 100%);
  border-image-slice: 2;
}
.line::after, .summary_ttl::after {
  content: "";
  position: absolute;
  top: -30px;
  left: -100px;
  width: 100px;
  height: 30px;
  background: #000; /*光沢の色はページの背景色に合わせる*/
  filter: blur(5px); /*ぼかし*/
  animation: 3s arround-circle linear infinite; /*枠線場を周るアニメーション*/
  z-index: -1;
}
@keyframes arround-circle {
  /**************
  0%~40%：左上から右上
  40%~50%：右上から右下
  50%~90%：右下から左下
  90%~100%：左下から左上
  **************/
  0% {
    top: -30px;
    left: -100px;
  }
  40% {
    top: -30px;
    left: 100%; /*右まで移動*/
  }
  50% {
    top: 100%; /*下まで移動*/
    left: 100%;
  }
  90% {
    top: 100%;
    left: -100px; /*左まで移動*/
  }
  100% {
    top: -30px; /*元の位置*/
    left: -100px;
  }
}

/*
    ギャラリー
================================*/
#gallery {
  padding-top: 0;
}

.gallery_img {
  margin-top: 2.5rem;
}
.gallery_img_item {
  text-align: center;
}
.gallery_img_item + .gallery_img_item {
  margin-top: 2rem;
}

/*
    アクセス
================================*/
.access_header {
  text-align: center;
  line-height: 1.5;
  color: #fff;
}
.access_header_ttl {
  font-size: 1.375rem;
  font-weight: bold;
}
.access_address {
  color: #FFFFFF;
  text-align: center;
  line-height: 1.8;
  margin-top: 1rem;
}
.access_map {
  margin-left: -10px;
  margin-right: -10px;
  margin-top: 1rem;
}
.access_map .iframeWrap {
  padding-top: 85%;
}
@media screen and (min-width: 769px) {
  .access_map .iframeWrap {
    padding-top: 56.25%;
  }
}
.access_detail {
  line-height: 1.8;
  margin-top: 2rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.access_detail_ttl {
  color: #FFFFFF;
  border-bottom: solid 1px rgba(255, 0, 102, 0.6);
  padding-left: 1em;
  position: relative;
  font-size: 1.125rem;
  padding-bottom: 0.125rem;
}
.access_detail_ttl::before {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  background-color: #FF0066;
  transform: rotate(45deg);
  position: absolute;
  top: 0.7em;
  left: 0;
}
.access_detail_body {
  color: #FFFFFF;
  margin-top: 1rem;
}
.access_detail_body + .access_detail_ttl {
  margin-top: 2rem;
}
.access_detail_body .list {
  line-height: 1.8;
}
.access_detail_body .list li + li {
  margin-top: 0.5rem;
}

/*
    出店一覧
================================*/
#shop .inner {
  padding: 0;
}

.shops > .flexbox {
  justify-content: center;
  flex-wrap: wrap;
  align-items: flex-start;
}
.shops > .flexbox .shops_item {
  flex: 1 1 50%;
}

.shop_body {
  position: relative;
}
.shop_body_name {
  font-size: 0.875rem;
  font-weight: bold;
  color: #FFFFFF;
  line-height: 1.5;
}
.shop_body_from {
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/*
    キャスト一覧
================================*/
.casts > .flexbox {
  justify-content: center;
  flex-wrap: wrap;
  margin: -4.25% 0 0 0;
  align-items: flex-start;
}
.casts > .flexbox .casts_item {
  width: 45.75%;
  margin: 4.25% 0 0 0;
}
@media screen and (min-width: 769px) {
  .casts > .flexbox {
    margin: -2.82% 0 0 0;
  }
  .casts > .flexbox .casts_item {
    width: 22.18%;
    margin: 2.82% 0 0 0;
  }
}

.cast {
  background-color: #1A1A1A;
  box-shadow: 0px 0px 20px rgba(255, 184, 0, 0.07);
  color: #fff;
  line-height: 1.5;
}
.cast_img {
  position: relative;
}
.cast_img::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../images/frame_cast.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}
.cast_body {
  padding: 0.25rem 0.5rem;
  position: relative;
}
.cast_body_shop {
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}
.cast_body_name {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
}
.cast_body_txt {
  font-size: 0.75rem;
  color: #B6B6B6;
}
.cast a {
  color: #fff;
}

/*
    全キャスト一覧
================================*/
#allCast .heading {
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}
#allCast .heading-bg {
  margin-top: 2.5rem;
  margin-bottom: 2rem;
}

.allCasts > .flexbox {
  justify-content: center;
  flex-wrap: wrap;
  margin: -10.82% 0 0 0;
  margin: -10.82% 0 0 -2.43%;
  align-items: flex-start;
}
.allCasts > .flexbox .allCasts_item {
  width: 47.57%;
  margin: 10.82% 0 0 0;
  margin: 10.82% 0 0 2.43%;
}
@media screen and (min-width: 769px) {
  .allCasts > .flexbox .allCasts_item {
    width: 22.18%;
  }
}

.allCasts_banner {
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 2.5rem;
}
.allCasts_ttl {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  text-align: center;
  margin-top: 4.5rem;
  margin-bottom: 2.5rem;
  color: #fff;
  font-weight: normal;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.1em;
}
.allCasts_ttl::before, .allCasts_ttl::after {
  content: "";
  display: block;
  flex: 1;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
}
.allCasts_ttl::before {
  margin-right: 0.5833333333em;
}
.allCasts_ttl::after {
  margin-left: 0.5833333333em;
}
.allCasts .cast {
  background: none;
  box-shadow: none;
}
.allCasts .cast_img {
  position: relative;
  padding: 3%;
}
@media screen and (min-width: 769px) {
  .allCasts .cast_body_shop {
    font-size: 0.75rem;
  }
}
.allCasts .cast_body_name {
  font-size: 1rem;
}
@media screen and (min-width: 769px) {
  .allCasts .cast_body_name {
    font-size: 1rem;
  }
}
.allCasts .cast_body_txt {
  font-size: 0.625rem;
}

/*
    スタッフ
================================*/
#staff {
  background: linear-gradient(180deg, #111111 0%, rgba(17, 17, 17, 0.5) 12.89%), url(../images/sc_staff_bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 0;
  padding-bottom: 60px;
  margin-top: 40px;
}
#staff .sc_header-border {
  max-width: 79%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 481px) {
  .closing .inner {
    max-width: 580px;
  }
}
.closing .box {
  margin-top: 2.5rem;
}

.box_form {
  margin-top: 40px;
  margin-left: -1.25rem;
  margin-right: -1.25rem;
}
.box_form form dl dt {
  color: #333333;
}
.box_form form input[type=text],
.box_form form input[type=email],
.box_form form input[type=tel],
.box_form form input[type=date],
.box_form form input[type=time],
.box_form form input[type=number],
.box_form form select,
.box_form form textarea {
  border: none;
  background: #fff;
}
.box_form form dl dd .radio {
  color: #333333;
}

.notes {
  color: #9C9C9C;
}
.notes_ttl {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.3125em;
}

#closing {
  padding: 60px 0;
}

#form .inner {
  max-width: 580px;
}

.form_read {
  color: #fff;
  line-height: 2;
  margin-top: 1rem;
}
.form_note {
  color: #fff;
  line-height: 1.5;
  margin-top: 0.5rem;
}/*# sourceMappingURL=style.css.map */