@charset "UTF-8";
/* --------------------
ブレークポイントを指定
-------------------- */
/* --------------------
mixin
-------------------- */
@-webkit-keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@-webkit-keyframes fade-out {
  0% {
    display: block;
    opacity: 1;
  }
  99% {
    display: block;
    opacity: 0;
  }
  100% {
    display: none;
    opacity: 0;
  }
}
@keyframes fade-out {
  0% {
    display: block;
    opacity: 1;
  }
  99% {
    display: block;
    opacity: 0;
  }
  100% {
    display: none;
    opacity: 0;
  }
}
@-webkit-keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
}
@keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
}
@-webkit-keyframes arrow-back-and-forth {
  0% {
    right: 11px;
  }
  50% {
    right: 8px;
  }
  100% {
    right: 11px;
  }
}
@keyframes arrow-back-and-forth {
  0% {
    right: 11px;
  }
  50% {
    right: 8px;
  }
  100% {
    right: 11px;
  }
}
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
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, sub, sup, 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 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

::-webkit-input-placeholder {
  color: #d4d4d4;
}

::-webkit-input-placeholder,
::placeholder,
:-ms-input-placeholder,
::-ms-input-placeholder {
  color: #d4d4d4;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

textarea,
select,
input[type=text],
input[type=search],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
input[type=date] {
  display: block;
  padding: 12px 8px;
  width: 100%;
  height: 42px;
  max-width: 470px;
  font-family: var(--font) !important;
  letter-spacing: 0.04em;
  border: 1px solid #251e1c;
  background-color: transparent;
  -webkit-appearance: none;
}

em {
  font-style: italic;
}

textarea {
  height: 120px;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus textarea:-webkit-autofill,
textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
  -webkit-transition: background-color 5000s;
  transition: background-color 5000s;
}

textarea {
  max-width: none;
  -webkit-appearance: none;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

select {
  padding-top: 12px;
  padding-bottom: 12px;
  width: 100%;
  border-radius: 8px;
  -webkit-appearance: none;
}

/**
*
*	common properties
*
**/
html {
  font-size: 62.5%;
  background-color: #fff;
  scroll-behavior: smooth;
  scroll-padding-top: 15rem;
}

body {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border: none;
}

img, a {
  border: none;
  outline: none;
}

label {
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.4em;
}

p {
  line-height: 1.8em;
}

main {
  display: block;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

ol, ul {
  list-style: none;
}

a:link, a:visited {
  color: #251e1c;
  text-decoration: none;
  -webkit-transition: opacity 500ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 500ms cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition-duration: 200ms;
  transition-duration: 200ms;
}

a:hover, a:active {
  opacity: 0.7;
}

a.link--blue:link, a.link--blue:visited {
  color: #009fe6;
  text-decoration: underline;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
}

button {
  padding: 0;
  color: #000;
  font-family: var(--font);
  font-size: var(--fz_xl);
  font-weight: 400;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

button:focus {
  outline: none;
}

.button--primary {
  padding: 12px 90px;
  color: #fff;
  font-size: 35px;
  border-radius: 8px;
  background-color: #ff7516;
}

@media (max-width: 900px) {
  .button--primary {
    font-size: 21px;
  }
}
.button--primary:link, .button--primary:visited {
  -webkit-transition: background-color 500ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: background-color 500ms cubic-bezier(0.215, 0.61, 0.355, 1);
  color: #fff;
  font-size: 35px;
}

@media (max-width: 900px) {
  .button--primary:link, .button--primary:visited {
    font-size: 21px;
  }
}
.button--primary:hover, .button--primary:active {
  opacity: 1;
  background-color: #fe9650;
}

.button--secondary {
  display: inline-block;
  padding: 8px 16px;
  color: #000;
  font-size: 20px;
  text-align: center;
  border-radius: 100px;
  background-color: #fff;
}

.button--secondary:link, .button--secondary:visited {
  color: #000;
}

.no-animation * {
  -webkit-transition: none !important;
  transition: none !important;
  -webkit-transition-delay: none !important;
  transition-delay: none !important;
}

.no-animation .hero-section .section__bg {
  opacity: 0;
}

.clear {
  clear: both;
}

@media (max-width: 900px) {
  .md-hidden {
    display: none;
  }
}
.sm-visible--inline {
  display: none;
}

@media (max-width: 600px) {
  .sm-visible--inline {
    display: inline-block;
  }
}
@media (max-width: 600px) {
  .sm-hidden {
    display: none;
  }
}
ins {
  display: inline-block;
  vertical-align: bottom;
  background-color: transparent;
  color: inherit;
  text-decoration: none;
}

.no-scroll {
  overflow-y: hidden;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mt60 {
  margin-top: 60px;
}

.mt70 {
  margin-top: 70px;
}

.mt80 {
  margin-top: 80px;
}

.mt90 {
  margin-top: 90px;
}

.mt100 {
  margin-top: 100px;
}

.mt110 {
  margin-top: 110px;
}

.mt120 {
  margin-top: 120px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb90 {
  margin-bottom: 90px;
}

.mb100 {
  margin-bottom: 100px;
}

.mb110 {
  margin-bottom: 110px;
}

.mb120 {
  margin-bottom: 120px;
}

@media (max-width: 900px) {
  .md\:mt10 {
    margin-top: 10px;
  }
}
@media (max-width: 900px) {
  .md\:mt20 {
    margin-top: 20px;
  }
}
@media (max-width: 900px) {
  .md\:mt30 {
    margin-top: 30px;
  }
}
@media (max-width: 900px) {
  .md\:mt40 {
    margin-top: 40px;
  }
}
@media (max-width: 900px) {
  .md\:mt50 {
    margin-top: 50px;
  }
}
@media (max-width: 900px) {
  .md\:mt60 {
    margin-top: 60px;
  }
}
@media (max-width: 900px) {
  .md\:mt70 {
    margin-top: 70px;
  }
}
@media (max-width: 900px) {
  .md\:mt80 {
    margin-top: 80px;
  }
}
@media (max-width: 900px) {
  .md\:mt90 {
    margin-top: 90px;
  }
}
@media (max-width: 900px) {
  .md\:mt100 {
    margin-top: 100px;
  }
}
@media (max-width: 900px) {
  .md\:mt110 {
    margin-top: 110px;
  }
}
@media (max-width: 900px) {
  .md\:mt120 {
    margin-top: 120px;
  }
}
@media (max-width: 900px) {
  .md\:mb10 {
    margin-bottom: 10px;
  }
}
@media (max-width: 900px) {
  .md\:mb20 {
    margin-bottom: 20px;
  }
}
@media (max-width: 900px) {
  .md\:mb30 {
    margin-bottom: 30px;
  }
}
@media (max-width: 900px) {
  .md\:mb40 {
    margin-bottom: 40px;
  }
}
@media (max-width: 900px) {
  .md\:mb50 {
    margin-bottom: 50px;
  }
}
@media (max-width: 900px) {
  .md\:mb60 {
    margin-bottom: 60px;
  }
}
@media (max-width: 900px) {
  .md\:mb70 {
    margin-bottom: 70px;
  }
}
@media (max-width: 900px) {
  .md\:mb80 {
    margin-bottom: 80px;
  }
}
@media (max-width: 900px) {
  .md\:mb90 {
    margin-bottom: 90px;
  }
}
@media (max-width: 900px) {
  .md\:mb100 {
    margin-bottom: 100px;
  }
}
@media (max-width: 900px) {
  .md\:mb110 {
    margin-bottom: 110px;
  }
}
@media (max-width: 900px) {
  .md\:mb120 {
    margin-bottom: 120px;
  }
}
@media (max-width: 600px) {
  .sm\:mt10 {
    margin-top: 10px;
  }
}
@media (max-width: 600px) {
  .sm\:mt20 {
    margin-top: 20px;
  }
}
@media (max-width: 600px) {
  .sm\:mt30 {
    margin-top: 30px;
  }
}
@media (max-width: 600px) {
  .sm\:mt40 {
    margin-top: 40px;
  }
}
@media (max-width: 600px) {
  .sm\:mt50 {
    margin-top: 50px;
  }
}
@media (max-width: 600px) {
  .sm\:mt60 {
    margin-top: 60px;
  }
}
@media (max-width: 600px) {
  .sm\:mt70 {
    margin-top: 70px;
  }
}
@media (max-width: 600px) {
  .sm\:mt80 {
    margin-top: 80px;
  }
}
@media (max-width: 600px) {
  .sm\:mt90 {
    margin-top: 90px;
  }
}
@media (max-width: 600px) {
  .sm\:mt100 {
    margin-top: 100px;
  }
}
@media (max-width: 600px) {
  .sm\:mt110 {
    margin-top: 110px;
  }
}
@media (max-width: 600px) {
  .sm\:mt120 {
    margin-top: 120px;
  }
}
@media (max-width: 600px) {
  .sm\:mb10 {
    margin-bottom: 10px;
  }
}
@media (max-width: 600px) {
  .sm\:mb20 {
    margin-bottom: 20px;
  }
}
@media (max-width: 600px) {
  .sm\:mb30 {
    margin-bottom: 30px;
  }
}
@media (max-width: 600px) {
  .sm\:mb40 {
    margin-bottom: 40px;
  }
}
@media (max-width: 600px) {
  .sm\:mb50 {
    margin-bottom: 50px;
  }
}
@media (max-width: 600px) {
  .sm\:mb60 {
    margin-bottom: 60px;
  }
}
@media (max-width: 600px) {
  .sm\:mb70 {
    margin-bottom: 70px;
  }
}
@media (max-width: 600px) {
  .sm\:mb80 {
    margin-bottom: 80px;
  }
}
@media (max-width: 600px) {
  .sm\:mb90 {
    margin-bottom: 90px;
  }
}
@media (max-width: 600px) {
  .sm\:mb100 {
    margin-bottom: 100px;
  }
}
@media (max-width: 600px) {
  .sm\:mb110 {
    margin-bottom: 110px;
  }
}
@media (max-width: 600px) {
  .sm\:mb120 {
    margin-bottom: 120px;
  }
}
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

@media (max-width: 600px) {
  .row {
    margin-right: -6px;
    margin-left: -6px;
  }
}
.row.row--center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.row.row--right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.row.row--v-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.row.row--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.col {
  padding: 0 15px;
}

@media (max-width: 600px) {
  .col {
    padding-right: 6px;
    padding-left: 6px;
  }
}
.col--auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col--right {
  margin-left: auto;
}

.col-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (max-width: 900px) {
  .col-md-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
}
@media (max-width: 900px) {
  .col-md-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
}
@media (max-width: 900px) {
  .col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
}
@media (max-width: 900px) {
  .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}
@media (max-width: 900px) {
  .col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
}
@media (max-width: 900px) {
  .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 900px) {
  .col-md-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
}
@media (max-width: 900px) {
  .col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
}
@media (max-width: 900px) {
  .col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
}
@media (max-width: 900px) {
  .col-md-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
}
@media (max-width: 900px) {
  .col-md-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
}
@media (max-width: 900px) {
  .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .col-sm-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
}
@media (max-width: 600px) {
  .col-sm-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
}
@media (max-width: 600px) {
  .col-sm-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
}
@media (max-width: 600px) {
  .col-sm-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}
@media (max-width: 600px) {
  .col-sm-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
}
@media (max-width: 600px) {
  .col-sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 600px) {
  .col-sm-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
}
@media (max-width: 600px) {
  .col-sm-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
}
@media (max-width: 600px) {
  .col-sm-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
}
@media (max-width: 600px) {
  .col-sm-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
}
@media (max-width: 600px) {
  .col-sm-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
}
@media (max-width: 600px) {
  .col-sm-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.text--center {
  text-align: center;
}

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

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

.bgc--white {
  background-color: #fff;
}

.container {
  margin: 0 auto;
  padding: 50px 50px 40px 50px;
  max-width: 1200px;
}

@media (max-width: 900px) {
  .container {
    padding-top: 40px;
    padding-right: 5.3vw;
    padding-left: 5.3vw;
  }
}
.container.container--asymmetry {
  padding-right: 120px;
}

@media (max-width: 900px) {
  .container.container--asymmetry {
    padding-right: 5.3%;
  }
}
.container.container--fluid {
  max-width: none;
}

.container.container--full {
  padding-right: 0;
  padding-left: 0;
  max-width: none;
}

.hamburger-button {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10000;
  margin: 0 auto;
  width: calc(10.6vw + 20px);
  height: 50px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .hamburger-button {
    display: block;
  }
}
.hamburger-button .bar {
  display: block;
  position: absolute;
  top: 50%;
  right: 40px;
  width: 20px;
  height: 1px;
  background-color: #000;
  -webkit-transition: background-color 200ms ease;
  transition: background-color 200ms ease;
}

@media (max-width: 600px) {
  .hamburger-button .bar {
    right: 5.3vw;
  }
}
.hamburger-button .bar::before, .hamburger-button .bar::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 1px;
  background: #000;
  -webkit-transition: background-color 400ms ease, -webkit-transform 400ms ease;
  transition: background-color 400ms ease, -webkit-transform 400ms ease;
  transition: transform 400ms ease, background-color 400ms ease;
  transition: transform 400ms ease, background-color 400ms ease, -webkit-transform 400ms ease;
}

.hamburger-button .bar::before {
  margin-top: -7px;
}

.hamburger-button .bar::after {
  margin-top: 7px;
}

.hamburger-button.opened .bar {
  background-color: transparent;
}

.hamburger-button.opened .bar::before, .hamburger-button.opened .bar::after {
  margin-top: 0;
}

.hamburger-button.opened .bar::before {
  background-color: #fff;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.hamburger-button.opened .bar::after {
  background-color: #fff;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.dl-table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  line-height: 1.5em;
}

.dl-table dt {
  margin-bottom: 25px;
  padding-right: 20px;
  width: 50%;
  font-size: 20px;
  line-height: 1.5em;
  font-weight: 700;
  border-bottom: 1px solid #ff7516;
}

@media (max-width: 600px) {
  .dl-table dt {
    padding-right: 0;
    width: 100%;
    font-size: 16px;
    border: none;
  }
}
.dl-table dt:last-of-type {
  margin-bottom: 0;
  border: none;
}

.dl-table dd {
  margin-bottom: 25px;
  width: 50%;
  font-size: 18px;
  line-height: 1.5em;
  border-bottom: 1px solid #ff7516;
}

@media (max-width: 600px) {
  .dl-table dd {
    width: 100%;
    font-size: 14px;
  }
}
.dl-table dd:last-of-type {
  margin-bottom: 0;
  border: none;
}

.dl-table dd p {
  margin-bottom: 2em;
}

.site-header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  background-color: #f7f7f7;
}

.site-header .container {
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
  max-width: none;
  height: 90px;
}

@media (max-width: 900px) {
  .site-header .container {
    height: 100%;
    padding-right: 0;
  }
}
.site-header__bar--top {
  position: relative;
  background-color: #163f8e;
}

.site-header__bar--top .container {
  height: 80px;
}

@media (max-width: 900px) {
  .site-header__bar--top .container {
    height: 50px;
  }
}
.site-header__bar--bottom {
  height: 40px;
  background-color: #b9c5dd;
}

@media (max-width: 1080px) {
  .site-header__bar--bottom {
    height: 40px;
  }
}
@media (max-width: 900px) {
  .site-header__bar--bottom .container {
    padding-right: 12px;
  }
}
.site-header .logo-container {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 100;
  background-color: #163f8e;
}

@media (max-width: 900px) {
  .site-header .logo-container {
    height: 90px;
  }
}
.site-header .logo-container .logo {
  display: block;
  padding: 20px 32px;
}

@media (max-width: 900px) {
  .site-header .logo-container .logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 90px;
    padding: 0 12px;
  }
}
.site-header .logo-container .logo img {
  width: 240px;
}

@media (max-width: 900px) {
  .site-header .logo-container .logo img {
    width: 114px;
  }
}
.site-header .site-header__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 900px) {
  .site-header .site-header__links {
    right: 0;
    height: 100%;
  }
}
.site-header .site-header__links li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 30px;
}

@media (max-width: 900px) {
  .site-header .site-header__links li {
    padding: 0 10px;
    margin-left: 0;
  }
}
@media (max-width: 900px) {
  .site-header .site-header__links li img {
    width: auto;
    height: 24px;
  }
}
.site-header .site-nav {
  padding-top: 5px;
}

@media (max-width: 900px) {
  .site-header .site-nav {
    padding-top: 0;
    height: 100%;
  }
}
.site-header .site-nav__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  color: #ff7516;
  font-size: 16px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .site-header .site-nav__menu {
    font-size: 10px;
    height: 100%;
    align-items: center;
  }
}
.site-header .site-nav__menu li {
  margin-left: 40px;
}

@media (max-width: 900px) {
  .site-header .site-nav__menu li {
    margin-left: 0;
    font-size: 13px;
  }
  .site-header .site-nav__menu li:first-child {
    margin-right: 30px;
  }
}
.site-header .site-nav__menu .icon {
  display: inline-block;
  margin-right: 10px;
}

@media (max-width: 900px) {
  .site-header .site-nav__menu .icon {
    margin: 0 5px 3px 0;
    width: 18px;
    height: 18px;
    text-align: center;
  }
}
.site-header .site-nav__menu .icon img {
  vertical-align: middle;
  width: auto;
  height: 25px;
}

@media (max-width: 900px) {
  .site-header .site-nav__menu .icon img {
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center center;
    object-position: center center;
    width: 100%;
    height: 100%;
  }
}
.site-header .site-nav__menu a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 900px) {
  .site-header .site-nav__menu a {
    display: block;
  }
}
.site-header .site-nav__menu a:link, .site-header .site-nav__menu a:visited {
  color: #163f8e;
}

