/* ----------------------------------------------------------------
reset
----------------------------------------------------------------- */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video, button {
  list-style-type: none;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
}

body {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #333;
}

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

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

a {
  text-decoration: none;
}

/* ----------------------------------------------------------------
header
----------------------------------------------------------------- */
.contents {
  position: relative;
}

.header {
  position: fixed;
  z-index: 1000;
  top: 0;
  width: 100%;
  height: 60px;
  margin: 0 auto;
}
.header .gMenu {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: #fff;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  padding-top: 56px;
}
.header .gMenu.active {
  opacity: 1;
  pointer-events: all;
  z-index: 500;
}
.header .gMenu__list {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 50px 0 0 12%;
  border-top: #009348 solid 2px;
  gap: 20px;
}
.header .gMenu__list li a {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #333;
}
.header .hamburgerBtn {
  display: block;
  z-index: 1;
  cursor: pointer;
  width: 36px;
  height: 36px;
  background-color: #009348;
  border: 1px #ffffff solid;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .hamburgerBtn div {
  width: 16px;
  height: 12px;
  position: relative;
}
.header .hamburgerBtn div span {
  display: block;
  position: absolute;
  width: 16px;
  height: 2px;
  background: #ffffff;
  transition: 0.3s ease-in-out;
}
.header .hamburgerBtn div span:nth-child(1) {
  top: 0;
}
.header .hamburgerBtn div span:nth-child(2) {
  top: 5px;
}
.header .hamburgerBtn div span:nth-child(3) {
  bottom: 0;
}
.header .hamburgerBtn.active span:nth-child(1) {
  top: 5px;
  left: 0;
  transform: rotate(-45deg);
}
.header .hamburgerBtn.active span:nth-child(2), .header .hamburgerBtn.active span:nth-child(3) {
  top: 5px;
  transform: rotate(45deg);
}

.header__inner {
  display: block;
  padding: 0;
  position: relative;
  height: 100%;
}

.header__sp {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 1000;
  width: 170px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header__sp.is-hide {
  display: none;
}

.header__entry {
  display: block;
  color: #ffffff;
  background-color: #009348;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  border: 1px #ffffff solid;
  padding: 10px 30px;
  border-radius: 18px;
  position: relative;
  margin-right: 10px;
}

.header__language {
  display: flex;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  border: 1px solid #009348;
  position: absolute;
  top: 15px;
  left: 15px;
}
.header__language p {
  background-color: #009348;
  color: #fff;
  padding: 5px 10px;
}
.header__language a {
  color: #009348;
  background-color: #fff;
  padding: 5px 10px;
}
.header__language a:hover {
  opacity: 0.7;
}

.header__sns {
  display: flex;
  align-items: center;
  position: absolute;
  z-index: 2;
  right: 15px;
  bottom: 20px;
}
.header__sns p {
  margin-right: 10px;
  font-size: 12px;
  color: #009348;
}
.header__sns ul {
  display: flex;
  gap: 10px;
}
.header__sns a {
  display: block;
  width: min(8.8vw, 40px);
}
.header__sns a:hover {
  opacity: 0.7;
}

.header__logo {
  width: 37%;
  max-width: 160px;
  background-color: #ffffff;
  position: absolute;
  left: 20px;
  bottom: 20px;
}

.header--hide {
  opacity: 0;
  transition: 0.5s;
}

.header--visible {
  opacity: 1;
  transition: 0.5s;
}

@media screen and (min-width: 1024px) {
  .header {
    position: -webkit-sticky;
    position: sticky;
    background-color: #fff;
  }
  .header .gMenu {
    position: static;
    z-index: 1000;
    width: 100%;
    height: 100%;
    display: flex;
    opacity: 1;
    pointer-events: all;
    align-items: center;
    background: unset;
    padding-top: 0;
  }
  .header .gMenu.active {
    display: flex;
  }
  .header .gMenu__list {
    flex-direction: row;
    align-items: center;
    padding: 0;
    height: 100%;
    background: unset;
    gap: 0;
    border-top: none;
  }
  .header .gMenu__list li {
    margin-left: 1.4em;
  }
  .header .gMenu__list li:nth-of-type(1) {
    margin-left: 0;
  }
  .header .gMenu__list li a {
    font-size: 14px;
  }
  .header .gMenu__list li a:hover {
    color: #009348;
  }
  .header .hamburgerBtn {
    display: none;
  }
  .header__inner {
    display: block;
    width: 100%;
    margin: 0 auto;
    max-width: 1520px;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header__sp {
    display: block !important;
    position: absolute;
    z-index: 1001;
    background: unset;
    border-radius: unset;
    padding: 0;
    width: -webkit-fit-content;
    width: fit-content;
    top: 50%;
    transform: translateY(-50%);
    right: 280px;
  }
  .header__entry {
    border: 1px #009348 solid;
    transition: background 0.3s;
  }
  .header__entry:hover {
    color: #009348;
    background-color: #fff;
  }
  .header__language {
    position: static;
    margin-right: 20px;
  }
  .header__sns {
    position: static;
  }
  .header__sns a {
    width: 30px;
  }
  .header__logo {
    display: none;
  }
}
@media screen and (min-width: 1280px) {
  .header .gMenu__list li:nth-of-type(1) {
    margin-left: 190px;
  }
  .header__sp {
    right: 310px;
  }
  .header__sns a {
    width: 40px;
  }
  .header__logo {
    display: block;
    bottom: 16px;
  }
}
/* ----------------------------------------------------------------
kv
----------------------------------------------------------------- */
.kv {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 146vw;
  background-image: url("../images/mainvis_sp.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.kv__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.kv__ttl {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 94%;
  max-width: 1000px;
  margin: 50% 0 0;
}
.kv__ttl img {
  width: 97%;
  max-width: 960px;
  margin: 0 0 0 auto;
}
.kv__ttl span {
  display: inline-block;
  margin-top: 1.2em;
  padding: 0.4em 1em;
  font-size: min(3.8vw, 28px);
  line-height: 1;
  font-weight: 700;
  color: #fff;
  border-radius: 1em;
  background-color: #369272;
}

.kv__date {
  margin-top: 5%;
  font-size: min(6vw, 40px);
  line-height: 1;
  font-weight: 700;
  color: #369272;
}
.kv__date small {
  display: inline-block;
  margin-left: 0.2em;
  font-size: 60%;
  color: #369272;
}
.kv__date span {
  display: inline-block;
  margin-left: 0.5em;
  font-size: 80%;
  color: #369272;
}

.kv__sponsorship {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  padding: 1.5% 5%;
  border-radius: 3vw;
  width: 70vw;
  max-width: 420px;
  margin: auto 0 15%;
}
.kv__sponsorship dt {
  width: 14%;
  font-size: min(3vw, 14px);
  line-height: 1;
}
.kv__sponsorship dd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 86%;
}
.kv__sponsorship dd img:first-of-type {
  width: 40.5%;
}
.kv__sponsorship dd img:nth-of-type(2) {
  width: 31%;
}
.kv__sponsorship dd img:last-of-type {
  width: 14%;
}

@media screen and (min-width: 768px) {
  .kv {
    height: 640px;
    background-image: url("../images/mainvis_pc.jpg");
  }
  .kv__inner {
    padding-bottom: 40px;
  }
  .kv__ttl {
    margin-top: 0;
  }
  .kv__ttl span {
    margin-top: 30px;
  }
  .kv__date {
    margin-top: 20px;
  }
  .kv__sponsorship {
    position: absolute;
    left: calc(50% - 210px);
    bottom: 50px;
    padding: 8px 20px;
    border-radius: 15px;
    width: 420px;
    margin: 0;
  }
  .kv__sponsorship dt {
    width: 50px;
  }
  .kv__sponsorship dd {
    width: 330px;
  }
}
@media screen and (min-width: 1280px) {
  .kv {
    height: 50vw;
    max-height: 900px;
  }
}
/* ----------------------------------------------------------------
intro
----------------------------------------------------------------- */
.intro {
  position: relative;
  z-index: 11;
  padding: 15% 0 5%;
  background-image: url("../images/bg_intro.webp");
  background-size: 70vw auto;
  background-repeat: repeat-y;
  background-position: -20vw top;
}

.intro__section {
  width: calc(90vw + 2px);
  max-width: 1002px;
  margin: 0 auto 10%;
  padding: 10% 5%;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
.intro__section h2 {
  margin-bottom: 10%;
  text-align: center;
  font-size: min(6.4vw, 30px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.025em;
}
.intro__section p {
  font-size: 14px;
  line-height: 2;
}
.intro__section p + p {
  margin-top: 2em;
}
.intro__section .moreBtn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 180px;
  height: 40px;
  margin: 20px 0 0 auto;
  padding: 0 15px 0 20px;
  border-radius: 20px;
  transition: background 0.3s;
}
.intro__section .moreBtn span {
  display: block;
  padding-top: 2px;
  font-size: 18px;
  line-height: 1;
  color: #fff;
}
.intro__section .moreBtn svg {
  width: 25px;
}
.intro__section#purpose {
  border: solid 1px #369272;
}
.intro__section#purpose h2 {
  color: #369272;
}
.intro__section#about {
  border: solid 1px #f6a427;
}
.intro__section#about h2 {
  color: #f6a427;
}
.intro__section#about .moreBtn {
  background-color: #f6a427;
  border: solid 1px #f6a427;
}
.intro__section#about .moreBtn:hover {
  cursor: pointer;
  background-color: #fff;
}
.intro__section#about .moreBtn:hover span {
  color: #f6a427;
}
.intro__section#about .moreBtn:hover svg .btn_arrow {
  fill: #f6a427;
}
.intro__section#regeneraction {
  border: solid 1px #79C9DD;
}
.intro__section#regeneraction h2 {
  color: #79C9DD;
}
.intro__section#regeneraction .moreBtn {
  cursor: pointer;
  background-color: #79C9DD;
  border: solid 1px #79C9DD;
}
.intro__section#regeneraction .moreBtn:hover {
  background-color: #fff;
}
.intro__section#regeneraction .moreBtn:hover span {
  color: #79C9DD;
}
.intro__section#regeneraction .moreBtn:hover svg .btn_arrow {
  fill: #79C9DD;
}
.intro__section#summary {
  margin-bottom: 15%;
  border: solid 1px #369272;
}
.intro__section#summary h2 {
  color: #369272;
}
.intro__section#summary h2 span {
  display: block;
  margin-bottom: 0.7em;
  font-size: 60%;
  color: #369272;
}
.intro__section#summary dl {
  display: table;
  border-collapse: collapse;
}
.intro__section#summary dl div {
  display: table-row;
}
.intro__section#summary dl dt {
  display: table-cell;
  width: 3em;
  padding-bottom: 20px;
  font-size: min(4.8vw, 18px);
  line-height: 1.6;
  color: #369272;
  font-weight: 700;
}
.intro__section#summary dl dd {
  display: table-cell;
  width: 12em;
  padding-bottom: 20px;
  font-size: min(4.8vw, 18px);
  line-height: 1.6;
}
.intro__section#summary dl dd small {
  display: block;
  margin-top: 0.5em;
  font-size: 85%;
}
.intro__section#summary .summary__map {
  width: 100%;
  height: 70vw;
}
.intro__section#summary .summary__map iframe {
  width: 100%;
  height: 100%;
}

