@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=Oswald:wght@200..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@400;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@1,400;1,700&display=swap");
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css);
/*----------------------------------------------------
  SCSS
----------------------------------------------------*/
/*----------------------------------------------------
  SCSS
----------------------------------------------------*/
@import url(fix.css);
* {
  font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
  -moz-font-feature-settings: "palt";
  -o-font-feature-settings: "palt";
  -ms-font-feature-settings: "palt";
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  outline: 1px solid transparent;
}

@​media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001s;
    transition-duration: 0.001s;
  }
}
html {
  -webkit-font-smoothing: antialiased;
  /* アプリケーションでパーセントによる高さを許可する  */
  block-size: 100%;
  /* テキストのサイズはfont-sizeのみで制御されるようにする */
  /* smooth scroll */
  scroll-behavior: smooth;
  height: 100%;
  font-size: 0.625rem;
}

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 --*/
body {
  text-rendering: optimizeLegibility;
  margin: 0;
  background-color: #fff;
  color: #2c2c2c;
  font-size: 10px;
  font-family: "M PLUS 1p", "Open Sans", sans-serif;
  position: relative;
  background-size: contain;
  min-height: 100dvh;
  letter-spacing: 2px;
  /*コンテンツはみだしによるスクロールバー防止*/
}

/* stickey */
header {
  position: sticky;
  top: 0;
}

footer {
  position: sticky;
  bottom: 0;
}

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.5em;
  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;
}

* p,
* input,
* textarea,
* select {
  transform: rotate(0.03deg);
}

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

/*----------------------------------------------------
  Common
----------------------------------------------------*/
section#wrapper {
  animation: fadein 3s forwards;
}

section#wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
section#wrapper .container {
  padding: 0;
}
section#wrapper .container .row {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  section#wrapper .container .row {
    max-width: 800px;
  }
}
@media screen and (min-width: 1280px) {
  section#wrapper .container .row {
    max-width: 1024px;
  }
}
section#wrapper .container.bg1 {
  background-color: #383d7d;
}
section#wrapper .container.skewL {
  position: relative;
  z-index: 0;
}
section#wrapper .container.skewL:before {
  content: "";
  position: absolute;
  left: 0;
  top: -3vh;
  /*四角形を傾けます*/
  transform: skewY(3deg);
  transform-origin: top right;
  z-index: -1;
  width: 100%;
  height: calc(100% + 6vh);
  background: #383d7d;
}
section#wrapper .container.skewR {
  position: relative;
  z-index: 0;
}
section#wrapper .container.skewR:before {
  content: "";
  position: absolute;
  left: 0;
  top: -3vh;
  /*四角形を傾けます*/
  transform: skewY(-3deg);
  transform-origin: top right;
  z-index: -1;
  width: 100%;
  height: calc(100% + 6vh);
  background: #383d7d;
}

a.entryBtn {
  background-color: #cf121b;
  display: block;
  margin: 0 auto;
  width: 80%;
  max-width: 500px;
  height: 3em;
  line-height: 3em;
  border-radius: 1.5em;
  overflow: hidden;
  box-shadow: 3px 3px 0px 0 rgba(255, 255, 255, 0.15);
  color: #fff000;
  font-weight: bold;
  font-size: 1.6em;
  letter-spacing: 2px;
  text-align: center;
  text-decoration: none;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  a.entryBtn {
    line-height: 80px;
    height: 80px;
    border-radius: 40px;
    font-size: 30px;
    letter-spacing: 2px;
  }
}
a.entryBtn:active {
  background-color: #ec2831;
  filter: drop-shadow(1px 1px 0 rgba(57, 57, 62, 0.8)) saturate(200%);
  top: 1px;
  left: 1px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  a.entryBtn:hover {
    background-color: #ec2831;
    filter: drop-shadow(1px 1px 0 rgba(57, 57, 62, 0.8)) saturate(200%);
    top: 1px;
    left: 1px;
    position: relative;
  }
}
a.entryBtn:after {
  content: "";
  display: block;
  width: 100%;
  height: 2em;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: -1.1em;
  left: -0.5em;
  transform: rotate(-6deg);
  z-index: 2;
}
a.entryBtn span:before {
  content: "\f45f";
  color: #fff000;
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  font-size: 1em;
  line-height: 40px;
  position: relative;
  right: 6px;
  z-index: 9;
}

