@charset "UTF-8";
* {
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  /*webkit系ブラウザのデフォルトスタイル*/
}

::before,
::after {
  box-sizing: inherit;
}

b {
  font-weight: bold;
}

u {
  text-underline-offset: 4px;
}

html {
  font-size: 1rem;
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

/*背景 footer下*/
.bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-image: url("../img/4.jpg");
  background-color: rgba(255, 255, 255, 0.7);
  background-blend-mode: overlay;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -99;
  transform: translateZ(0);
}

@supports (background-image: url("../img/4.webp")) {
  .bg {
    background-image: url("../img/4.webp");
  }
}
body {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
  grid-template-columns: 100%;
  min-height: 100vh;
  scrollbar-color: #57a8b9 #ffffff;
}
body::-webkit-scrollbar-track {
  background-color: #ffffff;
  border: 5px solid #ffffff;
}
body::-webkit-scrollbar-thumb {
  background-color: #57a8b9;
}

a {
  text-underline-offset: 4px;
  color: #ff8126;
}
a[href^=http]::after {
  display: inline-block;
  content: url(../img/link.svg);
  width: 12px;
  height: 12px;
  left: 5px;
  position: relative;
  margin-right: 10px;
  z-index: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  border-top: 1px solid #57a8b9;
  border-right: 1px solid #57a8b9;
}
table caption {
  font-family: "Zen Old Mincho", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  text-align: left;
  font-size: 1.5rem;
  line-height: 1.3;
  border-left: 4px solid #57a8b9;
  margin-bottom: 1.5rem;
  padding-left: 0.5rem;
}
table th, table td {
  border-left: 1px solid #57a8b9;
  border-bottom: 1px solid #57a8b9;
  padding: 0.5rem;
}
table th {
  background-color: #afdee8;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
table td {
  background-color: #ffffff;
  line-height: 1.5rem;
}

p {
  margin-top: 0;
  margin-block-start: 0;
}

.wrapper {
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  margin: 0 auto;
}
@media screen and (min-width:769px) {
  .wrapper {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    justify-content: space-between;
    column-gap: 40px;
    padding: 0 16px;
  }
}
@media screen and (min-width:1000px) {
  .wrapper {
    column-gap: 4%;
    padding: 0;
  }
}

header {
  position: absolute;
  padding: 1rem;
  width: 100%;
  background-color: transparent;
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media screen and (min-width:769px) {
  header {
    padding: 40px 0 72px;
    align-items: flex-start;
    max-width: 252px;
    position: sticky;
    top: 0;
  }
}
header .header__container {
  display: flex;
  margin: 0 auto;
  width: 100%;
  justify-content: space-between;
}
@media screen and (min-width:769px) {
  header .header__container {
    flex-direction: column;
  }
}

.logo {
  display: contents;
}
@media screen and (min-width:769px) {
  .logo {
    padding: 0 1.5rem 40px;
    display: block;
  }
}
.logo a {
  text-decoration: none;
  color: #000000;
}
.logo a img {
  transform: translateZ(0);
  height: 50px;
}
@media screen and (min-width:769px) {
  .logo a img {
    height: 100%;
  }
}

nav {
  line-height: 2;
  padding: 10px 0;
  z-index: 10;
}
@media screen and (min-width:769px) {
  nav {
    background-color: #ffffff;
  }
}
nav .menu-toggle {
  display: none;
}
nav .menu-toggle ~ ul {
  background-color: transparent;
  position: absolute;
  display: none;
  margin: 0;
  top: 0;
  left: 0;
  margin-top: 86px;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  padding-left: 0;
  list-style: none;
}
@media screen and (min-width:769px) {
  nav .menu-toggle ~ ul {
    background-color: #ffffff;
    display: flex;
    margin: 0;
    padding: 0.5rem 0;
    position: relative;
    justify-content: space-between;
  }
}
nav .menu-toggle ~ ul li {
  display: flex;
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  list-style: none;
}
@media screen and (min-width:769px) {
  nav .menu-toggle ~ ul li {
    height: auto;
    display: inline-block;
    margin: 0;
    padding: 0.5rem 1.5rem;
    overflow: hidden;
  }
}
nav .menu-toggle ~ ul li a {
  color: #000000;
  text-underline-offset: 4px;
  text-decoration: none;
  display: block;
  width: 100%;
  padding: 0;
}
nav .menu-toggle ~ ul li:hover {
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 4px;
}
nav .menu-toggle ~ ul li:visited {
  color: #000000;
  text-underline-offset: 4px;
}
nav .menu-toggle:checked ~ ul {
  display: block;
}
nav .menu-toggle:checked ~ ul li {
  background-color: #ffffff;
  height: auto;
  padding: 0.75rem 1.5rem;
  transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
}
nav .menu-toggle:checked ~ ul li:first-of-type {
  padding-top: 0;
}
nav .menu-toggle:checked ~ ul li:last-of-type {
  padding-bottom: 2rem;
}
@media screen and (min-width:769px) {
  nav .menu-toggle:checked ~ ul li {
    padding: 0.5rem 1.5rem;
  }
  nav .menu-toggle:checked ~ ul li:first-of-type {
    padding-top: 1.5rem;
  }
}
nav .menu-toggle:checked + .menu-button-container .menu-button, nav .menu-toggle:checked + .menu-button-container .menu-button::after, nav .menu-toggle:checked + .menu-button-container .menu-button::before {
  background: rgba(0, 0, 0, 0);
}
nav .menu-toggle:checked + .menu-button-container .menu-button::before {
  background-color: black;
  margin-top: 0px;
  transform: rotate(135deg);
}
nav .menu-toggle:checked + .menu-button-container .menu-button::after {
  background: black;
  margin-top: 0px;
  transform: rotate(-135deg);
}
nav .menu-button-container {
  display: flex;
  height: 30px;
  width: 30px;
  position: relative;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width:769px) {
  nav .menu-button-container {
    display: none;
    margin: 0;
  }
}
nav .menu-button-container .menu-button, nav .menu-button-container .menu-button::after, nav .menu-button-container .menu-button::before {
  display: block;
  background-color: #000000;
  position: absolute;
  height: 1px;
  width: 30px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}
nav .menu-button-container .menu-button::before {
  content: "";
  margin-top: -13px;
}
nav .menu-button-container .menu-button::after {
  content: "";
  margin-top: 13px;
}

main {
  width: 100%;
  color: #000000;
  padding-top: 90px;
  line-height: 1.8;
}
@media screen and (min-width:769px) {
  main {
    padding: 0px 0 0;
    max-width: calc(100% - 252px);
    line-height: 2;
  }
}
main section {
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
}
@media screen and (min-width:769px) {
  main section {
    padding: 0;
  }
}
main h1, main h2, main h3, main h4, main h5, main h6 {
  margin: 0;
  font-family: "Zen Old Mincho", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
main h1 {
  font-size: 2.5rem;
  padding: 0 0 2.5rem 0;
  line-height: 1;
}
@media screen and (min-width:769px) {
  main h1 {
    padding: 40px 1.5rem 2.5rem;
    margin-bottom: 48px;
  }
}
main h1 .subtitle {
  content: attr(data-en);
  line-height: 1;
  position: absolute;
  top: 60px;
  left: 0%;
  transform: translateX(0%);
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(2.5rem, 2.5rem + 9vw, 12.5rem);
  z-index: -90;
  transform: translateZ(0);
}
@media screen and (min-width:769px) {
  main h1 .subtitle {
    top: -32px;
    color: rgba(255, 255, 255, 0.5);
  }
}
main h2 {
  font-size: 2rem;
  line-height: 1.3;
  padding: 0 1rem 0.5rem 0;
  margin-bottom: 2rem;
  border-bottom: 1px solid #999999;
}
main h3 {
  font-size: 1.5rem;
  border-left: 4px solid #57a8b9;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  padding-left: 0.5rem;
}
main article {
  margin: 0 0 2.5rem;
}
main article:last-of-type {
  margin-bottom: 4rem;
}
@media screen and (min-width:769px) {
  main article:last-of-type {
    margin-bottom: 4.5rem;
  }
}
main article p:first-of-type {
  margin-top: 0;
}
main .article__contents {
  padding: 0.5rem 1rem;
}
@media screen and (min-width:769px) {
  main .article__contents {
    padding: 1rem 1.5rem;
  }
}
main .article__contents__outer {
  margin-bottom: 3rem;
}
main .article__contents__outer:last-child {
  margin-bottom: 0;
}
main .article__contents__outer h3 {
  margin-bottom: 1rem;
}

noscript img {
  vertical-align: middle;
}

footer {
  width: 100%;
  background-color: #57a8b9;
  color: #ffffff;
}
footer #footer-area {
  display: flex;
  width: auto;
  margin: 0 1rem;
  padding: 40px 0;
}
@media screen and (min-width:769px) {
  footer #footer-area {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 72px 24px 40px 324px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    column-gap: 1.5rem;
  }
}
@media screen and (max-width:960px) {
  footer #footer-area {
    row-gap: 1.5rem;
    justify-content: left;
    flex-direction: column;
    align-items: stretch;
  }
}
footer address {
  font-style: normal;
}
footer address .address__name {
  margin-bottom: 0.5em;
  font-size: 18px;
}
footer address .address__flocation {
  font-size: 14px;
}
footer small {
  font-size: 13px;
}
footer small span {
  display: inline-block;
}

