@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dosis:wght@300;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700;900&display=swap");
@import url(fontawesome-all.min.css);
/*----------------------------------------------------
  SCSS
----------------------------------------------------*/
/*-- EllyLoel/reset --*/
@import url(fix.css);
* {
  padding: 0;
  margin: 0;
  line-height: calc(0.25rem + 1em + 0.25rem);
  box-sizing: border-box;
}

/* より直感的なボックスサイズのモデルを使用 */
*,
::before,
::after {
  box-sizing: border-box;
}

/* fieldset, progress, meter以外のすべての要素でボーダーを削除し、背景に適切なデフォルトを設定 */
*:where(:not(fieldset, progress, meter)) {
  border-width: 0;
  border-style: solid;
  background-origin: border-box;
  background-repeat: no-repeat;
}

html {
  /* アプリケーションでパーセントによる高さを許可する  */
  block-size: 100%;
  /* テキストのサイズはfont-sizeのみで制御されるようにする */
  -webkit-text-size-adjust: none;
  /* smooth scroll */
  scroll-behavior: smooth;
}

body {
  /* テキストのレンダリングを改善 */
  -webkit-font-smoothing: antialiased;
  /* https://marco.org/2012/11/15/text-rendering-optimize-legibility */
  text-rendering: optimizeSpeed;
  /* アプリケーションでパーセントによる高さを許可する */
  min-block-size: 100%;
  /* https://developer.mozilla.org/en-US/docs/Web/CSS/scrollbar-gutter#example_2 */
  /* scrollbar-gutter: stable both-edges; バグが修正されるまで削除: https://bugs.chromium.org/p/chromium/issues/detail?id=1318404#c2 */
}

/* 各メディア要素のデフォルトを改善 */
:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, svg, video) {
  block-size: auto;
  max-inline-size: 100%;
}

/* ストロークを削除し、fillの塗りつぶしカラーはフォントカラーを継承 */
:where(svg) {
  stroke: none;
  fill: currentColor;
}

/* fill属性のないSVG */
:where(svg):where(:not([fill])) {
  /* fillを取り除き、ストロークのカラーはフォントカラーを継承 */
  stroke: currentColor;
  fill: none;
  /* 丸みを帯びたストローク */
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* width属性のないSVGのサイズを設定 */
:where(svg):where(:not([width])) {
  inline-size: 5rem;
}

/* フォーム内のタイポグラフィのスタイルを削除 */
:where(input, button, textarea, select),
:where(input[type=file])::-webkit-file-upload-button {
  color: inherit;
  font: inherit;
  font-size: inherit;
  letter-spacing: inherit;
}

/* textareaのサイズ変更は垂直のみにし、ブラウザがサポートしている場合にのみblockにします */
:where(textarea) {
  resize: vertical;
}

@supports (resize: block) {
  :where(textarea) {
    resize: block;
  }
}
/* テキストのオーバーフローを回避 */
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

/* article、aside、nav、section内のh1フォントサイズを修正 */
h1 {
  font-size: 2em;
}

/* リストの役割をするul、ol要素のリストスタイルを削除。デフォルトのスタイルが削除されることを示唆しています */
:where(ul, ol)[role=list] {
  list-style: none;
}

/* クラスを持たないアンカータグに、より読みやすい下線スタイルを設定。アンカータグに設定することもできますが、コンフリクトを引き起こす可能性があります */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* インタラクティブな要素は適切なカーソルを設定して操作できることを明確にする */
:where(a[href], area, button, input, label[for], select, summary, textarea, [tabindex]:not([tabindex*="-"])) {
  cursor: pointer;
  touch-action: manipulation;
}

:where(input[type=file]) {
  cursor: auto;
}

:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  cursor: pointer;
}

/* フォーカスのアウトラインをアニメーション化 */
@media (prefers-reduced-motion: no-preference) {
  :focus-visible {
    transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
  }
  :where(:not(:active)):focus-visible {
    transition-duration: 0.25s;
  }
}
:where(:not(:active)):focus-visible {
  outline-offset: 5px;
}

/* ユーザーがボタンのテキストを選択できないようにする */
:where(button, button[type], input[type=button], input[type=submit], input[type=reset]),
:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
          user-select: none;
  text-align: center;
}

/* 無効化されたボタンには無効化されたカーソルを表示 */
:where(button, button[type], input[type=button], input[type=submit], input[type=reset])[disabled] {
  cursor: not-allowed;
}

/*-- EllyLoel/reset --*/
html {
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  height: 100%;
  font-size: 0.625rem;
}

body {
  text-rendering: optimizeLegibility;
  margin: 0;
  background-color: #000;
  color: #fff;
  font-size: 10px;
  font-family: "Noto Sans JP", "Open Sans", sans-serif;
  position: relative;
  background-size: contain;
}

pre {
  white-space: pre-wrap;
}