* a[class^=mailto] {
  color: #fff;
  display: inline-block;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 0.8em;
  height: 1.6em;
  line-height: 1.6em;
  letter-spacing: 1px;
  text-align: center;
  padding: 0 1em;
  margin-bottom: 0.5em;
}
* a[class^=mailto]:active {
  background-color: rgba(255, 255, 255, 0.5);
  color: #fff000;
}
@media screen and (min-width: 1024px) {
  * a[class^=mailto]:hover {
    color: #fff000;
  }
}

a.mailto2 {
  background-color: rgba(56, 61, 125, 0.8);
}
a.mailto2:active {
  background-color: rgba(56, 61, 125, 0.4);
}

[class^=oversubs] p:first-child,
#secSchedule .container .row .title-date a .oversubs p:first-child {
  color: #e50012;
  font-size: clamp(20px, 13vw, 75px);
  font-weight: bold;
  text-align: center;
  text-shadow: 2px 2px 2px #fff, -2px -2px 2px #fff, 2px -2px 2px #fff, -2px 2px 2px #fff, 2px 2px 5px #fff, -2px -2px 5px #fff, 2px -2px 5px #fff, -2px 2px 5px #fff;
  margin-inline: auto;
  transform: rotate(5deg);
  top: 1em;
  left: 0;
  right: 0;
  z-index: 999;
}
@media screen and (min-width: 1024px) {
  [class^=oversubs] p:first-child,
  #secSchedule .container .row .title-date a .oversubs p:first-child {
    top: 1em;
  }
}
[class^=oversubs] p:last-child,
#secSchedule .container .row .title-date a .oversubs p:last-child {
  color: #fff;
  font-weight: normal;
  font-size: clamp(14px, 4vw, 16px);
}

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=tel], 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=tel], 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: 0.6rem;
  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 {
  width: 100%;
  position: relative;
}
header .container {
  background-color: #383d7d;
}
header .container h1 {
  letter-spacing: 1px;
  text-align: center;
  position: relative;
  padding: 10px;
  width: 100%;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  header .container h1 {
    padding: 20px 15px 10px;
  }
}
@media screen and (min-width: 1024px) {
  header .container h1 {
    max-width: 800px;
    margin: 0 auto;
  }
}
header .container .row #topImage {
  background: url("../images/header_bg_sp.jpg") 80% center/auto 105% no-repeat;
  background-attachment: scroll;
  padding: 0;
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px) {
  header .container .row #topImage {
    background: url("../images/header_bg_pc.jpg") center center/cover no-repeat;
    background-attachment: fixed;
  }
}
header .container .row #topImage ul {
  margin: 0 auto;
  height: 65vh;
  position: relative;
}
@media screen and (min-width: 768px) {
  header .container .row #topImage ul {
    max-width: 960px;
    height: 680px;
  }
}
header .container .row #topImage ul li {
  position: absolute;
}
header .container .row #topImage ul li:nth-child(1) {
  width: 25vw;
  height: 25vw;
  top: 1em;
  left: 2em;
}
@media screen and (min-width: 768px) {
  header .container .row #topImage ul li:nth-child(1) {
    width: 150px;
    height: 150px;
  }
}
header .container .row #topImage ul li:nth-child(2) {
  width: 90vw;
  height: auto;
  margin: auto auto;
  display: grid;
  top: 25vw;
  left: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  header .container .row #topImage ul li:nth-child(2) {
    width: 77%;
    top: 50px;
  }
}
@media screen and (min-width: 1024px) {
  header .container .row #topImage ul li:nth-child(2) {
    width: 625px;
  }
}
header .container .row #topImage ul li:nth-child(3) {
  width: 27vw;
  height: 27vw;
  bottom: 1em;
  left: 3em;
}
@media screen and (min-width: 768px) {
  header .container .row #topImage ul li:nth-child(3) {
    width: 150px;
    height: 150px;
  }
}
header .container .row #topImage + p {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 2em 20px;
}
@media screen and (min-width: 768px) {
  header .container .row #topImage + p {
    text-align: center;
    font-size: clamp(16px, 6vw, 21px);
    letter-spacing: 3px;
  }
}
header .container .row #topImage + p br {
  display: none;
}
@media screen and (min-width: 768px) {
  header .container .row #topImage + p br {
    display: block;
  }
}

