@charset "UTF-8";
/* splash
-------------------------------------------*/
/* Loading背景画面設定　*/
#splash,
#splash-sub {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #FBF7ED;
  text-align: center;
  color: #fff;
  /* Loading画像中央配置　*/
  /* fadeUpをするアイコンの動き */
  /* Loading画像中央配置　*/
}
#splash #splash_logo,
#splash-sub #splash_logo {
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  /* Loading アイコンの大きさ設定　*/
}
#splash #splash_logo img,
#splash-sub #splash_logo img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  #splash #splash_logo img,
  #splash-sub #splash_logo img {
    width: 600px;
  }
}
#splash .fadeUp,
#splash-sub .fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#splash #splash_circle,
#splash-sub #splash_circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#splash #splash_circle .circle,
#splash-sub #splash_circle .circle {
  box-sizing: border-box;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  border: 10px solid rgba(54, 110, 154, 0.2);
  border-top-color: rgba(54, 110, 154, 0.9);
  animation: spin 1s infinite linear;
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

/* Return Arrow
-------------------------------------------*/
.return-arrow {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  text-decoration: none;
  background-color: #B23232;
  display: block;
  text-align: center;
  border-radius: 24px;
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 1;
}
.return-arrow::before {
  content: "\f062";
  font-family: "Font Awesome 6 Free";
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  line-height: 48px;
}
.return-arrow.fadein {
  opacity: 1;
}

/* common
-------------------------------------------*/
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  background-color: #F1EEE1;
  color: #505050;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.4rem, 1vw, 1.8rem);
}

a {
  text-decoration: none;
  font-size: clamp(1.6rem, 1vw, 1.8rem);
  color: #038dd3;
}
a:hover {
  color: #B23232;
}
a.white {
  color: #cfa875;
}
a.white:hover {
  color: #B23232;
}

li {
  list-style: none;
}

img {
  width: 100%;
}

p {
  font-size: clamp(1.6rem, 1vw, 1.8rem);
  line-height: 2.6rem;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  p {
    line-height: 3rem;
    padding-bottom: 40px;
  }
}

.list-square {
  padding: 0;
  margin-bottom: 40px;
  margin-bottom: 60px;
}
.list-square li {
  position: relative;
  list-style-type: none !important;
  /*ポチ消す*/
  padding: 0.5em 0.5em 0.5em 0.5em;
  margin-bottom: 5px;
  line-height: 1.5;
  vertical-align: middle;
  border-radius: 15px 0px 0px 15px;
}
.list-square li::before {
  display: inline-block;
  vertical-align: top;
  content: "\f0c8";
  font-family: "Font Awesome 6 Free";
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  margin-right: 16px;
}

.reg-pc {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .reg-pc {
    display: block !important;
  }
}

.reg-sp {
  display: block !important;
}
@media screen and (min-width: 768px) {
  .reg-sp {
    display: none !important;
  }
}

.lg-pc {
  display: none !important;
}
@media screen and (min-width: 1024px) {
  .lg-pc {
    display: block !important;
  }
}