@media (max-width: 600px) {
  .site-footer .container {
    padding-top: 20px;
    padding-bottom: 40px;
  }
}
.site-footer .copyright {
  font-size: 13px;
  text-align: center;
  color: #163f8e;
}

.section__title {
  position: relative;
  margin-bottom: 30px;
  border-bottom: 1px solid #ff7516;
}

@media (max-width: 600px) {
  .section__title {
    margin-bottom: 16px;
  }
}
.section__title::after {
  display: block;
  position: absolute;
  right: 0;
  bottom: 10px;
  width: 64px;
  height: 35px;
  background: url(../img/bg_texture_01.svg) no-repeat right center;
  content: "";
}

.section__title--b::after {
  display: block;
  position: absolute;
  right: 0;
  bottom: 6px;
  width: 64px;
  height: 35px;
  background: url(../img/bg_texture_02.svg) no-repeat right center;
  content: "";
}

.section__title--blue {
  border-bottom: none;
}

.questionnaire-button {
  position: fixed;
  right: 0;
  top: 164px;
}

@media (max-width: 600px) {
  .questionnaire-button {
    display: block;
    left: 0;
    top: auto;
    bottom: 0;
    padding: 12px 0;
    width: 100%;
    text-align: center;
    background-color: #ff7516;
  }
}
@media (max-width: 600px) {
  .questionnaire-button img {
    width: 170px;
  }
}
.site-wrapper {
  overflow: hidden;
}