/*TOP*/
#top header {
  z-index: 99;
  transform: translateZ(0);
}
@media screen and (min-width:769px) {
  #top header {
    padding: 40px 0 72px;
  }
}
@media screen and (min-width:769px) {
  #top header .header__container {
    flex-direction: column;
  }
}
#top header .logo {
  display: block;
}
#top header nav .menu-button-container {
  height: 30px;
}
#top header nav .menu-toggle ~ ul {
  margin-top: 82px;
}
@media screen and (min-width:769px) {
  #top header nav .menu-toggle ~ ul {
    margin-top: 0;
  }
}
#top header nav .menu-toggle:checked + .menu-button-container .menu-button, #top header nav .menu-toggle:checked + .menu-button-container .menu-button::before, #top header nav .menu-toggle:checked + .menu-button-container .menu-button::after {
  background: rgba(0, 0, 0, 0);
}
#top header nav .menu-toggle:checked + .menu-button-container .menu-button::before {
  background-color: black;
  margin-top: 0px;
  transform: rotate(135deg);
}
#top header nav .menu-toggle:checked + .menu-button-container .menu-button::after {
  background: black;
  margin-top: 0px;
  transform: rotate(-135deg);
}
#top .visual {
  width: 100%;
  margin-top: 82px;
  margin-left: 0;
  margin-right: 0;
}
#top .visual img {
  width: 100%;
  object-fit: cover;
  margin: 0 auto;
  display: block;
}
@media screen and (min-width:769px) {
  #top .visual img {
    height: 100vh;
    width: auto !important;
    margin-top: 0;
  }
}
#top main {
  padding-top: 0;
}
@media screen and (min-width:769px) {
  #top main article {
    padding: 0 0;
  }
}
@media screen and (min-width:769px) {
  #top main article:first-of-type {
    margin-top: 0;
  }
}
#top main .top-area {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
}
@media screen and (min-width:769px) {
  #top main .top-area {
    padding: 0;
  }
}
#top main .top-area .information {
  background-color: #ffffff;
  padding: 1.5rem;
  width: 100%;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 24px;
}
#top main .top-area .information:hover {
  opacity: 0.7 !important;
}
@media screen and (min-width:769px) {
  #top main .top-area .information {
    max-width: 520px;
  }
}
#top main .top-area .information .fadein {
  opacity: 1;
}
#top main .top-area .news {
  width: fit-content;
  margin: 0 0 72px;
  width: 100%;
}
#top main .top-area .news h2 {
  font-family: "Zen Old Mincho", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 32px;
  padding-left: 0;
  padding-bottom: 0;
  margin-left: 0;
  line-height: 1;
  border-bottom: 0;
}
@media screen and (min-width:769px) {
  #top main .top-area .news h2 {
    padding-left: 1.5rem;
  }
}
#top main .top-area .news ul {
  background-color: #ffffff;
  margin: 0 auto;
  overflow-y: scroll;
  border: 1rem solid #ffffff;
  max-height: 280px;
  padding-inline-start: 0;
}
@media screen and (min-width:769px) {
  #top main .top-area .news ul {
    padding: 0.5rem;
    width: 100%;
  }
}
#top main .top-area .news li {
  list-style: none;
  display: flex;
  margin-inline-start: 0;
  flex-direction: row;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}