.lg-sp {
  display: block !important;
}
@media screen and (min-width: 1024px) {
  .lg-sp {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  section {
    padding-top: 40px;
    padding-bottom: 40px;
    position: relative;
    overflow: hidden;
  }
}

.section-blue {
  background-color: #366E9A;
  color: #FFFFFE;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
  text-align: justify;
}

.table-wrap {
  overflow-x: auto;
}

.table-border-gray {
  border-spacing: 0;
  margin: 20px 0;
  width: 100%;
  border-top: 1px solid #707070;
  border-collapse: collapse;
}
.table-border-gray tr {
  border-bottom: 1px solid #707070;
}
.table-border-gray th {
  white-space: nowrap;
}
.table-border-gray th,
.table-border-gray td {
  padding: 10px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .table-border-gray th,
  .table-border-gray td {
    padding: 20px;
  }
}
.table-border-gray .th-head {
  font-weight: 600;
  padding-bottom: 10px;
}

.table-border-white {
  border-spacing: 0;
  margin: 20px 0;
  width: 100%;
  border-top: 1px solid #FFFFFE;
  border-collapse: collapse;
}
.table-border-white tr {
  border-bottom: 1px solid #FFFFFE;
}
.table-border-white th {
  white-space: nowrap;
}
.table-border-white th,
.table-border-white td {
  padding: 10px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .table-border-white th,
  .table-border-white td {
    padding: 20px;
  }
}
.table-border-white .th-head {
  font-weight: 600;
  padding-bottom: 10px;
}

h2 {
  font-size: clamp(2.8rem, 2vw, 4rem);
  font-weight: 600;
  letter-spacing: 3px;
  line-height: 3rem;
  margin: 60px 0;
}
@media screen and (min-width: 768px) {
  h2 {
    letter-spacing: 4px;
    line-height: 3.2rem;
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 768px) {
  h2 {
    margin: 60px 20px;
  }
}
h2 .h2-gray {
  color: #505050;
  padding: 16px 30px;
  border: 3px solid #818181;
  background-image: linear-gradient(45deg, #818181 8px, transparent 0), linear-gradient(-45deg, #818181 8px, transparent 0), linear-gradient(135deg, #818181 8px, transparent 0), linear-gradient(-135deg, #818181 8px, transparent 0);
}
@media screen and (max-width: 768px) {
  h2 .h2-gray {
    display: block;
  }
}
h2 .h2-white {
  color: #FFFFFE;
  padding: 16px 30px;
  border: 3px solid #FFFFFE;
  background-image: linear-gradient(45deg, #FFFFFE 8px, transparent 0), linear-gradient(-45deg, #FFFFFE 8px, transparent 0), linear-gradient(135deg, #FFFFFE 8px, transparent 0), linear-gradient(-135deg, #FFFFFE 8px, transparent 0);
}
@media screen and (max-width: 768px) {
  h2 .h2-white {
    display: block;
  }
}

h3 {
  font-size: clamp(2.4rem, 1.6vw, 3.2rem);
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 3.2rem;
  padding: 20px;
  margin-bottom: 40px;
}

.h3-gray {
  color: #505050;
  position: relative;
}
.h3-gray::before {
  position: absolute;
  top: 100%;
  left: 50%;
  border-bottom: 2px solid #505050;
  transform: translateX(-50%);
  width: 70px;
  content: "";
}

.h3-white {
  color: #FFFFFE;
  position: relative;
}
.h3-white::before {
  position: absolute;
  top: 100%;
  left: 50%;
  border-bottom: 2px solid #FFFFFE;
  transform: translateX(-50%);
  width: 70px;
  content: "";
}

h4 {
  font-size: clamp(2rem, 1.4vw, 2.8rem);
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 3.2rem;
  margin-bottom: 20px;
}

.emphasis {
  color: #B23232;
  font-weight: 600;
}

.emphasis-white {
  color: #ebc981;
  font-weight: 600;
}

.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  border-radius: 0.2rem;
  margin: 20px;
}

.button-primary {
  border-radius: 0;
  transform-style: preserve-3d;
}
.button-primary:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  content: "";
  transition: all 0.3s;
}

.button-blue {
  color: #FFFFFE;
  background: #038dd3;
  border: 2px solid #505050;
}
.button-blue:before {
  background: #505050;
}
.button-blue:hover {
  color: #FFFFFE;
  background: #505050;
}
.button-blue:hover:before {
  background: #038dd3;
}

.button-red {
  color: #FFFFFE;
  background: #B23232;
  border: 2px solid #FFFFFE;
}
.button-red:before {
  background: #FFFFFE;
}
.button-red:hover {
  color: #505050;
  background: #FFFFFE;
}
.button-red:hover:before {
  background: #B23232;
}

header {
  /* header Home
  -------------------------------------------*/
  /* header Sub
  -------------------------------------------*/
}
header .nav-contents {
  display: block;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 100;
}
@media screen and (min-width: 1024px) {
  header .nav-contents {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px 80px;
    width: 100%;
    height: 70px;
    background-color: transparent;
    text-shadow: none;
    margin: 0 auto;
  }
}
header .nav-contents .menu-btn {
  display: block;
  position: fixed;
  top: 2%;
  right: 5%;
  z-index: 11;
}
@media screen and (min-width: 1024px) {
  header .nav-contents .menu-btn {
    display: none;
  }
}
header .nav-contents .openbtn {
  position: relative;
  background: rgba(54, 110, 154, 0.9);
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
}
header .nav-contents .openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #fffffe;
  width: 45%;
}
header .nav-contents .openbtn span:nth-of-type(1) {
  top: 15px;
}
header .nav-contents .openbtn span:nth-of-type(2) {
  top: 23px;
}
header .nav-contents .openbtn span:nth-of-type(3) {
  top: 31px;
}
header .nav-contents .openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
header .nav-contents .openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
header .nav-contents .openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
header .nav-contents .logo img {
  height: 60px;
  width: auto;
  vertical-align: middle;
  margin-top: 10px;
}
@media screen and (min-width: 1024px) {
  header .nav-contents .logo img {
    height: 60px;
    width: auto;
    vertical-align: middle;
    margin-top: 0;
    display: none;
  }
}
header .nav-contents .menu {
  padding: 30px 10px;
}
header .nav-contents .menu ul {
  display: block;
}
@media screen and (min-width: 1024px) {
  header .nav-contents .menu ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
}
header .nav-contents .menu ul li {
  padding: 10px;
}
@media screen and (min-width: 1024px) {
  header .nav-contents .menu ul li {
    padding: 0 30px;
  }
}
header .nav-contents .menu ul li .nav-item {
  color: #707070;
  font-size: clamp(2rem, 1.7vw, 2.2rem);
  font-weight: 600;
  line-height: 3rem;
}
header .nav-contents .menu ul li .nav-item:hover {
  color: #B23232;
}
header#home .nav-contents {
  position: fixed;
  top: 0;
  right: -100%;
  padding: 0 10px;
  transition: 0.5s;
}
@media screen and (min-width: 1024px) {
  header#home .nav-contents {
    right: 0;
  }
}
header#home .top-main {
  display: block;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px) {
  header#home .top-main {
    height: 100vh;
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  header#home .top-main .left-main {
    position: relative;
    width: 100%;
  }
}
header#home .top-main .left-main .left-top-main {
  margin-top: 70px;
  padding: 10px 0;
}
@media screen and (min-width: 768px) {
  header#home .top-main .left-main .left-top-main {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: center;
    position: relative;
  }
}
@media screen and (min-width: 1440px) {
  header#home .top-main .left-main .left-top-main {
    height: 10vh;
    display: none;
  }
}
header#home .top-main .left-main .left-top-main .logo img {
  height: 80px;
  width: auto;
}
header#home .top-main .left-main .left-top-main .desc {
  white-space: nowrap;
  color: #366E9A;
  font-weight: 500;
  text-align: center;
  font-size: clamp(2.2rem, 1.4vw, 2.8rem);
  padding: 20px 0;
}
header#home .top-main .left-main .left-top-main .text {
  white-space: nowrap;
  color: #366E9A;
  font-weight: 500;
  text-align: center;
  line-height: 30px;
  padding: 10px 0;
}
header#home .top-main .left-main .left-top-main .text .conference {
  font-size: clamp(1.8rem, 1vw, 2rem);
}
header#home .top-main .left-main .left-top-main .text .date {
  font-size: clamp(1.8rem, 1vw, 2rem);
}
@media screen and (min-width: 768px) {
  header#home .top-main .left-main .left-middle-main {
    height: 50vh;
    position: relative;
    text-align: center;
  }
}
@media screen and (min-width: 1440px) {
  header#home .top-main .left-main .left-middle-main {
    height: 72vh;
    position: relative;
  }
}
header#home .top-main .left-main .left-middle-main .logo-box-middle {
  display: none;
}
@media screen and (min-width: 1440px) {
  header#home .top-main .left-main .left-middle-main .logo-box-middle {
    display: block;
    width: 24%;
    white-space: nowrap;
    color: #366E9A;
    font-weight: 500;
    text-align: center;
  }
  header#home .top-main .left-main .left-middle-main .logo-box-middle img {
    padding-top: 70px;
    width: 50%;
  }
  header#home .top-main .left-main .left-middle-main .logo-box-middle .desc {
    font-size: clamp(2rem, 1.6vw, 3.2rem);
    line-height: 60px;
  }
  header#home .top-main .left-main .left-middle-main .logo-box-middle .conference {
    font-size: clamp(1.6rem, 1vw, 2rem);
  }
  header#home .top-main .left-main .left-middle-main .logo-box-middle .date {
    font-size: clamp(1.6rem, 1vw, 2rem);
  }
}
header#home .top-main .left-main .left-middle-main .image-box-middle .main-image {
  vertical-align: top;
}
@media screen and (min-width: 768px) {
  header#home .top-main .left-main .left-middle-main .image-box-middle .main-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    margin: auto;
    width: 100%;
    height: auto;
    z-index: 1;
  }
}
@media screen and (min-width: 1024px) {
  header#home .top-main .left-main .left-middle-main .image-box-middle .main-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    margin: auto;
    width: 90%;
    height: auto;
    z-index: 1;
  }
}
@media screen and (min-width: 1280px) {
  header#home .top-main .left-main .left-middle-main .image-box-middle .main-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    width: 90%;
    height: auto;
    z-index: 1;
  }
}
@media screen and (min-width: 1440px) {
  header#home .top-main .left-main .left-middle-main .image-box-middle .main-image {
    position: absolute;
    top: 80px;
    left: auto;
    right: 0;
    bottom: auto;
    padding: 0;
    width: 78%;
    height: auto;
    max-height: 104%;
    z-index: 1;
  }
}
header#home .top-main .left-main .left-bottom-main {
  background-color: #366E9A;
  padding: 20px 10px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  header#home .top-main .left-main .left-bottom-main {
    height: 40vh;
    position: relative;
  }
}
@media screen and (min-width: 1440px) {
  header#home .top-main .left-main .left-bottom-main {
    height: 28vh;
    position: relative;
  }
}
header#home .top-main .left-main .left-bottom-main .title {
  color: #FFFFFE;
  font-size: clamp(4.6rem, 4.7vw, 9.2rem);
  font-family: "Kaushan Script", cursive;
  letter-spacing: 10px;
  text-shadow: 4px 4px 0px #0f202c;
}
@media screen and (min-width: 768px) {
  header#home .top-main .left-main .left-bottom-main .title {
    position: absolute;
    bottom: 40%;
    left: 0;
    right: 0;
    padding: 0;
    text-shadow: 6px 6px 0px #0f202c;
  }
}
@media screen and (min-width: 1024px) {
  header#home .top-main .left-main .left-bottom-main .title {
    position: absolute;
    bottom: 46%;
    left: 0;
    right: 0;
    padding: 0;
    text-shadow: 8px 8px 0px #0f202c;
  }
}
@media screen and (min-width: 1280px) {
  header#home .top-main .left-main .left-bottom-main .title {
    position: absolute;
    bottom: 36%;
    left: 0;
    right: 0;
    padding: 0;
    text-shadow: 8px 8px 0px #0f202c;
  }
}
@media screen and (min-width: 1440px) {
  header#home .top-main .left-main .left-bottom-main .title {
    position: absolute;
    bottom: 11%;
    left: 16%;
    right: auto;
    padding: 0;
    text-shadow: 8px 8px 0px #0f202c;
  }
}
header#home .top-main .top-circle-1 {
  position: absolute;
  top: 31%;
  left: -14%;
  width: 200px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  header#home .top-main .top-circle-1 {
    position: absolute;
    top: 32%;
    left: -14%;
    width: 400px;
  }
}
header#home .top-main .top-circle-2 {
  position: absolute;
  top: 61%;
  left: -9%;
  width: 100px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  header#home .top-main .top-circle-2 {
    position: absolute;
    top: 56%;
    left: 1%;
    width: 300px;
  }
}
header#home .top-main .top-circle-3 {
  position: absolute;
  top: -24%;
  right: 70%;
  width: 200px;
}
@media screen and (min-width: 768px) {
  header#home .top-main .top-circle-3 {
    position: absolute;
    top: -21%;
    left: 18%;
    width: 300px;
  }
}
header#home .top-main .top-circle-4 {
  position: absolute;
  bottom: 10%;
  right: -34%;
  width: 200px;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  header#home .top-main .top-circle-4 {
    position: absolute;
    bottom: 0;
    right: -4%;
    width: 300px;
    z-index: 1;
  }
}
header#home .right-bar {
  display: none;
}
@media screen and (min-width: 1024px) {
  header#home .right-bar {
    display: block;
    background-color: #B23232;
    width: 100px;
    position: relative;
  }
}
header#home .right-bar .presents {
  display: none;
}
@media screen and (min-width: 1024px) {
  header#home .right-bar .presents {
    display: block;
    position: absolute;
    top: 7%;
    right: 8px;
    left: 0;
    margin: auto;
    padding: 0;
    color: #FFFFFE;
    writing-mode: vertical-rl;
    text-orientation: sideways;
    font-size: 5.2rem;
    font-family: "Kaushan Script", cursive;
    letter-spacing: 10px;
  }
}
header .sub-main {
  display: block;
  overflow: hidden;
  position: relative;
}
header .sub-main .container {
  margin: 80px auto 0 auto;
  max-width: 1280px;
  padding: 10px;
}
header .sub-main .sub-circle-1 {
  position: absolute;
  top: -10%;
  left: -14%;
  width: 120px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  header .sub-main .sub-circle-1 {
    position: absolute;
    top: 12%;
    left: -14%;
    width: 300px;
  }
}
@media screen and (min-width: 1024px) {
  header .sub-main .sub-circle-1 {
    position: absolute;
    top: 12%;
    left: -4%;
    width: 300px;
  }
}
header .sub-main .sub-circle-2 {
  position: absolute;
  top: 27%;
  left: -14%;
  width: 90px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  header .sub-main .sub-circle-2 {
    position: absolute;
    top: 50%;
    left: -15%;
    width: 200px;
  }
}
@media screen and (min-width: 1024px) {
  header .sub-main .sub-circle-2 {
    position: absolute;
    top: 50%;
    left: -3%;
    width: 200px;
  }
}
header .sub-main .sub-circle-3 {
  position: absolute;
  top: 56%;
  right: -12%;
  width: 100px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  header .sub-main .sub-circle-3 {
    position: absolute;
    top: 7%;
    right: -18%;
    width: 300px;
  }
}
@media screen and (min-width: 1024px) {
  header .sub-main .sub-circle-3 {
    position: absolute;
    top: 7%;
    right: -9%;
    width: 300px;
  }
}
header .sub-main .sub-circle-4 {
  position: absolute;
  top: 22%;
  right: -8%;
  width: 100px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  header .sub-main .sub-circle-4 {
    position: absolute;
    top: -7%;
    right: -7%;
    width: 200px;
  }
}
@media screen and (min-width: 1024px) {
  header .sub-main .sub-circle-4 {
    position: absolute;
    top: -7%;
    right: -3%;
    width: 200px;
  }
}