.site-trunk {
  padding-top: 100px;
}

@media (max-width: 900px) {
  .site-trunk {
    padding-top: 60px;
  }
}
@media (max-width: 900px) {
  .fb_iframe_widget, .fb_iframe_widget span, .fb_iframe_widget span iframe[style] {
    width: 100% !important;
  }
}
.homepage .site-trunk .hero-section {
  margin-bottom: 0;
}

.homepage .hero-section {
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .homepage .hero-section .container {
    padding-bottom: 0;
  }
}
@media (max-width: 900px) {
  .homepage .hero-section .section__content {
    margin: 0;
  }
}
.homepage .hero-section .event-list {
  padding-right: 50px;
  font-size: 14px;
}

@media (max-width: 900px) {
  .homepage .hero-section .event-list {
    margin-top: 0;
    padding-right: 0;
    padding-left: 0;
  }
}
.homepage .hero-section .event-list p {
  line-height: 1.8em;
}

@media (max-width: 900px) {
  .homepage .hero-section .event-list p {
    line-height: 1.8em;
  }
}
.homepage .hero-section .event-list .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.homepage .hero-section .event-list .col:first {
  text-align: center;
}

.homepage .hero-section .hero-banner-container picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 96%;
  height: 100%;
}

@media (max-width: 900px) {
  .homepage .hero-section .hero-banner-container picture {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }
}
.homepage .hero-section .hero-banner-container picture img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left top;
  object-position: left top;
  width: 100%;
  height: 100%;
}

@media (max-width: 900px) {
  .homepage .hero-section .hero-banner-container {
    padding: 0 0 20px 0;
  }
}
.homepage .hero-section .event-info {
  margin-bottom: 30px;
}

@media (max-width: 900px) {
  .homepage .hero-section .event-info {
    margin-bottom: 30px;
    padding: 0 5.3vw;
  }
}
.homepage .hero-section .event-info.event-info--end {
  color: #505050;
}

.homepage .hero-section .event-info.event-info--end h2 {
  background-color: #505050;
}

.homepage .hero-section .event-info.event-info--end h2::before {
  border-color: #505050;
}

.homepage .hero-section .event-info.event-info--end .hall-info dt {
  color: #505050;
  border-color: #505050;
}

.homepage .hero-section .event-info.event-info--end .hall-info dt span {
  border-color: #505050;
}

.homepage .hero-section .event-info.event-info--end .free-admission {
  background-color: #505050;
}

.homepage .hero-section .event-info .event-info__title--w-arrow {
  font-size: 20px;
  background-color: #C5246E;
}

@media (max-width: 900px) {
  .homepage .hero-section .event-info .event-info__title--w-arrow {
    font-size: 17px;
  }
}
.homepage .hero-section .event-info .event-info__title--w-arrow span {
  -webkit-transform: none;
  transform: none;
}

.homepage .hero-section .event-info .event-info__title--w-arrow::before {
  display: none;
}

.homepage .hero-section .event-info .event-info__title--w-arrow::after {
  display: block;
  position: absolute;
  left: 50%;
  top: 100%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 21px 19.5px 0 19.5px;
  border-color: #C5246E transparent transparent transparent;
  content: "";
}

@media (max-width: 900px) {
  .homepage .hero-section .event-info .event-info__title--w-arrow::after {
    border-width: 17px 14px 0 14px;
  }
}
.homepage .hero-section .event-info.event-info--report .report {
  margin: 20px auto 0 auto;
  width: 100%;
  max-width: 560px;
  font-size: 20px;
  line-height: 1.5em;
}

@media (max-width: 900px) {
  .homepage .hero-section .event-info.event-info--report .report {
    font-size: 16px;
  }
}
.homepage .hero-section .event-info.event-info--report .report th {
  padding: 5px 20px 5px 0;
  color: #C5246E;
  font-weight: 600;
  text-align: left;
}

.homepage .hero-section .event-info.event-info--report .report td {
  padding: 5px 0 5px 0;
  color: #ff7516;
  font-weight: 600;
  text-align: right;
}

.homepage .hero-section .event-info.event-info--report .report td strong {
  font-size: 30px;
}

@media (max-width: 900px) {
  .homepage .hero-section .event-info.event-info--report .report td strong {
    font-size: 20px;
  }
}
.homepage .hero-section .event-info.event-info--report .thanks {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8em;
  text-align: center;
}

.homepage .hero-section .event-info.event-info--next h2 {
  margin-bottom: 10px;
}