@media screen and (min-width:769px) {
  #top main .top-area .news li {
    margin: 0 0 1.5rem 0;
    flex-wrap: nowrap;
  }
}
#top main .top-area .news li:first-of-type {
  margin-top: 0;
}
#top main .top-area .news li:last-of-type {
  margin-bottom: 0;
}
#top main .top-area .news li time {
  font-size: 14px;
  margin: 0;
  width: 100%;
}
@media screen and (min-width:769px) {
  #top main .top-area .news li time {
    display: inline-block;
    margin: 0 2.5rem 0 0;
    width: 5em;
  }
}
#top main .top-area .news li p {
  margin: 0;
}
@media screen and (min-width:769px) {
  #top main .top-area .news li p {
    display: block;
    width: 100%;
  }
}

/*ご挨拶*/
#greeting .message__container.article__contents {
  background-color: #ffffff;
}
#greeting .message__profile {
  display: flex;
  flex-direction: column;
  column-gap: 2.5rem;
  row-gap: 2rem;
}
@media screen and (min-width:769px) {
  #greeting .message__profile {
    flex-direction: row-reverse;
    align-items: flex-end;
    justify-content: center;
  }
}
#greeting .message__profile picture, #greeting .message__profile img {
  width: auto;
  height: 200px;
  margin: 0 auto;
  image-rendering: -webkit-optimize-contrast;
}
@media screen and (min-width:769px) {
  #greeting .message__profile picture, #greeting .message__profile img {
    margin: 0;
  }
}
#greeting .message__profile .message__position {
  margin: 0;
  display: flex;
  flex-direction: column;
}
#greeting .message__profile .message__position .position__title {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
#greeting .message__profile .message__position .position__name {
  font-size: 1.5rem;
  margin-bottom: 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