.flex-half.reverse {
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .flex-half.reverse {
    display: flex;
    flex-direction: row;
    gap: 80px;
  }
}
@media screen and (min-width: 768px) {
  .flex-half {
    display: flex;
    flex-direction: row;
    gap: 80px;
    justify-content: space-around;
  }
}
.flex-half .half-left-80 {
  flex-basis: 80%;
  padding-bottom: 40px;
}
.flex-half .half-left-50 {
  flex-basis: 50%;
  padding-bottom: 40px;
}
.flex-half .half-left-40 {
  flex-basis: 40%;
  padding-bottom: 40px;
}
.flex-half .half-left-30 {
  flex-basis: 30%;
  padding-bottom: 40px;
}
.flex-half .half-right-20 {
  flex-basis: 20%;
  padding-bottom: 40px;
}
.flex-half .half-right-50 {
  flex-basis: 50%;
  padding-bottom: 40px;
}
.flex-half .half-right-60 {
  flex-basis: 60%;
  padding-bottom: 40px;
}
.flex-half .half-right-70 {
  flex-basis: 70%;
  padding-bottom: 40px;
}

.circle-image-left {
  display: none;
}
@media screen and (min-width: 768px) {
  .circle-image-left {
    display: block;
    position: absolute;
    top: 10%;
    left: -12%;
    width: 200px;
  }
}
@media screen and (min-width: 1024px) {
  .circle-image-left {
    display: block;
    position: absolute;
    top: 10%;
    left: -8%;
    width: 200px;
  }
}
@media screen and (min-width: 1440px) {
  .circle-image-left {
    display: block;
    position: absolute;
    top: 10%;
    left: -6%;
    width: 200px;
  }
}