:root {
  line-sizing: normal;
}

:root {
  text-spacing: trim-start allow-end trim-adjacent ideograph-alpha ideograph-numeric;
}

img {
  border-style: none;
  display: block;
  vertical-align: bottom;
  max-width: 100%;
  width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0 0;
}

a {
  word-break: break-all;
  outline: 0;
  transition: all 100ms linear;
}

a {
  color: #f40;
}

p, p > span {
  line-height: 1.6;
  letter-spacing: 1px;
}

* > span {
  font-size: inherit;
}

address {
  font-style: normal;
  line-height: 1.75;
  letter-spacing: 1px;
}

ul, ol, li {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1.4rem;
}

dl, dt, dd {
  margin: 0;
  padding: 0;
  font-size: 1.4rem;
}

.bk {
  color: #000;
}

.red {
  color: #e50012;
}

@media screen and (max-width: 320px) {
  a, p, li, dt, dd, th, td, address {
    font-size: 1.4rem;
    letter-spacing: 0.02em;
  }
  * span {
    font-size: inherit;
  }
}
picture {
  display: block;
}

img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
}

section#container-fluid {
  position: relative;
}

.cnt {
  padding-left: 5%;
  padding-right: 5%;
  position: relative;
}

form {
  display: block;
  width: 100%;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
}

button {
  font: inherit;
  padding: 0;
  background-color: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
}

button:focus {
  outline: 0;
  background-color: transparent;
  border: 0 solid transparent;
}

input[type=text], input[type=email], input[type=password], input[type=tel] {
  padding: 1rem 0.5rem;
  line-height: 2.5em;
  height: 2.5em;
}
input[type=text], input[type=email], input[type=password], input[type=date] {
  border: solid 1px #ccc;
  border-radius: 3px;
  display: inline-block;
  margin: 0 6px 10px 0;
  min-height: 30px;
}

select {
  border: solid 1px #ccc;
  border-radius: 3px;
  display: inline-block;
  padding: inherit 0.5rem;
  min-height: 30px;
  font-size: 1.4rem;
}

textarea {
  border: solid 2px #ccc;
  border-radius: 3px;
  padding: 1rem;
  min-height: 12em;
  display: block;
  width: 100%;
  font-size: 1.4rem;
}

input[type=submit] {
  border: solid #ddd 1px;
  border-radius: 5px;
  padding: 0 1em;
  height: 2.2em;
  line-height: 2.2em;
  font-size: 1.6rem;
}

/*-- header --*/
header {
  height: auto;
  width: 100%;
  margin-inline: auto;
  overflow: hidden;
  position: relative;
}
header .container .topimage {
  height: auto;
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  aspect-ratio: 16/9; /* 縦横比を16:9 */
  -o-object-fit: cover;
     object-fit: cover; /* coverを指定しないと画像の縦横比が崩れる */
  position: relative;
}
header .container .topimage .ph {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
header .container .topimage .cat1 {
  position: absolute;
  top: 10.5vw;
  left: 0;
  right: 0;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  header .container .topimage .cat1 {
    top: 135px;
  }
}
header .container .topimage .cat2 {
  position: absolute;
  bottom: 22vw;
  left: 0;
  right: 0;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  header .container .topimage .cat2 {
    bottom: 210px;
  }
}
header .container .row h1 {
  height: 15px;
  color: #fff;
  font-size: 3vw;
  letter-spacing: 1px;
  line-height: 1;
  text-align: center;
  position: relative;
  top: -1em;
  z-index: 999;
}
@media screen and (min-width: 1024px) {
  header .container .row h1 {
    font-size: 16px;
    letter-spacing: 3px;
  }
}
header .container .row dl#hdInfo {
  background-color: #000;
  background: linear-gradient(to bottom, #000000 0%, #1a1a1a 100%);
  width: calc(100% + 40px);
  margin: 0 -20px;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  header .container .row dl#hdInfo {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 1em;
  }
}
header .container .row dl#hdInfo dt {
  width: 100%;
}
@media screen and (min-width: 768px) {
  header .container .row dl#hdInfo dt {
    width: 46%;
  }
}
header .container .row dl#hdInfo dd {
  width: 100%;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  header .container .row dl#hdInfo dd {
    width: 54%;
    padding: 0 0 0 10px;
  }
}
header .container .row dl#hdInfo dd a {
  background-color: #fff;
  border-radius: 1em;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  height: 4em;
  line-height: 4em;
  margin: 1em auto 0;
  padding: 0 2em 0 1em;
  position: relative;
}
header .container .row dl#hdInfo dd a:after {
  display: block;
  content: "\f138";
  color: #ff0066;
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  margin: auto 0;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1em;
  width: 10px;
  height: 10px;
}

