@charset "UTF-8";
/* ------------------------------------------------- *
 *  ＠共通項目　　　　　　　　　　　　　　　　
 * ------------------------------------------------- */
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-repeat: no-repeat;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  height: 100%;
}

body {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-family: "BIZ UDGothic", sans-serif;
  font-size: clamp(1rem, 1.40625vw, 1.125rem);
  line-height: 2;
  font-style: 400;
  color: #804f21;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  -webkit-text-size-adjust: 100%;
  background-repeat: repeat;
  background-position: left -5em top;
  background-image: url(../img/bg.webp);
  background-size: 150%;
}
body.certify {
  background-image: none;
}
@media screen and (min-width: 768px), print {
  body {
    background-position: left -150px top 200px;
    background-size: 90%;
  }
}
body.thanks {
  background-image: none;
}
.biz {
  font-family: "BIZ UDGothic", sans-serif;
}

.bananaslipplus {
  font-family: "bananaslipplus";
}

main {
  width: 100%;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.85);
}
main.thanks {
  padding: 1em 0;
}
@media screen and (min-width: 768px) {
  main {
    background-color: rgba(255, 255, 255, 0.75);
  }
}

.w-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 4%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .w-container {
    max-width: 1280px;
    padding: 0 40px;
  }
}

rt {
  margin-bottom: 0.1em;
  -webkit-transform: translateY(-0.1em);
          transform: translateY(-0.1em);
  font-family: "BIZ UDGothic", sans-serif;
  text-align: center;
  letter-spacing: 0;
}
rt.fz3 {
  font-size: 0.3em;
}
rt.fz35 {
  font-size: 0.35em;
}
rt.fz4 {
  font-size: 0.4em;
}
rt.fz45 {
  font-size: 0.45em;
}
rt.ls1 {
  letter-spacing: -0.1em;
}
rt.ls2 {
  letter-spacing: -0.2em;
}
rt.ls3 {
  letter-spacing: -0.3em;
}
@media screen and (min-width: 768px) {
  rt {
    margin-bottom: 0.2em;
    -webkit-transform: translateY(-0.2em);
            transform: translateY(-0.2em);
  }
  rt.fz3 {
    font-size: 0.25em;
  }
  rt.fz35 {
    font-size: 0.3em;
  }
  rt.fz4 {
    font-size: 0.35em;
  }
  rt.fz45 {
    font-size: 0.4em;
  }
  rt.ls1 {
    letter-spacing: -0.05em;
  }
  rt.ls2 {
    letter-spacing: -0.1em;
  }
  rt.ls3 {
    letter-spacing: -0.15em;
  }
}