footer {
  background-color: #383d7d;
  display: block;
  min-height: 4em;
}
footer .footerBtm {
  display: block;
  padding: 0.5em 0;
  margin: 0 auto;
}
footer .footerBtm p.copy {
  color: #e5e5ee;
  font-size: 10px;
  font-weight: normal;
  font-family: "Open Sans", sans-serif;
  letter-spacing: 1px;
  text-align: center;
  line-height: 1.3;
  margin: 2em auto;
}
@media screen and (min-width: 768px) {
  footer .footerBtm p.copy {
    letter-spacing: 2px;
    line-height: 60px;
    height: 60px;
  }
}
@media screen and (min-width: 1024px) {
  footer .footerBtm p.copy {
    line-height: 1em;
    height: 1em;
  }
}

#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: 20px;
  right: 15px;
}
@media screen and (min-width: 768px) {
  #pagetopBtn {
    height: 75px;
    width: 75px;
    bottom: 20px;
    right: 25px;
  }
}
#pagetopBtn a {
  background-color: #fff000;
  color: #000;
  font-size: 10px;
  font-family: "Dosis";
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 0.02em;
  line-height: 55px;
  height: 55px;
  width: 55px;
  display: block;
  position: relative;
  filter: saturate(100%);
}
#pagetopBtn a:active {
  background-color: #fffbb3;
  filter: saturate(200%);
}
@media screen and (min-width: 768px) {
  #pagetopBtn a {
    font-size: 13px;
    line-height: 75px;
    height: 75px;
    width: 75px;
  }
  #pagetopBtn a:hover {
    background-color: #fffbb3;
    filter: saturate(200%);
    text-decoration: none;
  }
  #pagetopBtn a:active {
    background-color: #fff000;
    filter: none;
  }
}
#pagetopBtn a:after {
  content: "\f106";
  font-family: "Font Awesome 5 Free";
  font-size: 10px;
  font-weight: bold;
  color: #000;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  #pagetopBtn a:after {
    font-size: 16px;
    top: -28px;
  }
}

[class^=paraImage] {
  margin: 0 auto;
  width: 100%;
  height: 180px;
  position: relative;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-attachment: scroll;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  [class^=paraImage] {
    height: 250px;
    position: relative;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
  }
}
@media screen and (min-width: 1024px) {
  [class^=paraImage] {
    height: 400px;
  }
}

.paraImage1 {
  background-image: url(../images/sec03_bg_ph_sp.png);
  background-position: center center;
  background-size: 100% auto;
}
@media screen and (min-width: 768px) {
  .paraImage1 {
    background-image: url(../images/sec03_bg_ph_pc.png);
    background-position: center center;
    background-size: 180% auto;
    background-attachment: fixed;
  }
}

section[id^=sec] {
  padding: 0;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}