#greeting .message__profile .message__position .position__name span {
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}
#greeting .message__comment p {
  margin-block-end: 1.5rem;
  margin-top: 0;
}
#greeting .message__comment p:last-of-type {
  margin-bottom: 0;
}

/*開催概要*/
#overview .article__contents {
  padding: 0;
}
#overview .overview__container table.overview__list {
  border: 0;
  margin: 0 auto;
  width: 100%;
}
#overview .overview__container table.overview__list tr {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  border: 0;
}
@media screen and (min-width:769px) {
  #overview .overview__container table.overview__list tr {
    margin-bottom: 0;
    flex-direction: row;
  }
}
#overview .overview__container table.overview__list tr:last-child {
  margin-bottom: 0;
}
#overview .overview__container table.overview__list tr th {
  width: 100%;
  text-align: left;
  line-height: 1.5rem;
  border: 1px solid #57a8b9;
  padding: 1rem 1rem;
}
@media screen and (min-width:769px) {
  #overview .overview__container table.overview__list tr th {
    width: 20%;
    margin-bottom: -1px;
  }
}
#overview .overview__container table.overview__list tr td {
  width: 100%;
  background-color: #ffffff;
  border-right: 1px solid #57a8b9;
  padding: 1rem;
}
@media screen and (min-width:769px) {
  #overview .overview__container table.overview__list tr td {
    width: 80%;
    margin-left: -1px;
    margin-bottom: -1px;
    border: 1px solid #57a8b9;
  }
}

/*参加登録*/
#registration .registration-area h1 .subtitle {
  top: 65px;
  font-size: clamp(23px, 23px + 9vw, 10rem);
}
@media screen and (min-width:769px) {
  #registration .registration-area h1 .subtitle {
    top: -24px;
  }
}
#registration .registration__container {
  background-color: #ffffff;
  padding: 1rem 1.5rem 1.5rem;
}
#registration .registration__container .registration__url a {
  word-wrap: break-word;
}
#registration .registration__container .registration__apply__form {
  text-align: center;
  display: flex;
}
#registration .registration__container .registration__apply__form a {
  letter-spacing: 0.05rem;
  padding-top: 10px;
  padding-bottom: 11px;
}

/*演題募集*/
#abstract .abstract__container {
  background-color: #ffffff;
}
#abstract .abstract__about {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
#abstract .abstract__about a div {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 1rem;
}
#abstract .abstract__period span {
  display: inline-block;
}
#abstract .abstract__apply__form {
  text-align: center;
  display: flex;
}
#abstract .abstract__apply__form a {
  letter-spacing: 0.05rem;
  padding-top: 10px;
  padding-bottom: 11px;
}
#abstract .abstract__description .description_samples, #abstract .abstract__description_en .description_samples {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
  margin-bottom: 1rem;
}
#abstract .abstract__description .description_samples a, #abstract .abstract__description_en .description_samples a {
  letter-spacing: 0.05rem;
}
#abstract .abstract__description ol, #abstract .abstract__description_en ol {
  padding-left: 24px;
}
@media screen and (min-width:469px) {
  #abstract .abstract__description ol, #abstract .abstract__description_en ol {
    padding-left: 40px;
  }
}
#abstract .abstract__contact .contact_number {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media screen and (min-width:469px) {
  #abstract .abstract__contact .contact_number {
    gap: 1rem;
  }
}