.entry__btn {
  display: block;
  width: 70vw;
  max-width: 400px;
  margin: 0 auto 5%;
  padding: 0.5em 0 0.5em 0.5em;
  text-align: center;
  font-size: min(8vw, 40px);
  line-height: 1;
  font-weight: 700;
  color: #fff;
  border-radius: min(8vw, 40px);
  border: solid 2px #369272;
  background-color: #369272;
  transition: background 0.3s;
}
.entry__btn small {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.7em;
  font-size: 75%;
  font-weight: 700;
  color: #fff;
}
.entry__btn:hover {
  color: #369272;
  background-color: #fff;
}
.entry__btn:hover small {
  color: #369272;
}

.entry__text {
  margin-bottom: 50px;
  text-align: center;
  font-size: min(3.3vw, 14px);
  line-height: 1.6;
}

.oldeyear__btn {
  display: block;
  margin: 0 auto;
  background-color: #fff;
  width: 80vw;
  max-width: 500px;
  padding: 15px;
  border-radius: 20px;
  text-align: center;
  border: solid 1px #009348;
  transition: 0.3s;
}
.oldeyear__btn img {
  max-width: 420px;
  margin: 0 auto 15px;
}
.oldeyear__btn p {
  font-size: 12px;
  color: #009348;
  line-height: 1.5;
}
.oldeyear__btn:hover {
  opacity: 0.7;
}