a {
  color: #00f;
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  a:hover {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

img[src$=".svg"] {
  width: 100%;
  height: auto;
}

.sp-only {
  display: block;
}
@media screen and (min-width: 768px), print {
  .sp-only {
    display: none;
  }
}

.pc-only,
.pc-only2 {
  display: none;
}
@media screen and (min-width: 768px), print {
  .pc-only,
  .pc-only2 {
    display: block;
  }
}

@media screen and (min-width: 768px), print {
  .pc-only2 {
    display: inline;
  }
}

.txt-up {
  text-transform: uppercase;
}

.txt-cap {
  text-transform: capitalize;
}

ul {
  padding: 0;
  list-style: none;
}

/*　ふわっとフェードイン　*/
.fadein {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  -webkit-transition-duration: 0.6s, 0.6s;
          transition-duration: 0.6s, 0.6s;
  -webkit-transition-timing-function: ease, ease;
          transition-timing-function: ease, ease;
}

.fadein.scrollin {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/*　TOPへ戻る　*/
.pagetotop {
  z-index: 7777;
  position: fixed;
  bottom: 3.5em;
  right: 2%;
}
.pagetotop .totop {
  display: block;
  width: 50px;
  height: 50px;
  text-align: center;
  padding-top: 12px;
  cursor: pointer;
  color: #fff;
  font-size: clamp(0.8125rem, 1.40625vw, 1.125rem);
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.1em;
  border-radius: 50%;
  background-color: #a8b788;
}
.pagetotop .totop span {
  display: block;
  width: 10px;
  height: 10px;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (min-width: 768px) {
  .pagetotop {
    bottom: 5em;
    right: 15px;
  }
  .pagetotop .totop {
    width: 70px;
    height: 70px;
    padding-top: 18px;
    color: #fff;
    border-radius: 50%;
    background-color: #a8b788;
  }
  .pagetotop .totop span {
    width: 12px;
    height: 12px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
  }
  .pagetotop .totop:hover {
    padding-top: 16px;
    background-color: #f29600;
  }
}

/* ------------------------------------------------- *
 *  ＠HEADER
 * ------------------------------------------------- */
#program-apply {
  margin-top: 0;
  padding-top: 0;
}
@media screen and (min-width: 768px) {
  #program-apply {
    margin-top: 0;
    padding-top: 0;
  }
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  pointer-events: none;
}
.header .header-inner {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0.5em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .header .header-inner {
    max-width: 1280px;
    margin: auto;
    background-color: transparent;
  }
}
.header .header-inner .logo img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .header .header-inner .logo {
    margin-top: 0;
    margin-left: 0;
    width: 18%;
    max-width: 250px;
  }
}
.header .header-inner .gnav {
  margin: 0 auto 0 15%;
  font-weight: 700;
  text-align: center;
}
.header .header-inner .gnav a.btn-apply {
  display: block;
  width: 6.5em;
  margin: 0;
  padding: 5px 0 3px;
  color: #fff;
  background-color: #c00;
  border-radius: 0.5em;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.header .header-inner .gnav a.btn-apply span {
  display: block;
  font-size: clamp(1rem, 1.875vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 768px) {
  .header .header-inner .gnav {
    width: 100%;
    position: absolute;
    top: 0.5em;
    left: 26%;
    text-align: center;
  }
  .header .header-inner .gnav a.btn-apply {
    width: 9em;
    height: 3.2em;
    border-radius: 0.5em;
    padding: 0.5em;
    background-color: #c00;
  }
  .header .header-inner .gnav a.btn-apply:hover {
    color: #fff;
    background-color: #f29600;
  }
}

/* .header */
/* スクロールして「scroll-navクラス」がついたとき */
@media screen and (min-width: 768px) {
  header.scroll-nav .header-inner .logo {
    margin-top: -0.6em;
    margin-left: 0;
    width: 12%;
    max-width: 150px;
    padding: 0.5em;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    background-color: rgba(255, 255, 255, 0.85);
  }
  header.scroll-nav .header-inner .gnav {
    top: 0;
    left: 5%;
    padding: 0;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
}

/* ヘッダー内のリンクやボタンではクリックイベントを有効化 */
.header a {
  pointer-events: auto;
}

/* ------------------------------------------------- *
 *  ＠festa
 * ------------------------------------------------- */
/* 共通 */
.sec-inner {
  width: 100%;
  margin: auto;
  padding: 0 3%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .sec-inner {
    max-width: 1280px;
    margin: auto;
    padding: 0 20px;
  }
}

/* MV */
.sec-mv .sec-inner {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sec-mv .sec-inner .title {
  width: 100%;
  margin: 5em auto 0;
  background-color: rgba(255, 255, 255, 0.95);
}
.sec-mv .sec-inner .lead {
  margin: 1em auto 0;
  font-size: clamp(1.125rem, 2.03125vw, 1.625rem);
  color: #231815;
  letter-spacing: 0.05em;
  background-color: rgba(255, 255, 255, 0.95);
}
@media screen and (min-width: 768px) {
  .sec-mv .sec-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin: 0 auto;
  }
  .sec-mv .sec-inner .title {
    width: 32%;
    margin: 1em 3em 0 0;
    background-color: rgba(255, 255, 255, 0);
  }
  .sec-mv .sec-inner .lead {
    width: 60%;
    margin-top: 13%;
    margin-left: 20%;
    margin-right: -6em;
    line-height: 1.8;
    letter-spacing: 0.075em;
  }
}

/* SPEC */
.sec-spec {
  margin: 1em auto 0;
}
.sec-spec .spec-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sec-spec .spec-inner .date {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  font-weight: normal;
  text-align: center;
  color: #804f21;
}
.sec-spec .spec-inner .date-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.sec-spec .spec-inner .date-date .open {
  margin: 0 auto -0.25em;
  font-size: clamp(3rem, 6.25vw, 5rem);
  font-weight: normal;
  color: #f29600;
  letter-spacing: 0.25em;
}
.sec-spec .spec-inner .date-date .day {
  font-size: clamp(6.875rem, 12.5vw, 10rem);
  font-weight: 900;
  line-height: 0.7;
}
.sec-spec .spec-inner .date-date .day span {
  font-size: clamp(3rem, 6.25vw, 5rem);
  font-weight: 500;
}
.sec-spec .spec-inner .date-date .time {
  margin-top: 0.5em;
  font-size: clamp(2.5rem, 6.25vw, 5rem);
  font-weight: 900;
  line-height: 1.3;
}
.sec-spec .spec-inner .date-date .time span {
  font-size: clamp(1.875rem, 4.6875vw, 3.75rem);
  font-weight: 500;
}
.sec-spec .spec-inner .date-place {
  margin: 2em auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.sec-spec .spec-inner .date-place .place {
  width: 100%;
  margin: 0 auto -0.25em;
  font-size: clamp(3rem, 6.25vw, 5rem);
  font-weight: normal;
  color: #f29600;
  letter-spacing: 0.25em;
}
.sec-spec .spec-inner .date-place .name {
  font-size: clamp(3.125rem, 7.03125vw, 5.625rem);
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0em;
}
.sec-spec .spec-inner .date-place .name span {
  display: block;
  font-size: clamp(1.875rem, 4.6875vw, 3.75rem);
  letter-spacing: 0;
}
.sec-spec .spec-inner .date-place .map {
  margin: 0.5em auto 0;
}
.sec-spec .spec-inner .date-program {
  width: 100%;
  margin: 2em auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.sec-spec .spec-inner .date-program .program {
  margin: 0 auto -0.25em;
  font-size: clamp(3rem, 6.25vw, 5rem);
  font-weight: normal;
  color: #f29600;
  letter-spacing: -0.1em;
}
.sec-spec .spec-inner .date-program-menus {
  width: 100%;
  text-align: left;
  font-size: clamp(1.125rem, 2.34375vw, 1.875rem);
  font-weight: 500;
  line-height: 1;
}
.sec-spec .spec-inner .date-program-menus .bar {
  width: 100%;
  height: 2em;
  padding: 0 0.3em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #fff;
  background-color: #f29600;
}
.sec-spec .spec-inner .date-program-menus .bar.rest {
  background-color: #a8b788;
}
.sec-spec .spec-inner .date-program-menus .bar .issue {
  letter-spacing: 0.15em;
}
.sec-spec .spec-inner .date-program-menus .bar + .bar {
  margin-top: 1em;
}
.sec-spec .spec-inner .date-program-menus .content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  margin: 0.5em 0 1em;
  font-size: clamp(1.125rem, 2.5vw, 2rem);
  line-height: 1.8;
  background-color: rgba(255, 255, 255, 0.85);
}
.sec-spec .spec-inner .date-program-menus .content .name,
.sec-spec .spec-inner .date-program-menus .content .position {
  font-size: clamp(1rem, 2.03125vw, 1.625rem);
}
.sec-spec .spec-inner .date-program-menus .content .name span,
.sec-spec .spec-inner .date-program-menus .content .position span {
  margin-left: 1em;
  font-size: clamp(1.25rem, 2.8125vw, 2.25rem);
  font-weight: 600;
}
.sec-spec .spec-inner .date-program-menus .content .position.long {
  display: block;
  text-align: left;
  margin: 0 0 0 auto;
}
.sec-spec .spec-inner .date-free {
  width: 100%;
  max-width: 200px;
  margin: 2.5em auto 0;
  padding: 0.5em;
  text-align: center;
  border-radius: 2em;
}
@media screen and (min-width: 768px) {
  .sec-spec {
    margin: -5em auto 0;
  }
  .sec-spec .spec-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .sec-spec .spec-inner .date {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    font-weight: normal;
    text-align: center;
    color: #804f21;
  }
  .sec-spec .spec-inner .date-date {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .sec-spec .spec-inner .date-date .open {
    margin: 0 auto -0.25em;
    font-weight: normal;
    color: #f29600;
    letter-spacing: 0.25em;
  }
  .sec-spec .spec-inner .date-date .day {
    font-weight: 900;
    line-height: 0.7;
  }
  .sec-spec .spec-inner .date-date .day span {
    font-weight: 500;
  }
  .sec-spec .spec-inner .date-date .time {
    margin-top: 0.5em;
    font-weight: 900;
    line-height: 1.3;
  }
  .sec-spec .spec-inner .date-date .time span {
    font-weight: 500;
  }
  .sec-spec .spec-inner .date-place {
    margin: 2em auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .sec-spec .spec-inner .date-place .place {
    width: 100%;
    margin: 0 auto -0.25em;
    font-weight: normal;
    color: #f29600;
    letter-spacing: 0.25em;
  }
  .sec-spec .spec-inner .date-place .name {
    font-weight: normal;
    line-height: 1;
    letter-spacing: 0em;
  }
  .sec-spec .spec-inner .date-place .name span {
    display: block;
    letter-spacing: 0;
  }
  .sec-spec .spec-inner .date-place .map {
    width: 100%;
  }
  .sec-spec .spec-inner .date-program {
    width: 70%;
  }
  .sec-spec .spec-inner .date-program-menus {
    font-weight: 700;
  }
  .sec-spec .spec-inner .date-program-menus .bar {
    padding: 0 0.6em;
  }
  .sec-spec .spec-inner .date-program-menus .bar + .bar {
    margin-top: 1em;
  }
  .sec-spec .spec-inner .date-program-menus .content {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    margin: 0.5em 0 1em;
    line-height: 1.8;
    background-color: rgba(255, 255, 255, 0.9);
  }
  .sec-spec .spec-inner .date-program-menus .content .name span,
  .sec-spec .spec-inner .date-program-menus .content .position span {
    margin-left: 1em;
    font-weight: 600;
  }
  .sec-spec .spec-inner .date-program-menus .content .position.long {
    display: block;
    text-align: left;
    margin: 0 0 0 auto;
  }
  .sec-spec .spec-inner .date-free {
    max-width: 300px;
    margin: 5em auto 0;
  }
}

/* PROGRAM-APPLY */
.sec-apply {
  width: 100%;
  margin: 4em auto 0;
}
.sec-apply .sec-inner {
  margin: 0 auto;
}
.sec-apply .sec-inner .head .title,
.sec-apply .sec-inner .head .certify_title {
  width: 100%;
  margin: auto;
  margin-bottom: 2em;
  padding: 0.5em 0.1em;
  font-size: clamp(2.75rem, 5.078125vw, 4.0625rem);
  font-weight: normal;
  font-family: "bananaslipplus";
  color: #804f21;
  text-align: center;
  line-height: 1.6;
  letter-spacing: -0.08em;
}
.sec-apply .sec-inner .head .certify_title {
  margin-bottom: -1em;
}
.sec-apply .sec-inner .box-privacy {
  width: 100%;
  margin: 3em auto 0;
  padding: 0.75em;
  text-align: center;
  border-radius: 0.5em;
  border: 1px solid rgba(128, 79, 33, 0.85);
  background-color: rgba(255, 255, 255, 0.8);
}
.sec-apply .sec-inner .box-privacy .subject {
  margin-bottom: 10px;
  font-size: clamp(1rem, 1.875vw, 1.5rem);
}
.sec-apply .sec-inner .box-privacy .text {
  font-size: clamp(0.875rem, 1.5625vw, 1.25rem);
  text-align: left;
}
@media screen and (min-width: 768px) {
  .sec-apply .sec-inner .head .title,
  .sec-apply .sec-inner .head .certify_title {
    margin-bottom: 0;
    letter-spacing: 0;
  }
  .sec-apply .sec-inner .box-privacy {
    width: 70%;
    padding: 1em;
    border: 3px solid rgba(128, 79, 33, 0.85);
  }
}

/* FORM
_form.scss

*/
/* 点字 */
.sec-hand {
  margin: 2em auto 0;
}
.sec-hand .sec-inner .box-hand {
  margin: auto;
  padding: 0.75em 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
  border-radius: 0.5em;
  border: 1px solid rgba(128, 79, 33, 0.85);
  background-color: rgba(255, 255, 255, 0.8);
}
.sec-hand .sec-inner .box-hand .icon_hand {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.sec-hand .sec-inner .box-hand .text {
  -webkit-box-flex: 4;
      -ms-flex: 4;
          flex: 4;
  text-align: left;
  font-size: clamp(0.875rem, 1.5625vw, 1.25rem);
}
.sec-hand .sec-inner .box-hand .text .txt {
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .sec-hand {
    margin: 2em auto 0;
  }
  .sec-hand .sec-inner .box-hand {
    width: 70%;
    padding: 1em;
    border: 3px solid rgba(128, 79, 33, 0.85);
  }
  .sec-hand .sec-inner .box-hand .icon_hand {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-left: 1em;
  }
  .sec-hand .sec-inner .box-hand .text {
    -webkit-box-flex: 5;
        -ms-flex: 5;
            flex: 5;
    margin-left: 2em;
  }
}

/* DOWNLOAD */
.sec-download {
  margin: 2em auto 0;
}
.sec-download .sec-inner {
  text-align: center;
}
.sec-download .sec-inner .box-download {
  margin: auto;
  padding: 1em 0.75em;
  border-radius: 0.5em;
  border: 1px solid rgba(128, 79, 33, 0.85);
  background-color: rgba(255, 255, 255, 0.8);
}
.sec-download .sec-inner .box-download .heading {
  width: 12em;
  display: inline-block;
  margin-bottom: 5px;
  padding: 0.05em 0;
  color: #fff;
  font-size: clamp(1rem, 1.71875vw, 1.375rem);
  border-radius: 0.5em;
  background-color: #804f21;
}
.sec-download .sec-inner .box-download .title {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.75vw, 3rem);
  font-weight: normal;
  font-family: "bananaslipplus";
  line-height: 1.4;
  letter-spacing: -0.1em;
}
.sec-download .sec-inner .box-download .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(1.125rem, 1.953125vw, 1.5625rem);
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
}
.sec-download .sec-inner .box-download .box .icon {
  width: 50px;
  margin-right: 10px;
}
.sec-download .sec-inner .box-download .box span {
  display: block;
  font-size: clamp(0.875rem, 1.5625vw, 1.25rem);
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .sec-download .sec-inner .box-download {
    width: 70%;
    padding: 1em;
    border: 3px solid rgba(128, 79, 33, 0.85);
  }
  .sec-download .sec-inner .box-download .heading {
    width: 15em;
    margin-bottom: 1em;
  }
}

/* ORGANIZER */
.sec-organizer {
  margin: 2em auto 0;
  padding-bottom: 5em;
}
.sec-organizer .sec-inner .box-organizer {
  margin: auto;
  padding: 1em 0.5em;
  text-align: center;
  font-size: clamp(1rem, 1.5625vw, 1.25rem);
  border-radius: 0.5em;
  border: 1px solid rgba(128, 79, 33, 0.85);
  background-color: rgba(255, 255, 255, 0.8);
}
.sec-organizer .sec-inner .box-organizer .title {
  width: 100%;
  padding-bottom: 0.35em;
  font-size: clamp(1rem, 1.875vw, 1.5rem);
  font-weight: 700;
  line-height: 2;
  text-align: center;
  border-bottom: 1px dotted #804f21;
}
.sec-organizer .sec-inner .box-organizer .subtitle {
  display: block;
  margin-top: 1em;
  font-size: clamp(1.125rem, 1.875vw, 1.5rem);
}
.sec-organizer .sec-inner .box-organizer .name {
  line-height: 1.8;
}
.sec-organizer .sec-inner .box-organizer .tels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .sec-organizer .sec-inner .box-organizer {
    width: 70%;
    padding: 1em;
    border: 3px solid rgba(128, 79, 33, 0.85);
  }
  .sec-organizer .sec-inner .box-organizer .title {
    border-bottom: 3px dotted #804f21;
  }
  .sec-organizer .sec-inner .box-organizer .tels {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1em;
  }
}

/* CATS */
.cats {
  width: 100%;
}
.cats img {
  width: 27%;
  margin-left: 1em;
}
@media screen and (min-width: 768px) {
  .cats {
    max-width: 1280px;
    margin: auto;
  }
  .cats img {
    width: 22%;
    margin-left: 5em;
  }
}

/* FOOTER */
.footer {
  width: 100%;
  margin: 0 auto;
}
.footer .copyright {
  height: 4em;
  color: #fff;
  font-size: clamp(0.75rem, 1.09375vw, 0.875rem);
  text-align: center;
  line-height: 4em;
  letter-spacing: 0.075em;
  background-color: #804f21;
}
@media screen and (min-width: 768px) {
  .footer .copyright {
    height: 5em;
    line-height: 5em;
    letter-spacing: 0.1em;
  }
}

/* ------------------------------------------------- *
 *  ＠FORM　　　　　　　　　　　　　　　　
 * ------------------------------------------------- */
/*　共通　*/
#formWrap {
  position: relative;
  margin-top: 2em;
}
@media screen and (min-width: 768px) {
  #formWrap {
    width: 100%;
    max-width: 900px;
    margin: 30px auto 0;
  }
}

.icon_deadline {
  position: absolute;
  z-index: 1;
  top: -105px;
  left: 2em;
  width: 35%;
  max-width: 130px;
}
@media screen and (min-width: 768px) {
  .icon_deadline {
    top: -11em;
    left: 3%;
    width: 20%;
    max-width: 250px;
  }
}

.icon_handsign {
  position: absolute;
  z-index: 1;
  top: -125px;
  right: 1em;
  width: 40%;
  max-width: 140px;
}
@media screen and (min-width: 768px) {
  .icon_handsign {
    top: -11em;
    right: 0.5em;
    width: 25%;
    max-width: 250px;
  }
}

.table-lead-pc {
  margin: -1em auto 0;
  font-size: clamp(1rem, 1.875vw, 1.5rem);
  text-align: center;
  color: #231815;
}

.table-form {
  width: 100%;
  margin: auto;
  padding-bottom: 0.2em;
  color: #231815;
  border-spacing: 0 1em;
  border-collapse: separate;
  border-radius: 0.5em;
  border: 1px solid rgba(128, 79, 33, 0.85);
  background-color: rgba(255, 255, 255, 0.95);
  /*&.enquete{	//アンケート追加分
  	padding-bottom:20px;
  	th{
  		text-align:left;
  		letter-spacing:-.05em;
  		@media screen and (min-width:768px) {
  			width:100%;
  			margin-bottom:10px;
  			letter-spacing:0;
  			border-bottom:1px dotted;
  			&.bb-none{
  				border-bottom:none;
  			}
  		}
  	}
  	td{
  		@media screen and (min-width:768px) {
  			margin-left:.5em;
  		}
  	}
  	.mb{
  		margin-bottom:20px;
  		.mb-box{
  			p{
  				font-weight:700;
  			}
  			margin-top:10px;
  			margin-left:6px;
  			margin-right:10px;
  		}
  	}
  }*/
}
@media screen and (min-width: 768px) {
  .table-form {
    width: 100%;
    padding: 3em 2em 1em;
    border: 3px solid rgba(128, 79, 33, 0.85);
  }
}
.table-form .table-lead {
  margin: 1em auto;
  padding-bottom: 0.5em;
  font-size: clamp(1rem, 1.875vw, 1.5rem);
  text-align: center;
  border-bottom: 1px dotted #804f21;
}
.table-form th,
.table-form td {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0 1em;
  font-weight: 500;
  font-size: clamp(1rem, 1.71875vw, 1.375rem);
  text-align: left;
}
@media screen and (min-width: 768px) {
  .table-form th,
  .table-form td {
    display: inline-block;
    padding: 0;
    vertical-align: top;
  }
}
.table-form th {
  margin-bottom: 3px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .table-form th {
    width: 35%;
  }
  .table-form th span {
    font-size: clamp(0.75rem, 1.25vw, 1rem);
  }
}
.table-form td {
  margin-bottom: 5px;
}
.table-form td .long {
  width: 100%;
}
.table-form td .long.denwa {
  margin-bottom: 1em;
}
.table-form td .required {
  color: #f00;
  font-size: clamp(0.75rem, 1.25vw, 1rem);
}
@media screen and (min-width: 768px) {
  .table-form td {
    width: 65%;
    margin-bottom: 20px;
  }
}
.table-form .small {
  margin-top: 0.25rem;
  font-size: clamp(0.75rem, 1.09375vw, 0.875rem);
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .table-form .small {
    line-height: 2;
  }
}

label {
  cursor: pointer;
}

input[type=text], input[type=email], input[type=tel] {
  width: 100%;
  height: 3em;
  margin-bottom: 0.5em;
  font-size: clamp(1rem, 1.40625vw, 1.125rem);
  border: solid 1px #D0D0D0;
  background-color: rgba(247, 210, 136, 0.15);
}
@media screen and (min-width: 768px) {
  input[type=text], input[type=email], input[type=tel] {
    height: 2.75em;
  }
}
input.short {
  margin-left: 0.5em;
  width: 55%;
  height: 3em;
  font-size: clamp(1rem, 1.40625vw, 1.125rem);
  border: solid 1px #D0D0D0;
  background-color: rgba(247, 210, 136, 0.15);
}
@media screen and (min-width: 768px) {
  input.short {
    width: 60%;
    height: 2.75em;
  }
}
input.veryshort {
  margin-left: 0em;
  width: 40%;
  height: 3em;
  font-size: clamp(1rem, 1.40625vw, 1.125rem);
  text-align: right;
  border: solid 1px #D0D0D0;
  background-color: rgba(247, 210, 136, 0.15);
}
@media screen and (min-width: 768px) {
  input.veryshort {
    width: 15%;
    height: 2.75em;
  }
}
input.none {
  display: none;
}

textarea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 15em;
  padding: 3px 2px;
  font-size: clamp(1rem, 1.40625vw, 1.125rem);
  border: solid 1px #D0D0D0;
  background-color: rgba(247, 210, 136, 0.15);
}
@media screen and (min-width: 768px) {
  textarea {
    height: 12em;
  }
}

input,
textarea {
  padding: 8px;
  line-height: 1.6;
}

::-webkit-input-placeholder {
  color: #666;
}

::-moz-placeholder {
  color: #666;
}

:-ms-input-placeholder {
  color: #666;
}

::-ms-input-placeholder {
  color: #666;
}

::placeholder {
  color: #666;
}

/*table.formTable th span,*/
form.cmxform label.error,
label.error,
.error {
  color: red;
  font-size: clamp(0.75rem, 1.25vw, 1rem);
  font-weight: bold;
}
.submit-center {
  position: relative;
  width: 100%;
  margin: 2em auto 3em;
}
@media screen and (min-width: 768px) {
  .submit-center {
    width: 60%;
    margin: 3em auto 5em;
  }
}

input[type=submit],
input[type=button] {
  -webkit-appearance: none;
  border-radius: 0.5em;
  width: 100%;
  height: 3.5em;
  line-height: 1;
  font-size: clamp(1.125rem, 2.03125vw, 1.625rem);
  font-weight: 700;
  color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
  letter-spacing: 0em;
  border: none;
}
@media screen and (min-width: 768px) {
  input[type=submit],
  input[type=button] {
    height: 4em;
  }
}

/* 同意したら送信ボタン */
input[type=submit] {
  background: #c00;
  border: 2px solid #c00;
}

/* 送信ボタン - マウスオーバー時 */
@media screen and (min-width: 768px) {
  input[type=submit]:hover {
    color: #c00;
    background: #fff;
    border: 2px solid #c00;
  }
}

/* 送信ボタン - 押せないとき
input[type="submit"][disabled] {
  background-color:rgba(#C93F2D,0.8);
  cursor: default;
} */
/* 戻って修正ボタン */
input[type=button] {
  background: #231815;
  margin-top: 20px;
  border: 2px solid #231815;
}

/* 戻って修正ボタン - マウスオーバー時 */
@media screen and (min-width: 768px) {
  input[type=button]:hover {
    color: #231815;
    background: #fff;
    border: 2px solid #231815;
  }
}

.error {
  padding-left: 10px;
}

/* ラジオボタン */
.radio_text {
  margin-right: 30px;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .radio_text {
    margin-right: 10px;
  }
}

input[type=radio] {
  width: 20px;
  height: 15px;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  input[type=radio] {
    width: 30px;
    height: 18px;
    cursor: pointer;
  }
}

input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin-top: -5px;
}
@media screen and (min-width: 768px) {
  input[type=checkbox] {
    width: 24px;
    height: 24px;
    margin-top: -7px;
    cursor: pointer;
  }
}

.certify_certify {
  width: 90%;
  margin: 0 auto;
  padding: 0.5em 0 0.2em;
  text-align: center;
  color: #231815;
  font-size: clamp(2rem, 4.6875vw, 3.75rem);
  letter-spacing: 0.3em;
}
@media screen and (min-width: 768px) {
  .certify_certify {
    width: 100%;
    margin: -1em auto 0;
  }
}

.certify_text {
  width: 90%;
  margin: auto;
  margin-bottom: 1em;
  padding-bottom: 0.5em;
  text-align: center;
  color: #231815;
  font-size: clamp(1rem, 1.5625vw, 1.25rem);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  background-color: white;
}
@media screen and (min-width: 768px) {
  .certify_text {
    width: 100%;
  }
}

.certify td {
  width: 96%;
  margin: auto;
  padding-bottom: 0.5em;
  padding-left: 2%;
  padding-right: 2%;
  border-bottom: 1px dotted #804f21;
}

.certify .sec-apply .sec-inner .head .title {
  margin-top: 3em;
  padding-right: 0;
  text-align: center;
}

/* ------------------------------------------------- *
 *  ＠thanks
 * ------------------------------------------------- */
/* THANKS */
.sec-thanks {
  margin: 0 auto;
}
.sec-thanks .sec-inner {
  margin: 0 auto;
  text-align: center;
}
.sec-thanks .sec-inner .head {
  width: auto;
  position: relative;
  color: #804f21;
  border-radius: 0.5em;
  border: 1px solid rgba(128, 79, 33, 0.85);
  background-color: #fff;
}
.sec-thanks .sec-inner .head .title {
  width: 80%;
  margin: auto;
  padding: 0.75em 0 0.15em;
  font-size: clamp(2rem, 4.6875vw, 3.75rem);
  font-weight: normal;
  font-family: "bananaslipplus";
  line-height: 1.75;
}
.sec-thanks .sec-inner .head .sent {
  margin: 0 auto 1em;
  font-size: clamp(1.25rem, 2.65625vw, 2.125rem);
}
.sec-thanks .sec-inner .link-sent {
  margin: 3em auto 0;
}
.sec-thanks .sec-inner .links {
  width: 40%;
  padding: 1em;
  font-size: clamp(1.125rem, 1.71875vw, 1.375rem);
  color: #fff;
  border-radius: 0.5em;
  background-color: #f29600;
}
@media screen and (min-width: 768px) {
  .sec-thanks {
    margin: 0 auto;
  }
  .sec-thanks .sec-inner {
    margin: 0 auto;
    text-align: center;
  }
  .sec-thanks .sec-inner .head {
    position: relative;
    width: 65%;
    margin: auto;
    border: none;
  }
  .sec-thanks .sec-inner .head .title {
    width: 100%;
    margin: -3em auto 0;
    padding: 1em 0 0.5em;
    font-weight: normal;
    font-family: "bananaslipplus";
    line-height: 1;
    color: #804f21;
    text-align: center;
  }
  .sec-thanks .sec-inner .sent {
    margin: 0 auto;
  }
  .sec-thanks .sec-inner .links {
    width: 40%;
    padding: 1em;
    font-size: 2rem;
    color: #fff;
    border-radius: 12px;
    background-color: #f29600;
  }
  .sec-thanks .sec-inner .links:hover {
    color: #fff;
    background-color: #c00;
  }
}
/*# sourceMappingURL=style.css.map */