@charset "UTF-8";
@import url("fix.css");
@font-face {
  font-display: swap;
  font-family: "Murecho";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/murecho-Bold.woff2") format("woff2");
}
/*----------------------------------------------------
  SCSS
----------------------------------------------------*/
/* カラー設定 */
:root {
  --ff-jp: Noto Sans JP, Hiragino Kaku Gothic Pro, Yu Gothic, Meiryo, sans-serif;
  --ff-ttl: Murecho, Noto Sans JP, Hiragino Kaku Gothic Pro, Yu Gothic, Meiryo, sans-serif;
  --color-primary: #00bf00;
  --color-secondary: #ff5a00;
  --color-accent: #c9e68E;
  --color-link: #fc5500;
  --color-bg: #ffffff;
  --color-text: #4c4c4c;
  --color-border: #e5e7eb;
  --color-red1: #e60012;
  --color-ylw: #ffee00;
  --color-crm: #fff999;
  --color-orng: #fc5500;
  --color-gray1: #f0f0f0;
  --color-gray-100: #f8f9fa;
  --color-gray-200: #e9ecef;
  --color-gray-300: #dee2e6;
  --color-gray-400: #ced4da;
  --color-gray-500: #adb5bd;
  --color-gray-600: #6c757d;
  --color-gray-700: #495057;
  --color-gray-800: #343a40;
  --color-gray-900: #212529;
  --space-none: 0;
  --space-xxs: 4px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 4rem;
  --space-xxl: 96px;
  --space-4: 4px;
  --space-8: 8px;
  --space-16: 16px;
  --space-24: 24px;
  --space-40: 40px;
  --space-64: 64px;
  --space-96: 96px;
  --space-nav-gap: clamp(1.5rem, 5vw, 2.5rem);
  --space-nav-gap-mobile: 1rem;
  --font-size-base: clamp(1rem, 2.5vw, 1.125rem);
  --font-size-xs: clamp(0.7rem, 1.7vw, 0.9rem);
  --font-size-sm: clamp(0.875rem, 2vw, 1rem);
  --font-size-md: clamp(1.08rem, 2.6vw, 1.125rem);
  --font-size-lg: clamp(1.125rem, 2.8vw, 1.25rem);
  --font-size-xl: clamp(1.8rem, 5vw, 2.7rem);
  --font-size-h1: clamp(2rem, 5vw, 3rem);
  --font-size-h2: clamp(1.5rem, 4vw, 2.25rem);
  --font-size-h3: clamp(1.25rem, 3vw, 1.5rem);
  --font-size-text: clamp(10px, 3.5vw, 16px);
  --font-size-10: 10px;
  --font-size-11: 11px;
  --font-size-12: 12px;
  --font-size-13: 13px;
  --font-size-14: 14px;
  --font-size-15: 15px;
  --font-size-16: 16px;
}