/*プログラム*/
@media screen and (min-width:769px) {
  #program .program-area h1 .subtitle {
    top: -32px;
  }
}
#program .program__container {
  background-color: #ffffff;
  padding: 1rem 1.5rem 1.5rem;
}
#program .program__nittei a.orange-button {
  padding: 0.5rem 1rem 0.6rem;
  max-width: 280px;
  width: 100%;
}
#program .program__TL a.blue-button {
  max-width: 280px;
  width: 100%;
}
#program .pdf-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  row-gap: 1rem;
}

/*参加者へのご案内*/
#participants .participants-area h1 .subtitle {
  font-size: clamp(2.5rem, 2rem + 9vw, 12.5rem);
}
@media screen and (max-width:415px) {
  #participants .participants-area h1 .subtitle {
    top: 100px;
    /*
    font-size: 50px;
    */
    font-size: clamp(50px, 24px + 9vw, 65px);
  }
}
@media screen and (min-width:769px) {
  #participants .participants-area h1 .subtitle {
    top: -16px;
    font-size: clamp(1rem, 1rem + 8.3vw, 10rem);
  }
}
@media screen and (min-width: 905px) {
  #participants .participants-area h1 .subtitle {
    top: -16px;
    font-size: clamp(0.8rem, 1.3rem + 9vw, 12.5rem);
  }
}
#participants .participants__container {
  background-color: #ffffff;
  padding: 1rem 1.5rem 1.5rem;
}
#participants .participants__container .participation__fee-list table {
  width: 100%;
  border-right: 0px;
  border-top: 0px;
}
@media screen and (min-width:769px) {
  #participants .participants__container .participation__fee-list table {
    border-top: 1px solid #57a8b9;
  }
}
#participants .participants__container .participation__fee-list table tbody {
  display: flex;
  width: 100%;
  flex-direction: column;
  row-gap: 2rem;
}
@media screen and (min-width:769px) {
  #participants .participants__container .participation__fee-list table tbody {
    row-gap: 0;
  }
}
#participants .participants__container .participation__fee-list table th, #participants .participants__container .participation__fee-list table td {
  box-sizing: border-box;
  line-height: 1.3;
}
#participants .participants__container .participation__fee-list table tr.fee-list__sub-th {
  display: none;
}
@media screen and (min-width:769px) {
  #participants .participants__container .participation__fee-list table tr.fee-list__sub-th {
    display: flex;
  }
  #participants .participants__container .participation__fee-list table tr.fee-list__sub-th th:first-of-type {
    width: 12em;
  }
  #participants .participants__container .participation__fee-list table tr.fee-list__sub-th th {
    width: calc((100% - 12em) / 2);
  }
}
#participants .participants__container .participation__fee-list table tr {
  display: flex;
  flex-wrap: wrap;
  border-right: 1px solid #57a8b9;
  border-top: 1px solid #57a8b9;
}
@media screen and (min-width:769px) {
  #participants .participants__container .participation__fee-list table tr {
    border-top: 0px;
  }
}
#participants .participants__container .participation__fee-list table th {
  display: block;
  width: 100%;
}
@media screen and (min-width:769px) {
  #participants .participants__container .participation__fee-list table th {
    display: block;
    width: 12em;
  }
}
#participants .participants__container .participation__fee-list table td {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: right;
  padding: 0 0.5rem 0 0 !important;
  width: 100%;
}
@media screen and (min-width:769px) {
  #participants .participants__container .participation__fee-list table td {
    display: block;
    width: calc((100% - 12em) / 2);
    padding: 0.5rem !important;
  }
}
#participants .participants__container .participation__fee-list table td::before {
  content: attr(data-label);
  display: block;
  background: #afdee8;
  height: 100%;
  padding: 10px;
  width: 8em;
  text-align: center;
  border-right: 1px solid #57a8b9;
  margin-right: 0.5rem;
  font-weight: bold;
}
@media screen and (min-width:769px) {
  #participants .participants__container .participation__fee-list table td::before {
    display: none;
  }
}