@media screen and (min-width: 768px) {
  .intro {
    padding: 80px 0 30px;
  }
  .intro__flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: calc(90vw + 2px);
    max-width: 1002px;
    margin: 0 auto 60px;
  }
  .intro__section {
    margin-bottom: 60px;
    padding: 40px;
  }
  .intro__section h2 {
    text-align: left;
    margin-bottom: 30px;
  }
  .intro__section#purpose {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .intro__section#purpose h2 {
    width: 180px;
    flex-shrink: 0;
    padding-top: 5px;
  }
  .intro__section#purpose > div {
    padding-left: 40px;
    border-left: solid 1px #ccc;
  }
  .intro__section#about {
    width: 45%;
    margin: 0;
  }
  .intro__section#about h2 {
    font-size: 24px;
  }
  .intro__section#regeneraction {
    width: 50%;
    margin: 0;
  }
  .intro__section#regeneraction h2 {
    font-size: 24px;
  }
  .intro__section#summary {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
  }
  .intro__section#summary .summary__text {
    width: 280px;
  }
  .intro__section#summary .summary__map {
    width: calc(100% - 310px);
    height: 320px;
  }
  .entry__btn {
    margin-bottom: 40px;
  }
  .entry__text {
    margin-bottom: 80px;
  }
  .entry__text br.sp {
    display: none;
  }
  .oldeyear__btn p br {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .intro {
    background-size: 1000px auto;
  }
  .intro__flex {
    width: 1002px;
  }
  .intro__section {
    width: 1002px;
  }
  .intro__section#about {
    width: 390px;
  }
  .intro__section#about h2 {
    font-size: 30px;
  }
  .intro__section#regeneraction {
    width: 550px;
  }
  .intro__section#regeneraction h2 {
    font-size: 30px;
  }
  .intro__section#summary dl dt {
    font-size: 20px;
  }
  .intro__section#summary dl dd {
    font-size: 24px;
  }
  .intro__section#summary dl dd small {
    font-size: 15px;
  }
  .intro__section#summary .summary__text {
    width: 360px;
  }
  .intro__section#summary .summary__map {
    width: 480px;
  }
}
.program {
  position: relative;
  z-index: 14;
  padding: 15% 0 0;
}

.program__ttl {
  margin-bottom: 10%;
  text-align: center;
  font-size: min(10.6vw, 60px);
  line-height: 1;
  letter-spacing: 0.1em;
}
.program__ttl span {
  display: block;
  margin-bottom: 1em;
  font-size: min(4.2vw, 20px);
  line-height: 1;
  letter-spacing: 0.025em;
}
.program__ttl small {
  display: block;
  margin-top: 1.5em;
  font-size: min(4.8vw, 24px);
  line-height: 1;
  letter-spacing: 0;
}

.program__txt1 {
  margin-top: 15%;
  text-align: center;
  font-size: min(4.8vw, 24px);
  line-height: 1;
  font-weight: 700;
  color: #369272;
  width: 90%;
  margin: 0 auto;
}
.program__txt1 span {
  text-align: left;
  display: block;
  font-size: 60%;
  color: #333;
  font-weight: normal;
  margin-top: 1.5em;
  line-height: 1.5;
}
.program__txt1 a {
  color: #009348;
  text-decoration: underline;
  display: inline;
}

.program__sticky-wrap {
  position: relative;
}

.program__tab {
  position: -webkit-sticky;
  position: sticky;
  z-index: 50;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 60px 1% 0;
  background-color: #fff;
  overflow: hidden;
}
.program__tab.sec1 {
  border-bottom: solid 5px #369272;
}
.program__tab.sec1 li:nth-of-type(1) {
  opacity: 1 !important;
}
.program__tab.sec1 li:nth-of-type(1):hover {
  cursor: auto;
}
.program__tab.sec1 li:nth-of-type(2) {
  transform: translateY(8%);
}
.program__tab.sec1 li:nth-of-type(3) {
  transform: translateY(8%);
}
.program__tab.sec1 ~ .sec1 {
  display: block;
}
.program__tab.sec1 ~ .sec2 {
  display: none;
}
.program__tab.sec1 ~ .sec3 {
  display: none;
}
.program__tab.sec2 {
  border-bottom: solid 5px #f6a427;
}
.program__tab.sec2 li:nth-of-type(1) {
  transform: translateY(8%);
}
.program__tab.sec2 li:nth-of-type(2) {
  opacity: 1 !important;
}
.program__tab.sec2 li:nth-of-type(2):hover {
  cursor: auto;
}
.program__tab.sec2 li:nth-of-type(3) {
  transform: translateY(8%);
}
.program__tab.sec2 ~ .sec1 {
  display: none;
}
.program__tab.sec2 ~ .sec2 {
  display: block;
}
.program__tab.sec2 ~ .sec3 {
  display: none;
}
.program__tab.sec3 {
  border-bottom: solid 5px #79C9DD;
}
.program__tab.sec3 li:nth-of-type(1) {
  transform: translateY(8%);
}
.program__tab.sec3 li:nth-of-type(2) {
  transform: translateY(8%);
}
.program__tab.sec3 li:nth-of-type(3) {
  opacity: 1 !important;
}
.program__tab.sec3 li:nth-of-type(3):hover {
  cursor: auto;
}
.program__tab.sec3 ~ .sec1 {
  display: none;
}
.program__tab.sec3 ~ .sec2 {
  display: none;
}
.program__tab.sec3 ~ .sec3 {
  display: block;
}
.program__tab li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32.5%;
  min-height: 40px;
  padding: 1% 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  transition: transform 0.3s, opacity 0.3s;
}
.program__tab li:hover {
  transform: none !important;
  opacity: 0.7;
  cursor: pointer;
}
.program__tab li:nth-of-type(1) {
  background-color: #369272;
}
.program__tab li:nth-of-type(2) {
  background-color: #f6a427;
}
.program__tab li:nth-of-type(3) {
  background-color: #79C9DD;
}
.program__tab span {
  display: block;
  text-align: center;
  line-height: 1;
  font-weight: 700;
  color: #fff;
}
.program__tab .tab_txt1 {
  margin-bottom: 0.3em;
  font-size: min(3.7vw, 24px);
}
.program__tab .tab_txt1 strong {
  display: inline-block;
  font-size: 125%;
}
.program__tab .tab_txt2 {
  font-size: min(3vw, 20px);
}
.program__tab .tab_txt3 {
  display: none;
}

