@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&family=Oswald:wght@300;400;500;700&display=swap");
h3, h4, h5, p {
  color: #000000;
}

body {
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

/* リキッドレイアウト対応 */
html {
  overflow-x: hidden;
  font-size: 14px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.4545454545vw;
  }
}
@media (min-width: 1100px) {
  html {
    font-size: 16px;
  }
}

body {
  overflow-x: hidden;
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  -webkit-transition: opacity 0.3s;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

a {
  text-decoration: none;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  text-rendering: optimizeSpeed;
  min-height: 100vh;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  display: block;
  width: 100%;
  max-width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  outline: none;
  background: transparent;
  font: inherit;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.inner--wide {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.inner--narrow {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.inner-alignfull {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  overflow: hidden;
}

.inner-alignfull-right {
  display: block;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 0 0 0 calc(50vw - 50%);
  overflow: hidden;
}

.inner-alignfull-left {
  display: block;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 0 calc(50vw - 50%) 0 0;
  overflow: hidden;
}

footer {
  height: 100%;
  padding: 47px 0 32px;
  background-color: #222222;
  color: #F7F3E1;
}
@media screen and (min-width: 768px) {
  footer {
    padding: 95px 0 64px;
  }
}

.footer-menu {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
          flex-direction: row;
          justify-content: center;
  padding: 40px 0 48px;
}

.footer-menu__item {
  margin-right: 14px;
  margin-right: 1rem;
}
.footer-menu__item:last-of-type {
  margin-right: 0;
}

.footer-title {
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer-title {
    font-size: 26px;
  }
}

.sponsor {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  max-width: 190px;
  margin: 0 auto 48px;
}

.sponsor-title {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .sponsor-title {
    font-size: 14px;
  }
}
.footer-copy {
  padding: 10px 0;
  font-size: 12px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer-copy {
    font-size: 14px;
  }
}

.footer-menu__link {
  font-family: "Oswald", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .footer-menu__link {
    font-size: 26px;
  }
}

/* ヘッダーナビ */
.gnavi {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 0;
  right: -100%;
          flex-grow: 1;
          align-items: center;
  width: 80%;
  height: 100vh;
  padding-top: 30vw;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .gnavi {
    position: relative;
    right: 0;
    height: auto;
    padding-top: 0;
  }
}

.menu-items {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .menu-items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            flex-direction: row;
            justify-content: flex-end;
  }
}

.menu-item {
  padding: 0.5em 1em;
  font-weight: bold;
}

.header {
  -webkit-transform: translateX(100%);
  -webkit-transition: 0.5s;
  z-index: 10;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 10px 0;
  padding: 40px 0;
          transform: translateX(100%);
  background-color: #000000;
  background-color: #000000;
  color: #FFF;
  transition: 0.5s;
}
@media screen and (min-width: 992px) {
  .header {
    -webkit-transform: translate(0, -100%);
    position: fixed;
    height: auto;
            transform: translate(0, -100%);
  }
  .header.is-scroll {
    -webkit-transform: translate(0%, 0%);
    -webkit-transition: 0.5s;
            transform: translate(0%, 0%);
    transition: 0.5s;
  }
}
.header__inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
  -webkit-box-align: center;
      -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
          flex-direction: row;
          align-items: center;
          justify-content: space-between;
  width: 100%;
  max-width: 1730px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (min-width: 768px) {
  .header__inner {
    width: 100%;
  }
}
@media screen and (min-width: 992px) {
  .header__inner {
    padding: 0 30px;
  }
}
@media screen and (min-width: 1480px) {
  .header__inner {
    padding: 0 96px;
  }
}
.header .menu-item:not(:last-child):after {
  -webkit-transition: 0.5s;
  display: block;
  width: 0%;
  height: 2px;
  border-radius: 10px;
  background-color: #00A0E9;
  content: "";
  transition: 0.5s;
}
.header .menu-item:not(:last-child):hover:after {
  -webkit-transition: 0.5s;
  width: 100%;
  transition: 0.5s;
}

.humberger-menu {
  -webkit-transition: 0.5s;
  z-index: 10;
  position: fixed;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background-color: #000000;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s;
  transition: 0.5s;
}
.humberger-menu.is-scroll {
  -webkit-transition: 0.5s;
  opacity: 1;
  pointer-events: auto;
  transition: 0.5s;
}
@media screen and (min-width: 992px) {
  .humberger-menu {
    display: none;
  }
}

.humberger-bars {
  position: relative;
  padding: 10px;
}
.humberger-bars span {
  display: inline-block;
  position: absolute;
  right: 0;
  left: 0;
  width: 55%;
  height: 2px;
  margin: 0 auto;
  background-color: #ffffff;
}
.humberger-bars span:nth-of-type(1) {
  -webkit-transition: 0.5s;
  top: 13px;
  transition: 0.5s;
}
.humberger-bars span:nth-of-type(2) {
  top: 19px;
}
.humberger-bars span:nth-of-type(3) {
  -webkit-transition: 0.5s;
  top: 25px;
  transition: 0.5s;
}

.site {
  display: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  font-size: 26px;
  font-size: clamp(20px, 9.3333333333px + 1.3888888889vw, 26px);
}
@media screen and (min-width: 992px) {
  .site {
    display: block;
    font-size: 26px;
  }
}

.is-open .header {
  -webkit-transform: translateX(0%);
  -webkit-transition: 0.5s;
          transform: translateX(0%);
  transition: 0.5s;
}
.is-open .humberger-menu {
  -webkit-transition: 0.5s;
  background-color: #F7F3E1;
  transition: 0.5s;
}
.is-open .humberger-menu .humberger-bars span {
  background-color: #000000;
}
.is-open .humberger-menu .humberger-bars span:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  -webkit-transition: 0.5s;
  top: 18px;
          transform: rotate(45deg);
  transition: 0.5s;
}
.is-open .humberger-menu .humberger-bars span:nth-of-type(2) {
  display: none;
}
.is-open .humberger-menu .humberger-bars span:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
  -webkit-transition: 0.5s;
  top: 18px;
          transform: rotate(-45deg);
  transition: 0.5s;
}
.is-open .nav-button {
  color: #ffffff;
}
.is-open .nav-button::before {
  -webkit-box-shadow: none;
  -webkit-transform: translateY(2px) rotateZ(45deg);
  -webkit-transition: 0.5s;
          transform: translateY(2px) rotateZ(45deg);
          box-shadow: none;
  transition: 0.5s;
}
.is-open .nav-button::after {
  -webkit-transform: rotate(-45deg);
  -webkit-transition: 0.5s;
          transform: rotate(-45deg);
  transition: 0.5s;
}

.header-nav {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.header-text {
  max-width: 295px;
}
@media screen and (min-width: 992px) {
  .header-text {
    display: none;
  }
}

@media screen and (min-width: 992px) {
  .nav-menu {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: flex-end;
    gap: 40px;
    gap: clamp(15px, -85px + 10.0806451613vw, 40px);
  }
}

.nav-menu__item {
  height: 100%;
  margin-bottom: 24px;
}
@media screen and (min-width: 992px) {
  .nav-menu__item {
    margin-bottom: 0;
  }
}

.nav-menu__link {
  color: #F7F3E1;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.46875;
  font-family: "Oswald", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
}
@media screen and (min-width: 992px) {
  .nav-menu__link {
    margin-bottom: 0;
    font-size: 26px;
    font-size: clamp(20px, -4px + 2.4193548387vw, 26px);
    line-height: 1.5;
  }
}

.entry-btn {
  display: block;
  width: 100%;
  max-width: 218px;
  margin-top: 40px;
  margin-bottom: 56px;
  padding: 5px 20px;
  background-color: #FFEF29;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .entry-btn {
    margin-top: 0;
  }
}
.entry-btn a {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  -webkit-transition-duration: 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
          flex-direction: row;
          align-items: center;
          justify-content: center;
  color: #000000;
          transition-duration: 0.5s;
}
.entry-btn a::after {
  -webkit-transition-duration: 0.5s;
  display: block;
  width: 15px;
  height: 15px;
  margin: 5px 0 0 5px;
  background-image: url("../img/icon_arrow-black.svg");
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
          transition-duration: 0.5s;
}
.entry-btn:hover a {
  -webkit-transition-duration: 0.5s;
  color: #08A21A;
          transition-duration: 0.5s;
}
.entry-btn:hover a::after {
  -webkit-transition-duration: 0.5s;
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
  background-image: url("../img/icon_arrow-green.svg");
          transition-duration: 0.5s;
}
@media screen and (min-width: 992px) {
  .entry-btn {
    max-width: 200px;
    margin-bottom: 0;
  }
}

/* ボタン */
.btn {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  -webkit-transition: 0.3s;
  -webkit-box-shadow: 6px 7px 0 #08A21A;
  -webkit-transition-duration: 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
          flex-direction: row;
          align-items: center;
          justify-content: center;
  width: 100%;
  max-width: 246px;
  padding: 20px 10px;
  background-color: #D8BD47;
          box-shadow: 6px 7px 0 #08A21A;
  color: #000000;
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.06em;
  text-decoration: none;
  opacity: 1;
  transition: 0.3s;
          transition-duration: 0.5s;
}
.btn::after {
  -webkit-transition-duration: 0.3s;
  display: block;
  width: 10px;
  height: 10px;
  margin-right: 0;
  margin-left: 5px;
  background-image: url("../img/icon_arrow-black.svg");
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
          transition-duration: 0.3s;
}
.btn:hover {
  -webkit-box-shadow: 0 0 0;
  -webkit-transform: translate(6px, 7px);
  -webkit-transition-duration: 0.3s;
          transform: translate(6px, 7px);
          box-shadow: 0 0 0;
          transition-duration: 0.3s;
}
.btn:hover::after {
  -webkit-transform: translateX(5px);
  -webkit-transition-duration: 0.3s;
          transform: translateX(5px);
          transition-duration: 0.3s;
}
@media screen and (max-width: 767px) {
  .btn {
    max-width: 187px;
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) {
  .btn {
    padding: 20px;
  }
}

.btn-wrap {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 1;
  position: relative;
          align-items: center;
          justify-content: center;
  padding: 0 20px 0;
}

.cards {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
          flex-direction: column;
  gap: 75px;
}
@media screen and (min-width: 768px) {
  .cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.cards__item {
  width: 100%;
  margin-right: auto !important;
  margin-left: auto;
  border: none;
}
.cards__item:last-of-type {
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .cards__item {
    width: 50%;
    margin-top: 16px;
    margin-right: 40px;
  }
  .cards__item:last-of-type {
    margin-right: 0;
  }
}

.card__img {
  margin-bottom: 40px;
  background-position: center;
  background-size: cover;
}

.card-title {
  margin-bottom: 20px;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .card-title {
    margin-bottom: 20px;
    font-size: 24px;
  }
}

.card-title--sub {
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .card-title--sub {
    font-size: 20px;
  }
}

.card-text {
  margin-bottom: 20px;
  font-size: 16px;
}

.card__body {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
          flex: 1;
          flex-direction: column;
  height: auto;
}

.card__btn {
  margin-top: auto;
  text-transform: uppercase;
}

.media {
  width: 100%;
  margin-right: auto !important;
  margin-bottom: 30px;
  margin-left: auto;
  border: none;
}
.media:nth-of-type(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.media:last-of-type {
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .media {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
            flex-direction: row;
    margin-bottom: 120px;
    gap: 7%;
  }
}

.media__img {
  margin-bottom: 40px;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .media__img {
    width: 47%;
  }
}

.media-title {
  margin-bottom: 20px;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .media-title {
    margin-bottom: 40px;
    font-size: 24px;
  }
}

.media-title--sub {
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .media-title--sub {
    font-size: 20px;
  }
}

.media-text {
  margin-bottom: 20px;
  font-size: 16px;
}

.media__body {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
          flex: 1;
          flex-direction: column;
  height: auto;
}
@media screen and (min-width: 768px) {
  .media__body {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 46%;
  }
}

.media__btn {
  margin-top: auto;
  text-transform: uppercase;
}

main {
  background-color: #F7F3E1;
}

.about {
  padding: 50px 0 120px;
  line-height: 2.0833333333;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .about {
    padding: 60px 0 200px;
  }
}
@media screen and (min-width: 992px) {
  .about {
    padding: 170px 0 200px;
  }
}
@media screen and (min-width: 1480px) {
  .about {
    padding: 152px 0 200px;
  }
}

.about__inner {
  max-width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 1280px) {
  .about__inner {
    max-width: 1280px;
    padding: 0 15px 0;
  }
}

.about-text {
  margin-bottom: 65px;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .about-text {
    margin-bottom: 136px;
    font-size: 24px;
  }
}

.js-scroll-fadein {
  -webkit-transform: translateY(50px);
  -webkit-transition: 1.3s;
          transform: translateY(50px);
  opacity: 0;
  transition: 1.3s;
}
.js-scroll-fadein.is-scroll {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.js-scroll-slidein {
  -webkit-transform: translateX(-100%);
  -webkit-transition: 0.4s;
  position: relative;
  overflow: hidden;
          transform: translateX(-100%);
  transition: 0.4s;
}
.js-scroll-slidein::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #08A21A;
  content: "";
}
.js-scroll-slidein.is-scroll {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.js-scroll-slidein.is-scroll::after {
  -webkit-transition: 1.1s;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  transition: 1.1s;
}

.contents {
  position: relative;
  padding: 38.5px 0 22px;
  background-color: #D8BD47;
}
.contents::after {
  display: block;
  z-index: 0;
  position: absolute;
  top: 0;
  right: 0;
  width: 41.1%;
  height: 100%;
  background-color: #FFEF29;
  content: "";
}
@media screen and (min-width: 768px) {
  .contents {
    padding: 162px 0 88.5px;
  }
}

.contents__inner {
  z-index: 1;
  position: relative;
  max-width: 90%;
  margin: 0 auto;
}
.contents-body {
  padding: 56px 36px 79px;
  background-color: #F7F3E1;
}

.contents-item {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .contents-item {
    margin: 0 auto 97px;
  }
}
.contents-item::after {
  display: block;
  width: 12px;
  height: 45px;
  margin: 37px auto 0;
  background-image: url("../img/dashed-arrow_sp.png");
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}
@media screen and (min-width: 768px) {
  .contents-item::after {
    z-index: 1;
    position: absolute;
    bottom: -30%;
    width: 144px;
    height: 384px;
    margin: 37px auto 0 5%;
    background-image: url("../img/dashed-arrow-left.png");
  }
}

.contents-item__body {
  z-index: 1;
  position: relative;
  max-width: 586px;
}

.contents-item__num {
  text-stroke: 2px #08A21A;
  -webkit-text-stroke: 2px #08A21A;
  color: transparent;
  font-size: 72px;
  line-height: 1.4861111111;
  font-family: "Oswald", "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .contents-item__num {
    font-size: 120px;
    line-height: 1.4833333333;
  }
}

.contents-item__title {
  margin-bottom: 16px;
  color: #08A21A;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .contents-item__title {
    font-size: 40px;
    line-height: 1.25;
  }
}

.contents-item__text {
  color: #000000;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.7142857143;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .contents-item__text {
    font-size: 20px;
    line-height: 1.5;
  }
}

.contents-item__image {
  z-index: 0;
  position: relative;
  width: 70%;
  height: auto;
  margin: -15% 0 0 auto;
}
@media screen and (min-width: 768px) {
  .contents-item__image {
    max-width: 623px;
    margin: -11% 0 0 auto;
  }
}

@media screen and (min-width: 768px) {
  .contents-item:nth-of-type(2n)::after {
    z-index: 1;
    position: absolute;
    right: 0;
    bottom: -30%;
    margin: 37px 5% 0 auto;
    background-image: url("../img/dashed-arrow-right.png");
  }
}
@media screen and (min-width: 768px) {
  .contents-item:nth-of-type(2n) .contents-item__body {
    margin: 0 0 0 auto;
  }
}
.contents-item:nth-of-type(2n) .contents-item__image {
  margin: -15% auto 0 0;
}
@media screen and (min-width: 768px) {
  .contents-item:nth-of-type(2n) .contents-item__image {
    margin: -11% auto 0 0;
  }
}
.contents-item:nth-of-type(4) {
  margin-bottom: 70px;
}
@media screen and (min-width: 768px) {
  .contents-item:nth-of-type(4) {
    margin-bottom: 97px;
  }
}
.contents-item:nth-of-type(4):after {
  display: none;
}

.contents-heading {
  position: absolute;
  top: -30px;
  left: 0;
  width: 45%;
  padding: 12px 16px 12px 22px;
  background-color: #08A21A;
}
.contents-heading span {
  background-color: #08A21A;
}
.contents-heading img {
  width: auto;
  max-height: 30px;
  margin: 0 0 0 auto;
}
@media screen and (min-width: 768px) {
  .contents-heading {
    top: -30px;
    left: 0;
    padding: 25px 30px 24px 60px;
  }
  .contents-heading img {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-height: 60px;
  }
}
@media screen and (min-width: 992px) {
  .contents-heading {
    padding: 25px 50px 24px 60px;
  }
  .contents-heading img {
    max-height: 80px;
  }
}
@media screen and (min-width: 1280px) {
  .contents-heading img {
    max-height: 100px;
  }
}

.entry {
  position: relative;
  padding: 124px 0;
}
@media screen and (min-width: 768px) {
  .entry {
    padding: 248px 0;
  }
}

.entry-heading {
  max-width: 1280px;
  max-width: 1280px;
  padding: 16px 0;
  background-color: #08A21A;
  text-align: center;
}
.entry-heading img {
  max-height: 36px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .entry-heading {
    padding: 33px 0 33px;
  }
  .entry-heading img {
    max-height: 57px;
    margin: 0 auto;
  }
}

.entry__inner {
  position: relative;
  max-width: 90%;
  margin: 0 auto;
  background-color: #F7F3E1;
}
@media screen and (min-width: 1280px) {
  .entry__inner {
    max-width: 1280px;
  }
}

.entry-contents {
  position: relative;
  padding: 60px 0 80px;
  background-color: #FFFDF5;
}
@media screen and (min-width: 768px) {
  .entry-contents {
    padding: 120px 0 160px;
  }
}

.entry-contents__inner {
  max-width: 793px;
  margin: 0 auto;
  padding: 0 10px;
}
@media screen and (min-width: 992px) {
  .entry-contents__inner {
    max-width: 1080px;
    padding: 0 88px 0;
  }
}

.entry-image {
  position: absolute;
  bottom: -5%;
  left: -38%;
  width: 100%;
  max-width: 844px;
}

.event-info-wrap {
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .event-info-wrap {
    margin-bottom: 120px;
  }
}

.event-info {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .event-info {
    -webkit-box-align: center;
        -ms-flex-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
            align-items: center;
    margin-bottom: 34px;
  }
}

.event-info__label {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
          align-items: center;
          justify-content: center;
  width: 100%;
  margin-bottom: 10px;
  padding: 5px 10px;
  background-color: #000000;
  color: #FFF;
  font-weight: 500;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .event-info__label {
    width: 30%;
    max-width: 178px;
    margin-right: 32px;
    margin-bottom: 0;
    padding: 10px;
    font-size: 20px;
  }
}

.event-info__text {
  width: 100%;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .event-info__text {
    width: 70%;
    font-size: 20px;
  }
}

.form-input {
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .form-input {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 768px) {
  .form-input--name .family-name {
    margin-bottom: 15px;
  }
}
.form-textarea {
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .form-textarea {
    margin-bottom: 136px;
  }
}
.form-textarea textarea {
  height: 100%;
  min-height: 200px;
}

.form-input label {
  display: inline-block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .form-input label {
    font-size: 20px;
  }
}

.required::after {
  margin-left: 5px;
  content: "※";
  color: #08A21A;
}

.form-input input[type=text],
.form-input input[type=email],
textarea {
  display: block;
  width: 100%;
  height: 40px;
  padding: 5px 10px;
  border: 1px solid #B5B5B5;
  border-radius: 5px;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .form-input input[type=text],
.form-input input[type=email],
textarea {
    height: 56px;
  }
}

.form-input input[type=radio] {
  -webkit-appearance: auto;
     -moz-appearance: auto;
  display: inline-block;
          appearance: auto;
}

@media screen and (min-width: 768px) {
  .form-input--name {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
    -webkit-box-align: center;
        -ms-flex-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
    gap: 24px;
  }
  .form-input--name div {
    width: 48%;
  }
}

.error {
  display: none;
  color: red;
}

/* バリデーション無効時 */
.form-input input:focus:invalid ~ .error {
  display: block;
}

.mc {
  position: relative;
}
.mc::before {
  display: none;
  z-index: 0;
  position: absolute;
  top: -5%;
  left: 0;
  width: 30px;
  height: 100%;
  margin: 0 calc(50% - 50vw);
  background-image: url(../img/image_chevron-stripe_green.png);
  background-size: contain;
  background-repeat: space;
  content: "";
}
@media screen and (min-width: 1280px) {
  .mc::before {
    display: block;
    width: 50px;
  }
}
@media screen and (min-width: 1480px) {
  .mc::before {
    width: 90px;
  }
}
@media screen and (min-width: 1480px) {
  .mc::before {
    width: 120px;
  }
}

.mc__heading {
  margin-bottom: 75px;
}

.mc__inner {
  position: relative;
  margin-bottom: 158px;
  padding: 0 30px;
}
@media screen and (min-width: 768px) {
  .mc__inner {
    margin-bottom: 316px;
  }
}

@media screen and (min-width: 768px) {
  .mc-cards {
    margin-bottom: 240px;
  }
}

.mv {
  position: relative;
  background: #F7F3E1;
}

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-10%);
            transform: translateX(-10%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-10%);
            transform: translateX(-10%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translateX(10%);
            transform: translateX(10%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInRight {
  0% {
    -webkit-transform: translateX(10%);
            transform: translateX(10%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
.mv-text01 {
  -webkit-animation-name: slideInLeft;
  -webkit-animation-duration: 1s;
  -webkit-animation-timing-function: ease;
  -webkit-animation-delay: 0.5s;
  -webkit-animation-fill-mode: forwards;
  -webkit-transform: translateX(-10%);
  position: absolute;
  top: 2%;
  left: 2%;
  width: 100%;
  max-width: 96.2%;
          transform: translateX(-10%);
          animation-duration: 1s;
          animation-timing-function: ease;
          animation-delay: 0.5s;
          animation-fill-mode: forwards;
          animation-name: slideInLeft;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .mv-text01 {
    max-width: 85%;
  }
}
@media screen and (min-width: 992px) {
  .mv-text01 {
    max-width: 73.2%;
  }
}

.mv-text02 {
  -webkit-animation-name: slideInRight;
  -webkit-animation-duration: 1s;
  -webkit-animation-timing-function: ease;
  -webkit-animation-delay: 1s;
  -webkit-animation-fill-mode: forwards;
  -webkit-transform: translateX(10%);
  position: absolute;
  right: 2%;
  bottom: 2%;
  max-width: 70%;
          transform: translateX(10%);
          animation-duration: 1s;
          animation-timing-function: ease;
          animation-delay: 1s;
          animation-fill-mode: forwards;
          animation-name: slideInRight;
  opacity: 0;
}
@media screen and (min-width: 650px) {
  .mv-text02 {
    bottom: 25vw;
    max-width: 80%;
  }
}
@media screen and (min-width: 992px) {
  .mv-text02 {
    bottom: 2%;
    max-width: 70%;
  }
}
@media screen and (max-width: 431px) {
  .mv-text02 {
    max-width: unset;
    width: 85%;
    bottom: 100px;
    right: 20px;
  }
}

.organizer {
  padding: 64px 4.5% 0;
}
@media screen and (max-width: 768px) {
  .organizer {
    padding: 0 4.5%;
    margin: -120px 0 0;
  }
}
@media screen and (max-width: 431px) {
  .organizer {
    padding: 0 4.5%;
    margin: -60px 0 0;
  }
}

.organizer-border {
  height: 12px;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}

.organizer__inner {
  padding: 48px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .organizer__inner {
    padding: 36px 0 48px;
    gap: 40px;
  }
}
.organizer-heading {
  max-width: 433px;
}
@media screen and (max-width: 768px) {
  .organizer-heading {
    max-width: 231px;
  }
}
.organizer-list {
  display: flex;
  gap: 65px;
}
@media screen and (max-width: 768px) {
  .organizer-list {
    flex-direction: column;
    gap: 48px;
  }
}
.organizer-list__item {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .organizer-list__item {
    flex-direction: column;
  }
}
.organizer-list__item-name {
  font-size: 16px;
  font-weight: bold;
  width: max-content;
  padding: 8px;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}

.panelist {
  position: relative;
}
.panelist::before {
  display: none;
  z-index: 0;
  position: absolute;
  top: -5%;
  right: 0;
  width: 30px;
  height: 100%;
  margin: 0 calc(50% - 50vw);
  background-image: url(../img/image_chevron-stripe_black.png);
  background-size: contain;
  background-repeat: space;
  content: "";
}
@media screen and (min-width: 1280px) {
  .panelist::before {
    display: block;
    width: 50px;
  }
}
@media screen and (min-width: 1480px) {
  .panelist::before {
    width: 90px;
  }
}
@media screen and (min-width: 1480px) {
  .panelist::before {
    width: 120px;
  }
}

.panelist__heading {
  margin-bottom: 86px;
}

.panelist__inner {
  position: relative;
  margin-bottom: 120px;
  padding: 0 30px;
}
@media screen and (min-width: 768px) {
  .panelist__inner {
    margin-bottom: 240px;
  }
}

.program {
  position: relative;
  padding: 81px 0 44px;
  background-color: #D8BD47;
}
.program::before {
  display: block;
  z-index: 0;
  position: absolute;
  top: 0;
  right: 0;
  width: 41.1%;
  height: 100%;
  background-color: #FFEF29;
  content: "";
}
@media screen and (min-width: 768px) {
  .program {
    padding: 162px 0 88.5px;
  }
}

.program__inner {
  z-index: 1;
  position: relative;
  max-width: 90%;
  margin: 0 auto;
  padding: 0 10px;
  background-color: #F7F3E1;
}
@media screen and (min-width: 1280px) {
  .program__inner {
    max-width: 1280px;
    padding: 0 88px 0;
  }
}

.program-heading {
  position: absolute;
  top: -30px;
  left: 0;
  width: 40%;
  width: 45%;
  padding: 12px 16px 12px 22px;
  background-color: #08A21A;
  background-color: #08A21A;
}
.program-heading img {
  width: auto;
  max-height: 30px;
  margin: 0 0 0 auto;
}
@media screen and (min-width: 768px) {
  .program-heading {
    top: -30px;
    left: 0;
    padding: 25px 30px 24px 60px;
  }
  .program-heading img {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-height: 60px;
  }
}
@media screen and (min-width: 992px) {
  .program-heading {
    padding: 25px 50px 24px 60px;
  }
  .program-heading img {
    max-height: 80px;
  }
}
@media screen and (min-width: 1280px) {
  .program-heading img {
    max-height: 100px;
  }
}

.program-body {
  padding: 56px 20px 79px;
}
@media screen and (min-width: 768px) {
  .program-body {
    max-width: 1008px;
    margin: 0 auto;
    padding: 115px 0 120px;
  }
}

.program-image {
  z-index: 2;
  position: absolute;
  right: -3%;
  bottom: -1%;
  width: 41%;
  max-width: 768px;
}
@media screen and (min-width: 992px) {
  .program-image {
    bottom: -3%;
  }
}
@media screen and (min-width: 1480px) {
  .program-image {
    bottom: -6%;
  }
}

.time-schedule {
  padding: 0 20px;
}

.time-schedule__item {
  position: relative;
  margin-bottom: 0 !important;
  padding: 0 0 50px 28px;
}
.time-schedule__item::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0px;
  width: 0;
  height: 100%;
  border-left: 3px solid #08A21A;
  content: "";
}
.time-schedule__item:last-child::before {
  height: 20px;
}
.time-schedule__item::after {
  display: block;
  position: absolute;
  top: 12px;
  left: -12px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #08A21A;
  content: "";
}
.time-schedule__item:first-of-type::before {
  top: 32px;
}
@media screen and (min-width: 768px) {
  .time-schedule__item {
    padding: 0 0 50px 40px;
  }
  .time-schedule__item::after {
    top: 17px;
    left: -15px;
    width: 32px;
    height: 32px;
  }
}

.time-schedule__title {
  margin-bottom: 8px;
  color: #000000;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.03em;
}
.time-schedule__title span {
  font-size: 0.715em;
}
@media screen and (min-width: 768px) {
  .time-schedule__title {
    font-size: 28px;
  }
}

.time-schedule__time {
  margin-bottom: 8px;
  color: #08A21A;
  font-weight: 600;
  font-size: 30px;
  line-height: 1.45;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .time-schedule__time {
    font-size: 40px;
  }
}

.section {
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
}

.section-heading {
  max-width: 1280px;
  margin: 0 0 45px 0;
  padding: 16px 0;
  background-color: #08A21A;
  text-align: center;
}
.section-heading img {
  max-height: 36px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .section-heading {
    margin: 0 0px 90px 0px;
    padding: 33px 0;
  }
  .section-heading img {
    max-height: 57px;
  }
}

.mc .section-heading {
  text-align: center;
}

.panelist .section-heading {
  text-align: center;
}

.speaker {
  position: relative;
  padding-top: 120px;
}
.speaker::before {
  display: none;
  position: absolute;
  top: 10%;
  left: 0;
  height: 100%;
  margin: 0 calc(50% - 50vw);
  background-image: url(../img/image_chevron-stripe_brown.png);
  background-size: contain;
  background-repeat: space;
  content: "";
}
@media screen and (min-width: 1280px) {
  .speaker {
    padding-top: 240px;
  }
  .speaker::before {
    display: block;
    width: 50px;
  }
}
@media screen and (min-width: 1480px) {
  .speaker::before {
    width: 90px;
  }
}
@media screen and (min-width: 1480px) {
  .speaker::before {
    width: 120px;
  }
}

.speaker__heading {
  margin-bottom: 90px;
}
@media screen and (min-width: 768px) {
  .speaker__heading {
    margin-bottom: 190px;
  }
}

.speaker__inner {
  position: relative;
  margin-bottom: 122px;
  padding: 0 30px;
}
@media screen and (min-width: 768px) {
  .speaker__inner {
    margin-bottom: 244px;
  }
}
/*# sourceMappingURL=style.css.map */

.endentry{
  display: none;
  padding-bottom: 48px;
  text-align: center;

  font-size: 32px;
  color: #cc000a;
}
.endentry span{
  white-space: nowrap;

}
@media screen and (max-width: 768px) {
  .endentry{
    font-size: 24px;
  }
}