@charset "UTF-8";
/* FONT PATH
 * -------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Dosis:wght@300;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&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(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 {
  font-size: 10px;
  position: relative;
}

body {
  background-color: #fff;
  color: #3c3c3c;
  font-size: 10px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, sans-serif;
  min-height: 100dvh;
  position: relative;
  container-type: inline-size;
}

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

footer {
  position: sticky;
  bottom: 0;
}

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.jpg");
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: scroll;
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  padding-top: 0;
  padding-bottom: 15px;
}
@media screen and (min-width: 768px) {
  header {
    background-image: url("../images/header_bg_pc.jpg");
    background-position: center top;
    background-size: 1280px auto;
    background-repeat: repeat-x;
    max-width: 100%;
    padding-top: 0;
  }
}
@media screen and (min-width: 1024px) {
  header .container {
    padding-bottom: 0;
    padding-right: 0;
    padding-left: 0;
    width: 800px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1280px) {
  header .container {
    width: 960px;
  }
}
header .container .headerImage {
  height: 67vw;
}
@media screen and (min-width: 1024px) {
  header .container .headerImage {
    max-width: 800px;
    height: 600px;
  }
}
@media screen and (min-width: 1280px) {
  header .container .headerImage {
    max-width: 960px;
    height: 650px;
  }
}
header .container .headerImage .headerImage1 {
  position: absolute;
  top: 2em;
}
@media screen and (min-width: 1024px) {
  header .container .headerImage .headerImage1 {
    max-width: 800px;
    top: 10px;
  }
}
@media screen and (min-width: 1280px) {
  header .container .headerImage .headerImage1 {
    max-width: 960px;
  }
}
header .container .headerImage .headerImage2 {
  position: absolute;
  top: 4em;
}
@media screen and (min-width: 1024px) {
  header .container .headerImage .headerImage2 {
    max-width: 800px;
    top: 60px;
  }
}
@media screen and (min-width: 1280px) {
  header .container .headerImage .headerImage2 {
    max-width: 960px;
  }
}
header .container .headerImage .headerTxt {
  background-color: rgba(255, 255, 255, 0.7);
  width: 100%;
  display: block;
  position: absolute;
  top: 1em;
  left: 0;
  right: 0;
}
@media screen and (min-width: 1024px) {
  header .container .headerImage .headerTxt {
    top: 20px;
  }
}
header .container .headerImage .headerTxt h1 {
  color: #fd4f1e;
  font-size: 2.3vw;
  font-family: "Open Sans";
  font-weight: normal;
  letter-spacing: 3px;
  height: 2em;
  line-height: 2em;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  header .container .headerImage .headerTxt h1 {
    font-size: 14px;
    letter-spacing: 4px;
  }
}
header .container .row {
  position: relative;
}
@media screen and (min-width: 1024px) {
  header .container .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-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: #73ad1e;
  font-size: 0.8em;
  margin-right: 0.5em;
  position: relative;
  top: 0;
}
header dl.hdTeamDet dt {
  border: 4px solid #0c6434;
}
header dl.hdTeamDet dt h2 {
  background-color: #0c6434;
}
header dl.hdTeamDet dt h3 {
  background-color: #108445;
}
header dl.hdTeamDet dt > ul {
  border-top: 0 none;
}
header dl.hdTeamDet dd {
  border: 4px solid #fd4f1e;
}
header dl.hdTeamDet dd h2 {
  background-color: #fd4f1e;
}
header dl.hdTeamDet dd h3 {
  background-color: #fd6b41;
}
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-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 #486c13;
}
@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-jy {
  color: #0c6434;
  background: linear-gradient(to bottom right, #FFF, #a4f4c8);
}
header .figInfo h2.u-jr {
  color: #fd4f1e;
  background: linear-gradient(to bottom right, #FFF, white);
}
header .figInfo h2.organizer {
  color: #73ad1e;
  background: linear-gradient(to bottom right, #FFF, #e4f6ca);
}
header .figInfo table {
  background-color: #73ad1e;
  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: #65971a;
  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: #65971a;
  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-jy {
  background-color: #0c6434;
}
header .figInfo table.u-jy tr th {
  background-color: #094d28;
}
header .figInfo table.u-jr {
  background-color: #fd4f1e;
}
header .figInfo table.u-jr tr th {
  background-color: #e63402;
}
header .figInfo table.organizer {
  background-color: #73ad1e;
}
header .figInfo table.organizer tr th {
  background-color: #65971a;
}
@media screen and (min-width: 768px) {
  header .figInfo table.u-jy tr th, header .figInfo table.u-jy tr td, 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-jy tr th, header .figInfo table.u-jr tr th, header .figInfo table.organizer tr th {
    width: 24%;
  }
  header .figInfo table.u-jy tr td, header .figInfo table.u-jr tr td, header .figInfo table.organizer tr td {
    width: 76%;
  }
  header .figInfo table.u-jy tr:last-child th,
  header .figInfo table.u-jy tr:last-child td, 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: #73ad1e;
  padding: 1em 0 2em;
}
@media screen and (min-width: 1024px) {
  footer {
    padding: 0;
  }
}
footer p.copy {
  color: #fff;
  font-size: 10px;
  font-weight: normal;
  font-family: "Open Sans", 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: 20px;
  right: 15px;
}
@media screen and (min-width: 768px) {
  #pagetopBtn {
    height: 75px;
    width: 75px;
  }
}
#pagetopBtn a {
  background-color: #fc5500;
  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 a:hover {
    filter: saturate(200%);
    text-decoration: none;
  }
}
#pagetopBtn a:active {
  filter: saturate(200%);
}
#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;
  }
}

[class^=oversubs] {
  color: #e60012;
  font-size: clamp(20px, 15vw, 50px);
  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);
  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: 768px) {
  header .figInfo h2.u-jr .oversubs {
    top: 1.3em;
  }
}
@media screen and (min-width: 1024px) {
  header .figInfo h2.u-jr .oversubs {
    top: 2.5em;
  }
}

@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 #f80;
  border-bottom: solid 5px #f80;
  border-radius: 3%;
  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 #73ad1e;
  border-bottom: solid 5px #73ad1e;
}
@media screen and (min-width: 768px) {
  section[id^=sec] .ttlBarO,
  section[id^=sec] .ttlBarG {
    border-top: solid 8px #f80;
    border-bottom: solid 8px #f80;
    border-radius: 8px;
    font-size: 24px;
    line-height: 1.2;
  }
  section[id^=sec] .ttlBarG {
    border-top: solid 8px #73ad1e;
    border-bottom: solid 8px #73ad1e;
  }
}
@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.png") center top no-repeat;
  background-size: 100% auto;
  color: #fff;
  display: block;
  font-size: 4.7vw;
  letter-spacing: 0.02em;
  font-weight: bold;
  line-height: 1.33;
  height: 26vw;
  padding: 15px 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 (max-width: 374px) {
  section[id^=sec] p.entryBtn a {
    padding: 15px 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.png") 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: 40px 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;
}
#sec1 .chkList {
  overflow: hidden;
  margin-bottom: 2em;
  position: relative;
}
#sec1 .chkList ul {
  margin-left: 15px;
}
#sec1 .chkList ul li {
  background: url("../images/icn_chk01.png") 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;
}
#sec1 .chkList img {
  width: 35%;
  position: absolute;
  bottom: 0em;
  right: 0;
}
#sec1 .corona {
  width: 100%;
  max-width: 960px;
  display: block;
  margin: 3em auto;
}
#sec1 .corona img {
  margin: 0 auto;
  width: 90%;
}
#sec1 h2 {
  margin: 0 0 40px;
}
#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-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;
}
#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;
}
#sec1 .scheCnt ul li p .stay {
  background-color: #f80;
  display: inline-block;
  line-height: 1.7em;
  height: 1.7em;
  padding: 0 1em;
  margin: 8px 0 6px 10px;
  border-radius: 0.9em;
}
#sec1 .scheCnt ul li p.date {
  padding: 1em 15px;
  text-align: center;
}
#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: #f80;
  padding: 0 10px;
  margin: 1em auto 5px;
  position: relative;
  top: 0em;
}
#sec1 .scheCnt ul li p.date span:first-child {
  margin-top: 0;
}
#sec1 .scheCnt ul li p.date span.u-age15 {
  background-color: #0c6434;
}
#sec1 .scheCnt ul li p.date span.u-age14 {
  background-color: #0c6434;
}
#sec1 .scheCnt ul li p.date span.u-age13 {
  background-color: #0c6434;
}
#sec1 .scheCnt ul li p.date span.u-age12 {
  background-color: #fd4f1e;
}
#sec1 .scheCnt ul li p.date span.u-age10 {
  background-color: #fd4f1e;
}
#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;
  }
}
#sec1 .scheCnt ul + p {
  padding: 8px 15px;
}
#sec1 .scheCnt ul:last-of-type {
  border-top: 4px solid #05a;
}
#sec1 .skewCnt {
  background-color: #c9e68E;
  transform: skew(0deg, -4deg);
  margin: 40px 0 0;
  overflow: hidden;
}
#sec1 .skewCnt div {
  transform: skew(0deg, 4deg);
  background: url("../images/sec1_ph2_sp.jpg") -2% 5em no-repeat;
  background-size: 35vw auto;
  width: 100%;
  display: block;
  padding: 3em 5% 2em 36%;
}
@media screen and (min-width: 768px) {
  #sec1 .skewCnt div h3 br {
    display: none;
  }
}
#sec1 .skewCnt div p {
  text-align: justify;
  padding: 0 5px;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 320px) {
  #sec1 .chkList li {
    background-size: 1.3em auto !important;
    padding-left: 1.5em !important;
    font-size: 1.3rem !important;
    line-height: 1.5 !important;
    min-height: 1.6em;
  }
  #sec1 .chkList img {
    width: 100%;
    clear: both;
    position: relative;
    bottom: 0;
  }
  #sec1 .scheCnt ul li p {
    font-size: 1.2em;
    letter-spacing: -0.02em;
  }
  #sec1 .scheCnt ul li p.date {
    padding: 1em 10px;
  }
}

/* #sec2{
  background-color:#fff;
  // transform:skew(0deg, 4deg);
  padding:0 0 2em;
  .container{
    // transform:skew(0deg, -4deg);


    }
  }
}

// #sec3 -----------------------//
#sec3{
  position: relative;
  margin-bottom: 3em;

}
 */