.program__section {
  min-height: 200vh;
  padding: 10% 0;
  background-size: 70vw auto;
  background-repeat: repeat-y;
  background-position: 50vw top;
}
.program__section.sec1 {
  border-bottom: solid 5px #369272;
  background-image: url("../images/bg_program_1.webp");
}
.program__section.sec1 h3 span {
  color: #369272;
}
.program__section.sec1 .program__item {
  border: solid 1px #369272;
}
.program__section.sec1 .program__time {
  background-color: #369272;
}
.program__section.sec1 .program__title span, .program__section.sec1 .program__title small {
  color: #369272;
}
.program__section.sec1 .program__speaker p {
  color: #369272;
}
.program__section.sec1 .program__speaker ul li .photo img {
  border-color: #369272;
}
.program__section.sec2 {
  min-height: 70vh;
  border-bottom: solid 5px #f6a427;
  background-image: url("../images/bg_program_2.webp");
}
.program__section.sec2 h3 span {
  color: #f6a427;
}
.program__section.sec2 .program__item {
  border: solid 1px #f6a427;
}
.program__section.sec2 .program__time {
  background-color: #f6a427;
}
.program__section.sec2 .program__title span, .program__section.sec2 .program__title small {
  color: #f6a427;
}
.program__section.sec2 .program__speaker p {
  color: #f6a427;
}
.program__section.sec2 .program__speaker ul li .photo img {
  border-color: #f6a427;
}
.program__section.sec3 {
  min-height: 70vh;
  border-bottom: solid 5px #79C9DD;
  background-image: url("../images/bg_program_3.webp");
}
.program__section.sec3 h3 span {
  color: #79C9DD;
}
.program__section.sec3 .program__booth {
  border: solid 1px #79C9DD;
}
.program__section.sec3 .program__time {
  background-color: #79C9DD;
}
.program__section.sec3 .program__title span {
  color: #79C9DD;
}
.program__section.sec3 .program__speaker p {
  color: #79C9DD;
}
.program__section h3 {
  margin-bottom: 10%;
  text-align: center;
  font-size: min(6vw, 40px);
  line-height: 1.3;
  font-weight: 700;
}
.program__section h3 span {
  display: block;
  margin-bottom: 1em;
  font-size: min(4.8vw, 30px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.program__list {
  width: calc(90vw + 2px);
  margin: 0 auto;
}

.program__item {
  margin-top: 40px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
.program__item + h3 {
  margin-top: 10%;
}

.program__time {
  width: 100%;
  padding: 8px 15px 5px;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}
.program__time span {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  font-size: 28px;
}
.program__time span::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 2px;
  background-color: #fff;
  left: 7px;
  top: calc(50% - 2px);
}

.program__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding-bottom: 30px;
}
.program__content.notext {
  padding-bottom: 0;
}

.program__speaker {
  order: 2;
  width: 90%;
  margin: 20px auto 0;
}
.program__speaker p {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
}
.program__speaker ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.program__speaker ul li .photo {
  width: 20%;
  max-width: 70px;
}
.program__speaker ul li .photo img {
  border-radius: 50%;
  border: solid 1px;
}
.program__speaker ul li .photo + div {
  width: max(100% - 80px, 76%);
}
.program__speaker ul li .credit {
  position: relative;
}
.program__speaker ul li .credit span {
  position: absolute;
  font-size: 9px;
  white-space: nowrap;
  display: block;
  left: 0;
  bottom: -18px;
}
.program__speaker ul li .program__name {
  display: block;
  margin-right: 0.7em;
  font-size: min(5.3vw, 20px);
  line-height: 1.2;
  font-weight: 700;
}
.program__speaker ul li .program__name br {
  display: none;
}
.program__speaker ul li .program__job {
  display: block;
  font-size: 12px;
  line-height: 1.4;
}
.program__speaker ul li + li {
  margin-top: 10px;
}
.program__speaker ul .mg-tcredit {
  margin-top: 25px;
}

.program__title {
  order: 1;
  width: 90%;
  margin: 0 auto;
  padding: 20px 0;
  font-size: min(5.3vw, 20px);
  line-height: 1.3;
  font-weight: 700;
  border-bottom: solid 1px #ccc;
}
.program__title.long {
  letter-spacing: -0.05em;
}
.program__title.long small, .program__title.long span {
  letter-spacing: 0;
}
.program__title.noborder {
  border: none;
}
.program__title.noborder + .program__text {
  margin-top: 0;
}
.program__title small {
  display: block;
  font-size: 14px;
  margin-bottom: 0.2em;
}
.program__title span {
  display: block;
  margin-top: 15px;
  font-size: 12px;
}
.program__title span.right {
  margin-top: 5px;
  font-size: 75%;
  text-align: right;
  color: #333 !important;
}

.program__text {
  order: 3;
  width: 90%;
  margin: 20px auto 0;
}
.program__text p {
  font-size: 14px;
  line-height: 1.8;
}
.program__text p small {
  display: block;
  margin-top: 1em;
  padding-left: 1em;
  text-indent: -1em;
  font-size: 12px;
}
.program__text p small.top {
  margin-top: 0;
}

.program__booth_list {
  width: calc(90vw + 2px);
  margin: 0 auto;
}

.program__booth {
  margin-top: 40px;
  padding-bottom: 30px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.program__booth_name {
  width: 100%;
  padding: 8px 15px 5px;
  text-align: center;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  background-color: #79C9DD;
}

.program__booth_title {
  width: 90%;
  margin: 20px auto;
  font-size: min(5.3vw, 20px);
  line-height: 1.3;
  font-weight: 700;
}

.program__booth_image {
  width: 90%;
  max-width: 480px;
  margin: 0 auto;
  height: 45vw;
  max-height: 270px;
}
.program__booth_image img {
  height: 100%;
  object-fit: cover;
}

.program__booth_text {
  width: 90%;
  margin: 20px auto;
}
.program__booth_text p {
  font-size: 14px;
  line-height: 1.8;
}

.program__booth_text2 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 90%;
  margin: 20px auto 0;
}
.program__booth_text2 p {
  font-size: 14px;
  line-height: 1.8;
}
.program__booth_text2 a {
  display: inline-block;
  margin: 1em auto 0;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
  color: #12b1d8;
  transition: color 0.3s;
}
.program__booth_text2 a:hover {
  color: #79C9DD;
}
.program__booth_text2 img {
  margin: 20px auto;
  width: 90%;
}
.program__booth_text2 img.logo {
  width: 60%;
}
.program__booth_text2 img.logo-ss {
  width: 50%;
}
.program__booth_text2 img.logo-sb {
  width: 80%;
  margin-bottom: 0;
}
.program__booth_text2 img + img {
  margin-top: 10px;
}
.program__booth_text2 a + img {
  margin-top: 20px;
}
.program__booth_text2 .flexBox {
  display: flex;
  align-items: baseline;
  width: 100%;
}
.program__booth_text2 .flexBox > div {
  width: 50%;
}
.program__booth_text2 .flexBox a {
  display: block;
  text-align: center;
}
.program__booth_text2 .flexBox img {
  width: auto;
  height: 30vw;
  margin: 0 auto;
}

.program__booth_logo {
  width: 70%;
  max-width: 300px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .program {
    padding: 80px 0 0;
  }
  .program__ttl {
    margin-bottom: 60px;
  }
  .program__txt1 {
    margin-top: 60px;
  }
  .program__txt1 span {
    text-align: center;
  }
  .program__section {
    padding: 80px 0;
  }
  .program__section h3 {
    margin-bottom: 20px;
  }
  .program__item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
  .program__item + h3 {
    margin-top: 80px;
  }
  .program__time {
    display: block;
    width: 120px;
    flex-shrink: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 18px;
  }
  .program__time span {
    display: block;
    padding: 30px 0 0;
  }
  .program__time span::before {
    width: 2px;
    height: 24px;
    left: 10px;
    top: 0;
  }
  .program__booth_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
  }
  .program__booth {
    width: 48%;
    max-width: 470px;
  }
  .program__booth_name br.sp {
    display: none;
  }
  .program__booth_image {
    height: 22vw;
  }
  .program__booth_text2 .flexBox img {
    height: 120px;
  }
}
@media screen and (min-width: 1024px) {
  .program__tab {
    justify-content: center;
  }
  .program__tab.sec1 {
    border-bottom: solid 10px #369272;
  }
  .program__tab.sec2 {
    border-bottom: solid 10px #f6a427;
  }
  .program__tab.sec3 {
    border-bottom: solid 10px #79C9DD;
  }
  .program__tab li {
    flex-direction: row;
    flex-wrap: wrap;
    width: 32.2%;
    max-width: 390px;
    margin: 0 5px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }
  .program__tab .tab_txt1 {
    margin-right: 0.7em;
  }
  .program__tab .tab_txt2 {
    margin-bottom: 0.3em;
  }
  .program__tab .tab_txt3 {
    display: block;
    width: 90%;
    padding-top: 0.7em;
    font-size: min(1.35vw, 17px);
    border-top: solid 1px #fff;
  }
  .program__section h3 br.sp {
    display: none;
  }
  .program__list {
    width: 1002px;
  }
  .program__item {
    border-radius: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  }
  .program__time {
    width: 150px;
    font-size: 36px;
    padding: 15px 5px 15px 15px;
    border-bottom-left-radius: 28px;
    border-top-left-radius: 28px;
  }
  .program__time span {
    font-size: 36px;
    padding: 40px 0 0;
  }
  .program__time span::before {
    height: 30px;
    left: 15px;
  }
  .program__content {
    display: block;
    width: 850px;
    padding: 30px 0;
  }
  .program__content.notext {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .program__speaker {
    width: 35.2%;
    height: 100%;
    float: right;
    padding: 10px 15px 10px 30px;
    margin: 0;
    border-left: solid 1px #ccc;
  }
  .program__speaker p {
    margin-bottom: 15px;
    font-size: 18px;
  }
  .program__speaker ul li.flex-start {
    align-items: flex-start;
  }
  .program__speaker ul li .photo {
    width: 28%;
  }
  .program__speaker ul li .photo + div {
    width: 68%;
  }
  .program__speaker ul li .credit span {
    font-size: 10px;
  }
  .program__speaker ul li .program__name {
    display: block;
    font-size: 27px;
  }
  .program__speaker ul li .program__name br {
    display: inline;
  }
  .program__speaker ul li .program__job {
    display: block;
    margin-top: 3px;
    font-size: 14px;
  }
  .program__speaker ul li + li {
    margin-top: 15px;
  }
  .program__speaker ul .mg-tcredit {
    margin-top: 30px;
  }
  .program__title {
    width: 64.7%;
    float: left;
    padding: 10px 30px 0 40px;
    font-size: 30px;
    border: none;
  }
  .program__title.noborder {
    width: 80%;
  }
  .program__title.noborder + .program__text {
    width: 70%;
    margin-top: 20px;
  }
  .program__title small {
    font-size: 24px;
  }
  .program__title span {
    font-size: 18px;
  }
  .program__text {
    width: 64.7%;
    float: left;
    padding: 0 30px 0 40px;
  }
  .program__booth_list {
    width: 1002px;
  }
  .program__booth {
    border-radius: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  }
  .program__booth_name {
    padding: 8px 15px 5px;
    font-size: 25px;
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
  }
  .program__booth_title {
    font-size: 25px;
  }
  .program__booth_content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 90%;
    margin: 0 auto;
  }
  .program__booth_image {
    width: 170px;
    height: 170px;
    margin: 0 0 20px;
  }
  .program__booth_text {
    width: 230px;
    margin: 0 0 20px;
  }
  .program__booth_text2 p + a {
    margin-top: 1.5em;
  }
  .program__booth_text2 img {
    margin: 30px auto 20px;
    width: 75%;
  }
  .program__booth_text2 img.logo {
    width: 50%;
  }
  .program__booth_text2 img.logo-ss {
    width: 40%;
  }
  .program__booth_text2 img.logo-sb {
    width: 60%;
  }
  .program__booth_text2 img.logo-ps {
    width: 45%;
  }
  .program__booth_text2 img.logo-tf {
    margin-top: 25px;
  }
  .program__booth_text2 img + img {
    margin-top: 20px;
  }
  .program__booth_text2 .flexBox {
    width: 90%;
    margin: 15px auto 0;
  }
  .program__booth_text2 .flexBox img {
    height: 120px;
  }
}
/* ----------------------------------------------------------------
speakers
----------------------------------------------------------------- */
.speakers {
  position: relative;
  z-index: 15;
  padding: 15% 0;
  background-image: url("../images/bg_speaker.webp");
  background-size: 70vw auto;
  background-repeat: repeat-y;
  background-position: -20vw top;
}