footer {
  display: block;
  clear: both;
  position: relative;
}
footer .container .row {
  background-color: #1a1a1a;
}
footer p.ftCopy {
  width: 100%;
  text-align: center;
  padding: 5px 10px;
  border-top: solid 1px #666;
  line-height: 2;
  color: #fff;
  font-size: 9px;
  font-family: "Open Sans", sans-serif;
  letter-spacing: 2px;
}
@media screen and (min-width: 768px) {
  footer p.ftCopy {
    font-size: 12px;
    letter-spacing: 2px;
    line-height: 60px;
  }
}

#pagetopBtn {
  overflow: hidden;
  border-radius: 50%;
  position: fixed !important;
  z-index: 9999;
  text-align: center;
  text-decoration: none;
  transform: rotateY(270deg);
  transition: 0.5s;
  height: 55px;
  width: 55px;
  bottom: 30px;
  right: 5%;
}
@media screen and (min-width: 768px) {
  #pagetopBtn {
    height: 75px;
    width: 75px;
    bottom: 30px;
  }
}
#pagetopBtn a {
  background-color: #ff0066;
  color: #fff;
  font-size: 10px;
  font-family: "Dosis";
  font-weight: 300;
  text-decoration: none;
  letter-spacing: 2px;
  line-height: 55px;
  height: 55px;
  width: 55px;
  display: block;
}
@media screen and (min-width: 768px) {
  #pagetopBtn a {
    font-size: 13px;
    line-height: 75px;
    height: 75px;
    width: 75px;
  }
}
#pagetopBtn::after {
  content: "\f106";
  font-family: "Font Awesome 5 Free";
  font-size: 10px;
  font-weight: bold;
  color: #fff;
  margin: 0 auto;
  position: relative;
  top: -57px;
}
@media screen and (min-width: 768px) {
  #pagetopBtn::after {
    font-size: 18px;
    top: -70px;
  }
}

/* common
--------------------------------------------------*/
.container {
  height: 100%;
}
.container .row {
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}
@media screen and (min-width: 1024px) {
  .container .row {
    max-width: 960px;
    margin: 0 auto;
  }
}

