@charset "UTF-8";
/* CSS Information
---------------------------------------------------------------
Site URL:https://
File name:style.css
Summary:base styles
Created:2025-08-01
--------------------------------------------------------------- */
/* Fonts */
/* ------------------------------------------------------------ */
/* Margin */
/*  --------------------------------------------- */
/* Link */
/* ------------------------------------------------------------ */
a {
  color: #fff;
  text-decoration: none;
}

a[href^="tel:"] {
  pointer-events: none;
  cursor: text;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

/* Animation */
/* ------------------------------------------------------------ */
a,
img {
  transition: all 0.3s ease;
}

.alpha:hover {
  filter: alpha(opacity=50);
  opacity: 0.5;
}

/* Font */
/* ------------------------------------------------------------ */
sup {
  font-size: 66%;
  font-weight: 700;
  vertical-align: top;
}

sub {
  font-size: 66%;
  font-weight: 700;
  vertical-align: baseline;
}

/* インデント1文字分 */
/* ------------------------------------------------------------ */
.indent {
  text-indent: -1em;
  margin-left: 1em;
}

/* HR */
/* ------------------------------------------------------------ */
hr {
  width: 100%;
  height: 1px;
  margin: 0 auto;
  padding: 0;
  display: block;
  border: 0;
  border-top: 1px #000 solid;
}
@media screen and (max-width: 768px) {
  hr {
    margin: 0 2.604vw;
  }
}

/* pc_mode / sp_mode */
/* ------------------------------------------------------------ */
.pc {
  display: inherit;
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: inherit;
  }
}
/* Style */
/* ------------------------------------------------------------ */
html {
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  font-size: min(1.6vw, 16px);
}
@media screen and (max-width: 768px) {
  html {
    font-size: 4.267vw;
  }
}
html body {
  background-color: #DDE8F0;
}
html body::-webkit-scrollbar {
  display: none;
}
html body section#event h2 {
  color: #fff;
  text-align: center;
  font-size: min(2rem, 32px);
  font-weight: 700;
  width: 100%;
  padding: min(1.5vw, 15px) 0 min(2vw, 20px);
  background: linear-gradient(to bottom, #0D65C9, #0E5191);
  border-radius: min(0.5vw, 5px);
}
@media screen and (max-width: 768px) {
  html body section#event h2 {
    font-size: 1.25rem;
    padding: 1.302vw 0 1.953vw;
    border-radius: 2.083vw;
  }
}
html body section#details h2 {
  color: #fff;
  text-align: center;
  font-size: min(2rem, 32px);
  font-weight: 700;
  width: 100%;
  padding: min(1.5vw, 15px) 0 min(2vw, 20px);
  background: linear-gradient(to bottom, #0D65C9, #0E5191);
  border-radius: min(0.5vw, 5px);
}
@media screen and (max-width: 768px) {
  html body section#details h2 {
    font-size: 1.25rem;
    padding: 1.302vw 0 1.953vw;
    border-radius: 2.083vw;
  }
}
html body section#access h2 {
  color: #fff;
  text-align: center;
  font-size: min(2rem, 32px);
  font-weight: 700;
  width: 100%;
  padding: min(1.5vw, 15px) 0 min(2vw, 20px);
  background: linear-gradient(to bottom, #0D65C9, #0E5191);
  border-radius: min(0.5vw, 5px);
}
@media screen and (max-width: 768px) {
  html body section#access h2 {
    font-size: 1.25rem;
    padding: 1.302vw 0 1.953vw;
    border-radius: 2.083vw;
  }
}
html body section#contact h2 {
  color: #fff;
  text-align: center;
  font-size: min(2rem, 32px);
  font-weight: 700;
  width: 100%;
  padding: min(1.5vw, 15px) 0 min(2vw, 20px);
  background: linear-gradient(to bottom, #0D65C9, #0E5191);
  border-radius: min(0.5vw, 5px);
}
@media screen and (max-width: 768px) {
  html body section#contact h2 {
    font-size: 1.25rem;
    padding: 1.302vw 0 1.953vw;
    border-radius: 2.083vw;
  }
}
html body header {
  width: min(100vw, 1000px);
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body header {
    width: 100%;
  }
}
html body header .inner {
  background: url("../img/mainvisual.png") no-repeat center top/cover;
  width: 100%;
  aspect-ratio: 200/141;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 768px) {
  html body header .inner {
    padding: 0 2.604vw;
  }
}
html body header .inner h1 {
  color: #fff;
  text-align: center;
  font-size: min(4.6875rem, 75px);
  font-weight: 700;
  margin-top: min(5vw, 50px);
}
@media screen and (max-width: 768px) {
  html body header .inner h1 {
    font-size: 2rem;
    margin-top: 3.906vw;
  }
}
html body header .inner h1.fadeup {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
}
html body header .inner h1.fadeup.is-inview {
  opacity: 1;
  transition-delay: 0.5s;
}
html body header .inner h1 small {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  font-size: min(2rem, 32px);
  font-weight: 700;
  margin-bottom: min(4vw, 40px);
}
@media screen and (max-width: 768px) {
  html body header .inner h1 small {
    font-size: 1rem;
    margin-bottom: 2.604vw;
  }
}
html body header .inner h1 small::before {
  content: "";
  width: 1px;
  height: 0.85em;
  background: #fff;
  margin-right: min(1vw, 10px);
}
@media screen and (max-width: 768px) {
  html body header .inner h1 small::before {
    margin-right: 1.302vw;
  }
}
html body header .inner h1 small::after {
  content: "";
  width: 1px;
  height: 0.85em;
  background: #fff;
  margin-left: min(1vw, 10px);
}
@media screen and (max-width: 768px) {
  html body header .inner h1 small::after {
    margin-left: 1.302vw;
  }
}
html body header .inner .free {
  color: #fff;
  font-size: min(2.75rem, 44px);
  font-weight: 700;
  padding: min(1.5vw, 15px) min(3vw, 30px) min(2vw, 20px);
  background: #D51D51;
  border-radius: min(1vw, 10px);
  margin-top: min(4vw, 40px);
}
@media screen and (max-width: 768px) {
  html body header .inner .free {
    font-size: 1rem;
    margin-top: 3.906vw;
  }
}
html body header .inner .ended {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: min(4vw, 40px) 6.51vw;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 1.953vw;
  margin-top: min(4vw, 40px);
}
@media screen and (max-width: 768px) {
  html body header .inner .ended {
    padding: 2.604vw 3.255vw;
    border-radius: 1.953vw;
    margin-top: 3.906vw;
  }
}
html body header .inner .ended .comment {
  text-align: center;
  font-size: min(1.5rem, 24px);
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  html body header .inner .ended .comment {
    font-size: 0.625rem;
  }
}
html body header .inner .ended .btn {
  margin-top: min(2vw, 20px);
}
@media screen and (max-width: 768px) {
  html body header .inner .ended .btn {
    margin-top: 2.083vw;
  }
}
html body header .inner .ended .btn a {
  display: block;
  color: #fff;
  font-size: min(1.25rem, 20px);
  font-weight: 500;
  padding: min(1.5vw, 15px) min(4vw, 40px);
  background: #E81616;
  border-radius: min(5vw, 50px);
}
@media screen and (max-width: 768px) {
  html body header .inner .ended .btn a {
    font-size: 0.75rem;
    padding: 1.302vw 3.906vw;
    border-radius: 6.51vw;
  }
}
html body main {
  width: min(100vw, 1000px);
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main {
    width: 100%;
  }
}
html body main#index section#intro {
  background: rgba(65, 129, 189, 0.9);
}
html body main#index section#intro .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: min(80vw, 800px);
  padding: min(6vw, 60px) 0 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#index section#intro .inner {
    width: 100%;
    padding: 7.813vw 2.604vw 0;
  }
}
html body main#index section#intro .inner .comment {
  color: #fff;
  text-align: center;
  font-size: min(1.5rem, 24px);
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  html body main#index section#intro .inner .comment {
    text-align: left;
    font-size: 1rem;
  }
}
html body main#index section#event {
  background: rgba(65, 129, 189, 0.9);
}
html body main#index section#event .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: min(80vw, 800px);
  padding: min(6vw, 60px) 0 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#index section#event .inner {
    width: 100%;
    padding: 7.813vw 2.604vw 0;
  }
}
html body main#index section#event .inner ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: min(2vw, 20px);
  width: 100%;
  margin-top: min(2vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#index section#event .inner ul {
    gap: 1.302vw;
    margin-top: 2.604vw;
  }
}
html body main#index section#event .inner ul li {
  width: 100%;
}
html body main#index section#event .inner ul li a {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: min(20vw, 200px);
  padding: min(2vw, 20px);
  background: #fff;
  border-radius: min(2vw, 20px);
  border: 2px #0E5191 solid;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#index section#event .inner ul li a {
    height: 25vw;
    padding: 1.302vw;
    border-radius: 1.302vw;
    border: 1px #0E5191 solid;
  }
}
html body main#index section#event .inner ul li a .number {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
html body main#index section#event .inner ul li a .number .event {
  flex-shrink: 0;
  color: #fff;
  text-align: center;
  font-size: min(1.25rem, 20px);
  font-weight: 700;
  padding: min(1vw, 10px);
  background: linear-gradient(to bottom, #0D65C9, #0E5191);
  border-radius: min(0.5vw, 5px);
  margin-right: min(1vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#index section#event .inner ul li a .number .event {
    font-size: 0.5rem;
    padding: 2.083vw;
    border-radius: 2.083vw;
    margin-right: 2.083vw;
  }
}
html body main#index section#event .inner ul li a .number .date {
  background-image: linear-gradient(to bottom, #0D65C9 0%, #0E5191 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-family: "LINE Seed JP";
  font-size: min(1.375rem, 22px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  html body main#index section#event .inner ul li a .number .date {
    font-size: 0.625rem;
  }
}
html body main#index section#event .inner ul li a .number .date mark {
  font-size: 1.6em;
  font-weight: 700;
  vertical-align: baseline;
}
html body main#index section#event .inner ul li a .name {
  color: #000;
  font-family: "LINE Seed JP";
  font-size: min(1.875rem, 30px);
  font-weight: 700;
  line-height: 1.25;
  margin-top: min(1vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#index section#event .inner ul li a .name {
    font-size: 0.875rem;
    margin-top: 1.302vw;
  }
}
html body main#index section#event .inner ul li a .name small {
  font-size: 0.8em;
  font-weight: 700;
}
html body main#index section#event .inner ul li a .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #fff;
  font-family: "LINE Seed JP";
  font-size: min(2rem, 32px);
  font-weight: 700;
  background: rgba(132, 132, 131, 0.7);
}
html body main#index section#event .inner ul li .comingsoon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: min(20vw, 200px);
  padding: min(2vw, 20px);
  color: #fff;
  font-family: "LINE Seed JP";
  font-size: min(1.875rem, 30px);
  font-weight: 700;
  background: rgba(51, 51, 51, 0.88);
  border-radius: min(2vw, 20px);
  border: 2px #0E5191 solid;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#index section#event .inner ul li .comingsoon {
    height: 25vw;
    padding: 1.302vw;
    font-size: 0.875rem;
    border-radius: 1.302vw;
    border: 1px #0E5191 solid;
  }
}
html body main#index section#event .inner .notice {
  color: #fff;
  font-size: min(1.25rem, 20px);
  font-weight: 700;
  margin-top: min(2vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#index section#event .inner .notice {
    font-size: 0.75rem;
    margin-top: 2.604vw;
  }
}
html body main#index section#details {
  background: rgba(65, 129, 189, 0.9);
}
html body main#index section#details .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: min(80vw, 800px);
  padding: min(6vw, 60px) 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#index section#details .inner {
    width: 100%;
    padding: 7.813vw 2.604vw;
  }
}
html body main#index section#details .inner .ended {
  color: #fff;
  font-size: min(2.25rem, 36px);
  font-weight: 700;
  margin-bottom: min(3vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#index section#details .inner .ended {
    font-size: 1rem;
    margin-bottom: 3.906vw;
  }
}
html body main#index section#details .inner dl {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: min(1vw, 10px);
  width: 100%;
}
@media screen and (max-width: 768px) {
  html body main#index section#details .inner dl {
    gap: 1.302vw;
  }
}
html body main#index section#details .inner dl:nth-of-type(n+2) {
  margin-top: min(3vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#index section#details .inner dl:nth-of-type(n+2) {
    margin-top: 2.604vw;
  }
}
html body main#index section#details .inner dl dt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: min(14vw, 140px);
  padding: 0 min(2vw, 20px);
  background: #fff;
  border-radius: min(2vw, 20px);
  cursor: pointer;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  html body main#index section#details .inner dl dt {
    height: 20vw;
    padding: 0 1.302vw;
    border-radius: 1.302vw;
  }
}
html body main#index section#details .inner dl dt .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-right: min(2vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#index section#details .inner dl dt .title {
    margin-right: 1.302vw;
  }
}
html body main#index section#details .inner dl dt .title .number {
  flex-shrink: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