/*-- EllyLoel/reset --*/
* {
  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 {
  font-size: 10px;
  position: relative;
}

body {
  background-color: #fff;
  color: #3c3c3c;
  font-size: 10px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "Yu Gothic", "Meiryo", sans-serif;
  min-height: 100dvh;
  position: relative;
  container-type: inline-size;
}

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

a,
a:link {
  color: #f40;
  text-decoration: none;
}

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

p,
p > span {
  font-size: 1.4rem;
  letter-spacing: 1px;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

video {
  width: 100%;
}

picture {
  display: block;
}

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

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

td,
th {
  padding: 0;
}

section#container-fluid {
  position: relative;
}

.container {
  width: 100%;
}

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

@media screen and (max-width: 320px) {
  p,
  p > span,
  li,
  dt,
  dd {
    font-size: 1.2rem;
    letter-spacing: 0.02em;
  }
}
input,
select,
textarea {
  writing-mode: horizontal-tb !important;
  text-align: start;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  -webkit-rtl-ordering: logical;
  cursor: text;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.bk {
  color: #000;
}

.red {
  color: #e60012;
}

/*-- header --*/
header {
  background-image: url("../images/header_bg_sp.webp");
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
  overflow: hidden;
  position: relative;
  padding-bottom: 15px;
}
@media screen and (min-width: 768px) {
  header {
    background-image: url("../images/header_bg_pc.webp");
    background-size: 1280px auto;
    background-repeat: repeat-x;
  }
}
@media screen and (min-width: 1024px) {
  header .container {
    width: 800px;
    margin: 0 auto;
    padding: 0;
  }
}
@media screen and (min-width: 1280px) {
  header .container {
    width: 960px;
  }
}
header .headerImage {
  position: relative;
  height: 75vw;
  min-height: 290px;
}
@media screen and (min-width: 1024px) {
  header .headerImage {
    height: 600px;
  }
}
@media screen and (min-width: 1280px) {
  header .headerImage {
    height: 680px;
  }
}
header .headerImage .headerImage1,
header .headerImage .headerImage2 {
  position: absolute;
  left: 0;
  width: 100%;
  will-change: transform;
}
header .headerImage .headerImage1 {
  top: 2.5em;
}
@media screen and (min-width: 768px) {
  header .headerImage .headerImage1 {
    top: 50px;
  }
}
header .headerImage .headerImage2 {
  top: 50%;
}
@media screen and (min-width: 768px) {
  header .headerImage .headerImage2 {
    top: 44%;
  }
}
@media screen and (min-width: 1024px) {
  header .headerImage .headerImage2 {
    top: 45%;
  }
}
@media screen and (min-width: 1280px) {
  header .headerImage .headerImage2 {
    top: 48%;
  }
}
header .headerTxt {
  background-color: rgba(255, 255, 255, 0.7);
  width: 100%;
  display: block;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  position: absolute;
  top: 1em;
  left: 0;
  right: 0;
}
@media screen and (min-width: 1024px) {
  header .headerTxt {
    top: 20px;
  }
}
header .headerTxt h1 {
  color: #ff5a00;
  font-family: "Murecho", "Noto Sans JP", "Hiragino Kaku Gothic Pro", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 2.3vw;
  font-weight: normal;
  letter-spacing: 3px;
  height: 2em;
  line-height: 2em;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  header .headerTxt h1 {
    font-size: 14px;
    letter-spacing: 4px;
  }
}
header .row {
  position: relative;
}
@media screen and (min-width: 1024px) {
  header .row {
    max-width: 900px;
    margin: 0 auto;
  }
}
header dl.hdEventDet, header dl.hdTeamDet {
  padding: 0;
}
header dl.hdEventDet dt, header dl.hdEventDet dd, header dl.hdTeamDet dt, header dl.hdTeamDet dd {
  position: relative;
  display: block;
}
header dl.hdEventDet {
  margin-top: -3px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  header dl.hdEventDet {
    margin-top: 1em;
  }
}
header dl.hdEventDet dt {
  background-color: #cbddb4;
}
header dl.hdEventDet dd {
  background-color: #f8cb97;
}
header dl.hdTeamDet {
  padding: 0 15px;
  margin-bottom: 40px;
}
header dl.hdTeamDet dt, header dl.hdTeamDet dd {
  position: relative;
  background-color: #fff999;
  margin-top: 1.5em;
}
header dl.hdTeamDet dt h2, header dl.hdTeamDet dd h2 {
  width: 100%;
}
header dl.hdTeamDet dt h2 img, header dl.hdTeamDet dd h2 img {
  max-width: 300px;
  margin: 0 auto;
}
header dl.hdTeamDet dt h3, header dl.hdTeamDet dd h3 {
  font-family: "Murecho", "Noto Sans JP", "Hiragino Kaku Gothic Pro", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  padding: 0 1em;
  height: 1.8em;
  line-height: 1.8em;
}
header dl.hdTeamDet dt ul, header dl.hdTeamDet dd ul {
  border-top: 0 none;
  padding: 1em;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
header dl.hdTeamDet dt ul > li, header dl.hdTeamDet dd ul > li {
  width: 50%;
  display: block;
  margin-bottom: 4px;
  font-size: 1.4rem;
  font-weight: bold;
}
header dl.hdTeamDet dt ul > li::before, header dl.hdTeamDet dd ul > li::before {
  content: "●";
  color: #00bf00;
  font-size: 0.8em;
  margin-right: 0.5em;
  position: relative;
  top: 0;
}
header dl.hdTeamDet dt {
  border: 4px solid #ff5a00;
}
header dl.hdTeamDet dt h2 {
  background-color: #ff5a00;
}
header dl.hdTeamDet dt h3 {
  background-color: rgb(255, 113.1, 35.7);
}
header dl.hdTeamDet dt > ul {
  border-top: 0 none;
}
header dl.hdTeamDet dd {
  border: 4px solid #00bf00;
}
header dl.hdTeamDet dd h2 {
  font-family: "Murecho", "Noto Sans JP", "Hiragino Kaku Gothic Pro", "Yu Gothic", "Meiryo", sans-serif;
  background-color: #00bf00;
}
header dl.hdTeamDet dd h3 {
  background-color: rgb(0, 226.7, 0);
}
header dl.hdTeamDet dd > ul {
  border-top: 0 none;
}
@media screen and (min-width: 768px) {
  header dl.hdEventDet {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0;
  }
  header dl.hdEventDet dt, header dl.hdEventDet dd {
    width: 50%;
    padding: 1em 0;
  }
  header dl.hdTeamDet {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0;
    margin: 0 auto 60px;
  }
  header dl.hdTeamDet dt, header dl.hdTeamDet dd {
    width: 49%;
    margin-top: 0;
  }
  header dl.hdTeamDet dt ul li, header dl.hdTeamDet dd ul li {
    font-size: 16px;
    margin-bottom: 4px;
  }
}
header .figInfo {
  margin: 0 15px 1em;
  position: relative;
  z-index: 0;
}
header .figInfo h2 {
  font-family: "Murecho", "Noto Sans JP", "Hiragino Kaku Gothic Pro", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 4.3vw;
  font-weight: bold;
  text-align: center;
  background-color: #fff;
  padding: 0.5em 5px;
  line-height: 1.3;
  min-height: 3.6em;
  position: relative;
  z-index: 2;
  box-shadow: 0px 0px 3px #777;
}
@media screen and (min-width: 768px) {
  header .figInfo h2 {
    font-size: 24px;
  }
}
header .figInfo h2:last-of-type {
  margin-top: 30px;
  min-height: 1.8em;
  line-height: 1;
}
header .figInfo h2.u-jr {
  font-family: "Murecho", "Noto Sans JP", "Hiragino Kaku Gothic Pro", "Yu Gothic", "Meiryo", sans-serif;
  color: #ff5a00;
  background: linear-gradient(to bottom right, #FFF, hsl(21.1764705882, 100%, 118%));
}
header .figInfo h2.organizer {
  font-family: "Murecho", "Noto Sans JP", "Hiragino Kaku Gothic Pro", "Yu Gothic", "Meiryo", sans-serif;
  color: #00bf00;
  background: linear-gradient(to bottom right, #FFF, rgb(180.8, 255, 180.8));
}
header .figInfo table {
  background-color: #00bf00;
  width: 100%;
  border-collapse: collapse;
  z-index: 1;
  box-shadow: 0px 1px 2px #777, 0px 1px 3px #777;
  margin-bottom: 30px;
}
header .figInfo table tr {
  box-sizing: content-box;
}
header .figInfo table tr th, header .figInfo table tr td {
  border-collapse: collapse;
  padding: 1em 1em 1rem;
  color: #fff;
  line-height: 1.6;
  letter-spacing: 0;
  font-size: 3.2vw;
}
@media screen and (min-width: 768px) {
  header .figInfo table tr th, header .figInfo table tr td {
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 1.8;
    padding: 1em;
  }
}
header .figInfo table tr th {
  background-color: rgb(0, 165.5, 0);
  text-align: center;
  display: block;
  width: 100%;
}
header .figInfo table tr th br {
  display: none;
}
@media screen and (min-width: 768px) {
  header .figInfo table tr th br {
    display: block;
  }
}
header .figInfo table tr td {
  display: block;
  width: 100%;
  position: relative;
}
header .figInfo table tr td span.stay {
  background-color: rgb(0, 165.5, 0);
  display: inline-block;
  line-height: 1.9em;
  height: 1.8em;
  padding: 0 0.5em;
  margin: 8px 0 6px;
  border-radius: 5px;
}
header .figInfo table tr td img.pop,
header .figInfo table tr td img.pop2 {
  width: 47%;
  max-width: 320px;
  height: auto;
  display: inline-block;
  position: absolute;
  right: 3vw;
  bottom: 1.4em;
}
header .figInfo table tr td img.pop2 {
  bottom: 1.2em;
}
header .figInfo table tr td hr {
  border: 0 none;
  border-bottom: 1px dashed #fff;
  width: 100%;
  display: block;
  margin: 1.5em 0;
}
header .figInfo table tr td a {
  color: #fff;
  text-decoration: underline;
  display: inline-block;
  letter-spacing: 0.02em;
  font-size: inherit;
}
header .figInfo table tr td.hiyou {
  line-height: 2;
}
header .figInfo table tr td.hiyou .varTxt {
  line-height: 1.5em !important;
  display: inline-block;
}
header .figInfo table tr td.sponsorship span {
  display: block;
  margin: 0;
}
header .figInfo table.u-jr {
  background-color: #ff5a00;
}
header .figInfo table.u-jr tr th {
  background-color: #cc4800;
}
header .figInfo table.organizer {
  background-color: #00bf00;
}
header .figInfo table.organizer tr th {
  background-color: rgb(0, 165.5, 0);
}
@media screen and (min-width: 768px) {
  header .figInfo table.u-jr tr th, header .figInfo table.u-jr tr td, header .figInfo table.organizer tr th, header .figInfo table.organizer tr td {
    border-bottom: solid 1px rgba(255, 255, 255, 0.7);
    display: table-cell;
  }
  header .figInfo table.u-jr tr th, header .figInfo table.organizer tr th {
    width: 24%;
  }
  header .figInfo table.u-jr tr td, header .figInfo table.organizer tr td {
    width: 76%;
  }
  header .figInfo table.u-jr tr:last-child th,
  header .figInfo table.u-jr tr:last-child td, header .figInfo table.organizer tr:last-child th,
  header .figInfo table.organizer tr:last-child td {
    border-bottom: 0 none;
  }
}
@media screen and (min-width: 768px) {
  header .figInfo table th {
    font-size: 1.4rem;
  }
  header .figInfo table td {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
  }
  header .figInfo table td span, header .figInfo table td a {
    font-size: inherit;
  }
  header .figInfo table td a + a {
    margin-left: 1em;
  }
  header .figInfo table td img.pop,
  header .figInfo table td img.pop2 {
    width: 50%;
    max-width: 50%;
    right: 7vw;
    bottom: 2.2em;
  }
  header .figInfo table td img.pop2 {
    bottom: 1.8em;
  }
  header .figInfo table td span.stay {
    margin-right: 1em;
  }
}
@media screen and (min-width: 1024px) {
  header .figInfo {
    margin: 0 auto;
  }
  header .figInfo h2 {
    font-size: 32px;
    letter-spacing: 1px;
  }
  header .figInfo table td img.pop,
  header .figInfo table td img.pop2 {
    width: 320px;
    max-width: 320px;
    right: 40px;
    bottom: 50px;
  }
  header .figInfo table td img.pop2 {
    bottom: 50px;
  }
  header .figInfo table th,
  header .figInfo table td {
    font-size: 18px;
    padding: 1em 10px;
  }
}

@media screen and (max-width: 320px) {
  header dl.hdTeamDet dt ul > li,
  header dl.hdTeamDet dd ul > li {
    margin-bottom: 5px;
    font-size: 1.2em;
  }
  header .figInfo {
    padding: 6px 4px;
  }
  header .figInfo table th, header .figInfo table td {
    letter-spacing: 0;
    font-size: 1.08rem;
  }
  header .figInfo table th {
    width: 20%;
    padding-right: 4px;
  }
  header .figInfo table td span.lins {
    display: inline;
  }
  header .figInfo table td img.pop, header .figInfo table td img.pop2 {
    width: 85%;
    right: unset;
    bottom: unset;
    position: relative;
  }
}
footer {
  background-color: #00bf00;
  padding: 1em 0 2em;
  position: relative;
}
@media screen and (min-width: 1024px) {
  footer {
    padding: 0;
  }
}
footer p.copy {
  color: #fff;
  font-size: 10px;
  font-weight: normal;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 1px;
  display: block;
  text-align: center;
  line-height: 1;
  margin: 15px 0 0;
}
@media screen and (min-width: 1024px) {
  footer p.copy {
    font-size: 12px;
    letter-spacing: 2px;
    line-height: 60px;
    height: 60px;
    margin: 0;
  }
}

#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: 50px;
  right: 7%;
}
@media screen and (min-width: 768px) {
  #pagetopBtn {
    height: 75px;
    width: 75px;
    bottom: 240px;
  }
}
#pagetopBtn a {
  background-color: #fc5500;
  color: #fff;
  font-size: 9px;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 1px;
  line-height: 55px;
  height: 55px;
  width: 55px;
  display: block;
}
@media screen and (min-width: 768px) {
  #pagetopBtn a {
    font-size: 12px;
    line-height: 75px;
    height: 75px;
    width: 75px;
  }
  #pagetopBtn a:hover {
    filter: saturate(200%);
    text-decoration: none;
  }
}
#pagetopBtn a:active {
  filter: saturate(200%);
}
#pagetopBtn svg {
  height: 14px;
  width: 14px;
  position: absolute;
  right: 0;
  top: 3px;
  left: 0;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  #pagetopBtn svg {
    width: 18px;
    height: 18px;
  }
}