img.point {
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
  width: 35%;
  height: auto;
}

#sec4 {
  background-color: #fff;
  padding: 0 0 2em;
  margin-bottom: 3em;
}
#sec4 .row {
  padding: 0 5%;
}
#sec4 .row .sec4Cnt {
  border: solid 4px #73ad1e;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  display: block;
  padding: 38vw 2% 2em;
  position: relative;
}
#sec4 .row .sec4Cnt h2 {
  width: 100%;
  margin-bottom: 20px;
}
#sec4 .row .sec4Cnt h3 {
  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;
  }
}
#sec4 .row .sec4Cnt h3.pt1 {
  background: url("../images/sec4_pt01.png") 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.png") 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;
}
#sec4 .row .sec4Cnt p.comment {
  font-size: 1em;
  margin: 5px 0 1em;
}
#sec4 .row .sec4Cnt .sec4Image {
  display: block;
  position: relative;
}
#sec4 .row .sec4Cnt .sec4Image p:first-child {
  color: #73ad1e;
  font-weight: bold;
  margin-bottom: -2em;
  font-size: 4.5vw;
  letter-spacing: 0;
}
#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 .sec4Image p:first-child {
    margin-bottom: -3em;
    font-size: 1.5em !important;
  }
  #sec4 .sec4Image p:last-child {
    padding-left: 0 !important;
    margin-top: 10px !important;
    font-size: 1.1rem !important;
  }
}