/*--/ infoBnr infoBnr2 /--*/
[class^=infoBnr] {
  border-radius: 1em;
  width: 100%;
  height: 37vw;
  margin: 0 auto 10px;
  position: relative;
}
@media screen and (min-width: 768px) {
  [class^=infoBnr] {
    height: 125px;
  }
}
@media screen and (min-width: 1024px) {
  [class^=infoBnr] {
    width: 920px;
    height: 150px;
  }
}
[class^=infoBnr] > picture {
  position: absolute;
}
[class^=infoBnr] > picture img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  object-fit-position: center top;
}
[class^=infoBnr] ul {
  width: 100%;
  padding: 12vw 10px 10px;
  height: 25vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  [class^=infoBnr] ul {
    height: unset;
  }
}
[class^=infoBnr] ul li {
  width: 48%;
}
@media screen and (min-width: 768px) {
  [class^=infoBnr] ul li {
    position: absolute;
    bottom: 10px;
    right: 5%;
  }
}
@media screen and (min-width: 1024px) {
  [class^=infoBnr] ul li {
    bottom: 15px;
  }
}
[class^=infoBnr] ul li a {
  display: grid;
  place-items: center;
  background-color: #fff;
  border-radius: 4px;
  padding: 5px;
  height: 100%;
  filter: drop-shadow(1px 1px 0px #caa);
  position: relative;
}
[class^=infoBnr] ul li a:active {
  background-color: rgb(255, 229.5, 239.7);
  filter: drop-shadow(1px 1px 0px #977) saturate(200%);
}
@media screen and (min-width: 768px) {
  [class^=infoBnr] ul li {
    width: 46%;
  }
  [class^=infoBnr] ul li a {
    display: grid;
    place-items: center;
    padding: 2px 1em;
    height: 50px;
    line-height: 50px;
    border-radius: 25px;
    filter: unset;
  }
  [class^=infoBnr] ul li a img {
    height: 40px;
    width: auto;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1024px) {
  [class^=infoBnr] ul li {
    width: 400px;
  }
  [class^=infoBnr] ul li a {
    height: 54px;
    line-height: 54px;
    border-radius: 27px;
  }
  [class^=infoBnr] ul li a img {
    height: 44px;
    width: auto;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  [class^=infoBnr] ul li:first-child {
    display: none;
  }
}
[class^=infoBnr] p.btMail {
  height: 2.5em;
  width: 36vw;
  position: absolute;
  bottom: 0px;
  right: 26%;
}

.infoBnr2 ul > li > a {
  background-color: #fcfcca;
}

.infoBnrLine {
  background-color: #fff;
  border-radius: 1em;
  border: solid 4px #3cb43a;
  overflow: hidden;
  height: auto;
  margin-bottom: 60px;
  padding: 5px 0;
}

/*  table Setting
----------------------------------------------------*/
table tr td, table tr th {
  padding: 10px 8px;
  vertical-align: top;
  text-align: left;
  display: block;
  letter-spacing: 1px;
}
@media screen and (min-width: 768px) {
  table tr td, table tr th {
    display: table-cell;
    font-size: 16px;
  }
}
table tr .vT {
  vertical-align: top;
}
table tr .vM {
  vertical-align: middle;
}
table tr .vB {
  vertical-align: bottom;
}
table tr.tbl-inner {
  background: #fff !important;
  border: 0 none !important;
  padding: 4px 6px;
  text-align: left;
  white-space: nowrap;
}
table tr.tbl-inner th, table tr.tbl-inner td {
  background: #fff !important;
  border: 0 none !important;
  padding: 4px 6px;
  text-align: left;
  white-space: nowrap;
}

/*  hover btn anchor Setting
----------------------------------------------------*/
a#top, a#ar {
  font-size: 0.01em;
  line-height: 0;
  display: inline;
}

/* #contents
----------------------------------------------------*/
#contents {
  background: #1a1a1a;
  height: auto;
  margin: 0;
  padding: 10px 0;
  width: 100%;
  display: block;
  position: relative;
}
@media screen and (min-width: 1024px) {
  #contents {
    width: 960px;
    margin: 0 auto;
  }
}

/*  section
----------------------------------------------------*/
#contents .container .row {
  /*--/ topCnt1
  ----------------------------------------------------*/
  /*--/ topCnt2
  ----------------------------------------------------*/
  /*--/ cntMsg
  ----------------------------------------------------*/
  /*--/ topCnt3
  ----------------------------------------------------*/
  /*--/  cntDancer
  ----------------------------------------------------*/
  /*--/  topCnt4
  ----------------------------------------------------*/
  /*--/  topCnt5
  ----------------------------------------------------*/
  /*--/ cntDebut
  ----------------------------------------------------*/
  /*--/ cntArbeit
  ----------------------------------------------------*/
}
#contents .container .row ul.sns {
  width: 100%;
  padding: 0;
  line-height: 0;
  height: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
}
#contents .container .row ul.sns li a.x-share-button {
  display: inline-block;
  border-radius: 100vmax;
  background-color: #ff0066;
  color: #fff;
  font-weight: bold;
  font-size: clamp(10px, 3vw, 12px);
  text-align: center;
  padding: 0.5em 1.5em;
  text-decoration: none;
}
#contents .container .row ul.sns li a.x-share-button:active {
  filter: brightness(130%) saturate(200%);
}
@media (any-hover: hover) {
  #contents .container .row ul.sns li a.x-share-button:hover {
    filter: brightness(130%) saturate(200%);
  }
}
#contents .container .row section {
  margin: 0 auto 60px;
}
#contents .container .row section h2 {
  width: calc(100% + 40px);
  margin: 0 -20px 20px;
  display: block;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (min-width: 1024px) {
  #contents .container .row section h2 {
    max-width: 940px;
    width: calc(100% + 20px);
    margin: 0 0 20px;
  }
}
#contents .container .row section p {
  font-size: clamp(14px, 5vw, 16px);
}
#contents .container .row section .linerCnt {
  background: url(../images/bg_liner_rey.jpg) 0 0 repeat-y;
  width: 100%;
  border-radius: 1em;
  padding: 20px 15px;
  display: block;
  position: relative;
}
@media screen and (min-width: 1024px) {
  #contents .container .row section .linerCnt {
    width: 920px;
  }
}
#contents .container .row section.topCnt1 {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.topCnt1 {
    margin: 0 auto 40px;
  }
}
#contents .container .row section.topCnt1 ul:nth-child(2) > li:nth-child(1) > h2 {
  margin-left: -20px;
}
#contents .container .row section.topCnt1 ul {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.topCnt1 ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
#contents .container .row section.topCnt1 ul li {
  width: 100%;
  margin-bottom: 15px;
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.topCnt1 ul li {
    margin-bottom: 20px;
  }
}
#contents .container .row section.topCnt1 ul li p {
  background: #202020 url(../images/bg_liner_rey.jpg) 0 0 repeat;
  border-radius: 1em;
  padding: 15px;
  text-align: justify;
}
#contents .container .row section.topCnt1 ul li p.top1txt1 {
  display: block;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.topCnt1 ul li p.top1txt1 {
    padding: 20px;
    margin-top: -15px;
  }
}
#contents .container .row section.topCnt1 ul li p.top1txt2 {
  background: #202020 url(../images/bg_liner_rey.jpg) 0 0 repeat;
  display: block;
  width: 100%;
  padding: 15px 15px 35px;
  margin: 0;
  position: relative;
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.topCnt1 ul li p.top1txt2 {
    width: 540px;
    height: 380px;
    padding: 20px;
  }
}
#contents .container .row section.topCnt1 ul li p.top1txt2:before {
  content: "";
  background: url(../images/topcnt1_txt2_bg.png) 0 bottom no-repeat;
  background-size: 100% auto;
  display: block;
  border-radius: 1em;
  width: 100%;
  height: 10em;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