[class^=oversubs] {
  color: #e60012;
  font-size: clamp(20px, 15vw, 50px);
  font-weight: bold;
  text-align: center;
  margin-inline: auto;
  transform: rotate(5deg);
  position: absolute;
  top: 1em;
  left: 0;
  right: 0;
  z-index: 999;
}
@media screen and (min-width: 1024px) {
  [class^=oversubs] {
    top: 1em;
  }
}

@media screen and (min-width: 1024px) {
  section[id^=sec] .container .row {
    width: 800px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1280px) {
  section[id^=sec] .container .row {
    width: 900px;
  }
}
section[id^=sec] .ttlBarO,
section[id^=sec] .ttlBarG {
  border: 0 none;
  border-top: solid 5px #ff5a00;
  border-bottom: solid 5px #ff5a00;
  border-radius: 3%;
  font-family: "Murecho", "Noto Sans JP", "Hiragino Kaku Gothic Pro", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1.7rem;
  font-weight: bold;
  color: #000;
  position: relative;
  display: block;
  padding: 8px 6px 6px;
  margin-bottom: 15px;
  line-height: 1.2;
}
section[id^=sec] .ttlBarG {
  border-top: solid 5px #00bf00;
  border-bottom: solid 5px #00bf00;
}
@media screen and (min-width: 768px) {
  section[id^=sec] .ttlBarO,
  section[id^=sec] .ttlBarG {
    border-top: solid 8px #ff5a00;
    border-bottom: solid 8px #ff5a00;
    border-radius: 8px;
    font-size: 24px;
    line-height: 1.2;
  }
  section[id^=sec] .ttlBarG {
    border-top: solid 8px #00bf00;
    border-bottom: solid 8px #00bf00;
  }
}
@media screen and (min-width: 1024px) {
  section[id^=sec] .ttlBarO,
  section[id^=sec] .ttlBarG {
    font-size: 36px;
    line-height: 1.4;
  }
}
section[id^=sec] p.entryBtn {
  width: 92% !important;
  margin: -1rem auto 3px;
  position: relative;
  z-index: 9;
}
section[id^=sec] p.entryBtn a {
  background: url("../images/btn_base1.webp") center top no-repeat;
  background-size: 100% auto;
  color: #fff;
  display: block;
  font-size: 4.7vw;
  font-family: "Murecho", "Noto Sans JP", "Hiragino Kaku Gothic Pro", "Yu Gothic", "Meiryo", sans-serif;
  letter-spacing: 0.02em;
  font-weight: bold;
  line-height: 1.33;
  height: 26vw;
  padding: 1.5em 10% 0 20px;
  text-align: center;
  text-shadow: 0px 0px 3px #111, 0px 0px 3px #111, 0px 0px 3px #111, 0px 0px 3px #111, 0px 0px 3px #111, 0px 0px 3px #111, 0px 0px 3px #111, 0px 0px 3px #111;
}
@media screen and (min-width: 360px) {
  section[id^=sec] p.entryBtn a {
    padding: 1.5em 10% 0 20px;
  }
}
@media screen and (min-width: 768px) {
  section[id^=sec] p.entryBtn {
    width: 100% !important;
    margin: 0 auto;
  }
  section[id^=sec] p.entryBtn a {
    background: url("../images/btn_base1.webp") center top no-repeat;
    background-size: contain;
    height: 180px;
    width: 644px;
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: 2px;
    margin: 0 auto 15px;
    padding: 50px 0 0 10px;
    text-shadow: 1px 1px 1px #111, -1px 1px 1px #111, 1px -1px 1px #111, -1px -1px 1px #111, 2px 2px 2px #111, -2px 2px 2px #111, 2px -2px 2px #111, -2px -2px 2px #111;
  }
}
@media screen and (min-width: 1024px) {
  section[id^=sec] p.entryBtn {
    width: 100% !important;
    margin: 0 auto;
  }
  section[id^=sec] p.entryBtn a:hover {
    opacity: 0.7;
  }
}
section[id^=sec] p.telNav {
  background-color: #05a;
  border-radius: 7px;
  color: #fff;
  font-size: clamp(14px, 4vw, 17px);
  font-weight: bold;
  font-family: sans-serif;
  width: 90vw;
  margin: 0 auto;
  padding: 4px 8px 8px;
  line-height: 1.25;
  letter-spacing: 0;
  text-align: center;
  box-shadow: 1px 1px 1px #999;
  z-index: 10;
  position: relative;
}
section[id^=sec] p.telNav span {
  display: inline-block;
  font-family: "Open Sans", sans-serif;
  letter-spacing: 1px;
  font-size: inherit;
}
section[id^=sec] p.telNav a {
  display: inline-block;
  font-size: 2.4rem;
  font-family: "Open Sans", sans-serif;
  letter-spacing: 2px;
  text-decoration: underline;
  color: #fff;
}
section[id^=sec] p.telNav + p {
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  section[id^=sec] p.telNav + p {
    margin-top: 0.5em;
  }
}
@media screen and (min-width: 768px) {
  section[id^=sec] p.telNav {
    font-size: 3rem;
    width: 82vw;
    margin-top: 0.5em;
    border-radius: 0.5em;
  }
  section[id^=sec] p.telNav span {
    font-size: 3rem;
  }
}
@media screen and (min-width: 1024px) {
  section[id^=sec] p.telNav {
    width: 630px;
    padding: 15px 0;
    line-height: 1.3;
    font-size: 28px;
  }
  section[id^=sec] p.telNav span {
    font-size: 44px;
    letter-spacing: 2px;
    line-height: 1.3;
  }
  section[id^=sec] p.telNav a {
    display: inline-block;
    text-decoration: none;
  }
}

#sec1 {
  padding: 15px 0;
  margin-bottom: 30px;
  overflow: hidden;
}
#sec1 .container .row {
  width: 100vw;
}
@media screen and (min-width: 768px) {
  #sec1 {
    padding: 30px 0;
  }
}
@media screen and (min-width: 1024px) {
  #sec1 {
    padding: 60px 0 40px;
  }
}
#sec1 .chkList {
  overflow: hidden;
  margin-bottom: 2em;
  position: relative;
}
@media screen and (min-width: 1024px) {
  #sec1 .chkList {
    max-width: 970px;
    margin: 0 auto 60px;
  }
}
#sec1 .chkList ul {
  margin-left: 15px;
}
@media screen and (min-width: 1024px) {
  #sec1 .chkList ul {
    margin-left: 5%;
  }
}
#sec1 .chkList ul li {
  background: url("../images/icn_chk01.webp") left top no-repeat;
  background-size: 1.4em auto;
  padding-left: 2em;
  font-size: 1.6rem;
  line-height: 2;
  min-height: 2em;
  font-weight: bold;
  margin-bottom: 4px;
}
@media screen and (max-width: 320px) {
  #sec1 .chkList ul li {
    background-size: 1.3em auto;
    padding-left: 1.5em;
    font-size: 1.3rem;
    line-height: 1.5;
    min-height: 1.6em;
  }
}
@media screen and (min-width: 1024px) {
  #sec1 .chkList ul li {
    background-position: left 0.4em;
    background-size: 24px auto;
    padding-left: 36px;
    font-size: 24px;
    line-height: 2em;
    min-height: 2em;
    margin-bottom: 10px;
  }
}
#sec1 .chkList img {
  width: 35%;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 320px) {
  #sec1 .chkList img {
    width: 100%;
    clear: both;
    position: relative;
    bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  #sec1 .chkList img {
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  #sec1 .chkList img {
    width: 37%;
    position: absolute;
    bottom: 0;
    right: 0;
  }
}
#sec1 .chkList + h2 {
  margin: 0 0 40px;
}
@media screen and (min-width: 1024px) {
  #sec1 .chkList + h2 {
    width: 100%;
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  #sec1 .chkList + h2 img {
    width: 960px;
    margin: 0 auto;
  }
}
#sec1 .scheCnt {
  border: solid 3px #05a;
  border-top: 0;
  width: 90%;
  max-width: 970px;
  margin: 0 auto 60px;
}
#sec1 .scheCnt h3 {
  color: #fff;
  background: #05a;
  line-height: 2.5;
  font-family: "Murecho", "Noto Sans JP", "Hiragino Kaku Gothic Pro", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 7vw;
  font-weight: bold;
  text-align: center;
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 768px) {
  #sec1 .scheCnt h3 {
    font-size: 42px;
  }
}
#sec1 .scheCnt h3 + p {
  text-align: center;
}
#sec1 .scheCnt ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
#sec1 .scheCnt ul li:nth-child(odd) {
  background-color: #f0f0f0;
}
#sec1 .scheCnt ul li:first-child {
  background-color: #fff999;
  text-align: center;
}
#sec1 .scheCnt ul li:first-child p {
  padding: 0;
  margin: 0;
  line-height: 3em;
}
@media screen and (min-width: 768px) {
  #sec1 .scheCnt ul li:first-child p {
    line-height: 1.5em;
    padding: 10px;
  }
}
#sec1 .scheCnt ul li {
  width: 100%;
  line-height: 2;
  min-height: 3em;
  padding: 0;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#sec1 .scheCnt ul li p {
  padding: 0.5em;
  font-size: 4vw;
  line-height: 1.6;
  font-weight: bold;
  letter-spacing: 0.02em;
  color: #000;
}
@media screen and (max-width: 320px) {
  #sec1 .scheCnt ul li p {
    font-size: 1.2em;
    letter-spacing: -0.02em;
  }
}
@media screen and (min-width: 768px) {
  #sec1 .scheCnt ul li p {
    font-size: 28px;
    margin: 0;
    display: block;
    width: 80%;
  }
}
#sec1 .scheCnt ul li p .stay {
  color: #fff;
  background-color: rgb(255, 128, 137.9391304348);
  display: inline-block;
  line-height: 1.7em;
  height: 1.7em;
  padding: 0 1em;
  margin: 8px 0 6px 10px;
  border-radius: 0.9em;
}
@media screen and (min-width: 768px) {
  #sec1 .scheCnt ul li p .stay {
    font-size: 27px;
  }
}
#sec1 .scheCnt ul li p.date {
  padding: 1em 15px;
  text-align: center;
}
@media screen and (max-width: 320px) {
  #sec1 .scheCnt ul li p.date {
    padding: 1em 10px;
  }
}
@media screen and (min-width: 768px) {
  #sec1 .scheCnt ul li p.date {
    padding: 1em 0;
  }
}
#sec1 .scheCnt ul li p.date span {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 1em;
  line-height: 1.9em;
  height: 1.8em;
  border-radius: 0.9em;
  font-weight: bold;
  color: #fff;
  background-color: #ff5a00;
  padding: 0 10px;
  margin: 1em auto 5px;
  position: relative;
  top: 0;
}
@media screen and (min-width: 768px) {
  #sec1 .scheCnt ul li p.date span {
    font-size: 32px;
    line-height: 48px;
    height: 48px;
    padding: 0 1em;
    top: -0.2em;
  }
}
@media screen and (min-width: 1024px) {
  #sec1 .scheCnt ul li p.date span {
    line-height: 60px;
    height: 60px;
  }
}
#sec1 .scheCnt ul li p.date span:first-child {
  margin-top: 0;
}
#sec1 .scheCnt ul li p.date span.u-age12 {
  background-color: #00bf00;
}
#sec1 .scheCnt ul li p.date span.u-age10 {
  background-color: #ff5a00;
}
@media screen and (min-width: 768px) {
  #sec1 .scheCnt ul li p.date + p {
    padding-top: 0;
  }
}
#sec1 .scheCnt ul li p.txt1 {
  font-size: 14px;
  text-align: left;
  padding: 1em 15px;
}
@media screen and (min-width: 768px) {
  #sec1 .scheCnt ul li p.txt1 {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  #sec1 .scheCnt ul li:nth-child(3) p {
    padding: 0.5em 0;
    text-align: center;
  }
}
#sec1 .scheCnt ul + p {
  padding: 8px 15px;
}
@media screen and (min-width: 768px) {
  #sec1 .scheCnt ul + p {
    padding-top: 20px;
    text-align: center;
  }
}
#sec1 .scheCnt ul:last-of-type {
  border-top: 4px solid #05a;
}
#sec1 .skewCnt {
  background-color: #c9e68E;
  transform: skew(0deg, -4deg);
  margin: 40px 0 0;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  #sec1 .skewCnt {
    margin: 0;
  }
}
#sec1 .skewCnt > div {
  transform: skew(0deg, 4deg);
  width: 100%;
  padding: 3em 5%;
}
@media screen and (min-width: 768px) {
  #sec1 .skewCnt > div {
    padding: 5em 5%;
  }
}
@media screen and (min-width: 1024px) {
  #sec1 .skewCnt > div {
    max-width: 970px;
    margin: 0 auto;
    padding: 100px 30px;
  }
}
#sec1 .skewCnt > div h3 {
  text-align: center;
  width: 100%;
  margin-bottom: 1.5em;
}
@media screen and (min-width: 1024px) {
  #sec1 .skewCnt > div h3 {
    font-size: 40px;
  }
}
#sec1 .skewCnt > div .skewFlex {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  #sec1 .skewCnt > div .skewFlex {
    max-width: 1100px;
    display: flex;
    flex-direction: unset;
    gap: 40px;
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    padding-right: 5%;
  }
}
@media screen and (min-width: 1280px) {
  #sec1 .skewCnt > div .skewFlex {
    padding: 0;
    width: 100%;
    margin-inline: auto;
  }
}
#sec1 .skewCnt > div .skewFlex img {
  width: 100%;
  height: auto;
  max-inline-size: unset;
  order: 2;
}
@media screen and (max-width: 575px) {
  #sec1 .skewCnt > div .skewFlex img {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
  }
}
@media screen and (min-width: 768px) {
  #sec1 .skewCnt > div .skewFlex img {
    width: 45%;
    margin: 0;
    order: 1;
    flex-shrink: 0;
  }
}
#sec1 .skewCnt > div .skewFlex p {
  text-align: justify;
  letter-spacing: 1px;
  order: 1;
}
@media screen and (min-width: 768px) {
  #sec1 .skewCnt > div .skewFlex p {
    width: 55%;
    margin-top: 0;
    order: 2;
  }
}
@media screen and (min-width: 1024px) {
  #sec1 .skewCnt > div .skewFlex p {
    line-height: 1.6;
    font-size: 18px;
  }
}