/* #sec5{
  margin-bottom: 5em;
  .container{
    background-color:#ffffc1;
    padding:0 0 4em;
    transform:skew(0deg, 4deg);
      .row{
        transform:skew(0deg, -4deg);
        // .rowにskewは隙間ができるので-margin→0にする
        margin-left:0 !important;
        margin-right:0 !important;


        }
      }
    }
  } */
#sec6 .row {
  padding: 0 5%;
}
#sec6 .row .sec6Cnt {
  border: solid 4px #73ad1e;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  display: block;
  padding: 38vw 2% 1.5em;
  position: relative;
}
#sec6 .row .sec6Cnt h2 {
  width: 100%;
  margin-bottom: 20px;
}

#formCnt {
  margin: 10em 0 3em;
  position: relative;
}
#formCnt .container {
  background-color: #f6f6f6;
  padding: 1em 0 4em;
  transform: skew(0deg, -4deg);
}
@media screen and (min-width: 1024px) {
  #formCnt .container {
    padding: 15px 30px 60px;
  }
}
#formCnt .container .row {
  transform: skew(0deg, 4deg);
}
#formCnt .container .row h2 {
  position: relative;
  border: solid 3px #f80;
  background: #fff;
  line-height: 1.4;
  font-size: 3.6vw;
  font-weight: bold;
  text-align: center;
  padding: 0.8em 0;
  margin: 0em 0 0.5em;
  width: 100%;
}
#formCnt .container .row h2::after { /*タブ*/
  position: absolute;
  font-family: "Font Awesome 5 Free", sans-serif;
  content: "\f1e3  Jrユース＆ジュニアサッカー大会！";
  background: #f80;
  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: #73ad1e;
  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;
}
#formCnt .container .row .form-group select.pref {
  width: 50%;
}
#formCnt .container .row p.chktxt1 {
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 1em !important;
  display: block;
}
#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;
}
#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;
}
#formCnt .container .row .checkLabel .checkbox:checked + .checkbox-icon {
  background: #73ad1e;
}
#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 .checkLabel .check p.schTxt {
  display: block;
}
#formCnt .container .row label button[type=submit] {
  color: #fff;
  font-size: 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.25;
  position: relative;
}
#formCnt .container .row label button::after {
  display: block;
  content: "\f138";
  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;
  left: 1em;
  width: 10px;
  height: 10px;
}
#formCnt .container .row label.confirm button {
  background-color: #fc5500;
  border-color: #c94400;
}
#formCnt .container .row label.confirm button:after {
  display: flex;
  -ms-align-items: center;
  align-items: center;
  margin: auto 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: auto;
  right: 1em;
}
#formCnt .container .row label.fix button {
  background-color: #337ab7;
  border-color: #2e6da4;
  padding: 0 1.3em 0 2.5em;
}
#formCnt .container .row label.fix button:after {
  display: block;
  content: "\f137";
  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;
  left: 1em;
  right: auto;
}
#formCnt .container .row label.submit button {
  background-color: #fc5500;
  border-color: #c94400;
}
#formCnt .container .row label.submit button:after {
  display: flex;
  -ms-align-items: center;
  align-items: center;
  margin: auto 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: auto;
  right: 1em;
}
#formCnt .container .row dl#submit {
  padding: 3em 5%;
  display: block;
  width: 100%;
  overflow: hidden;
}
#formCnt .container .row dt {
  float: left;
}
#formCnt .container .row dd {
  float: right;
}
#formCnt .container .row .telInfo {
  color: #000;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 0 0 1em;
}
#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: "Open Sans", 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;
}
#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;
}
#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.4;
  letter-spacing: 0;
  margin-bottom: 8px;
  padding-left: 1em;
  text-indent: -1.2em;
}
#formCnt .container .row #sendMsg {
  text-align: left;
  padding: 6em 0;
}