@media (max-width: 900px) {
  .homepage .hero-section .event-info.event-info--next h2 {
    margin-bottom: 30px;
  }
}
.homepage .hero-section .event-info.event-info--next .schedule {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .homepage .hero-section .event-info.event-info--next .schedule {
    display: block;
  }
}
.homepage .hero-section .event-info.event-info--next .schedule dt {
  overflow: hidden;
  position: relative;
  margin-top: 20px;
  width: 180px;
  height: 80px;
  color: #C5246E;
  font-size: 20px;
}

@media (max-width: 900px) {
  .homepage .hero-section .event-info.event-info--next .schedule dt {
    font-size: 16px;
    width: auto;
    height: auto;
    text-align: center;
    border-top: 1px solid #c5246e;
    border-bottom: 1px solid #c5246e;
  }
}
.homepage .hero-section .event-info.event-info--next .schedule dt::before, .homepage .hero-section .event-info.event-info--next .schedule dt::after {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 143px;
  height: 1px;
  background-color: #C5246E;
  content: "";
}

@media (max-width: 900px) {
  .homepage .hero-section .event-info.event-info--next .schedule dt::before, .homepage .hero-section .event-info.event-info--next .schedule dt::after {
    display: none;
  }
}
.homepage .hero-section .event-info.event-info--next .schedule dt::after {
  top: auto;
  bottom: 0;
}

.homepage .hero-section .event-info.event-info--next .schedule dt span {
  display: block;
  position: relative;
  padding: 30px 0;
  height: 80px;
}

@media (max-width: 900px) {
  .homepage .hero-section .event-info.event-info--next .schedule dt span {
    padding: 10px 0;
    height: auto;
  }
}
.homepage .hero-section .event-info.event-info--next .schedule dt span::before, .homepage .hero-section .event-info.event-info--next .schedule dt span::after {
  display: block;
  position: absolute;
  left: 100%;
  top: 100%;
  z-index: 100;
  -webkit-transform: rotate(-47deg);
  transform: rotate(-47deg);
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
  margin-left: -38px;
  width: 100px;
  height: 1px;
  background-color: #c5246e;
  content: "";
}

@media (max-width: 900px) {
  .homepage .hero-section .event-info.event-info--next .schedule dt span::before, .homepage .hero-section .event-info.event-info--next .schedule dt span::after {
    display: none;
  }
}
.homepage .hero-section .event-info.event-info--next .schedule dt span::after {
  top: 0;
  z-index: 100;
  -webkit-transform: rotate(47deg);
  transform: rotate(47deg);
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

.homepage .hero-section .event-info.event-info--next .schedule dd {
  margin-top: 20px;
  padding-left: 8px;
  width: calc(100% - 180px);
  text-align: right;
}

@media (max-width: 900px) {
  .homepage .hero-section .event-info.event-info--next .schedule dd {
    padding-left: 0;
    width: auto;
    text-align: center;
  }
}
.homepage .hero-section .event-info.event-info--next .schedule__date {
  margin-top: 10px;
  font-size: 15px;
  font-weight: normal;
  line-height: 1.8em;
  text-align: right;
}

@media (max-width: 900px) {
  .homepage .hero-section .event-info.event-info--next .schedule__date {
    text-align: center;
  }
}
.homepage .hero-section .event-info.event-info--next .schedule__date strong {
  font-size: 30px;
}

@media (max-width: 900px) {
  .homepage .hero-section .event-info.event-info--next .schedule__date strong {
    font-size: 20px;
  }
}
.homepage .hero-section .event-info.event-info--next .schedule__location {
  margin-top: 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.8em;
  text-align: right;
}

@media (max-width: 900px) {
  .homepage .hero-section .event-info.event-info--next .schedule__location {
    text-align: center;
  }
}
.homepage .hero-section .event-info.event-info--next .event-info__text-01 {
  margin-top: 30px;
  color: #c5246e;
  font-size: 15px;
}

.homepage .hero-section .event-info.event-info--next .links {
  font-size: 25px;
}

@media (max-width: 900px) {
  .homepage .hero-section .event-info.event-info--next .links {
    font-size: 18px;
  }
}
.homepage .hero-section .event-info h2 {
  position: relative;
  padding: 8px 15px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  background-color: #ff7516;
}

@media (max-width: 600px) {
  .homepage .hero-section .event-info h2 {
    font-size: 18px;
  }
}
.homepage .hero-section .event-info h2::before {
  display: block;
  position: absolute;
  left: -5px;
  top: -5px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border: 2px solid #c5246e;
  content: "";
}

.homepage .hero-section .event-info h2 span {
  display: inline-block;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

.homepage .hero-section .event-info p {
  margin-top: 20px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2em;
  text-align: center;
}

@media (max-width: 600px) {
  .homepage .hero-section .event-info p {
    font-size: 18px;
  }
}
.homepage .hero-section .event-info p small {
  font-size: 80%;
}

.homepage .hero-section .hall-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  margin-bottom: 20px;
}

@media (max-width: 900px) {
  .homepage .hero-section .hall-info {
    display: block;
    padding: 0 0;
  }
}
.homepage .hero-section .hall-info dt {
  width: 100px;
  color: #c5246e;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-align: left;
}

@media (max-width: 900px) {
  .homepage .hero-section .hall-info dt {
    width: 100%;
    text-align: center;
  }
}
.homepage .hero-section .hall-info dt span {
  display: inline-block;
  padding: 16px 20px;
  border: 2px solid #c5246e;
}

@media (max-width: 900px) {
  .homepage .hero-section .hall-info dt span {
    display: block;
    margin-bottom: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 16px;
  }
}
.homepage .hero-section .hall-info dd {
  padding-left: 10px;
  width: calc(100% - 100px);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: -0.02em;
}

@media (max-width: 1280px) {
  .homepage .hero-section .hall-info dd {
    font-size: 18px;
  }
}
@media (max-width: 900px) {
  .homepage .hero-section .hall-info dd {
    padding: 0;
    width: 100%;
    font-size: 16px;
    text-align: center;
  }
}
.homepage .hero-section .free-admission {
  display: inline-block;
  position: relative;
  top: -3px;
  margin-left: 10px;
  padding: 3px 20px;
  color: #fff;
  font-size: 17px;
  border-radius: 100px;
  background-color: #c5246e;
}

@media (max-width: 900px) {
  .homepage .hero-section .free-admission {
    top: 0;
    margin-top: 10px;
    margin-left: 0;
    font-size: 12px;
  }
}
.homepage .hero-section .program {
  display: block;
  position: relative;
  padding: 8px 16px 4px 16px;
  color: #fff;
}

.homepage .hero-section .program::before {
  display: block;
  position: absolute;
  left: 5px;
  top: 5px;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: 2px solid #3e6eb3;
  border-radius: 100px;
  content: "";
}

.homepage .hero-section .program::after {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #3e6eb3;
  border: 2px solid #3e6eb3;
  border-radius: 100px;
  content: "";
}

.homepage .hero-section .program span {
  position: relative;
  z-index: 10;
}

.homepage .event-info__online-here {
  padding: 6px 20px;
  color: #c5246e;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-align: center;
  border: 2px solid #c5246e;
  background-color: #fff;
}

@media (max-width: 900px) {
  .homepage h3 {
    display: block;
    margin-bottom: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 16px;
  }
}
.homepage .halls {
  margin-top: 20px;
  margin-right: -10px;
  margin-left: -10px;
}

@media (max-width: 600px) {
  .homepage .halls {
    margin-right: -5px;
    margin-left: -5px;
  }
}
.homepage .halls li {
  padding: 0 10px;
}

@media (max-width: 600px) {
  .homepage .halls li {
    padding: 0 5px;
  }
}
.homepage .event-info__content {
  margin-top: 20px;
  padding: 20px;
  background-color: #ffeadc;
}

.homepage .event-info__content p {
  margin-top: 0;
}

.homepage .topics-section .topics-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 20px;
  line-height: 1.5em;
  margin: 40px;
}