#sec4 {
  background-color: #fff;
  padding: 0 0 2em;
  margin-bottom: 3em;
}
@media screen and (min-width: 1024px) {
  #sec4 {
    padding: 40px 0;
  }
}
#sec4 .row {
  padding: 0 5%;
}
#sec4 .row .sec4Cnt {
  border: solid 4px #00bf00;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  display: block;
  padding: 38vw 2% 2em;
  position: relative;
}
@media screen and (min-width: 768px) {
  #sec4 .row .sec4Cnt {
    padding: 280px 2% 2em;
  }
}
@media screen and (min-width: 1024px) {
  #sec4 .row .sec4Cnt {
    margin: 0 auto;
    max-width: 970px;
    padding: 270px 30px 2em;
  }
}
#sec4 .row .sec4Cnt img.point {
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
  width: 35%;
  height: auto;
}
@media screen and (min-width: 1024px) {
  #sec4 .row .sec4Cnt img.point {
    top: 30px;
    width: 200px;
  }
}
#sec4 .row .sec4Cnt h2 {
  width: 100%;
  margin-bottom: 20px;
}
#sec4 .row .sec4Cnt h3 {
  font-family: "Murecho", "Noto Sans JP", "Hiragino Kaku Gothic Pro", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 4.5vw;
  font-weight: bold;
  height: 4em;
  line-height: 3.7em;
  padding-left: 5em;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  #sec4 .row .sec4Cnt h3 {
    height: 80px;
    line-height: 80px;
  }
}
@media screen and (min-width: 1024px) {
  #sec4 .row .sec4Cnt h3 {
    font-size: 32px;
    padding-left: 140px;
  }
}
@media screen and (min-width: 1280px) {
  #sec4 .row .sec4Cnt h3 {
    font-size: 36px;
  }
}
#sec4 .row .sec4Cnt h3.pt1 {
  background: url("../images/sec4_pt01.webp") left top no-repeat;
  background-size: 5em auto;
}
@media screen and (min-width: 768px) {
  #sec4 .row .sec4Cnt h3.pt1 {
    background-size: 120px auto;
  }
}
#sec4 .row .sec4Cnt h3.pt2 {
  background: url("../images/sec4_pt02.webp") left top no-repeat;
  background-size: 5em auto;
}
@media screen and (min-width: 768px) {
  #sec4 .row .sec4Cnt h3.pt2 {
    background-size: 120px auto;
  }
}
#sec4 .row .sec4Cnt h3 + p {
  padding: 0 6px 1em;
}
@media screen and (min-width: 1024px) {
  #sec4 .row .sec4Cnt p {
    font-size: 18px;
    line-height: 1.6;
  }
}
#sec4 .row .sec4Cnt p.comment {
  font-size: 1em;
  margin: 5px 0 1em;
}
@media screen and (min-width: 768px) {
  #sec4 .row .sec4Cnt p.comment {
    font-size: 14px;
  }
}
#sec4 .row .sec4Cnt .sec4Image {
  display: block;
  position: relative;
}
#sec4 .row .sec4Cnt .sec4Image p:first-child {
  color: #00bf00;
  font-weight: bold;
  margin-bottom: -2em;
  font-size: 4.5vw;
  letter-spacing: 0;
}
@media screen and (max-width: 320px) {
  #sec4 .row .sec4Cnt .sec4Image p:first-child {
    margin-bottom: -3em;
    font-size: 1.5em;
  }
}
@media screen and (min-width: 1024px) {
  #sec4 .row .sec4Cnt .sec4Image p:first-child {
    transform: rotate(-2deg);
    font-size: 28px;
    line-height: 1.6;
    letter-spacing: 2px;
    position: absolute;
    top: 0;
    left: 70px;
  }
}
@media screen and (min-width: 1280px) {
  #sec4 .row .sec4Cnt .sec4Image p:first-child {
    font-size: 32px;
  }
}
#sec4 .row .sec4Cnt .sec4Image p:last-child {
  margin-top: 3vh;
  font-size: 1.4rem;
  letter-spacing: 0;
  line-height: 1.5;
}
@media screen and (max-width: 320px) {
  #sec4 .row .sec4Cnt .sec4Image p:last-child {
    padding-left: 0;
    margin-top: 10px;
    font-size: 1.1rem;
  }
}
@media screen and (min-width: 1024px) {
  #sec4 .row .sec4Cnt .sec4Image p:last-child {
    font-size: 18px;
    margin-top: 20px;
  }
}