section[id^=sec] .container {
  padding: 0;
}
section[id^=sec] .container .row {
  padding: 30px 20px 60px;
}
@media screen and (min-width: 768px) {
  section[id^=sec] .container .row {
    padding: 30px 40px 60px;
  }
}
section[id^=sec] .container .row p, section[id^=sec] .container .row li, section[id^=sec] .container .row dt, section[id^=sec] .container .row dd {
  font-size: 1.4rem;
  line-height: 1.6;
  transform: rotate(0.03deg);
}
@media screen and (min-width: 768px) {
  section[id^=sec] .container .row p, section[id^=sec] .container .row li, section[id^=sec] .container .row dt, section[id^=sec] .container .row dd {
    font-size: 16px;
  }
}
section[id^=sec] .container .row p + p {
  margin-top: 1.5em;
}
section[id^=sec] .container .row .bizHours {
  font-size: clamp(16px, 4vw, 18px);
  font-weight: bold;
  display: block;
  margin-top: 10px;
  line-height: 1.4;
  letter-spacing: 2px;
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: rgba(255, 240, 0, 0.4);
  text-underline-offset: -0.2em;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
section[id^=sec] .container .row [class^=title] {
  width: calc(100% + 40px);
  padding: 15px 0;
  margin: 0 -20px 20px;
  position: relative;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  section[id^=sec] .container .row [class^=title] {
    width: calc(100% + 80px);
    margin: 0 -40px 20px;
  }
}
section[id^=sec] .container .row [class^=title] h2 {
  color: #fff;
  font-size: 3em;
  font-weight: 700;
  letter-spacing: 2px;
  margin: auto auto;
}
@media screen and (min-width: 768px) {
  section[id^=sec] .container .row [class^=title] h2 {
    font-size: 45px;
  }
}
section[id^=sec] .container .row .title2 h2 {
  color: #383d7d;
}
section[id^=sec] .container .row [class^=title].pic {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin: 0 0 20px;
}
section[id^=sec] .container .row [class^=title].pic h2 {
  text-align: left;
  margin: 0;
}
@media screen and (min-width: 768px) {
  section[id^=sec] .container .row [class^=title].pic h2 {
    margin-left: 20vw;
  }
}
@media screen and (min-width: 1024px) {
  section[id^=sec] .container .row [class^=title].pic h2 {
    margin-left: 1em;
  }
}
section[id^=sec] .container .row [class^=title].pic img {
  width: 25vw;
}
section[id^=sec] .container .row .title2.pic img {
  width: 30vw;
  transform: rotate(15deg);
  filter: drop-shadow(7px 7px 0px #c0dff5);
}
section[id^=sec] .container .row .title.bar {
  background-color: #383d7d;
  padding: 10px;
  margin-bottom: 2em;
}
section[id^=sec] .container .row .title.bar h2 {
  font-size: 2em;
  margin-inline: auto;
  line-height: 2em;
  height: 2em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  section[id^=sec] .container .row .title.bar h2 {
    font-size: clamp(24px, 10vw, 36px);
  }
}
section[id^=sec] .container .row .entryBtn {
  width: 100%;
  max-width: 680px;
  position: relative;
  margin: 0 auto 2em;
}
section[id^=sec] .container .row .entryBtn a {
  width: 100%;
  height: 60px;
  text-decoration: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  section[id^=sec] .container .row .entryBtn a {
    height: 120px;
  }
}
section[id^=sec] .container .row .entryBtn a span {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  position: relative;
  z-index: 3;
  transform: rotate(0.03deg);
}
@media screen and (min-width: 768px) {
  section[id^=sec] .container .row .entryBtn a span {
    font-size: clamp(24px, 9vw, 32px);
  }
}
section[id^=sec] .container .row .entryBtn a img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
section[id^=sec] .container .row .entryBtn a:active {
  filter: saturate(200%);
}
@media screen and (min-width: 768px) {
  section[id^=sec] .container .row .entryBtn a:hover {
    filter: saturate(200%);
  }
}
section[id^=sec] .container .row .mailBtn {
  width: 100%;
  max-width: 680px;
  display: block;
  width: 100%;
  height: 60px;
  margin: 0 auto 1em;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  section[id^=sec] .container .row .mailBtn {
    height: 120px;
  }
}
section[id^=sec] .container .row .mailBtn:before {
  content: "\f0e0";
  color: #fff;
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  font-size: clamp(2.5em, 7vw, 55px);
  line-height: 40px;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  position: absolute;
  left: 2vh;
  transform: rotate(-15deg);
  z-index: 9;
}
section[id^=sec] .container .row .mailBtn a {
  width: 100%;
  height: 60px;
  text-decoration: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  section[id^=sec] .container .row .mailBtn a {
    height: 120px;
  }
}
section[id^=sec] .container .row .mailBtn a img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
section[id^=sec] .container .row .mailBtn a span {
  color: #000;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 1px;
  line-height: 1.25;
  position: relative;
  z-index: 3;
  transform: rotate(0.03deg);
}
@media screen and (min-width: 768px) {
  section[id^=sec] .container .row .mailBtn a span {
    font-size: clamp(24px, 9vw, 32px);
  }
}
section[id^=sec] .container .row .mailBtn a:active {
  filter: saturate(200%);
}
@media screen and (min-width: 768px) {
  section[id^=sec] .container .row .mailBtn a:hover {
    filter: saturate(200%);
  }
}
section[id^=sec] .container .row .mailBtn + p {
  max-width: 680px;
  margin: 0 auto;
}

section#secSchedule .container .row {
  display: block;
  width: 100%;
  padding-top: 2em;
}
section#secSchedule .container .row .info {
  background-color: rgba(229, 0, 18, 0.05);
  padding: 20px;
  margin: 2em auto;
}
@media screen and (min-width: 768px) {
  section#secSchedule .container .row .info {
    border-radius: 1em;
  }
}
section#secSchedule .container .row .info h3 {
  font-size: clamp(18px, 6vw, 21px);
  font-weight: bold;
  text-align: center;
  margin: 0 auto 1em;
}
section#secSchedule .container .row .info p {
  margin-top: 1.5em;
}
@media screen and (min-width: 768px) {
  section#secSchedule .container .row .info p {
    text-align: center;
  }
}
section#secSchedule .container .row .info p span.date {
  font-weight: bold;
  display: block;
  line-height: 2em;
  padding: 1em 1em 0;
  text-align: center;
  color: #cc0010;
}
section#secSchedule .container .row .wish {
  background: url(../images/schedule_bg_image.png) right bottom/auto 80% no-repeat;
  margin: 2em auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  section#secSchedule .container .row .wish {
    margin: 40px auto;
  }
}
section#secSchedule .container .row .wish li {
  font-size: clamp(14px, 4vw, 20px);
  letter-spacing: 1px;
  line-height: 1.3;
  padding-left: 2em;
  text-indent: -1.5em;
}
@media screen and (min-width: 768px) {
  section#secSchedule .container .row .wish li {
    letter-spacing: 2px;
  }
}
section#secSchedule .container .row .wish li + li {
  margin-top: 10px;
}
section#secSchedule .container .row .wish li::first-letter {
  color: #383d7d;
}
section#secSchedule .container .row h3.teamTitle {
  background-color: #383d7d;
  color: #fff000;
  font-size: clamp(16px, 5vw, 25px);
  font-weight: 900;
  text-align: center;
  padding: 0 10px;
  line-height: 2em;
  height: 2em;
  margin: 2em auto 0;
  width: 100%;
}
section#secSchedule .container .row ul.teamList {
  border-top: 4px solid #383d7d;
  width: 100%;
  transform: rotate(0deg);
}
@media screen and (min-width: 768px) {
  section#secSchedule .container .row ul.teamList {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
section#secSchedule .container .row ul.teamList > li {
  transform: rotate(0deg);
  border: 4px solid #383d7d;
  border-top: 0 none;
}
@media screen and (min-width: 768px) {
  section#secSchedule .container .row ul.teamList > li {
    width: 50%;
    display: block;
  }
}
section#secSchedule .container .row ul.teamList > li > h3 {
  font-size: 1.35em;
  font-weight: bold;
  color: #fff;
  background-color: #434996;
  padding: 0.2em 1em;
}
section#secSchedule .container .row ul.teamList > li > ul {
  background-color: rgba(255, 240, 0, 0.2);
  padding: 0.6em 1em;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
}
section#secSchedule .container .row ul.teamList > li > ul > li {
  display: block;
  max-width: 60%;
  padding-right: 15px;
  font-size: 1.1em;
  font-weight: bold;
}
section#secSchedule .container .row ul.teamList > li > ul > li::before {
  content: "●";
  color: rgba(56, 61, 125, 0.7);
  font-size: 0.8em;
  margin-right: 0.2em;
  position: relative;
  top: -2px;
}
@media screen and (min-width: 768px) {
  section#secSchedule .container .row ul.teamList > li:nth-child(even) {
    border-left: 0 none;
  }
}
section#secSchedule .container .row .voice {
  border: solid 2px #383d7d;
  margin: 2em auto;
}
section#secSchedule .container .row .voice > div {
  display: block;
  background-color: #383d7d;
  padding: 10px;
}
section#secSchedule .container .row .voice > div h3 {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  text-align: justify;
  transform: rotate(0.03deg);
}
@media screen and (min-width: 768px) {
  section#secSchedule .container .row .voice > div h3 {
    font-size: clamp(20px, 9vw, 34px);
    text-align: center;
  }
}
section#secSchedule .container .row .voice ul {
  width: 100%;
  padding: 1em;
}
section#secSchedule .container .row .voice ul li {
  letter-spacing: 1px;
  padding-top: 10px;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  section#secSchedule .container .row .voice ul li {
    letter-spacing: 2px;
  }
}
section#secSchedule .container .row .voice ul li + li {
  margin-top: 10px;
  border-top: dotted 1px #383d7d;
}
section#secSchedule .container .row .voice ul li::first-letter {
  color: #383d7d;
}