@media (max-width: 600px) {
  .homepage .topics-section .topics-list {
    font-size: 13px;
    line-height: 1.6aem;
    margin: 20px 0 0;
  }
}
.homepage .topics-section .topics-list dt {
  margin-bottom: 5px;
  width: 140px;
}

@media (max-width: 600px) {
  .homepage .topics-section .topics-list dt {
    width: 6em;
  }
}
.homepage .topics-section .topics-list dd {
  margin-bottom: 5px;
  width: calc(100% - 140px);
}

@media (max-width: 600px) {
  .homepage .topics-section .topics-list dd {
    width: calc(100% - 6em);
  }
}
.homepage .topics-section .topics-list .new {
  display: inline-block;
  position: relative;
  margin-left: 20px;
  padding: 2px 4px;
  height: 23px;
  color: #fff;
  font-size: 18px;
  line-height: 1em;
  background-color: #c50018;
}

@media (max-width: 600px) {
  .homepage .topics-section .topics-list .new {
    height: 16px;
    font-size: 12px;
  }
}
.homepage .topics-section .topics-list .new::before {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11.5px 8px 11.5px 0;
  border-color: transparent #c50018 transparent transparent;
  content: "";
}

@media (max-width: 600px) {
  .homepage .topics-section .topics-list .new::before {
    border-width: 8px 4px 8px 0;
  }
}
.homepage .announce-section .container {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: white;
}

.homepage .about-section .container {
  background-color: rgba(255, 241, 232, 0.9);
}

@media (max-width: 900px) {
  .homepage .about-section .container {
    padding-bottom: 24px;
  }
}
.homepage .about-section .section__headline {
  font-size: 20px;
  line-height: 2.5em;
}

@media (max-width: 900px) {
  .homepage .about-section .section__headline {
    font-size: 14px;
    line-height: 2em;
  }
}
.homepage .event-section .container {
  padding-top: 0;
}

@media (max-width: 600px) {
  .homepage .event-section .container {
    padding-bottom: 0;
  }
}
.homepage .event-section .events {
  display: flex;
  flex-direction: column;
  margin-left: -27px;
  margin-right: -27px;
}

.homepage .event-section .box {
  margin-bottom: 15px;
  margin: 0 27px 15px 27px;
  padding: 20px 20px 20px 30px;
  width: calc(33.33% - 54px);
}

@media (max-width: 900px) {
  .homepage .event-section .box {
    margin-bottom: 0;
    margin: 0;
    padding: 20px 5.3vw;
  }
}
@media (max-width: 600px) {
  .homepage .event-section .box {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
  }
}
.homepage .event-section .box--forum {
  background-color: #ecf0f7;
}

.homepage .event-section .box--activity {
  background-color: #faefdb;
}

.homepage .event-section .box--lecture {
  background-color: #e5ddec;
}

.homepage .event-section .box--lecture .box__tn img {
  width: 100%;
  max-width: 130px;
}

.homepage .event-section .box__tn {
  padding: 20px 0;
  text-align: center;
}

.homepage .event-section .box__description {
  font-size: 20px;
}

@media (max-width: 600px) {
  .homepage .event-section .box__description {
    padding-left: 16px;
    font-size: 14px;
  }
}
@media (max-width: 600px) {
  .homepage .access-section .col:last-of-type {
    margin-top: 30px;
    width: 100%;
  }
}
.homepage .access-section .building-name {
  margin-bottom: 1.3em;
  font-size: 24px;
  font-weight: 700;
  font-style: normal;
}

@media (max-width: 900px) {
  .homepage .access-section .building-name {
    font-size: 20px;
  }
}
.homepage .access-section .map-container {
  position: relative;
  padding-top: 42%;
}

@media (max-width: 900px) {
  .homepage .access-section .map-container {
    padding-top: 100%;
  }
}
.homepage .access-section .map-container iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

.homepage .sns-section .row {
  margin-right: -15px;
  margin-left: -15px;
}

@media (max-width: 600px) {
  .homepage .sns-section .row {
    margin-right: -6px;
    margin-left: -6px;
  }
}
.homepage .sns-section .section__headline {
  font-size: 20px;
  line-height: 2.5em;
}

.homepage .sns-section .button--secondary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 20px;
  width: 100%;
}

@media (max-width: 600px) {
  .homepage .sns-section .button--secondary {
    font-size: 18px;
  }
}
.homepage .sns-section .button--secondary .icon {
  margin-right: 16px;
}

@media (max-width: 600px) {
  .homepage .sns-section .button--secondary .icon img {
    width: 40px;
  }
}
.homepage .link-section .container {
  padding-bottom: 20px;
}

.homepage .link-section .row {
  margin-right: -20px;
  margin-left: -20px;
}

@media (max-width: 900px) {
  .homepage .link-section .row {
    margin-right: -10px;
    margin-left: -10px;
  }
}
.homepage .link-section .row .col {
  margin-bottom: 30px;
  padding: 0 20px;
}

@media (max-width: 900px) {
  .homepage .link-section .row .col {
    margin-bottom: 20px;
    padding: 0 10px;
  }
}
.homepage .archive-section .container {
  padding-bottom: 20px;
  background-color: rgba(178, 242, 238, 0.8);
}

.homepage .archive-section .link__title {
  margin-bottom: 5px;
  font-size: 18px;
}

.homepage .archive-section a {
  display: block;
}

.homepage .archive-section .row {
  margin-right: -20px;
  margin-left: -20px;
}

@media (max-width: 900px) {
  .homepage .archive-section .row {
    margin-right: -10px;
    margin-left: -10px;
  }
}
.homepage .archive-section .row .col {
  margin-bottom: 30px;
  padding: 0 20px;
}

@media (max-width: 900px) {
  .homepage .archive-section .row .col {
    margin-bottom: 20px;
    padding: 0 10px;
  }
}
.contact-page .content-section {
  padding-top: 96px;
}

.contact-section__title {
  color: #171a5c;
  font-size: 17px;
  position: relative;
  text-align: center;
}

@media (min-width: 900px) {
  .contact-section__title {
    font-size: 37px;
  }
}
.contact-section__title-text {
  position: relative;
  background-color: #00AAE5;
  padding: 0 20px;
  z-index: 999;
  color: #fff;
}