#contents .container .row section.topCnt1 ul li p.top1txt2 span {
  display: block;
  text-align: center;
  font-size: clamp(20px, 5vw, 27px);
  font-weight: bold;
  color: #ff0066;
  margin-bottom: 15px;
}
#contents .container .row section.topCnt1 ul li:last-child {
  border: solid 5px #666;
  border-radius: 1em;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.topCnt1 ul:first-of-type li:first-child {
    width: 540px;
    order: 2;
  }
  #contents .container .row section.topCnt1 ul:first-of-type li:first-child h2 {
    margin-right: -20px;
  }
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.topCnt1 ul:first-of-type li:last-child {
    width: 340px;
    height: 340px;
    order: 1;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1024px) {
  #contents .container .row section.topCnt1 ul:first-of-type li:last-child img {
    max-inline-size: unset;
    max-width: unset;
    width: -moz-fit-content;
    width: fit-content;
    position: relative;
    left: -10%;
  }
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.topCnt1 ul:last-of-type li:first-child {
    width: 540px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.topCnt1 ul:last-of-type li:last-child {
    width: 350px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1024px) {
  #contents .container .row section.topCnt1 ul:last-of-type li:last-child img {
    max-width: unset;
    width: 422px;
    position: relative;
    left: -20%;
  }
}
#contents .container .row section.topCnt2 {
  width: 100%;
  display: block;
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.topCnt2 h2 {
    margin-left: -20px;
  }
}
#contents .container .row section.topCnt2 dl {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.topCnt2 dl {
    width: 920px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