.speakers__ttl {
  margin-bottom: 10%;
  text-align: center;
  font-size: min(10.6vw, 60px);
  line-height: 1;
  letter-spacing: 0.1em;
}

.speakers__list-wrap {
  width: calc(90vw + 2px);
  margin: 0 auto 10%;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  padding-top: 5%;
}
.speakers__list-wrap h3 {
  width: 100%;
  margin-bottom: 7%;
  padding: 0.25em 0;
  text-align: center;
  font-size: min(7vw, 40px);
  line-height: 1;
  font-weight: 700;
  color: #fff;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}
.speakers__list-wrap h3 span {
  font-size: 120%;
}
.speakers__list-wrap h3 small {
  display: inline-block;
  vertical-align: middle;
  margin-left: 1em;
  font-size: 75%;
}
.speakers__list-wrap.green h3 {
  background-color: #369272;
}
.speakers__list-wrap.green .speakers__list li figure {
  border: solid 2px #369272;
}
.speakers__list-wrap.green .speakers__list li .circle {
  background-color: #369272;
}
.speakers__list-wrap.green .speakers__list li.orange figure {
  border: solid 2px #f6a427;
}
.speakers__list-wrap.green .speakers__list li.orange .circle {
  background-color: #f6a427;
}
.speakers__list-wrap.orange {
  border: solid 1px #f6a427;
}
.speakers__list-wrap.orange h3 {
  background-color: #f6a427;
}
.speakers__list-wrap.orange .speakers__list li figure {
  border: solid 2px #f6a427;
}
.speakers__list-wrap.orange .speakers__list li .circle {
  background-color: #f6a427;
}

.speakers__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 3vw;
  width: 100%;
  padding: 0 3.5vw 3%;
}
.speakers__list li {
  width: 40vw;
  margin-bottom: 5%;
  position: relative;
}
.speakers__list li figure {
  position: relative;
  border-radius: 20vw;
  overflow: hidden;
}
.speakers__list li figure img {
  transition: transform 0.5s;
}
.speakers__list li figure img:hover {
  cursor: pointer;
  transform: scale(1.1);
}
.speakers__list li figure span {
  position: absolute;
  display: block;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 9px;
  line-height: 1.3;
  left: 0;
  bottom: 5px;
}
.speakers__list li .circle {
  position: absolute;
  display: block;
  z-index: 1;
  cursor: pointer;
  width: 7vw;
  height: 7vw;
  right: 3vw;
  top: 31vw;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.speakers__list li .circle::before, .speakers__list li .circle::after {
  content: "";
  position: absolute;
  background-color: #fff;
}
.speakers__list li .circle::before {
  width: 2px;
  height: 50%;
  left: calc(50% - 1px);
  top: 25%;
}
.speakers__list li .circle::after {
  height: 2px;
  width: 50%;
  top: calc(50% - 1px);
  left: 25%;
}

.speakers__list__detail {
  text-align: center;
}
.speakers__list__detail dt {
  margin: 0.7em 0 0.4em;
  font-size: min(4.7vw, 20px);
  line-height: 1.2;
  font-weight: 700;
}
.speakers__list__detail dt small {
  display: inline-block;
  margin-left: 0.5em;
  font-size: 75%;
  font-weight: 700;
}
.speakers__list__detail dd {
  font-size: min(2.7vw, 12px);
  line-height: 1.5;
}
.speakers__list__detail br.sp {
  display: block;
}
.speakers__list__detail br.pc {
  display: none;
}

.speakers__more {
  text-align: center;
  font-size: min(8vw, 48px);
  line-height: 1;
  font-weight: 700;
  color: #79C9DD;
}

@media screen and (min-width: 768px) {
  .speakers {
    padding: 80px 0;
  }
  .speakers__ttl {
    margin-bottom: 60px;
  }
  .speakers__list-wrap {
    margin-bottom: 80px;
    padding-top: 40px;
  }
  .speakers__list {
    gap: 3vw;
    padding: 0 4.5vw;
  }
  .speakers__list li {
    width: 25vw;
  }
  .speakers__list li figure {
    border-radius: 12vw;
  }
  .speakers__list li .circle {
    width: 4.5vw;
    height: 4.5vw;
    right: 2vw;
    top: 20vw;
  }
  .speakers__list__detail br.sp {
    display: none;
  }
  .speakers__list__detail br.pc {
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  .speakers {
    background-size: 1000px auto;
  }
  .speakers__list-wrap {
    width: 1002px;
    padding-bottom: 40px;
    border-radius: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  }
  .speakers__list-wrap h3 {
    margin-bottom: 50px;
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
  }
  .speakers__list {
    gap: 30px;
    padding: 0 47px;
  }
  .speakers__list li {
    width: 204px;
    margin-bottom: 5px;
  }
  .speakers__list li figure {
    border-radius: 102px;
  }
  .speakers__list li .circle {
    width: 30px;
    height: 30px;
    right: 16px;
    top: 160px;
  }
}
/* -----------------------------------------------------------------------
sponsors
------------------------------------------------------------------------ */
.sponsors {
  background-color: #F8F8F8;
  position: relative;
  z-index: 16;
  padding: 15% 0;
  background-color: #F8F8F8;
}

.sponsors__ttl {
  margin-bottom: 10%;
  text-align: center;
  font-size: min(8vw, 60px);
  line-height: 1;
  letter-spacing: 0.1em;
}

.sponsors__section {
  width: 90vw;
  margin: 0 auto 10%;
  padding-bottom: 10%;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
.sponsors__section .sponsors__subttl {
  width: 100%;
  padding: 1.5em 0 0;
  text-align: center;
  font-size: min(7vw, 30px);
  line-height: 1;
  font-weight: 700;
  color: #fff;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.sponsors__section.cosponsors {
  border: solid 1px #369272;
}
.sponsors__section.cosponsors .sponsors__subttl {
  color: #369272;
}
.sponsors__section.cosponsors .sponsors__list li {
  margin: 10% auto 0;
}
.sponsors__section.cosponsors .sponsors__list li:first-of-type .sponsors__logo {
  width: 67vw;
  max-width: 268px;
}
.sponsors__section.cosponsors .sponsors__list li:nth-of-type(2) .sponsors__logo {
  width: 55vw;
  max-width: 210px;
}
.sponsors__section.cosponsors .sponsors__list li:last-of-type .sponsors__logo {
  width: 25vw;
  max-width: 100px;
}
.sponsors__section.cosponsors .moreBtn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 180px;
  height: 40px;
  margin: 40px auto 0;
  padding: 0 15px 0 20px;
  border-radius: 20px;
  transition: background 0.3s;
  border: solid 1px #369272;
  background-color: #369272;
}
.sponsors__section.cosponsors .moreBtn:hover {
  cursor: pointer;
  background-color: #fff;
}
.sponsors__section.cosponsors .moreBtn:hover span {
  color: #369272;
}
.sponsors__section.cosponsors .moreBtn:hover svg .btn_arrow {
  fill: #369272;
}
.sponsors__section.cosponsors .moreBtn span {
  display: block;
  padding-top: 2px;
  font-size: 18px;
  line-height: 1;
  color: #fff;
}
.sponsors__section.cosponsors .moreBtn svg {
  width: 25px;
}
.sponsors__section.pubsupport {
  border: solid 1px #f6a427;
}
.sponsors__section.pubsupport .sponsors__subttl {
  color: #f6a427;
}
.sponsors__section.pubsupport .sponsors__list li {
  margin: 10% auto 0;
}
.sponsors__section.pubsupport .sponsors__list li .sponsors__logo {
  width: 60vw;
  max-width: 260px;
}
.sponsors__section.support {
  margin-bottom: 15%;
  border: solid 1px #79C9DD;
}
.sponsors__section.support .sponsors__subttl {
  margin-bottom: 10%;
  color: #79C9DD;
}
.sponsors__section.support .sponsors__list li {
  margin: 0 auto 0;
}
.sponsors__section.support .sponsors__list li.high {
  margin: min(5%, 18px) auto min(8%, 30px);
}
.sponsors__section.support .sponsors__list li .sponsors__logo {
  width: 67%;
  max-width: 240px;
}

.sponsors__logo {
  display: block;
  margin: 0 auto;
  transition: opacity 0.3s;
}
.sponsors__logo[href]:hover {
  opacity: 0.7;
}

.sponsors__name {
  margin-top: 1em;
  font-size: min(3.3vw, 12px);
  line-height: 1.5;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .sponsors {
    padding: 80px 0;
  }
  .sponsors__ttl {
    margin-bottom: 60px;
  }
  .sponsors__section {
    margin-bottom: 80px;
    padding-bottom: 60px;
  }
  .sponsors__section.cosponsors .sponsors__list {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .sponsors__section.cosponsors .sponsors__list li {
    margin: 40px 0 0;
  }
  .sponsors__section.cosponsors .sponsors__list li:first-of-type {
    margin-right: 5vw;
  }
  .sponsors__section.cosponsors .sponsors__list li:first-of-type .sponsors__logo {
    width: 26.8vw;
  }
  .sponsors__section.cosponsors .sponsors__list li:nth-of-type(2) {
    margin-right: 2vw;
  }
  .sponsors__section.cosponsors .sponsors__list li:nth-of-type(2) .sponsors__logo {
    width: 22vw;
  }
  .sponsors__section.cosponsors .sponsors__list li:last-of-type .sponsors__logo {
    width: 10vw;
  }
  .sponsors__section.cosponsors .sponsors__list .sponsors__logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10vw;
    max-height: 100px;
  }
  .sponsors__section.pubsupport .sponsors__list {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .sponsors__section.pubsupport .sponsors__list li {
    margin: 40px 0 0;
    width: 260px;
  }
  .sponsors__section.support {
    margin-bottom: 80px;
  }
  .sponsors__section.support .sponsors__subttl {
    margin-bottom: 0;
  }
  .sponsors__section.support .sponsors__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .sponsors__section.support .sponsors__list li {
    width: 24%;
    margin: 40px 3% 0;
  }
  .sponsors__section.support .sponsors__list li.high {
    margin: 40px 3% 0;
  }
  .sponsors__section.support .sponsors__list li .sponsors__logo {
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .sponsors__section {
    width: 1002px;
  }
  .sponsors__section.cosponsors .sponsors__list li:first-of-type {
    margin-right: 80px;
  }
  .sponsors__section.cosponsors .sponsors__list li:nth-of-type(2) {
    margin-right: 60px;
  }
}
/* ----------------------------------------------------------------
footer
----------------------------------------------------------------- */
.footer-area {
  background-color: #009348;
  padding: 40px 0;
  color: #ffffff;
  position: relative;
  z-index: 17;
}

.footer-area__btn {
  width: -webkit-fit-content;
  width: fit-content;
  display: block;
  margin: 0 auto;
  position: relative;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  padding-top: 24px;
}
.footer-area__btn::before {
  content: "";
  position: absolute;
  display: block;
  width: 18px;
  height: 10px;
  background: url(../images/pagetop_arrow.svg) no-repeat center/contain;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.footer-area__info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  margin-top: 40px;
}
.footer-area__info a {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: first baseline;
  gap: 5px;
}

.footer-area__info--privacy::before {
  content: "";
  width: 12px;
  height: 16px;
  display: block;
  background: url(../images/footer-area_privacy.svg) no-repeat center/contain;
}

.footer-area__info--contact::before {
  content: "";
  width: 15px;
  height: 10px;
  display: block;
  background: url(../images/footer-area_contact.svg) no-repeat center/contain;
}

.footer-area__note {
  width: 90%;
  max-width: 920px;
  margin: 50px auto 0;
  font-size: 12px;
  line-height: 1.5;
}
.footer-area__note p br {
  display: none;
}
.footer-area__note ul {
  margin-top: 1em;
}
.footer-area__note ul li {
  padding-left: 1em;
  text-indent: -1em;
}
.footer-area__note ul li + li {
  margin-top: 0.5em;
}

.footer {
  background-color: #4B4B4B;
  height: 60px;
}

.footer__inner {
  height: 100%;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__logo {
  width: 150px;
  margin-right: 10px;
  padding: 5px 10px;
  background-color: #ffffff;
  border-radius: 10px;
}

.footer__copy {
  font-size: 11px;
  color: #fff;
}

.footer a:hover {
  opacity: 0.7;
}

@media screen and (min-width: 768px) {
  .footer-area {
    padding: 50px 0 50px;
  }
  .footer-area__btn {
    font-size: 20px;
  }
  .footer-area__btn::before {
    width: 32px;
    height: 18px;
    transition: transform 0.3s;
  }
  .footer-area__btn:hover::before {
    transform: translateX(-50%) translateY(-10px);
  }
  .footer-area__info {
    gap: 80px;
    flex-direction: row;
    justify-content: center;
    align-items: first baseline;
    margin-top: 40px;
  }
  .footer-area__info a {
    font-size: 18px;
    gap: 10px;
  }
  .footer-area__info--privacy::before {
    width: 16px;
    height: 21px;
  }
  .footer-area__info--contact::before {
    width: 24px;
    height: 17px;
  }
  .footer-area__info p {
    font-size: 16px;
  }
  .footer-area__note {
    margin: 80px auto 20px;
  }
  .footer-area__note p br {
    display: inline;
  }
  .footer {
    height: 100px;
  }
  .footer__inner {
    max-width: 1600px;
    margin: 0 auto;
  }
  .footer__logo {
    width: 240px;
    padding: 10px 20px;
    border-radius: 16px;
  }
  .footer__copy {
    font-size: 14px;
  }
}
/* ----------------------------------------------------------------
modal
----------------------------------------------------------------- */
.modal {
  position: fixed;
  z-index: 2000;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  background-color: rgba(255, 248, 232, 0.9);
  transform: translate3d(0, 0, 0);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}
.modal.green .modal__close.top {
  background-color: #369272;
}
.modal.green .modal__close.bottom {
  background-color: #369272;
  border: solid 1px #369272;
}
.modal.green .modal__close.bottom:hover {
  background-color: #fff;
}
.modal.green .modal__close.bottom:hover p {
  color: #369272;
}
.modal.green .modal__close.bottom:hover::before, .modal.green .modal__close.bottom:hover::after {
  background-color: #369272;
}
.modal.green .modal__container {
  border: solid 3px #369272;
}
.modal.orange .modal__close.top {
  background-color: #f6a427;
}
.modal.orange .modal__close.bottom {
  background-color: #f6a427;
  border: solid 1px #f6a427;
}
.modal.orange .modal__close.bottom:hover {
  background-color: #fff;
}
.modal.orange .modal__close.bottom:hover p {
  color: #f6a427;
}
.modal.orange .modal__close.bottom:hover::before, .modal.orange .modal__close.bottom:hover::after {
  background-color: #f6a427;
}
.modal.orange .modal__container {
  border: solid 3px #f6a427;
}
.modal.blue .modal__close.top {
  background-color: #79C9DD;
}
.modal.blue .modal__close.bottom {
  background-color: #79C9DD;
  border: solid 1px #79C9DD;
}
.modal.blue .modal__close.bottom:hover {
  background-color: #fff;
}
.modal.blue .modal__close.bottom:hover p {
  color: #79C9DD;
}
.modal.blue .modal__close.bottom:hover::before, .modal.blue .modal__close.bottom:hover::after {
  background-color: #79C9DD;
}
.modal.blue .modal__container {
  border: solid 3px #79C9DD;
}
.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.modal__close::before, .modal__close::after {
  content: "";
  position: absolute;
  background-color: #fff;
  transform: rotate(45deg);
}
.modal__close::before {
  width: 2px;
  height: 20px;
}
.modal__close::after {
  width: 20px;
  height: 2px;
}
.modal__close.top {
  position: fixed;
  z-index: 2001;
  width: 40px;
  height: 40px;
  margin-top: -45px;
  left: calc(50% + 45vw - 30px);
  border-radius: 20px;
  border: solid 3px #fff;
  transition: transform 0.3s;
}
.modal__close.top::before {
  left: calc(50% - 1px);
  top: calc(50% - 10px);
}
.modal__close.top::after {
  left: calc(50% - 10px);
  top: calc(50% - 1px);
}
.modal__close.top:hover {
  transform: scale(1.15);
}
.modal__close.bottom {
  position: relative;
  width: 160px;
  height: 40px;
  margin: 30px auto 0;
  padding: 13px 0 13px 10px;
  border-radius: 20px;
  transition: background 0.3s;
}
.modal__close.bottom p {
  text-align: center;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
}
.modal__close.bottom::before {
  left: 20px;
  top: calc(50% - 10px);
}
.modal__close.bottom::after {
  left: 11px;
  top: calc(50% - 1px);
}
.modal__close:hover {
  cursor: pointer;
}
.modal__content {
  position: relative;
  z-index: 51;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
}
.modal__content::-webkit-scrollbar {
  display: none;
}
.modal__inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: calc(100% + 1px);
  padding: 50px 0 120px;
}
.modal__backface {
  position: absolute;
  z-index: 3;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.modal__container {
  position: relative;
  z-index: 4;
  width: 90%;
  margin: 0 auto;
  padding: 30px 30px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
.modal__text p {
  font-size: 14px;
  line-height: 2;
}
.modal__text p + p {
  margin-top: 1.5em;
}
.modal__text .modal__text-1 h3 {
  margin-bottom: 1.5em;
  font-size: 20px;
  line-height: 1.4;
}
.modal__text .modal__text-1 img {
  max-width: 600px;
  margin: 0 auto;
  width: 70%;
  border-radius: 10px;
}
.modal__text .modal__text-1 > div:nth-of-type(1) {
  margin-bottom: 30px;
}
.modal__text .modal__text-2 h3 {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 15px;
}
.modal__text .modal__text-2 h3 small {
  display: inline-block;
  margin-left: 0.5em;
  font-size: 75%;
  font-weight: 700;
}
.modal__text .modal__text-2 h4 {
  margin-bottom: 15px;
  padding-bottom: 15px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  border-bottom: solid 1px #ccc;
}
.modal__text .modal__text-2 p {
  line-height: 1.8;
}
.modal__text .modal__text-2 img {
  max-width: 200px;
  margin: 0 auto;
}
.modal__text .modal__text-2 > div {
  position: relative;
}
.modal__text .modal__text-2 > div:nth-of-type(1) {
  margin-bottom: 30px;
}
.modal__text .modal__text-2 > div span {
  position: absolute;
  color: #fff;
  width: 100%;
  text-align: center;
  left: 0;
  bottom: 2px;
  display: block;
  font-size: 10px;
  line-height: 1;
}
.modal__text .modal__text-3 h3 {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.modal__text .modal__text-3 h4 {
  margin-bottom: 25px;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 500;
}
.modal__text .modal__text-3 > div:nth-of-type(1) {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: solid 1px #ccc;
}

@media screen and (min-width: 768px) {
  .modal__close::before {
    height: 30px;
  }
  .modal__close::after {
    width: 30px;
  }
  .modal__close.top {
    width: 60px;
    height: 60px;
    margin-top: -75px;
    left: calc(50% + 45vw - 40px);
    border-radius: 30px;
    border: solid 4px #fff;
  }
  .modal__close.top::before {
    top: calc(50% - 15px);
  }
  .modal__close.top::after {
    left: calc(50% - 15px);
  }
  .modal__close.bottom {
    width: 200px;
    height: 50px;
    margin: 40px auto 0;
    padding: 17px 0 17px 12px;
    border-radius: 25px;
  }
  .modal__close.bottom p {
    font-size: 16px;
  }
  .modal__close.bottom::before {
    left: 30px;
    top: calc(50% - 15px);
  }
  .modal__close.bottom::after {
    left: 16px;
    top: calc(50% - 1px);
  }
  .modal__inner {
    padding: 80px 0 80px;
  }
  .modal__container {
    padding: 50px 50px;
    border-radius: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  }
  .modal__text .modal__text-2 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .modal__text .modal__text-2 > div:nth-of-type(1) {
    width: 200px;
    margin-bottom: 0;
  }
  .modal__text .modal__text-2 > div:nth-of-type(2) {
    padding-top: 5px;
    width: calc(100% - 230px);
  }
  .modal__text .modal__text-3 > div {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .modal__text .modal__text-3 > div > div:nth-of-type(1) {
    padding-top: 5px;
    width: 180px;
  }
  .modal__text .modal__text-3 > div > div:nth-of-type(2) {
    width: calc(100% - 210px);
  }
}
@media screen and (min-width: 1024px) {
  .modal__close.top {
    left: calc(50% + 420px);
  }
  .modal__container {
    width: 920px;
  }
  .modal__text .modal__text-1 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .modal__text .modal__text-1 h3 {
    font-size: 24px;
  }
  .modal__text .modal__text-1 img {
    width: 260px;
    margin: 0 auto 0 0;
  }
  .modal__text .modal__text-1 > div:nth-of-type(1) {
    width: 300px;
    margin-bottom: 0;
    padding-top: 10px;
  }
  .modal__text .modal__text-1 > div:nth-of-type(2) {
    width: 480px;
  }
  .modal__text .modal__text-2 h3 {
    font-size: 30px;
  }
  .modal__text .modal__text-2 h4 {
    font-size: 15px;
  }
  .modal__text .modal__text-2 img {
    max-width: 250px;
  }
  .modal__text .modal__text-2 > div:nth-of-type(1) {
    width: 250px;
  }
  .modal__text .modal__text-2 > div:nth-of-type(2) {
    width: calc(100% - 300px);
  }
  .modal__text .modal__text-3 h3 {
    margin-bottom: 20px;
    font-size: 30px;
  }
  .modal__text .modal__text-3 h4 {
    font-size: 15px;
  }
  .modal__text .modal__text-3 > div:nth-of-type(1) {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
  .modal__text .modal__text-3 > div > div:nth-of-type(1) {
    width: 240px;
  }
  .modal__text .modal__text-3 > div > div:nth-of-type(2) {
    width: calc(100% - 280px);
  }
}