html body main#index section#details .inner dl dt .title .number .event {
  flex-shrink: 0;
  color: #fff;
  text-align: center;
  font-size: min(1.25rem, 20px);
  font-weight: 700;
  padding: min(1vw, 10px);
  background: linear-gradient(to bottom, #0D65C9, #0E5191);
  border-radius: min(0.5vw, 5px);
  margin-right: min(1vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#index section#details .inner dl dt .title .number .event {
    font-size: 0.5rem;
    padding: 2.083vw;
    border-radius: 2.083vw;
    margin-right: 2.083vw;
  }
}
html body main#index section#details .inner dl dt .title .number div {
  text-align: center;
}
html body main#index section#details .inner dl dt .title .number div .date {
  background-image: linear-gradient(to bottom, #0D65C9 0%, #0E5191 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-family: "LINE Seed JP";
  font-size: min(1.375rem, 22px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  html body main#index section#details .inner dl dt .title .number div .date {
    font-size: 0.625rem;
  }
}
html body main#index section#details .inner dl dt .title .number div .date mark {
  font-size: 1.6em;
  font-weight: 700;
  vertical-align: baseline;
}
html body main#index section#details .inner dl dt .title .number div .time1 {
  background-image: linear-gradient(to bottom, #0D65C9 0%, #0E5191 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-family: "LINE Seed JP";
  font-size: min(1.375rem, 22px);
  font-weight: 700;
  margin-top: min(0.5vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#index section#details .inner dl dt .title .number div .time1 {
    font-size: 0.625rem;
    margin-top: 1vw;
  }
}
html body main#index section#details .inner dl dt .title .number div .time2 {
  background-image: linear-gradient(to bottom, #0D65C9 0%, #0E5191 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-family: "LINE Seed JP";
  font-size: min(1.125rem, 18px);
  font-weight: 700;
  margin-top: min(0.5vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#index section#details .inner dl dt .title .number div .time2 {
    font-size: 0.625rem;
    margin-top: 1vw;
  }
}
html body main#index section#details .inner dl dt .title .name {
  width: 50%;
  color: #000;
  font-family: "LINE Seed JP";
  font-size: min(1.625rem, 26px);
  font-weight: 700;
  line-height: 1.25;
}
@media screen and (max-width: 768px) {
  html body main#index section#details .inner dl dt .title .name {
    width: 50%;
    font-size: 0.875rem;
  }
}
html body main#index section#details .inner dl dt .title .name small {
  font-size: 0.8em;
  font-weight: 700;
}
html body main#index section#details .inner dl dt .circle-arrow {
  flex-shrink: 0;
  width: min(4vw, 40px);
  height: min(4vw, 40px);
  background: #0E5191;
  border-radius: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  html body main#index section#details .inner dl dt .circle-arrow {
    width: 2.604vw;
    height: 2.604vw;
  }
}
html body main#index section#details .inner dl dt .circle-arrow::before {
  content: "";
  width: 0;
  height: 0;
  border-left: min(0.8vw, 8px) solid transparent;
  border-right: min(0.8vw, 8px) solid transparent;
  border-top: min(1vw, 10px) solid #fff;
  border-bottom: none;
}
@media screen and (max-width: 768px) {
  html body main#index section#details .inner dl dt .circle-arrow::before {
    border-left: 0.781vw solid transparent;
    border-right: 0.781vw solid transparent;
    border-top: 1.042vw solid #fff;
  }
}
html body main#index section#details .inner dl dt.active .circle-arrow::before {
  content: "";
  width: 0;
  height: 0;
  border-left: min(0.8vw, 8px) solid transparent;
  border-right: min(0.8vw, 8px) solid transparent;
  border-top: none;
  border-bottom: min(1vw, 10px) solid #fff;
}
@media screen and (max-width: 768px) {
  html body main#index section#details .inner dl dt.active .circle-arrow::before {
    border-left: 0.781vw solid transparent;
    border-right: 0.781vw solid transparent;
    border-bottom: 1.042vw solid #fff;
  }
}
html body main#index section#details .inner dl dd {
  display: none;
  width: 100%;
  padding: min(3vw, 30px) min(2vw, 20px);
  background: #fff;
  border-radius: min(2vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#index section#details .inner dl dd {
    padding: 3.906vw 2.604vw;
    border-radius: 1.302vw;
  }
}
html body main#index section#details .inner dl dd .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
html body main#index section#details .inner dl dd .wrapper .enddisp {
  color: #E81616;
  font-size: min(2.5rem, 40px);
  font-weight: 700;
  margin-top: min(3vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#index section#details .inner dl dd .wrapper .enddisp {
    font-size: 1rem;
    margin-top: 3.906vw;
  }
}
html body main#index section#details .inner dl dd .wrapper h3 {
  text-align: center;
  color: #0E5191;
  font-size: min(2.5rem, 40px);
  font-weight: 700;
  line-height: 1.25;
  width: 100%;
  padding-bottom: min(2vw, 20px);
  border-bottom: 1px #0E5191 solid;
  margin-top: min(3vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#index section#details .inner dl dd .wrapper h3 {
    font-size: 1.125rem;
    padding-bottom: 1.302vw;
    margin-top: 3.906vw;
  }
}
html body main#index section#details .inner dl dd .wrapper h3 small {
  font-size: 0.8em;
  font-weight: 700;
}
html body main#index section#details .inner dl dd .wrapper .subheading {
  text-align: left;
  color: #0E5191;
  font-size: min(1.375rem, 22px);
  font-weight: 700;
  line-height: 1.25;
  margin-top: min(2vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#index section#details .inner dl dd .wrapper .subheading {
    font-size: 0.875rem;
    margin-top: 1.302vw;
  }
}
html body main#index section#details .inner dl dd .wrapper .profilearea {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: min(2vw, 20px);
  width: 100%;
  margin-top: min(2vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#index section#details .inner dl dd .wrapper .profilearea {
    gap: 1.302vw;
    width: 100%;
    margin-top: 2.604vw;
  }
}
html body main#index section#details .inner dl dd .wrapper .profilearea > div > div {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  html body main#index section#details .inner dl dd .wrapper .profilearea > div > div {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
}
html body main#index section#details .inner dl dd .wrapper .profilearea > div > div .lecturer {
  flex-shrink: 0;
  color: #fff;
  text-align: center;
  font-size: min(1.25rem, 20px);
  font-weight: 700;
  padding: min(0.5vw, 5px) min(2vw, 20px);
  background: #0E5191;
  border-radius: min(0.5vw, 5px);
  margin: 0 min(2vw, 20px) min(0.5vw, 5px) 0;
}
@media screen and (max-width: 768px) {
  html body main#index section#details .inner dl dd .wrapper .profilearea > div > div .lecturer {
    font-size: 0.5rem;
    padding: 2.083vw 2.604vw;
    border-radius: 2.083vw;
    margin: 0 0 1.302vw;
  }
}
html body main#index section#details .inner dl dd .wrapper .profilearea > div > div .name {
  font-size: min(3.125rem, 50px);
  font-weight: 700;
  line-height: 1.25;
}
@media screen and (max-width: 768px) {
  html body main#index section#details .inner dl dd .wrapper .profilearea > div > div .name {
    font-size: 1.5rem;
  }
}
html body main#index section#details .inner dl dd .wrapper .profilearea > div > div .name small {
  font-size: 0.6em;
  font-weight: 700;
  margin-left: min(0.5vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#index section#details .inner dl dd .wrapper .profilearea > div > div .name small {
    margin-left: 2.083vw;
  }
}
html body main#index section#details .inner dl dd .wrapper .profilearea > div .affiliation {
  font-size: min(1.5rem, 24px);
  font-weight: 700;
  line-height: 1.5;
  margin-top: min(2vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#index section#details .inner dl dd .wrapper .profilearea > div .affiliation {
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 1.302vw;
  }
}
html body main#index section#details .inner dl dd .wrapper .profilearea figure {
  flex-shrink: 0;
  width: min(25vw, 250px);
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#index section#details .inner dl dd .wrapper .profilearea figure {
    width: 30vw;
  }
}
html body main#index section#details .inner dl dd .wrapper .profilearea figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
html body main#index section#details .inner dl dd .wrapper .imgarea {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: min(2vw, 20px);
  width: 100%;
  margin-top: min(2vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#index section#details .inner dl dd .wrapper .imgarea {
    gap: 2.604vw;
    margin-top: 2.604vw;
  }
}
html body main#index section#details .inner dl dd .wrapper .imgarea figure {
  width: 100%;
  aspect-ratio: 356/201;
  position: relative;
}
html body main#index section#details .inner dl dd .wrapper .imgarea figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
html body main#index section#details .inner dl dd .wrapper .btnarea {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: min(2vw, 20px);
  width: 100%;
  margin-top: min(2vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#index section#details .inner dl dd .wrapper .btnarea {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.604vw;
    margin-top: 2.604vw;
  }
}
html body main#index section#details .inner dl dd .wrapper .btnarea .btn {
  width: 100%;
}
html body main#index section#details .inner dl dd .wrapper .btnarea .btn a {
  display: block;
  color: #fff;
  text-align: center;
  font-size: min(1.25rem, 20px);
  font-weight: 700;
  padding: min(2vw, 20px) 0;
  border-radius: min(0.5vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#index section#details .inner dl dd .wrapper .btnarea .btn a {
    font-size: 0.875rem;
    padding: 5.208vw 0;
    border-radius: 2.083vw;
  }
}
html body main#index section#details .inner dl dd .wrapper .btnarea .btn:nth-of-type(1) a {
  background: #11A699;
}
html body main#index section#details .inner dl dd .wrapper .btnarea .btn:nth-of-type(2) a {
  background: #CF4A02;
}
html body main#index section#details .inner dl dd .wrapper .btnarea .btnNot {
  background: #82807f;
  display: block;
  color: #fff;
  text-align: center;
  font-size: min(1.25rem, 20px);
  font-weight: 700;
  padding: min(2vw, 20px) 0;
  border-radius: min(0.5vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#index section#details .inner dl dd .wrapper .btnarea .btnNot {
    font-size: 0.875rem;
    padding: 5.208vw 0;
    border-radius: 2.083vw;
  }
}
html body main#index section#details .inner dl dd .wrapper .comment {
  width: 100%;
  font-size: min(1.375rem, 22px);
  line-height: 1.75;
  margin-top: min(2vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#index section#details .inner dl dd .wrapper .comment {
    font-size: 0.75rem;
    margin-top: 2.604vw;
  }
}
html body main#index section#details .inner dl dd .wrapper .comment em {
  font-weight: 700;
}
html body main#index section#details .inner .comingsoon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: min(14vw, 140px);
  background: rgba(51, 51, 51, 0.88);
  border-radius: min(2vw, 20px);
  color: #fff;
  font-family: "LINE Seed JP";
  font-size: min(1.875rem, 30px);
  font-weight: 700;
  margin-top: min(3vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#index section#details .inner .comingsoon {
    height: 20vw;
    border-radius: 1.302vw;
    font-size: 0.875rem;
    margin-top: 2.604vw;
  }
}
html body footer {
  width: min(100vw, 1000px);
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body footer {
    width: 100%;
  }
}
html body footer section#access {
  background: #fff;
}
html body footer section#access .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: min(80vw, 800px);
  padding: min(6vw, 60px) 0 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body footer section#access .inner {
    width: 100%;
    padding: 7.813vw 2.604vw 0;
  }
}
html body footer section#access .inner figure {
  width: 100%;
  margin-top: min(2vw, 20px);
}
@media screen and (max-width: 768px) {
  html body footer section#access .inner figure {
    margin-top: 2.604vw;
  }
}
html body footer section#access .inner figure figcaption {
  margin-top: min(3vw, 30px);
}
@media screen and (max-width: 768px) {
  html body footer section#access .inner figure figcaption {
    margin-top: 2.604vw;
  }
}
html body footer section#access .inner figure figcaption .organizer {
  text-align: center;
  font-size: min(1.5rem, 24px);
  line-height: 1.25;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  html body footer section#access .inner figure figcaption .organizer {
    font-size: 1rem;
  }
}
html body footer section#access .inner figure figcaption .organizer small {
  display: block;
  font-size: 0.7em;
  font-weight: 700;
  margin-top: min(1vw, 10px);
}
@media screen and (max-width: 768px) {
  html body footer section#access .inner figure figcaption .organizer small {
    margin-top: 1.302vw;
  }
}
html body footer section#contact {
  background: #fff;
}
html body footer section#contact .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: min(80vw, 800px);
  padding: min(6vw, 60px) 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body footer section#contact .inner {
    width: 100%;
    padding: 7.813vw 2.604vw;
  }
}
html body footer section#contact .inner #email {
  margin-top: min(2vw, 20px);
}
@media screen and (max-width: 768px) {
  html body footer section#contact .inner #email {
    margin-top: 2.604vw;
  }
}
html body footer section#contact .inner #email a {
  text-align: center;
  color: #000;
  font-size: min(1.5rem, 24px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  html body footer section#contact .inner #email a {
    font-size: 1rem;
  }
}/*# sourceMappingURL=style.css.map */