#formCnt {
  margin: 10em 0 3em;
  position: relative;
}
@media screen and (min-width: 1024px) {
  #formCnt {
    margin-top: 10em;
  }
}
@media screen and (min-width: 1024px) {
  #formCnt.sendCnt {
    margin-top: 4em !important;
  }
}
#formCnt .container {
  background-color: #f6f6f6;
  padding: 1em 0 4em;
  transform: skew(0deg, -4deg);
}
@media screen and (min-width: 768px) {
  #formCnt .container {
    padding: 15px 30px 60px;
  }
}
@media screen and (min-width: 1024px) {
  #formCnt .container {
    background-color: #f3f3f3;
  }
}
#formCnt .container .row {
  transform: skew(0deg, 4deg);
}
@media screen and (min-width: 1024px) {
  #formCnt .container .row .wid,
  #formCnt .container .row .cnt {
    margin: 0 auto;
    max-width: 970px;
  }
}
#formCnt .container .row h2 {
  position: relative;
  border: solid 3px #ff5a00;
  background: #fff;
  line-height: 1.4;
  font-family: "Murecho", "Noto Sans JP", "Hiragino Kaku Gothic Pro", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 3.6vw;
  font-weight: bold;
  text-align: center;
  padding: 0.8em 0;
  margin: 0 0 0.5em;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  #formCnt .container .row h2 {
    line-height: 1.7;
    font-size: 36px;
    padding: 0.4em 0.5em;
  }
}
#formCnt .container .row h2::after {
  position: absolute;
  content: "⚽ ジュニアサッカー大会！";
  background: #ff5a00;
  color: #fff;
  left: -3px;
  bottom: 100%;
  border-radius: 5px 5px 0 0;
  padding: 8px 10px 6px;
  font-size: 1.4rem;
  line-height: 1.3;
  letter-spacing: 0.05em;
}
#formCnt .container .row .form-group:nth-child(odd) {
  background-color: #ececec;
}
#formCnt .container .row .form-group {
  width: 100%;
  padding: 20px 15px 25px;
  margin: 0 auto;
  position: relative;
  font-size: 14px;
}
#formCnt .container .row .form-group p {
  margin-bottom: 0;
}
#formCnt .container .row .form-group span.red {
  background: #e60012;
  padding: 4px 10px;
  border-radius: 15px;
  color: #fff;
  display: inline-block;
  font-size: 10px;
  font-weight: bold;
  line-height: 1;
  margin-left: 10px;
  position: relative;
  top: -2px;
}
#formCnt .container .row .form-group .cupTtl {
  font-weight: bold;
  font-size: 1.1em;
  color: #00bf00;
  letter-spacing: 1px;
  display: block;
  width: 100%;
  margin: 2em 0 0.6em;
}
#formCnt .container .row .form-group input,
#formCnt .container .row .form-group select,
#formCnt .container .row .form-group textarea,
#formCnt .container .row .form-group p {
  font-family: sans-serif;
  font-size: 13px;
}
#formCnt .container .row .form-group select,
#formCnt .container .row .form-group input {
  margin-top: 6px;
  display: inline-block;
}
#formCnt .container .row .form-group textarea {
  min-height: 12em;
}
#formCnt .container .row .form-group input.zip {
  width: 8em;
}
@media screen and (min-width: 1024px) {
  #formCnt .container .row .form-group input.zip {
    width: 20%;
  }
}
#formCnt .container .row .form-group select.pref {
  width: 50%;
}
@media screen and (min-width: 1024px) {
  #formCnt .container .row .form-group select.pref {
    width: 20%;
  }
}
@media screen and (min-width: 1024px) {
  #formCnt .container .row .form-group .sched {
    width: 40%;
    display: inline-block;
  }
}
@media screen and (min-width: 1024px) {
  #formCnt .container .row .form-group input[type=text],
  #formCnt .container .row .form-group input[type=email] {
    max-width: 70%;
  }
}
#formCnt .container .row p.chktxt1 {
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 1em !important;
  display: block;
}
@media screen and (min-width: 768px) {
  #formCnt .container .row p.chktxt1 {
    font-size: 16px !important;
  }
}
@media screen and (min-width: 768px) {
  #formCnt .container .row .checkLabel {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
#formCnt .container .row .checkLabel label {
  line-height: 24px;
  min-height: 24px;
  margin-right: 1em;
  margin-bottom: 10px;
  display: block;
  width: 100%;
  font-size: 3.6vw;
}
@media screen and (max-width: 320px) {
  #formCnt .container .row .checkLabel label {
    font-size: 13px;
    white-space: nowrap;
    letter-spacing: 0;
  }
}
@media screen and (min-width: 768px) {
  #formCnt .container .row .checkLabel label {
    display: inline-block;
    font-size: 18px;
    margin-bottom: 15px;
  }
}
#formCnt .container .row .checkLabel .checkbox {
  display: none;
}
#formCnt .container .row .checkLabel .checkbox-icon {
  position: relative;
  top: 0.35em;
  left: 0;
  display: inline-block;
  margin-right: 5px;
  width: 1.5em;
  height: 1.5em;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