@media (min-width: 900px) {
  .contact-section__title-text {
    padding: 0 30px;
  }
}
.contact-section__title-text::before,
.contact-section__title-text::after {
  content: "■";
  font-size: 12px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

@media (min-width: 900px) {
  .contact-section__title-text::before,
  .contact-section__title-text::after {
    font-size: 19px;
  }
}
.contact-section__title-text::before {
  left: -10px;
}

.contact-section__title-text::after {
  right: -10px;
}

.contact-section__title-line {
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
}

.contact-list {
  color: #fff;
}

.contact-lists {
  color: #fff;
}

@media (min-width: 900px) {
  .contact-lists {
    margin-bottom: 80px;
  }
}
.contact-lists__title {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  margin-top: 30px;
}

@media (min-width: 900px) {
  .contact-lists__title {
    font-size: 40px;
    text-align: center;
  }
}
.contact-lists__item {
  line-height: 2;
}

.contact-lists__item:nth-of-type(1) {
  margin-top: 20px;
}

@media (min-width: 900px) {
  .contact-lists__item:nth-of-type(1) {
    margin-top: 40px;
  }
}
.contact-lists__item:not(:nth-of-type(1)) {
  margin-top: 40px;
}

@media (min-width: 900px) {
  .contact-lists__item {
    font-size: 20px;
    line-height: 2.2;
  }
}
.contact-lists__box:not(:first-child) {
  margin-top: 70px;
}

@media (min-width: 900px) {
  .contact-lists__box:not(:first-child) {
    margin-top: 120px;
  }
}
@media (max-width: 900px) {
  .contact-page .content-section {
    padding-top: 24px;
  }
}
.contact-page main {
  background-color: #00AAE5;
}

.speeches .speech {
  margin-bottom: 30px;
  background-color: #fff;
}

.speeches .speech:last-of-type {
  margin-bottom: 0;
}

.speeches .speech__date {
  padding: 30px 30px 10px;
  font-size: 25px;
  font-weight: 600;
  background-color: #ff7516;
}

@media (max-width: 900px) {
  .speeches .speech__date {
    padding: 8px 12px;
    font-size: 18px;
  }
}
.speeches .speech__date span {
  display: inline-block;
  padding: 3px 24px;
  color: #fff;
  border-radius: 100px;
  background-color: #c5246e;
}

@media (max-width: 900px) {
  .speeches .speech__date span {
    margin: 4px 0;
    padding: 2px 12px;
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .speeches .speech .col {
    width: 100%;
  }
}
.speeches .speech .col:first-of-type {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media (max-width: 600px) {
  .speeches .speech .col:first-of-type {
    margin-bottom: 20px;
  }
}
.speeches .speech__detail {
  padding: 32px;
  background-color: #fff;
}

@media (max-width: 900px) {
  .speeches .speech__detail {
    padding: 16px 16px 24px 16px;
  }
}
.speeches .speech__cat {
  margin-bottom: 4px;
  font-size: 25px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .speeches .speech__cat {
    font-size: 18px;
  }
}
.speeches .speech__title {
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 1.5em;
}

@media (max-width: 900px) {
  .speeches .speech__title {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.7em;
  }
}
.speeches .speech__speaker-title {
  font-size: 16px;
  text-align: right;
}

@media (max-width: 900px) {
  .speeches .speech__speaker-title {
    font-size: 12px;
    line-height: 1.4em;
  }
}
.speeches .speech__speaker-name {
  font-size: 20px;
  text-align: right;
}

@media (max-width: 900px) {
  .speeches .speech__speaker-name {
    font-size: 16px;
  }
}
.speeches .speech__link {
  display: inline-block;
  position: relative;
  padding: 10px 40px 16px 40px;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4em;
  text-align: center;
  border-radius: 100px;
  background-color: #c5246e;
}

@media (max-width: 900px) {
  .speeches .speech__link {
    font-size: 16px;
    padding: 5px 24px 10px 24px;
  }
}
@media (max-width: 600px) {
  .speeches .speech__link {
    display: block;
  }
}
.speeches .speech__link::before {
  display: block;
  position: absolute;
  left: -4px;
  top: -1px;
  width: 100%;
  height: 100%;
  text-align: center;
  border-radius: 100px;
  background-color: #ff7516;
  content: "";
}

.speeches .speech__link span {
  position: relative;
}

/* ----------------------------------
2023
---------------------------------- */
.content-width {
  max-width: 1200px;
  margin: 0 auto;
}

.homepage .site-trunk .schedule-section {
  margin-bottom: 30px;
}

.schedule-section__balloon {
  background-color: #00d5c8;
  position: relative;
  padding: 8px 15px 10px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  letter-spacing: 4px;
}

@media (min-width: 900px) {
  .schedule-section__balloon {
    font-size: 22px;
    padding: 15px;
  }
}
.schedule-section__balloon::before {
  display: block;
  position: absolute;
  left: 50%;
  top: 98%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 21px 19.5px 0 19.5px;
  border-color: #00d5c8 transparent transparent transparent;
  content: "";
}

@media (min-width: 900px) {
  .schedule-section__balloon::before {
    border-width: 31px 32px 0 32px;
  }
}
@media (min-width: 900px) {
  .schedule-section__boxs {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.schedule-section__box {
  text-align: center;
  margin-top: 30px;
  padding: 0 20px;
}

@media (min-width: 900px) {
  .schedule-section__box {
    margin-top: 50px;
    padding: 0;
    width: 48%;
  }
}
.schedule-section__title {
  color: #171a5c;
  font-size: 17px;
  position: relative;
}

@media (min-width: 900px) {
  .schedule-section__title {
    font-size: 19px;
  }
}
.schedule-section__title-text {
  position: relative;
  background-color: #fff;
  padding: 0 20px;
  z-index: 999;
}

@media (min-width: 900px) {
  .schedule-section__title-text {
    padding: 0 30px;
  }
}
.schedule-section__title-text::before,
.schedule-section__title-text::after {
  content: "■";
  font-size: 12px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

@media (min-width: 900px) {
  .schedule-section__title-text::before,
  .schedule-section__title-text::after {
    font-size: 19px;
  }
}
.schedule-section__title-text::before {
  left: -10px;
}

.schedule-section__title-text::after {
  right: -10px;
}

.schedule-section__title-line {
  width: 100%;
  height: 1px;
  background-color: #171a5c;
  position: absolute;
  top: 50%;
}

.schedule-section__date {
  font-size: 20px;
  margin-top: 10px;
  line-height: 1.6;
}

@media (min-width: 600px) {
  .schedule-section__date br {
    display: none;
  }
}
@media (min-width: 900px) {
  .schedule-section__date {
    font-size: 23px;
    margin-top: 20px;
    line-height: 2;
  }
}
.schedule-section__day {
  font-size: 26px;
}

@media (min-width: 900px) {
  .schedule-section__day {
    font-size: 35px;
  }
}
.schedule-section__hp {
  font-size: 17px;
}

@media (min-width: 900px) {
  .schedule-section__hp {
    font-size: 22px;
    margin-top: 15px;
  }
}
.schedule-section__place {
  line-height: 1.8;
  margin-top: 10px;
  font-size: 17px;
}

@media (min-width: 900px) {
  .schedule-section__place {
    font-size: 22px;
    margin-top: 20px;
  }
}
.schedule-section__more {
  margin-top: 20px;
  text-align: center;
}

@media (min-width: 900px) {
  .schedule-section__more {
    margin-top: 60px;
  }
}
.schedule-section__more-title {
  color: #00d5c8;
  font-size: 17px;
}

@media (min-width: 900px) {
  .schedule-section__more-title {
    font-size: 22px;
  }
}
.schedule-section__more-links {
  margin-top: 10px;
  line-height: 1.8;
  font-size: 18px;
}

@media (min-width: 900px) {
  .schedule-section__more-links {
    margin-top: 5px;
    font-size: 22px;
  }
}
@media (min-width: 900px) {
  .schedule-section__more-link:first-child {
    margin-right: 30px;
  }
}
.schedule-section__more-link:link {
  text-decoration: underline;
  color: #009fe6;
}

.schedule-section__memo {
  font-size: 15px;
  margin-top: 15px;
}

.section-title {
  font-size: 18px;
  /* font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Osaka, sans-serif; */
}

@media (min-width: 900px) {
  .section-title {
    font-size: 25px;
  }
}
.section-title-line {
  position: relative;
  text-align: center;
}

.section-title-line::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #171a5c;
  position: absolute;
  top: 47%;
  left: 0;
}

.section-title-inner {
  background: #fff;
  padding: 0 20px;
  display: inline-block;
  position: relative;
  z-index: 900;
}

@media (min-width: 900px) {
  .section-title-inner {
    padding: 0 30px;
  }
}
@media (min-width: 900px) {
  .announce-section {
    margin-top: 120px;
  }
}
.announce-section__box {
  text-align: center;
}

@media (min-width: 900px) {
  .announce-section__img-links {
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  .announce-section__img-box {
    width: 370px;
  }
  .announce-section__img-box:first-child {
    margin-right: 30px;
  }
  .announce-section__img-link .announce-section__img-idea,
  .announce-section__img-link .announce-section__img-chiriin {
    width: 100%;
    height: auto;
  }
}
.announce-section__end {
  color: #fff;
  padding: 5px 20px;
  display: inline-block;
  background-color: #00d5c8;
  font-size: 14px;
}

@media (min-width: 1200px) {
  .announce-section__img-box {
    width: 420px;
  }
  .announce-section__img-box:first-child {
    margin-right: 60px;
  }
}
@media (min-width: 900px) {
  .announce-section__end {
    font-size: 25px;
    padding: 10px 40px;
    margin-right: 20px;
  }
}
.announce-section__title {
  margin-top: 15px;
  font-size: 16px;
  line-height: 1.4;
}

@media (min-width: 900px) {
  .announce-section__title {
    font-size: 16px;
    margin-top: 0;
  }
}
@media (min-width: 900px) {
  .announce-section__title-set {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
  }
}
.announce-section__img-link {
  display: block;
  margin-top: 10px;
}

@media (min-width: 900px) {
  .announce-section__img-link {
    margin: 15px 0 0;
  }
}
.announce-section__img-chiriin {
  max-width: 260px;
}

.announce-section__img-idea {
  width: auto;
  max-height: 65px;
}

@media (min-width: 900px) {
  .announce-section__img-idea {
    max-height: none;
  }
}
@media (min-width: 900px) {
  .announce-section__img-link img {
    height: 100%;
    width: auto;
    max-width: none;
  }
}
.announce-section__img-link:first-child {
  margin-bottom: 20px;
}

.announce-section__img-box:last-child {
  margin-top: 40px;
  margin-bottom: 20px;
}

@media (min-width: 900px) {
  .announce-section__img-box:last-child {
    margin: 0;
  }
}
@media (min-width: 900px) {
  .access-section {
    margin-top: 100px;
  }
}
@media (min-width: 900px) {
  .access-section__box {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    padding: 20px 40px 40px;
  }
}
.access-section__map {
  margin-top: 20px;
}

@media (min-width: 900px) {
  .access-section__map {
    width: 55%;
  }
  .access-section__map img {
    width: 100%;
  }
}
@media (min-width: 900px) {
  .access-section__texts {
    width: 40%;
  }
}
.access-section__building {
  font-size: 18px;
  margin-top: 30px;
}

@media (min-width: 900px) {
  .access-section__building {
    font-size: 25px;
  }
}
.access-section__accsess {
  margin-top: 20px;
  font-size: 13px;
}

@media (min-width: 900px) {
  .access-section__accsess {
    margin-top: 40px;
    font-size: 20px;
  }
}
.access-section__traffic {
  margin-top: 25px;
}

@media (min-width: 900px) {
  .access-section__traffic {
    margin-top: 50px;
    line-height: 3;
  }
}
@media (min-width: 900px) {
  .access-section__address {
    line-height: 3;
  }
}
.sns-section__twitter {
  margin-top: 20px;
}

@media (min-width: 900px) {
  .sns-section__twitter {
    width: 525px;
    margin: 20px auto 40px;
  }
}
.sns-section__twitter-btn {
  border: 1px solid #00d5c8;
  display: block;
  text-align: center;
  margin-top: 20px;
  padding: 5px;
  border-radius: 30px;
}

@media (min-width: 900px) {
  .sns-section__twitter-btn {
    font-size: 20px;
    padding: 10px;
    border-radius: 60px;
  }
}
.sns-section__icon {
  vertical-align: middle;
  width: 35px;
  margin-right: 10px;
}

@media (min-width: 900px) {
  .sns-section__icon {
    width: 50px;
    margin-right: 20px;
  }
}
.link-section__lists {
  margin-top: 20px;
}

@media (min-width: 900px) {
  .link-section__lists {
    margin-top: 30px;
    padding: 0 40px;
  }
}
.archive-section__title {
  text-align: center;
  background: #171a5c;
  color: #fff;
  border-radius: 15px;
  font-size: 22px;
  padding: 6px;
}

.archive-section__lists {
  margin-top: 30px;
}

.btn-inq {
  text-align: center;
  font-size: 30px;
  background-color: #00d5c8;
  border-radius: 5px;
  padding: 10px;
  display: block;
}

@media (min-width: 900px) {
  .btn-inq {
    width: 400px;
    margin: 0 auto;
  }
}
.btn-inq:link,
.btn-inq:visited,
.btn-inq:active {
  color: #fff;
}

@media (max-width: 899px) {
  .pc-only {
    display: none;
  }
}
@media (min-width: 900px) {
  .sp-only {
    display: none;
  }
}
@media (min-width: 900px) {
  .event-section {
    margin-top: 100px;
    margin-bottom: 90px;
  }
}
@media (min-width: 900px) {
  .event-section__events {
    display: flex;
    flex-direction: row;
    gap: 30px;
  }
}
.event-section__event {
  display: flex;
  align-items: center;
  padding: 20px;
}

@media (min-width: 900px) {
  .event-section__event {
    flex-direction: column;
    padding: 35px;
  }
}
.event-section__event--forum {
  background-color: #ecf0f7;
}

.event-section__event--contest {
  background-color: #faefdb;
}

.event-section__event--sympo {
  background-color: #e5ddec;
}

.event-section__event-logo {
  width: 30%;
  max-width: 200px;
  margin-right: 5%;
}

@media (min-width: 900px) {
  .event-section__event-logo {
    width: 100%;
    max-width: none;
    text-align: center;
    margin: 0;
    height: 100px;
  }
  .event-section__event-logo img {
    height: 100%;
  }
}
.event-section__event-text {
  width: 65%;
  text-align: justify;
  font-size: 12px;
}

@media (min-width: 900px) {
  .event-section__event-text {
    width: 100%;
    margin-top: 20px;
    font-size: 20px;
  }
}
.topics-section,
.announce-section,
.access-section,
.sns-section,
.link-section,
.archive-section {
  margin-top: 50px;
  padding: 0 20px;
}

@media (min-width: 900px) {
  .topics-section,
  .announce-section,
  .access-section,
  .sns-section,
  .link-section,
  .archive-section {
    margin-top: 130px;
  }
}
.archive-section {
  background-color: rgba(178, 242, 238, 0.8);
  padding: 30px 20px 5px;
  margin-bottom: 20px;
}

@media (min-width: 900px) {
  .archive-section {
    background: none;
  }
  .archive-section .content-width {
    background-color: rgba(178, 242, 238, 0.8);
    padding: 50px;
    box-sizing: border-box;
  }
}
.pc-hero {
  display: none;
}

@media (min-width: 900px) {
  .pc-hero {
    display: block;
    background: #00AAE5 url(../img/hero.png?20240620) no-repeat left top;
    background-size: contain;
    margin-top: 120px;
    color: #fff;
    position: relative;
    height: 55.5vw;
  }
}
.pc-hero__logo {
  /* width: 480px; */
}

.pc-hero__content {
  /* max-width: 570px; */
  width: 43.5%;
  position: absolute;
  top: 7.5%;
  right: 10.4%;
  text-align: center;
}

.pc-hero__copy {
  font-size: 20px;
  margin-top: 2.1vw;
  margin-right: 34px;
  text-align: right;
}

.pc-hero__copy-img {
  width: 76%;
}

.pc-hero__about {
  width: 68%;
  margin-left: 27%;
}

.pc-hero__about-title {
  font-size: 25px;
  margin-top: 3vw;
}

.pc-hero__about-text {
  font-size: 1.05vw;
  margin-top: 15px;
  line-height: 2.2;
  text-align: justify;
}

@media (min-width: 1920px) {
  .pc-hero__about-text {
    font-size: 20px;
  }
}
.hero-title-line {
  display: flex;
  align-items: center;
}

.hero-title-line:before,
.hero-title-line:after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: #fff;
}

.hero-title-line:before {
  margin-right: 1rem;
}

.hero-title-line:after {
  margin-left: 1rem;
}

.sp-hero {
  background: #00AAE5 url(../img/sp_hero.png?20240620) no-repeat center top;
  background-size: contain;
  padding-top: 98vw;
  padding-bottom: 60px;
  margin-top: 90px;
  text-align: center;
}

@media (min-width: 900px) {
  .sp-hero {
    display: none;
  }
}
.sp-hero__logo {
  max-width: 360px;
  width: 90%;
}

.sp-hero__copy {
  margin-top: 45px;
  color: #fff;
  font-size: 13px;
  line-height: 2;
  text-align: center;
}

.sp-hero__copy-img {
  width: 80%;
}

.sp-hero__about {
  color: #fff;
  padding: 0 20px;
  margin-top: 50px;
}

.sp-hero__about-title {
  font-size: 16px;
}

.sp-hero__about-text {
  text-align: justify;
  line-height: 2.2;
  margin-top: 15px;
  font-size: 13px;
}

.hero-section .section-title-inner {
  background-color: #00AAE5;
}

.hero-section .section-title-line::after {
  background-color: #fff;
}

.sns-section__info {
  margin-top: 20px;
  font-size: 13px;
  text-align: center;
}

@media (min-width: 900px) {
  .sns-section__info {
    margin-top: 40px;
    font-size: 20px;
  }
}
/* 追従縦書きボタン */
.forum-vertical-btn {
  position: fixed;
  bottom: 0;
  display: flex;
  width: 100%;
  z-index: 9999;
}

@media (min-width: 900px) {
  .forum-vertical-btn {
    top: 210px;
    right: 0;
    display: block;
    width: auto;
  }
}
.forum-vertical-btn__list {
  list-style: none;
  font-size: 20px;
  font-weight: bold;
  width: 100%;
  background: #ED7700;
}

.forum-vertical-btn__list.disabled {
  background: #9e9e9e;
}

.forum-vertical-btn__list.disabled a {
  color: #ccc;
}

@media (min-width: 900px) {
  .forum-vertical-btn__list {
    border-radius: 10px 0 0 10px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-orientation: upright;
    width: auto;
  }
}
.forum-vertical-btn__link {
  color: #fff;
  display: block;
  padding: 15px 10px;
  text-align: center;
  font-size: 13px;
}

.forum-vertical-btn__link:link,
.forum-vertical-btn__link:visited,
.forum-vertical-btn__link:hover,
.forum-vertical-btn__link:active {
  color: #fff;
}

@media (min-width: 900px) {
  .forum-vertical-btn__link {
    padding: 30px 15px;
    font-size: 18px;
  }
}
.triangle {
  transform: rotate(-90deg);
  display: inline-block;
  font-size: 13px;
  margin-left: 2px;
}

@media (min-width: 900px) {
  .triangle {
    font-size: 17px;
    margin-left: 0;
  }
}
.talksession {
  background: rgba(178, 242, 238, 0.8);
}

@media (min-width: 900px) {
  .talksession {
    padding: 20px 60px 30px;
  }
}
.speeches .speech__date {
  background: #fff;
  color: #171a5c;
}

.talksession .speech__link {
  background-color: rgba(178, 242, 238, 0.8);
}

.talksession .speech__link.disabled {
  background: #eee;
  color: #ccc;
  pointer-events: none;
}

.talksession .speech__link::before {
  background-color: #00d5c8;
}

.talksession .speech__link.disabled::before {
  background-color: #9e9e9e;
}

.talksession .speech__speaker-title {
  line-height: 1.4;
}

.talksession .speech__speaker-title {
  text-align: left;
  color: #6c84b2;
  font-size: 14px;
}

.talksession .speech__speaker-name {
  text-align: left;
}

.speech__date-time {
  margin-bottom: 5px;
  border-bottom: 3px solid;
  padding-bottom: 15px;
  padding-top: 10px;
  font-size: 20px;
}

@media (min-width: 550px) {
  .speech__date-time {
    margin-bottom: 0px;
    font-size: 30px;
  }
}
.talksession .section__title {
  border-bottom: 1px solid #2355b4;
}

.speech__speaker {
  margin-top: 15px;
}

.talksession .archive-section__title {
  margin-bottom: 30px;
  padding: 6px 0 10px;
  font-size: 18px;
}

@media (min-width: 550px) {
  .talksession .archive-section__title {
    font-size: 22px;
  }
}
.talksession .container {
  padding: 30px 0;
}

.speech__place {
  font-size: 20px;
  margin-top: 5px;
  color: #000;
}

@media (max-width: 900px) {
  .speech__place {
    font-size: 16px;
  }
}
.schedule-section__finished {
  background: #eee;
  padding: 20px;
  line-height: 1.6;
  margin-top: 20px;
  font-size: 16px;
}
@media (min-width: 900px) {
  .schedule-section__finished {
    font-size: 18px;
  }
}

.schedule-section__finished1207 {
  background: #eee;
  padding: 20px;
  line-height: 1.6;
  margin-top: 20px;
  font-size: 16px;
}

@media (min-width: 900px) {
  .schedule-section__finished1207 {
    font-size: 22px;
  }
}
.text-bold {
  font-weight: bold;
}

/* 終了対応 */
.done .schedule-section__finished1207 {
  display: none;
}

.done .talksession {
  display: none;
}

/* ========================================
2025
======================================== */
.top-access,
.top-floor {
  margin-top: 50px;
  padding: 0 20px;
}
@media screen and (min-width: 900px) {
  .top-access,
  .top-floor {
    margin-top: 130px;
  }
}

.top-access__map {
  margin-top: 40px;
}

.top-access__map iframe {
  width: 100%;
  height: 600px;
}

.homepage .top-access__use-title {
  font-size: 18px;
  font-weight: bold;
  color: #00d5c8;
  margin-bottom: 0;
}
@media screen and (min-width: 600px) {
  .homepage .top-access__use-title {
    font-size: 22px;
  }
}

.top-access__use-list {
  margin-top: 0;
}
@media screen and (min-width: 600px) {
  .top-access__use-list {
    margin-top: 10px;
  }
}

.top-access__use-group {
  margin-top: 20px;
}
@media screen and (min-width: 600px) {
  .top-access__use-group {
    margin-top: 40px;
  }
}

.top-access__use:not(:first-child) {
  margin-top: 20px;
}
@media screen and (min-width: 600px) {
  .top-access__use:not(:first-child) {
    margin-top: 30px;
  }
}

.top-access__use-item {
  font-size: 13px;
}
@media screen and (min-width: 600px) {
  .top-access__use-item {
    font-size: 18px;
  }
}

.top-access__link-text {
  font-size: 13px;
  text-align: center;
  margin-top: 20px;
}
@media screen and (min-width: 600px) {
  .top-access__link-text {
    font-size: 20px;
    margin-top: 40px;
  }
}

.top-floor__img-wrap {
  margin-top: 30px;
}

.announce-section2 {
  margin-top: 60px;
}
.announce-section2__title {
  color: #171a5c;
  font-size: 16px;
}
@media screen and (min-width: 600px) {
  .announce-section2__title {
    font-size: 19px;
  }
}

.announce-section2__list {
  display: flex;
  flex-direction: column;
  gap: 5%;
  justify-content: center;
  margin-top: 15px;
}
@media screen and (min-width: 600px) {
  .announce-section2__list {
    gap: 20px;
    margin-top: 30px;
  }
}
@media screen and (min-width: 900px) {
  .announce-section2__list {
    gap: 30px;
    flex-direction: row;
  }
}

.announce-section2__list--sceen {
  gap: 20px;
  flex-direction: row;
  margin-top: 30px;
}
@media screen and (min-width: 600px) {
  .announce-section2__list--sceen {
    gap: 30px;
    margin-top: 50px;
  }
}

.announce-section2__lead {
  margin-top: 10px;
  font-size: 16px;
}

.announce-section2__sametime-img {
  object-fit: cover;
  height: 30vw;
}
@media screen and (min-width: 600px) {
  .announce-section2__sametime-img {
    height: 290px;
  }
}

.announce-section2__item a {
  display: block;
  margin-top: 10px;
}
@media screen and (min-width: 600px) {
  .announce-section2__item a {
    margin-top: 15px;
  }
}

.announce-section2__item-img {
  max-width: 210px;
}
@media screen and (min-width: 600px) {
  .announce-section2__item-img {
    max-width: none;
  }
}/*# sourceMappingURL=style.css.map */