.circle-image-right {
  display: none;
}
@media screen and (min-width: 768px) {
  .circle-image-right {
    display: block;
    position: absolute;
    top: 10%;
    right: -12%;
    width: 200px;
  }
}
@media screen and (min-width: 1024px) {
  .circle-image-right {
    display: block;
    position: absolute;
    top: 10%;
    right: -8%;
    width: 200px;
  }
}
@media screen and (min-width: 1440px) {
  .circle-image-right {
    display: block;
    position: absolute;
    top: 10%;
    right: -6%;
    width: 200px;
  }
}

.under-image-left {
  display: none;
}
@media screen and (min-width: 768px) {
  .under-image-left {
    display: block;
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 20%;
  }
}

.sns-box {
  margin: 40px 0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.youtube {
  width: 100%;
  position: relative;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#festival .contents {
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  #festival .contents {
    padding-left: 18%;
  }
}

#symposium-announce .acceptance-link {
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#symposium-announce .acceptance-link img {
  width: 100px;
}
@media screen and (min-width: 768px) {
  #symposium-announce .acceptance-link img {
    width: 200px;
  }
}

@media screen and (min-width: 1024px) {
  #past-events {
    margin-top: 100px;
  }
}
#past-events .movie {
  padding: 0 0 40px 0;
}
@media screen and (min-width: 768px) {
  #past-events .movie {
    padding: 0 80px 80px 80px;
  }
}