section#secEntry .container .row .appInfo dl dt,
section#secEntry .container .row .appInfo dl dd {
  color: #fff;
  padding: 3px 1em;
}
section#secEntry .container .row .appInfo dl dt {
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  section#secEntry .container .row .appInfo dl dt {
    background-color: transparent;
    margin-bottom: 0;
  }
}
section#secEntry .container .row .appInfo dl + dl {
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  section#secEntry .container .row .appInfo dl:nth-child(odd) {
    background-color: rgba(255, 255, 255, 0.1);
  }
  section#secEntry .container .row .appInfo dl {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  section#secEntry .container .row .appInfo dl dt,
  section#secEntry .container .row .appInfo dl dd {
    padding: 1em;
  }
  section#secEntry .container .row .appInfo dl dt {
    width: 25%;
  }
  section#secEntry .container .row .appInfo dl dd {
    width: 75%;
  }
}

section#secMessage .container .row {
  background: url(../images/message_bg_sp.jpg) center bottom/100% auto no-repeat;
  padding-bottom: 60px;
}
section#secMessage .container .row .txt {
  margin-bottom: 40px;
}

section#secLocation .container .row {
  padding-bottom: 60px;
}
section#secLocation .container .row .title + p {
  color: #fff;
}
section#secLocation .container .row ul {
  margin-top: 2em;
}
section#secLocation .container .row ul li + li {
  margin-top: 2px;
}