/*発表者・座長へのご案内*/
#speakers .speakers-area h1 .subtitle {
  top: 80px;
}
@media screen and (min-width:769px) {
  #speakers .speakers-area h1 .subtitle {
    top: -32px;
  }
}
#speakers .speakers__container {
  background-color: #ffffff;
  padding: 1rem 1.5rem 1.5rem;
}
#speakers .speakers__container .speakers__for-everyone .pdf-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  row-gap: 1rem;
}

/*会場案内*/
#access .access-area h1 .subtitle {
  font-size: clamp(2.5rem, 2.5rem + 9vw, 12.5rem);
}
#access .access__container {
  background-color: #ffffff;
}
#access .access__container .access__map iframe {
  margin-top: 0.5rem;
  border: 1px solid #999999 !important;
}
#access .access__container ul {
  padding-left: 1.5rem;
}

/*近隣託児所のご案内*/
#childcare-center .childcare-area h1 {
  font-size: 40px;
}
#childcare-center .childcare-area h1 .subtitle {
  top: 55px;
  left: 0.8rem;
}
@media screen and (max-width:415px) {
  #childcare-center .childcare-area h1 .subtitle {
    top: 95px;
    font-size: 53px;
  }
}
@media screen and (min-width:769px) {
  #childcare-center .childcare-area h1 .subtitle {
    top: -16px;
    font-size: clamp(0.8rem, 0.8rem + 9vw, 12.5rem);
  }
}
@media screen and (min-width:1000px) {
  #childcare-center .childcare-area h1 .subtitle {
    top: -32px;
  }
}
#childcare-center .childcare__container {
  background-color: #ffffff;
  padding: 1rem 1.5rem 1.5rem;
  /*
  .childcare__list{
    width: 100%;
    tr{
      margin-bottom: 24px;
    }
    th{
      display: none;
      @include mixin.media(tablet) {
        display: table-cell;
      }
    }
    td{
      width:100%;
      display: block;
      padding: 0;
      @include mixin.media(tablet) {
        padding: 0.5rem;
        width: auto;
        display: table-cell;
      }
      span{
        padding: 0.5rem;
        display: block;
      }
      &::before{
        @include mixin.noto-sans-jp(700);
        display: block;
        padding: 0.5rem;
        background-color: var.$pale-color;
        content: attr(data-label);
        border-bottom: 1px solid var.$gray;
        @include mixin.media(tablet) {
          display: none;
        }
      }
    }
  }
  */
}
#childcare-center .childcare__container .childcare__list ul {
  margin-left: 0;
  padding-inline-start: 24px;
}

/*準備中*/
.under-renovation .under-renovation__container {
  background-color: #ffffff;
  min-height: calc(400px + 1.6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.under-renovation .under-renovation__container p {
  text-align: center;
  margin-bottom: 40px;
}
.under-renovation .getting-ready {
  font-family: "Zen Old Mincho", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 40px;
  padding: 0 0 2.5rem;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width:769px) {
  .under-renovation .getting-ready {
    padding: 40px 0 2.5rem;
  }
}

/*共通パーツ*/
.bg_white {
  background-color: #ffffff;
}

.co_red {
  color: rgba(202, 2, 2, 0.9529411765);
}

.font_B {
  font-weight: 600;
}

.font_sM {
  font-size: 1.5rem;
  line-height: 1.5;
}

.font_sL {
  font-size: 1.8rem;
}

.margin_B0 {
  margin-bottom: 0;
}

.margin_B24 {
  margin-bottom: 1.5rem;
}

.margin_B32 {
  margin-bottom: 2rem;
}

.margin_B40 {
  margin-bottom: 2.5rem;
}

a.orange-button {
  margin: 0 auto;
  text-align: center;
  border: 1px solid #ff8126;
  padding: 0.8rem 1rem 0.8rem;
  border-radius: 8px;
  background: #ff8126;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s;
  line-height: 1.5;
}
a.orange-button:hover {
  background: #ffffff;
  color: #ff8126;
  transition: all 0.3s;
}
a.orange-button[href^=http]::after {
  left: -8px;
  margin-right: 0;
}

a.blue-button {
  margin: 0 auto;
  text-align: center;
  border: 1px solid #57a8b9;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 8px;
  background: #57a8b9;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s;
}
a.blue-button:hover {
  background: #ffffff;
  color: #57a8b9;
  transition: all 0.3s;
}

.no-copy {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

span.no_br {
  display: inline-block;
}

.fadein {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 1.5s;
}
.fadein.scrollin {
  opacity: 1;
  animation-name: fadeIn;
  animation-delay: 0.3s;
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}/*# sourceMappingURL=css.css.map */