.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;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  margin: 0 auto;
  position: relative;
}
.topBtn a:after {
  content: "\f0aa";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  font-size: 18px;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  margin: auto 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1em;
}

@media screen and (max-width: 320px) {
  #formCnt button[type=submit] {
    padding: 0 2.2em 0 0.8em !important;
    font-size: 14px !important;
  }
  #formCnt button::after {
    right: 10px !important;
  }
  #formCnt .container .row .checkLabel label {
    font-size: 13px;
    white-space: nowrap;
    letter-spacing: 0;
  }
  #formCnt .container .row .checkLabel .cupTtl {
    margin: 2em 0 0.6em;
  }
}
@media screen and (min-width: 768px) {
  #sec1 .chkList img {
    width: 50%;
    bottom: 0;
  }
  #sec1 .skewCnt div {
    transform: skew(0deg, 4deg);
    background: url(../images/sec1_ph2_pc.jpg) 0 6em no-repeat;
    background-size: 33% auto;
    padding: 60px 5% 60px 36%;
  }
  #sec1 .scheCnt ul li {
    padding: 0;
  }
  #sec1 .scheCnt ul li p {
    font-size: 28px;
    margin: 0;
    display: block;
    width: 80%;
  }
  #sec1 .scheCnt ul li p .stay {
    font-size: 27px;
  }
  #sec1 .scheCnt ul li p.date {
    padding: 1em 0;
  }
  #sec1 .scheCnt ul li p.date span {
    font-size: 32px;
    line-height: 48px;
    height: 48px;
    padding: 0 1em;
    top: -0.2em;
  }
  #sec1 .scheCnt ul li p.date + p {
    padding-top: 0;
  }
  #sec1 .scheCnt ul li:first-child p {
    line-height: 1.5em;
    padding: 10px;
  }
  #sec1 .scheCnt ul li:nth-child(3) p {
    padding: 0.5em 0;
    text-align: center;
  }
  #sec1 .scheCnt ul + p {
    padding-top: 20px;
    text-align: center;
  }
  #sec4 .row .sec4Cnt {
    padding: 280px 2% 2em;
  }
  #sec6 .row .sec6Cnt {
    padding: 280px 2% 1.5em;
  }
  #formCnt .container .row p.chktxt1 {
    font-size: 16px !important;
  }
  #formCnt .container .row .checkLabel {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #formCnt .container .row .checkLabel label {
    display: inline-block;
    font-size: 18px;
    margin-bottom: 15px;
  }
  #formCnt .container .row .checkLabel label .checkbox-icon {
    margin-right: 8px;
  }
}
@media screen and (min-width: 960px) {
  * {
    font-size: 18px;
  }
  p, p > span {
    font-size: 18px;
    line-height: 2;
    letter-spacing: 1px;
  }
  #sec1 {
    padding: 60px 0 40px;
  }
  #sec1 .chkList {
    max-width: 970px;
    margin: 0 auto 60px;
  }
  #sec1 .chkList ul {
    margin-left: 5%;
  }
  #sec1 .chkList ul li {
    background: url("../images/icn_chk01.png") left 0.4em no-repeat;
    background-size: 24px auto;
    padding-left: 36px;
    font-size: 24px !important;
    line-height: 2em;
    min-height: 2em;
    font-weight: bold;
    margin-bottom: 10px;
  }
  #sec1 .chkList img {
    width: 37%;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  #sec1 h2 {
    width: 100%;
    display: block;
    margin: 0 0 40px;
  }
  #sec1 h2 img {
    width: 960px;
    margin: 0 auto;
  }
  #sec1 .scheCnt ul li p {
    font-size: 28px;
  }
  #sec1 .scheCnt ul li p.date span {
    font-size: 32px;
    line-height: 60px;
    height: 60px;
  }
  #sec1 .skewCnt {
    margin: 0;
    overflow: hidden;
  }
  #sec1 .skewCnt div {
    background: url("../images/sec1_ph2_pc.jpg") 5% 240px no-repeat;
    background-size: auto 52%;
    max-width: 970px;
    display: block;
    margin: 0 auto;
    padding: 100px 30px 100px;
  }
  #sec1 .skewCnt div h3 {
    font-size: 40px;
    width: 100%;
    margin-bottom: 25px;
    text-align: center;
  }
  #sec1 .skewCnt div p {
    padding-left: 480px;
    line-height: 1.6;
  }
  /*   // #sec2 -----------------------//
    #sec2{
       padding:40px 0;
       .container{
        .sec2Cnt{
          background: url("../images/sec2_ph1_pc.jpg") 95% 305px no-repeat;
          background-size: 420px auto;
          padding: 80px 30px 0px;
          margin:0 auto;
          max-width:970px;
          min-height:680px;

          h2{
            font-size: 40px;
            width:100%;
            margin-bottom: 30px;
            margin-right:-100%;
          }
          h3{
            width:100%;
            font-size: 45px;
            line-height: 100px;
            text-align:center;
            &+p {padding-right:450px;}
          }
        }
      }
    }

    // #sec3 -----------------------//
    #sec3{
      padding:40px 0;

      [class^="sec3Cnt"]>div{
        margin:0 auto;
        max-width:970px;
      }

      .sec3Cnt1 div {
        background: url(../images/sec3_ph1.jpg) 100% 70px no-repeat !important;
        background-size: contain contain !important;
        padding: 80px 400px 0 5% !important;
      }

      .sec3Cnt2 div {
        background: url(../images/sec3_ph2.jpg) 0% 0px no-repeat !important;
        background-size: contain contain !important;
        padding: 20px 5% 80px 450px !important;
      }

      .sec3Cnt3 div {
        background: url(../images/sec3_ph3.jpg) 10% 50px no-repeat !important;
        background-size: auto 450px !important;
        min-height: 15vh;
        padding: 6em 5% 3em  520px;
        h2{
          font-size: 55px !important;
          margin-bottom: 20px;
        }
        h3{
          font-size: 36px !important;
          line-height: 100px;
          text-align:center;
        }
      }

      .cnt{
        margin:0 auto;
        max-width:970px;
      }
    } */
  img.point {
    top: 30px !important;
    width: 200px !important;
    height: auto !important;
  }
  #sec4 {
    padding: 40px 0;
  }
  #sec4 .row .sec4Cnt {
    margin: 0 auto;
    max-width: 970px;
    padding: 270px 30px 2em;
  }
  #sec4 .row .sec4Cnt h3 {
    font-size: 32px;
    padding-left: 140px;
  }
  /* #sec5{
    padding:40px 0;
    .sec5Cnt{
      margin:0 auto;
      max-width:970px;
       h2 + p {
        font-size: 18px !important;
        font-weight: bold;
      }
    }
  } */
}
@media screen and (min-width: 960px) and (min-width: 1280px) {
  #sec4 .row .sec4Cnt h3 {
    font-size: 36px;
  }
}
@media screen and (min-width: 960px) {
  #sec4 .row .sec4Cnt p {
    font-size: 18px;
    line-height: 1.6;
  }
  #sec4 .row .sec4Cnt p.comment {
    font-size: 14px !important;
  }
  #sec4 .row .sec4Cnt .sec4Image {
    display: block;
    position: relative;
  }
  #sec4 .row .sec4Cnt .sec4Image p:first-child {
    transform: rotate(-2deg);
    font-size: 28px;
    font-weight: bold;
    line-height: 1.6;
    letter-spacing: 2px;
    position: absolute;
    top: 0px;
    left: 70px;
  }
}
@media screen and (min-width: 960px) and (min-width: 1280px) {
  #sec4 .row .sec4Cnt .sec4Image p:first-child {
    font-size: 32px;
  }
}
@media screen and (min-width: 960px) {
  #sec4 .row .sec4Cnt .sec4Image p:last-child {
    font-size: 18px;
    margin-top: 20px;
  }
  #sec6 {
    padding: 40px 0;
  }
  #sec6 .row .sec6Cnt {
    margin: 0 auto;
    max-width: 970px;
    padding: 260px 30px 2em;
  }
  #formCnt {
    margin-top: 10em;
  }
  #formCnt .container {
    background-color: #f3f3f3;
    transform: skew(0deg, -4deg);
  }
  #formCnt .container .row {
    transform: skew(0deg, 4deg);
  }
  #formCnt .container .row .wid, #formCnt .container .row .cnt {
    margin: 0 auto;
    max-width: 970px;
  }
  #formCnt .container .row .guidelines {
    padding: 20px 30px;
  }
  #formCnt .container .row .guidelines ul li {
    line-height: 1.8;
    font-size: 14px;
  }
  #formCnt .container .row h2 {
    position: relative;
    border: solid 3px #f80;
    background: #fff;
    line-height: 1.7;
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    padding: 0.4em 0.5em;
    margin: 0em 0 0.5em;
  }
  #formCnt .container .row h2::after { /*タブ*/
    bottom: 100%;
    border-radius: 5px 5px 0 0;
    padding: 10px 12px 8px;
    font-size: 36px;
    line-height: 1;
    letter-spacing: 0.05em;
  }
  #formCnt .container .row .telInfo {
    font-size: 18px;
    text-align: center;
  }
  #formCnt .container .row .telInfo span {
    line-height: 80px;
    letter-spacing: 3px;
    height: 80px;
    font-size: 40px;
    padding: 0;
  }
  #formCnt .container .row .telInfo span em {
    line-height: 0;
    font-size: inherit;
  }
  #formCnt .container .row .formTxt {
    font-size: 16px;
    line-height: 1.4;
    text-align: left;
    max-width: 940px;
    padding: 0 15px;
    margin: 0 auto 10px !important;
  }
  #formCnt .container .row .zip, #formCnt .container .row .pref {
    width: 20%;
    display: inline-block;
  }
  #formCnt .container .row .sched {
    width: 40%;
    display: inline-block;
  }
  #formCnt .container .row input[type=text], #formCnt .container .row input[type=email] {
    max-width: 70%;
  }
  #formCnt .container .row button[type=submit] {
    text-indent: 1em;
  }
  #formCnt .container .row label.confirm button[type=submit] {
    position: relative;
    padding: 15px 55px 15px 20px;
    font-size: 24px;
    height: 60px;
    line-height: 35px;
    width: 350px;
  }
  #formCnt .container .row label.fix button[type=submit] {
    position: relative;
    padding: 15px 20px 15px 35px;
    font-size: 24px;
    height: 60px;
    line-height: 35px;
    width: 250px;
  }
  #formCnt .container .row label.submit button[type=submit] {
    position: relative;
    padding: 10px 55px 15px 20px;
    font-size: 24px;
    height: 60px;
    line-height: 1.2;
    width: 450px;
  }
  #formCnt .container .row button::after {
    text-indent: 0;
    top: 32%;
    right: 1.2em;
    width: 10px;
    height: 10px;
    margin: 0;
  }
  #formCnt.sendCnt {
    margin-top: 4em !important;
  }
  #formCnt .container .row #sendMsg {
    text-align: center;
    font-size: 16px;
  }
}/*# sourceMappingURL=style.css.map */