section#secInn .container .row article p {
  margin-bottom: 2em;
}
section#secInn .container .row article p.cat1 {
  color: #279939;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.3;
  position: relative;
  margin-bottom: -0.1em;
  transform: rotate(-5deg);
  filter: drop-shadow(3px 3px 0px #fff) saturate(150%);
  z-index: 9;
}
@media screen and (min-width: 768px) {
  section#secInn .container .row article p.cat1 {
    font-size: clamp(24px, 12vw, 36px);
    margin-left: 1em;
  }
}
section#secInn .container .row article > img {
  margin-bottom: 2em;
}
section#secInn .container .row article > img + img {
  max-width: 70%;
  margin: 6em auto;
}

section#secTokuten .container .row article ul li + li {
  margin-top: 1em;
}

section#secGuidelines {
  padding: 0;
  margin-bottom: 0;
}
section#secGuidelines .container {
  padding: 4em 0;
  position: relative;
}
section#secGuidelines .container .row .ttl {
  border-bottom: solid 1px #e5e5ee;
  width: 100%;
  margin-bottom: 1.5em;
}
section#secGuidelines .container .row .ttl h2 {
  color: #fff000;
  text-shadow: 2px 2px 0 #383d7d;
  font-size: 5vw;
  font-weight: 700;
  text-align: center;
  height: 3.3em;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  section#secGuidelines .container .row .ttl h2 {
    font-size: clamp(24px, 12vw, 36px);
  }
}
section#secGuidelines .container .row ul li {
  margin-bottom: 1.5em;
}
section#secGuidelines .container .row ul li h3 {
  color: #fff;
  font-size: 1.2em;
  font-weight: 700;
}
section#secGuidelines .container .row ul li p {
  color: #fff;
}
section#secGuidelines .container + .container {
  margin-top: 100px;
}

section#secTokuten .container .row article ul li + li {
  margin-top: 1em;
}

/*
      .faq {
        .qa {
          width: 100%;
          margin-bottom: 10px;
          border: none;
          border-radius: 5px;
          box-shadow: 0 4px 4px rgb(0 0 0 / 10%), 0 2px 3px -2px rgba(0 0 0 / 10%);
          background-color: lighten($c-base, 70%);

          summary {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            padding: 1em 2em 1em 3em;
            color: #333333;
            font-size: clamp(14px, 4vw, 16px);
            font-weight:bold;
            cursor: pointer;
            transform: rotate(0.03deg);
            &::before {
              position: absolute;
              left: 1em;
              font-weight: 600;
              font-size: 1.3em;
            }
          }
          p::before {
            position: absolute;
            left: 1em;
            font-weight: 600;
            font-size: 1.3em;
          }
          summary {
            &::before {
              color: #75bbff;
              content: "Q";
            }
            &::after {
              transform: translateY(-25%) rotate(45deg);
              width: 7px;
              height: 7px;
              margin-left: 10px;
              border-bottom: 3px solid #333333b3;
              border-right: 3px solid #333333b3;
              content: '';
              transition: transform .5s;
            }
          }
          &[open] summary::after {
            transform: rotate(225deg);
          }
          p {
            position: relative;
            transform: translateY(-10px);
            opacity: 0;
            margin: 0;
            padding: .3em 3em 1.5em;
            color: #333;
            transition: transform .5s, opacity .5s;
            font-size: clamp(14px, 4vw, 16px);
          }
          &[open] p {
            transform: rotate(0.03deg);
            opacity: 1;
          }
          p::before {
            color: #ff8d8d;
            line-height: 1.2;
            content: "A";
          }
        }
      }
 *//*# sourceMappingURL=style.css.map */