#contents .container .row section.topCnt2 dl dt {
  border: solid 5px #666;
  border-radius: 1em;
  overflow: hidden;
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.topCnt2 dl dt {
    width: 450px;
    height: 405px;
  }
}
#contents .container .row section.topCnt2 dl dt img {
  max-inline-size: unset;
  max-width: unset;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
}
#contents .container .row section.topCnt2 dl dd {
  background: #202020 url(../images/bg_liner_rey.jpg) 0 0 repeat;
  border-radius: 1em;
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.topCnt2 dl dd {
    width: 440px;
    height: 405px;
    padding: 20px;
  }
}
#contents .container .row section.topCnt2 dl dd:before {
  content: "";
  background: url(../images/topcnt2_bg_light.png) right bottom no-repeat;
  background-size: contain;
  display: block;
  border-radius: 1em;
  width: 100%;
  min-height: 50vw;
  height: auto;
  mix-blend-mode: screen;
  position: absolute;
  display: grid;
  place-items: center;
}
@media screen and (min-width: 768px) {
  #contents .container .row section.topCnt2 dl dd:before {
    min-height: unset;
    height: 8em;
    width: 90%;
  }
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.topCnt2 dl dd:before {
    height: 270px;
    width: 90%;
  }
}
#contents .container .row section.topCnt2 dl dd h3 {
  width: 100%;
  margin: 0 auto 10px;
  font-size: clamp(14px, 5vw, 16px);
  font-weight: bold;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.topCnt2 dl dd h3 {
    width: 400px;
  }
}
#contents .container .row section.topCnt2 dl dd p {
  width: 100%;
  margin: 0 auto;
  text-align: justify;
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.topCnt2 dl dd p {
    width: 400px;
  }
}
#contents .container .row section.cntMsg {
  width: 100%;
  margin: 60px auto;
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.cntMsg {
    width: 940px;
  }
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.cntMsg h2 {
    margin-right: -20px;
  }
}
#contents .container .row section.cntMsg .linerCnt h3 {
  font-size: clamp(18px, 5vw, 27px);
  margin-bottom: 15px;
}
#contents .container .row section.cntMsg .linerCnt p.msg {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.cntMsg .linerCnt p.msg {
    width: 870px;
  }
}
#contents .container .row section.cntMsg .linerCnt p.msg span.cat1 {
  font-weight: bold;
  font-size: clamp(16px, 4vw, 18px);
}
#contents .container .row section.cntMsg .linerCnt p.msg + p {
  margin-top: 2em;
}
#contents .container .row section.cntMsg .linerCnt p.msg.sig {
  text-align: right;
  padding-right: 1em;
  margin-bottom: 1em;
}
#contents .container .row section.topCnt3 {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.topCnt3 {
    width: 940px;
  }
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.topCnt3 h2 {
    margin-left: -20px;
  }
}
#contents .container .row section.topCnt3 .linerCnt p {
  font-weight: bold;
  width: 100%;
  text-align: justify;
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.topCnt3 .linerCnt p {
    width: 880px;
    height: 100px;
    margin-left: 20px;
    padding: 0 20px;
  }
}
#contents .container .row section.topCnt3 .linerCnt:before {
  content: "";
  background: url(../images/topcnt3_bg_light.png) 100% bottom no-repeat;
  background-size: 100% auto;
  display: block;
  border-radius: 1em;
  width: 90%;
  height: 10em;
  width: 10em;
  mix-blend-mode: screen;
  opacity: 0.7;
  position: absolute;
  bottom: 10px;
  right: 10px;
}
#contents .container .row section.cntDancer {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.cntDancer h2 {
    margin-right: -20px;
  }
}
#contents .container .row section.cntDancer ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.cntDancer ul {
    width: 920px;
    margin: 0 auto;
  }
}
#contents .container .row section.cntDancer ul li {
  border: solid 4px #666666;
  border-radius: 1em;
  overflow: hidden;
  width: 48%;
  height: auto;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  #contents .container .row section.cntDancer ul li {
    width: 18%;
  }
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.cntDancer ul li {
    width: 175px;
    height: 200px;
  }
}
#contents .container .row section.topCnt4 {
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.topCnt4 {
    width: 920px;
  }
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.topCnt4 h2 {
    margin-left: -20px;
  }
}
#contents .container .row section.topCnt4 dl {
  width: 100%;
  margin-bottom: 20px;
  clear: both;
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.topCnt4 dl {
    width: 920px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
#contents .container .row section.topCnt4 dl dt {
  background-color: #fff;
  border: solid #ff55aa 4px;
  border-radius: 1em;
  width: 100%;
  height: auto;
  padding: 10px;
  margin-bottom: 15px;
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.topCnt4 dl dt {
    width: 530px;
    padding: 15px;
    margin-bottom: 0;
  }
}
#contents .container .row section.topCnt4 dl dt table {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.topCnt4 dl dt table {
    width: 490px;
  }
}
#contents .container .row section.topCnt4 dl dt table th, #contents .container .row section.topCnt4 dl dt table td {
  padding: 10px 0;
  border-bottom: solid 1px #ccc;
  line-height: 1.5;
}
#contents .container .row section.topCnt4 dl dt table th {
  color: #ff0066;
}
@media screen and (min-width: 768px) {
  #contents .container .row section.topCnt4 dl dt table th {
    width: 160px;
  }
}
#contents .container .row section.topCnt4 dl dt table th br {
  display: none;
}
@media screen and (min-width: 768px) {
  #contents .container .row section.topCnt4 dl dt table th br {
    display: block;
  }
}
#contents .container .row section.topCnt4 dl dt table td {
  color: #4c4c4c;
}
@media screen and (min-width: 768px) {
  #contents .container .row section.topCnt4 dl dd {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.topCnt4 dl dd {
    display: block;
    width: 365px;
    margin-bottom: 0;
  }
}
#contents .container .row section.topCnt4 dl dd div {
  border: solid 5px #666;
  border-radius: 1em;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  #contents .container .row section.topCnt4 dl dd div {
    width: 49.4%;
  }
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.topCnt4 dl dd div {
    width: 100%;
  }
}
#contents .container .row section.topCnt4 dl dd div + div {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  #contents .container .row section.topCnt4 dl dd div + div {
    margin-top: 0;
  }
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.topCnt4 dl dd div + div {
    margin-top: 17px;
  }
}
#contents .container .row section.topCnt5 {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.topCnt5 {
    width: 920px;
    margin-bottom: 20px;
  }
}
#contents .container .row section.topCnt5 > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#contents .container .row section.topCnt5 > ul li {
  border: solid 5px #666;
  border-radius: 1em;
  overflow: hidden;
  margin-bottom: 10px;
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.topCnt5 > ul li {
    margin-bottom: 15px;
  }
}
#contents .container .row section.topCnt5 > ul li:first-child,
#contents .container .row section.topCnt5 > ul li:nth-child(2),
#contents .container .row section.topCnt5 > ul li:nth-child(3),
#contents .container .row section.topCnt5 > ul li:nth-child(4) {
  width: 49%;
}
#contents .container .row section.topCnt5 > ul li:nth-child(5),
#contents .container .row section.topCnt5 > ul li:nth-child(6),
#contents .container .row section.topCnt5 > ul li:nth-child(7),
#contents .container .row section.topCnt5 > ul li:nth-child(8),
#contents .container .row section.topCnt5 > ul li:nth-child(9) {
  width: 100%;
}
@media screen and (min-width: 768px) {
  #contents .container .row section.topCnt5 > ul li:first-child,
  #contents .container .row section.topCnt5 > ul li:nth-child(2),
  #contents .container .row section.topCnt5 > ul li:nth-child(3),
  #contents .container .row section.topCnt5 > ul li:nth-child(4) {
    width: 24%;
  }
  #contents .container .row section.topCnt5 > ul li:nth-child(5),
  #contents .container .row section.topCnt5 > ul li:nth-child(6),
  #contents .container .row section.topCnt5 > ul li:nth-child(7) {
    width: 32.4%;
  }
  #contents .container .row section.topCnt5 > ul li:nth-child(8),
  #contents .container .row section.topCnt5 > ul li:nth-child(9) {
    width: 49.2%;
  }
}
#contents .container .row section.topCnt5 div.top5Txt {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.topCnt5 div.top5Txt {
    padding: 20px;
  }
}
#contents .container .row section.topCnt5 div.top5Txt:before {
  content: "";
  background: url(../images/topcnt5_bg_light_sp.png) 75% bottom no-repeat;
  background-size: 100% auto;
  display: block;
  border-radius: 1em;
  width: 95%;
  min-height: 45vw;
  height: auto;
  mix-blend-mode: screen;
  opacity: 0.7;
  position: absolute;
  display: grid;
  place-items: center;
}
@media screen and (min-width: 768px) {
  #contents .container .row section.topCnt5 div.top5Txt:before {
    background: url(../images/topcnt5_bg_light_pc.png) 0 bottom no-repeat;
    background-size: 100% auto;
    min-height: unset;
    height: 13em;
  }
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.topCnt5 div.top5Txt:before {
    height: 150px;
    top: 0;
  }
}
#contents .container .row section.topCnt5 div.top5Txt p {
  font-weight: bold;
}
#contents .container .row section.cntDebut {
  width: 100%;
  margin: 0 auto 30px;
}
#contents .container .row section.cntDebut h2 {
  text-align: center;
  margin: 0 -20px 40px;
  width: calc(100% + 40px);
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.cntDebut h2 {
    width: 920px;
    margin: 0 auto 20px;
    width: 100%;
  }
}
#contents .container .row section.cntDebut .debut1 {
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  #contents .container .row section.cntDebut .debut1 dl {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
#contents .container .row section.cntDebut .debut1 dl dt {
  display: block;
  border: solid 5px #666;
  border-radius: 1em;
  overflow: hidden;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  #contents .container .row section.cntDebut .debut1 dl dt {
    width: 35%;
    order: 2;
  }
  #contents .container .row section.cntDebut .debut1 dl dt img {
    max-width: unset;
    width: auto;
    height: 100%;
    position: relative;
    left: -50%;
  }
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.cntDebut .debut1 dl dt img {
    left: -10%;
  }
}
@media screen and (min-width: 768px) {
  #contents .container .row section.cntDebut .debut1 dl dd {
    width: 62%;
    order: 1;
  }
}
#contents .container .row section.cntDebut .debut1 dl dd h3 {
  font-size: clamp(18px, 5.5vw, 24px);
  margin-bottom: 10px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #contents .container .row section.cntDebut .debut1 dl dd h3 {
    font-size: 24px;
  }
}
#contents .container .row section.cntDebut .debut1 dl dd p {
  margin-bottom: 1em;
}
#contents .container .row section.cntDebut .debut2 {
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  #contents .container .row section.cntDebut .debut2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
#contents .container .row section.cntDebut .debut2 > span {
  display: block;
  border: solid 5px #666;
  border-radius: 1em;
  overflow: hidden;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  #contents .container .row section.cntDebut .debut2 > span {
    width: 100%;
    margin-bottom: 0;
  }
  #contents .container .row section.cntDebut .debut2 > span img {
    height: 100%;
    width: 100%;
    max-width: unset;
  }
}
#contents .container .row section.cntDebut .debut2 dl {
  background-color: #fff;
  border: solid 4px #9000ec;
  border-radius: 1em;
  display: block;
  width: 100%;
  height: auto;
  padding: 15px 20px;
}
@media screen and (min-width: 768px) {
  #contents .container .row section.cntDebut .debut2 dl {
    width: 54%;
  }
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.cntDebut .debut2 dl {
    width: 580px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
#contents .container .row section.cntDebut .debut2 dl dt {
  color: #9000ec;
  font-weight: bold;
  width: 100%;
}
@media screen and (min-width: 768px) {
  #contents .container .row section.cntDebut .debut2 dl dt {
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.cntDebut .debut2 dl dt {
    width: 35%;
  }
}
#contents .container .row section.cntDebut .debut2 dl dt span {
  color: #4c4c4c;
  font-size: 11px;
  font-weight: normal;
  clear: both;
}
#contents .container .row section.cntDebut .debut2 dl dd {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.cntDebut .debut2 dl dd {
    width: 65%;
  }
}
#contents .container .row section.cntDebut .debut2 dl dd ul li {
  color: #4c4c4c;
  padding: 4px 8px;
  padding-left: 3em;
  text-indent: -3em;
  border-top: solid 1px #ccc;
}
@media screen and (min-width: 768px) {
  #contents .container .row section.cntDebut .debut2 dl dd ul li {
    font-size: 16px;
  }
}
#contents .container .row section.cntDebut .debut2 dl dd ul li:first-child {
  border: 0 none;
}
#contents .container .row section.cntDebut .debut2 dl dd ul li span {
  font-weight: bold;
  padding-right: 5px;
}
#contents .container .row section.cntArbeit {
  width: 100%;
  margin-bottom: 30px;
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.cntArbeit {
    width: 920px;
  }
}
#contents .container .row section.cntArbeit h2 {
  margin: 0 -20px 20px;
  width: calc(100% + 40px);
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.cntArbeit h2 {
    width: 100%;
    margin: 0 auto 20px;
  }
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.cntArbeit .linerCnt {
    padding: 20px;
  }
}
#contents .container .row section.cntArbeit .linerCnt h3 {
  background-color: rgba(255, 255, 255, 0.5);
  width: 100%;
  height: auto;
  padding: 1px;
  margin: 0 auto 20px;
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.cntArbeit .linerCnt h3 {
    width: 100%;
    height: 33px;
    line-height: 0;
  }
  #contents .container .row section.cntArbeit .linerCnt h3 img {
    height: 31px;
    width: auto;
  }
}
#contents .container .row section.cntArbeit .linerCnt p {
  text-align: justify;
  margin: 0 auto 20px;
}
#contents .container .row section.cntArbeit .linerCnt dl {
  margin: 0 auto 40px;
}
@media screen and (min-width: 768px) {
  #contents .container .row section.cntArbeit .linerCnt dl {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.cntArbeit .linerCnt dl {
    width: 880px;
  }
}
#contents .container .row section.cntArbeit .linerCnt dl dt {
  background-color: #fff;
  border: solid 4px #9000ec;
  border-radius: 1em;
  display: block;
  width: 100%;
  height: auto;
  padding: 15px 20px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  #contents .container .row section.cntArbeit .linerCnt dl dt {
    width: 63%;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.cntArbeit .linerCnt dl dt {
    width: 600px;
  }
}
#contents .container .row section.cntArbeit .linerCnt dl dt table {
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.cntArbeit .linerCnt dl dt table {
    width: 550px;
  }
}
#contents .container .row section.cntArbeit .linerCnt dl dt table th, #contents .container .row section.cntArbeit .linerCnt dl dt table td {
  display: block;
}
@media screen and (min-width: 768px) {
  #contents .container .row section.cntArbeit .linerCnt dl dt table th, #contents .container .row section.cntArbeit .linerCnt dl dt table td {
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.cntArbeit .linerCnt dl dt table th, #contents .container .row section.cntArbeit .linerCnt dl dt table td {
    display: table-cell;
    padding: 6px 5px;
    line-height: 1.35;
  }
}
#contents .container .row section.cntArbeit .linerCnt dl dt table th {
  color: #9000ee;
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.cntArbeit .linerCnt dl dt table th {
    width: 215px;
  }
}
#contents .container .row section.cntArbeit .linerCnt dl dt table td {
  color: #4c4c4c;
}
#contents .container .row section.cntArbeit .linerCnt dl dt table td span {
  padding-right: 5px;
}
#contents .container .row section.cntArbeit .linerCnt dl dt table tr + tr td {
  border-top: 1px solid #ccc;
}
@media screen and (min-width: 768px) {
  #contents .container .row section.cntArbeit .linerCnt dl dd {
    width: 35%;
  }
}
#contents .container .row section.cntArbeit .linerCnt dl dd span {
  display: block;
  border: solid 5px #666;
  border-radius: 1em;
  overflow: hidden;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  #contents .container .row section.cntArbeit .linerCnt dl dd span {
    height: 100%;
  }
  #contents .container .row section.cntArbeit .linerCnt dl dd span img {
    height: 100%;
    width: auto;
    max-width: unset;
    position: relative;
    right: 100%;
  }
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.cntArbeit .linerCnt dl dd span img {
    right: 40%;
  }
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.cntArbeit .linerCnt dl dd {
    width: 250px;
  }
}
#contents .container .row section.cntArbeit .linerCnt ul.faq {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.cntArbeit .linerCnt ul.faq {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
#contents .container .row section.cntArbeit .linerCnt ul.faq li {
  background: #654f8f;
  border-radius: 0.7em;
  padding: 15px;
  mix-blend-mode: screen;
  margin-bottom: 1em;
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.cntArbeit .linerCnt ul.faq li {
    width: 49%;
    padding: 15px;
  }
}
#contents .container .row section.cntArbeit .linerCnt ul.faq li h4 {
  color: #fcc5ff;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 1024px) {
  #contents .container .row section.cntArbeit .linerCnt ul.faq li h4 {
    font-size: 16px;
    margin: 3px auto 6px;
  }
}
#contents .container .row section.cntArbeit .linerCnt ul.faq li p {
  margin-bottom: 0;
}/*# sourceMappingURL=style.css.map */