@media screen and (min-width: 768px) {
  #lecturer .lecturer-box {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
  }
}
#lecturer .lecturer-box .photo-left img {
  padding: 20px;
}
@media screen and (min-width: 768px) {
  #lecturer .lecturer-box .photo-left img {
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  #lecturer .lecturer-box .photo-left {
    flex-basis: 20%;
    margin-left: 10%;
  }
}
@media screen and (min-width: 768px) {
  #lecturer .lecturer-box .desc-right {
    flex-basis: 80%;
  }
}
#lecturer .lecturer-box .desc-right .name {
  font-size: clamp(1.8rem, 1.2vw, 2.4rem);
  font-weight: 500;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #lecturer .lecturer-box .desc-right .name {
    text-align: left;
  }
}

#application .process .heading {
  font-size: clamp(1.8rem, 1.2vw, 2.4rem);
  font-weight: 500;
  margin-bottom: 20px;
}
#application .process .instruction {
  margin-bottom: 20px;
}
#application .process .deadline {
  font-size: clamp(1.8rem, 1.2vw, 2.4rem);
  font-weight: 500;
  color: #B23232;
}

footer {
  background-color: #B23232;
  color: #FFFFFE;
  padding: 20px;
  text-align: center;
}/*# sourceMappingURL=style.css.map */