@media screen and (min-width: 768px) {
  #formCnt .container .row .checkLabel .checkbox-icon {
    margin-right: 8px;
  }
}
#formCnt .container .row .checkLabel .checkbox:checked + .checkbox-icon {
  background: #00bf00;
}
#formCnt .container .row .checkLabel .checkbox:checked + .checkbox-icon::before {
  content: "";
  display: block;
  position: absolute;
  top: 40%;
  left: 55%;
  width: 40%;
  height: 4px;
  border-radius: 2px;
  transform: translate(-6px, 5px) rotateZ(-135deg);
  transform-origin: 2px 2px;
  background: #FFFFFF;
}
#formCnt .container .row .checkLabel .checkbox:checked + .checkbox-icon::after {
  content: "";
  display: block;
  position: absolute;
  top: 40%;
  left: 55%;
  width: 76%;
  height: 4px;
  border-radius: 2px;
  transform: translate(-6px, 5px) rotateZ(-45deg);
  transform-origin: 2px 2px;
  background: #FFFFFF;
}
#formCnt .container .row dl#submit {
  padding: 3em 5%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  overflow: hidden;
}
#formCnt .container .row label button[type=submit] {
  color: #fff;
  font-size: clamp(11px, 3.3vw, 16px);
  font-weight: bold;
  letter-spacing: 1px;
  text-shadow: 1px 1px 1px #555;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0 2.5em 0 1.3em;
  height: 3.3em;
  min-height: 3.3em;
  line-height: 1.2;
  position: relative;
}
@media screen and (max-width: 320px) {
  #formCnt .container .row label button[type=submit] {
    padding: 0 2.2em 0 0.8em !important;
    font-size: 14px !important;
  }
}
@media screen and (min-width: 1024px) {
  #formCnt .container .row label button[type=submit] {
    text-indent: 1em;
  }
}
#formCnt .container .row label button[type=submit] svg {
  height: 16px;
  width: 16px;
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin-block: auto;
}
#formCnt .container .row label.confirm button {
  background-color: #fc5500;
}
#formCnt .container .row label.fix button {
  background-color: #337ab7;
  padding: 0 1.3em 0 2.5em;
}
#formCnt .container .row label.fix button svg {
  height: 16px;
  width: 16px;
  position: absolute;
  right: unset;
  left: 10px;
  display: grid;
  place-items: center;
}
#formCnt .container .row label.submit button {
  background-color: #fc5500;
}
#formCnt .container .row .telInfo {
  color: #000;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 0 0 1em;
}
@media screen and (min-width: 1024px) {
  #formCnt .container .row .telInfo {
    font-size: 18px;
    text-align: center;
  }
}
#formCnt .container .row .telInfo h4 {
  font-size: clamp(14px, 5vw, 21px);
  font-weight: bold;
  margin-top: 15px;
  margin-bottom: 5px;
  text-align: center;
}
#formCnt .container .row .telInfo span {
  background-color: #05a;
  border-radius: 10px;
  display: block;
  margin-top: 6px;
  padding: 12px 1em;
  line-height: 1;
  letter-spacing: 2px;
  text-align: center;
  color: #fff;
  font-size: clamp(16px, 6vw, 28px);
  font-weight: bold;
}
#formCnt .container .row .telInfo span em,
#formCnt .container .row .telInfo span a {
  color: #fff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-style: normal;
  font-size: 1.1em;
  letter-spacing: 2px;
}
#formCnt .container .row .formTxt {
  font-size: 1.4rem;
  text-align: left;
  padding: 0 0 1em;
}
@media screen and (min-width: 1024px) {
  #formCnt .container .row .formTxt {
    font-size: 16px;
    line-height: 1.4;
    max-width: 940px;
    padding: 0 15px;
    margin: 0 auto 10px !important;
  }
}
#formCnt .container .row .formTxt span {
  font-size: 1.4rem;
}
#formCnt .container .row .guidelines {
  background-color: #fff;
  border-radius: 10px;
  padding: 1.5rem 1rem;
  margin-bottom: 3em;
}
@media screen and (min-width: 1024px) {
  #formCnt .container .row .guidelines {
    padding: 20px 30px;
  }
}
#formCnt .container .row .guidelines h3 {
  font-size: 1.4em;
  text-align: center;
  letter-spacing: 4px;
  margin-bottom: 15px;
}
#formCnt .container .row .guidelines ul li {
  font-size: 1.2rem;
  line-height: 1.5em;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  padding-left: 1em;
  text-indent: -1.2em;
}
@media screen and (min-width: 768px) {
  #formCnt .container .row .guidelines ul li {
    letter-spacing: 1px;
  }
}
@media screen and (min-width: 1024px) {
  #formCnt .container .row .guidelines ul li {
    line-height: 1.8;
    font-size: 14px;
  }
}
#formCnt .container .row #sendMsg {
  text-align: left;
  padding: 6em 0;
}
@media screen and (min-width: 1024px) {
  #formCnt .container .row #sendMsg {
    text-align: center;
    font-size: 16px;
  }
}

.topBtn {
  text-align: center;
  margin: 0 auto 100px;
}
.topBtn a {
  border-radius: 1.5em;
  background-color: #fc5500;
  color: #fff;
  font-size: 16px;
  height: 3em;
  line-height: 3em;
  padding: 0 20px 0 2em;
  min-width: 10em;
  display: inline-block;
  position: relative;
}
.topBtn a::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("../images/icons/arrow-up-circle.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 1em;
  transform: translateY(-50%);
}/*# sourceMappingURL=style.css.map */