@charset "UTF-8";
:root {
  font-family: "Lato", "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-feature-settings: "palt" 1;
  text-align: center;
}
:root body .start {
  background: #179f3d;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9000;
}
@media only screen and (max-width: 480px) {
  :root body .start {
    background-image: none;
  }
}
:root body .start p {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 9999;
  width: 280px;
}
:root body .start p img {
  width: 100%;
}
@media only screen and (min-width: 821px) {
  :root body {
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
  }
}
@media only screen and (max-width: 820px) {
  :root body {
    position: relative;
  }
  :root body::before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url(../images/bg_city_sp.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center bottom 10%;
    z-index: -1;
  }
  :root body .container {
    padding-top: 3rem;
  }
}
:root body section {
  padding: 5rem 0;
}
:root body .bg-wrap {
  background-image: url(../images/bg_city.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom -15% center;
  background-attachment: fixed;
}
:root body .btn {
  padding: 0.8em 3em;
  font-size: 1.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  position: relative;
  z-index: 0;
}
:root body .btn:hover:before {
  opacity: 0;
}
:root body .btn:before, :root body .btn:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50px;
  position: absolute;
  left: 0;
}
:root body .btn:before {
  background: linear-gradient(to right, #48B2FD 0%, #9279FD 25%, #CB3FFF 50%, #F254BE 75%, #FABEBC 100%);
  z-index: -1;
  transition: all 0.4s;
}
:root body .btn:after {
  background: linear-gradient(120deg, #48B2FD 0%, #9279FD 70%, #CB3FFF 85%, #F254BE 100%);
  z-index: -2;
}
:root body .btn-area {
  display: flex;
  justify-content: center;
}
:root body .btn-area .btn {
  padding: 0.8em 5em;
}
@media only screen and (min-width: 821px) {
  :root .pc {
    display: block;
  }
  :root .sp {
    display: none;
  }
  :root .container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 3rem 1rem;
  }
  :root .section_title {
    color: #000;
  }
  :root .section_title li:first-child {
    font-family: "Libre Baskerville", serif;
    font-size: 1.5rem;
  }
  :root .section_title li:nth-child(2) {
    font-size: 0.9rem;
    line-height: 2em;
  }
  :root .copyright {
    font-size: 0.8rem;
    padding: 6em 1em 1em;
    font-family: "Roboto Mono", monospace;
  }
}
@media only screen and (max-width: 820px) {
  :root .pc {
    display: none !important;
  }
  :root .sp {
    display: block;
  }
  :root .section_title {
    color: #000;
  }
  :root .section_title li:first-child {
    font-family: "Libre Baskerville", serif;
    font-size: 1.5rem;
  }
  :root .section_title li:nth-child(2) {
    font-size: 0.9rem;
    line-height: 2em;
  }
  :root .container {
    max-width: 767px;
    margin: 0 auto;
  }
  :root .btn-area {
    padding: 3rem 0;
  }
  :root .copyright {
    font-size: 0.7rem;
    padding: 2em 0 1em;
  }
}

/*! destyle.css v1.0.15 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model */
/* ============================================ */
* {
  box-sizing: border-box;
}

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

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border: 0;
  border-top: 1px solid;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content */
/* ============================================ */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
  vertical-align: bottom;
}

embed,
object,
iframe {
  border: 0;
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

button[disabled],
[type=button][disabled],
[type=reset][disabled],
[type=submit][disabled] {
  cursor: default;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove arrow in IE10 & IE11
 */
select::-ms-expand {
  display: none;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable] {
  outline: none;
}

/* Table */
/* ============================================ */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* Misc */
/* ============================================ */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

header {
  width: 100vw;
  z-index: 50;
}
header .header-inner {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  padding: 0 1rem 0 0;
}
header .header-inner h2 {
  display: inline-block;
  height: 90%;
  padding: 0.1rem 2rem;
}
header .header-inner h2 img {
  height: 100%;
}
header .header-inner .wrapper {
  display: flex;
  align-items: center;
}
header .header-inner .wrapper nav ul {
  font-size: 0.9rem;
  height: 100%;
  display: flex;
  align-items: center;
}
header .header-inner .wrapper nav ul li {
  margin-right: 2rem;
}
header .headerColor-default {
  background: rgba(255, 255, 255, 0.8);
  transition: 0.5s;
}
@media screen and (max-width: 820px) {
  header {
    width: 100%;
  }
  header h2 {
    position: absolute;
    top: 0;
    right: 0;
    height: 70px;
  }
  header h2 img {
    height: 100%;
  }
  header .mobile-menu {
    width: 100%;
    height: 70px;
    background: #2b2a2a;
    position: fixed;
    bottom: 0;
    display: flex;
    z-index: 1;
  }
  header .mobile-menu .menu-list {
    width: 82%;
    height: 100%;
    display: flex;
  }
  header .mobile-menu .menu-list > li {
    width: 16.6666666667%;
    height: 100%;
    color: #fff;
    text-align: center;
  }
  header .mobile-menu .menu-list > li a {
    display: inline-block;
    width: 100%;
    height: 100%;
  }
  header .mobile-menu .menu-list > li .menu {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  header .mobile-menu .menu-list > li .menu li:nth-child(1) {
    width: 100%;
    height: 50%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }
  header .mobile-menu .menu-list > li .menu li:nth-child(2) {
    width: 100%;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
  }
  header .mobile-menu button {
    width: 18%;
    height: 100%;
    background: linear-gradient(-225deg, #48B2FD 0%, #9279FD 25%, #CB3FFF 50%, #F254BE 75%, #FABEBC 100%);
  }
  header .mobile-menu button a {
    display: inline-block;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
  }
  header .mobile-menu button a:hover {
    opacity: 0.5;
  }
}

#kv {
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(to bottom, #E2F1F6 70%, #E5DFDA 70%, #E5DFDA 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
}
@media only screen and (min-width: 821px) {
  #kv .sp {
    display: none !important;
  }
  #kv .tablet {
    display: none;
  }
}
#kv .eventtitle {
  width: 100%;
  padding-top: 30px;
  margin: 0 auto;
}
#kv .eventtitle img {
  width: 100%;
}
@media only screen and (min-width: 481px) and (max-width: 820px) {
  #kv .pc, #kv .sp {
    display: none;
  }
  #kv .tablet {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  #kv .tablet {
    display: none;
  }
  #kv .eventtitle {
    width: 100%;
    padding-top: 0;
    padding-bottom: 30px;
  }
}

#points {
  background: #E5DFDA;
  padding: 0;
}
#points .container {
  width: 100%;
  padding: 0;
}
#points .container img {
  width: 90%;
  margin: 0 auto;
  padding-bottom: 10rem;
}
@media only screen and (min-width: 429px) and (max-width: 820px) {
  #points {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  #points .container img {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 5rem;
  }
}

#guest {
  width: 100%;
  background: rgba(175, 159, 142, 0.32);
}
#guest .container {
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#guest .container .guest-wrap:not(:nth-child(4n)), #guest .container .guest-wrap:not(:nth-child(6n)) {
  margin-right: 1rem;
}
#guest .container .guest-wrap {
  background: rgba(255, 255, 255, 0.9);
  width: calc((100% - 6rem) / 4);
  text-align: right;
  display: flex;
  flex-direction: column;
  border-radius: 14px 0;
  filter: drop-shadow(0 0 10px #eee);
  margin-bottom: 1rem;
}
#guest .container .guest-wrap .guest__photo {
  width: 100%;
  padding: 0.5rem;
}
#guest .container .guest-wrap .guest__photo img {
  width: 100%;
  border-radius: 12px 0;
}
#guest .container .guest-wrap .wrapper {
  padding: 1rem 0.5rem;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
#guest .container .guest-wrap .wrapper .guest__name {
  font-weight: 600;
  width: 100%;
  flex-grow: 1;
  line-height: 1.2em;
}
#guest .container .guest-wrap .wrapper .guest__name li:first-child {
  font-size: 0.9rem;
  padding-bottom: 0.5em;
}
#guest .container .guest-wrap .wrapper .guest__name li:nth-child(2) {
  font-size: 0.8rem;
}
#guest .container .guest-wrap .wrapper .guest__logo {
  width: 100%;
  padding-top: 0.7rem;
  /*個別ロゴ調整*/
}
#guest .container .guest-wrap .wrapper .guest__logo img {
  width: 65%;
}
#guest .container .guest-wrap .wrapper .guest__logo .kokudokotsusyo {
  width: 45%;
}
#guest .container .guest-wrap .wrapper .guest__logo .sumarch {
  width: 45%;
}
#guest .container .guest-wrap .wrapper .guest__logo .lib {
  width: 70%;
}
#guest .container .guest-wrap .wrapper .guest__logo .netdata {
  width: 45%;
}
#guest .container .fadein {
  transform: translateY(30px);
  opacity: 0;
  transition: transform 2s, opacity 2s;
}
#guest .container .fadein.show {
  transform: translateY(0);
  opacity: 1;
}
@media only screen and (min-width: 429px) and (max-width: 820px) {
  #guest .container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  #guest .container .guest-wrap:not(:nth-child(4n)) {
    margin-right: 1rem;
  }
  #guest .container .guest-wrap .wrapper {
    padding: 1rem 0.5rem;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
  }
  #guest .container .guest-wrap .wrapper .guest__name {
    font-weight: 600;
    width: 100%;
    flex-grow: 1;
    line-height: 1.2em;
  }
  #guest .container .guest-wrap .wrapper .guest__name li:first-child {
    font-size: 0.9rem;
    padding-bottom: 0.5em;
  }
  #guest .container .guest-wrap .wrapper .guest__name li:nth-child(2) {
    font-size: 0.75rem;
  }
  #guest .container .guest-wrap .wrapper .guest__logo {
    width: 100%;
    padding-top: 0.7rem;
    /*個別ロゴ調整*/
  }
  #guest .container .guest-wrap .wrapper .guest__logo img {
    width: 85%;
  }
  #guest .container .guest-wrap .wrapper .guest__logo .lib {
    width: 70%;
  }
  #guest .container .guest-wrap .wrapper .guest__logo .nakajitsu {
    width: 55%;
  }
  #guest .container .guest-wrap .wrapper .guest__logo .hiramatsu {
    width: 22%;
  }
  #guest .container .guest-wrap .wrapper .guest__logo .checkhouse {
    width: 80%;
  }
  #guest .container .guest-wrap .wrapper .guest__logo .serita {
    width: 60%;
  }
}
@media screen and (max-width: 428px) {
  #guest {
    padding: 0 1rem 1.5rem;
  }
  #guest .container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 2rem;
  }
  #guest .container .guest-wrap:not(:nth-child(4n)), #guest .container .guest-wrap:not(:nth-child(6n)) {
    margin-right: 0;
  }
  #guest .container .guest-wrap {
    background: rgba(255, 255, 255, 0.9);
    width: 48%;
    text-align: right;
    display: flex;
    flex-direction: column;
    border-radius: 14px 0;
    filter: drop-shadow(0 0 10px #eee);
    margin-bottom: 1rem;
  }
  #guest .container .guest-wrap .guest__photo {
    width: 100%;
    padding: 0.5rem;
  }
  #guest .container .guest-wrap .guest__photo img {
    width: 100%;
    border-radius: 12px 0;
  }
  #guest .container .guest-wrap .wrapper {
    padding: 1rem 0.5rem;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
  }
  #guest .container .guest-wrap .wrapper .guest__name {
    font-weight: 600;
    width: 100%;
    flex-grow: 1;
    line-height: 1.2em;
  }
  #guest .container .guest-wrap .wrapper .guest__name li:first-child {
    font-size: 0.9rem;
    padding-bottom: 0.5em;
  }
  #guest .container .guest-wrap .wrapper .guest__name li:nth-child(2) {
    font-size: 0.8rem;
  }
  #guest .container .guest-wrap .wrapper .guest__logo {
    width: 100%;
    padding-top: 0.7rem;
    /*個別ロゴ調整*/
  }
  #guest .container .guest-wrap .wrapper .guest__logo img {
    width: 65%;
  }
  #guest .container .guest-wrap .wrapper .guest__logo .lib {
    width: 70%;
  }
  #guest .container .guest-wrap .wrapper .guest__logo .nakajitsu {
    width: 45%;
  }
  #guest .container .guest-wrap .wrapper .guest__logo .hiramatsu {
    width: 22%;
  }
  #guest .container .guest-wrap .wrapper .guest__logo .checkhouse {
    width: 70%;
  }
  #guest .container .guest-wrap .wrapper .guest__logo .serita {
    width: 60%;
  }
  #guest .container .guest-wrap .wrapper .guest__logo .hgc {
    width: 80%;
  }
}

#theme {
  background-image: linear-gradient(to bottom, rgba(149, 208, 221, 0.3) 40%, transparent 60%, transparent 90%);
}
#theme .container .message-wrap {
  display: inline-block;
  padding: 5rem 4rem;
  background: #fff;
  border: 2px solid transparent;
  border-image: linear-gradient(to right, #4cb8ff, #b58fff, #ff92b8) 1;
  clip-path: polygon(12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px), 0 12px);
  margin-bottom: 4rem;
}
#theme .container .message-wrap h1 {
  font-size: 2.1rem;
  letter-spacing: 0.05em;
  line-height: 1.8em;
  font-family: serif;
  padding-bottom: 1em;
}
#theme .container .message-wrap .message {
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  line-height: 2em;
}
@media only screen and (min-width: 429px) and (max-width: 820px) {
  #theme .container .message-wrap {
    width: 80%;
  }
  #theme .container .message-wrap h1 {
    font-size: 1.7rem;
    letter-spacing: 0.05em;
    line-height: 1.8em;
    font-family: serif;
    padding-bottom: 1em;
  }
  #theme .container .message-wrap .message {
    text-align: justify;
    font-size: 1rem;
    letter-spacing: 0.05em;
    line-height: 2em;
  }
}
@media screen and (max-width: 428px) {
  #theme {
    padding: 4rem 1rem 2rem;
  }
  #theme .container {
    padding: 2rem 0 0;
  }
  #theme .container .message-wrap {
    display: inline-block;
    padding: 2rem 2rem;
    margin-bottom: 2rem;
  }
  #theme .container .message-wrap h1 {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.8em;
    font-family: serif;
    padding-bottom: 1.2em;
  }
  #theme .container .message-wrap .message {
    text-align: justify;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    line-height: 2em;
  }
}

#program {
  padding: 5rem 0;
  background: rgba(175, 159, 142, 0.32);
}
#program .container {
  width: 80%;
  padding: 2rem 3rem 2rem;
  margin: 0 auto 2rem auto;
}
#program .container .order {
  background: #029B27;
  margin: 1rem 0 0;
  display: flex;
  justify-content: space-between;
  padding: 1em 2em;
  color: #fff;
  font-size: 1.3rem;
  border-radius: 20px 0 0 0;
}
#program .container .order li:nth-child(2) {
  letter-spacing: 0.05em;
  font-family: "Roboto Mono", monospace;
}
#program .container .wrapper {
  padding: 1.5rem 3rem;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 0 0 20px 0;
}
#program .container .wrapper .detail {
  text-align: left;
  color: #000;
  padding: 0.5rem 0 0.5rem 1.2rem;
  border-left: 4px solid #E5DFDA;
  margin-bottom: 1rem;
}
#program .container .wrapper .detail li:nth-child(1) {
  font-family: serif;
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  line-height: 1.5em;
  padding: 0.3em 0 0.3em;
}
#program .container .wrapper .detail li:nth-child(2) {
  font-size: 0.98rem;
  text-align: justify;
  line-height: 1.8em;
  padding-top: 0.8em;
}
#program .container .wrapper .coming02 {
  font-family: serif;
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  line-height: 1.5em;
  text-align: left;
  color: #E5DFDA;
}
#program .container .wrapper .index-wrap {
  display: flex;
}
#program .container .wrapper .index-wrap .index02 {
  display: inline-block;
  text-align: left;
  line-height: 1.7em;
  font-size: 0.98rem;
  font-weight: 500;
  padding: 1em 0;
  margin-right: 3rem;
}
#program .container .wrapper .index-wrap .index02 li {
  margin-right: 1rem;
}
#program .container .wrapper .index-wrap .index02 li::before {
  content: "";
  display: inline-block;
  width: 0.9em;
  height: 0.9em;
  background: #E5DFDA;
  position: relative;
  top: 1px;
  margin-right: 5px;
}
#program .container .wrapper .index {
  width: 100%;
  text-align: left;
  line-height: 1.7em;
  font-size: 0.98rem;
  font-weight: 500;
  padding: 1em 0;
}
#program .container .wrapper .index li {
  margin-right: 1rem;
}
#program .container .wrapper .index li::before {
  content: "";
  display: inline-block;
  width: 0.9em;
  height: 0.9em;
  background: #E5DFDA;
  position: relative;
  top: 1px;
  margin-right: 5px;
}
#program .container .wrapper .speaker {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 1rem 0;
  align-items: center;
}
#program .container .wrapper .speaker .name {
  width: 20%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#program .container .wrapper .speaker .name li:nth-child(1) {
  font-size: 0.9rem;
  color: #029B27;
  padding-bottom: 1em;
}
#program .container .wrapper .speaker .photo {
  width: 12%;
  padding-top: 12%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
#program .container .wrapper .speaker .company {
  flex-grow: 1;
  font-size: 0.9rem;
  line-height: 1.5em;
  text-align: left;
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
}
#program .container .wrapper .speaker .speaker__logo {
  width: 20%;
  display: flex;
  justify-content: flex-end;
}
#program .container .wrapper .speaker .profile {
  width: 100%;
  text-align: justify;
  font-size: 0.8rem;
  line-height: 1.6em;
  padding-top: 1em;
}
#program .container .wrapper .speaker:not(:last-of-type) {
  border-bottom: 1px dotted #494949;
}
#program .container .wrapper .netdata .photo {
  background-image: url(../images/photo_matsuoka.webp);
}
#program .container .wrapper .netdata .speaker__logo img {
  width: 85%;
}
#program .container .wrapper .kokudo .photo {
  background-image: url(../images/photo_suwa.webp);
}
#program .container .wrapper .kokudo .speaker__logo img {
  width: 90%;
}
#program .container .wrapper .lib .photo {
  background-image: url(../images/photo_nagaoka.webp);
}
#program .container .wrapper .lib .speaker__logo img {
  width: 100%;
}
#program .container .wrapper .tanaka .photo {
  background-image: url(../images/photo_tanaka.webp);
}
#program .container .wrapper .tanaka .speaker__logo img {
  width: 100%;
}
#program .container .wrapper .mizuta .photo {
  background-image: url(../images/photo_mizuta.webp);
}
#program .container .wrapper .mizuta .speaker__logo img {
  width: 100%;
}
#program .container .wrapper .inenaga .photo {
  background-image: url(../images/photo_inenaga.webp);
}
#program .container .wrapper .inenaga .speaker__logo img {
  width: 85%;
}
#program .container .wrapper .sumarch .speaker__logo img {
  width: 80%;
}
#program .container .wrapper .noimage .name li:first-child {
  padding-top: 1.2em;
}
#program .container .wrapper .noimage .photo {
  background-image: url(../images/photo_commingsoon.webp);
}
#program .container .wrapper .noimage .speaker__logo img {
  width: 92%;
}
#program .container .wrapper .noimage .company {
  padding-top: 0.5rem;
}
#program .container .wrapper .noimage .company .cs02 {
  font-size: 0.85rem;
  line-height: 2em;
  font-weight: bold;
  color: #bdbdbd;
}
#program .container .wrapper .banner {
  width: 100%;
}
#program .container .wrapper .banner img {
  width: 100%;
}
#program .container .wrapper .about {
  width: 100%;
  text-align: justify;
}
#program .container .wrapper .about li:first-child {
  font-size: 0.98rem;
  line-height: 1.8em;
  padding-top: 1em;
}
#program .container .wrapper .about li:nth-child(2) {
  font-size: 0.8rem;
  padding: 1.5em 0 2em;
}
#program .container .night-order {
  background: linear-gradient(to right, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
  color: #000;
}
#program .container .night {
  padding: 0;
}
#program .container .night .about {
  padding: 1.5rem 3rem;
}
#program .btn-area {
  padding-top: 2rem;
}
@media only screen and (min-width: 429px) and (max-width: 820px) {
  #program {
    padding: 5rem 0;
  }
  #program .sp {
    display: none;
  }
  #program .tablet {
    display: block !important;
  }
  #program .container {
    width: 80%;
    padding: 2rem 0 2rem;
    margin: 0 auto 2rem auto;
  }
  #program .container .order {
    background: #029B27;
    margin: 1rem 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em 2em;
    color: #fff;
    font-size: 1.1rem;
    border-radius: 20px 0 0 0;
  }
  #program .container .order li:nth-child(1) {
    text-align: left;
  }
  #program .container .order li:nth-child(2) {
    letter-spacing: 0.05em;
    font-family: "Roboto Mono", monospace;
  }
  #program .container .wrapper {
    padding: 1.5rem 3rem;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 0 0 20px 0;
  }
  #program .container .wrapper .detail {
    text-align: left;
    color: #000;
    padding: 0.5rem 0 0.5rem 1.2rem;
    border-left: 4px solid #E5DFDA;
    margin-bottom: 1rem;
  }
  #program .container .wrapper .detail li:nth-child(1) {
    font-family: serif;
    font-size: 1.7rem;
    letter-spacing: 0.05em;
    line-height: 1.5em;
    padding: 0.3em 0 0.3em;
  }
  #program .container .wrapper .detail li:nth-child(2) {
    font-size: 0.98rem;
    text-align: justify;
    line-height: 1.8em;
    padding-top: 0.8em;
  }
  #program .container .wrapper .coming02 {
    font-family: serif;
    font-size: 1.7rem;
    letter-spacing: 0.05em;
    line-height: 1.5em;
    text-align: left;
    color: #E5DFDA;
  }
  #program .container .wrapper .index-wrap {
    display: flex;
  }
  #program .container .wrapper .index-wrap .index02 {
    display: inline-block;
    text-align: left;
    line-height: 1.7em;
    font-size: 0.98rem;
    font-weight: 500;
    padding: 1em 0;
    margin-right: 3rem;
  }
  #program .container .wrapper .index-wrap .index02 li {
    margin-right: 1rem;
  }
  #program .container .wrapper .index-wrap .index02 li::before {
    content: "";
    display: inline-block;
    width: 0.9em;
    height: 0.9em;
    background: #E5DFDA;
    position: relative;
    top: 1px;
    margin-right: 5px;
  }
  #program .container .wrapper .index {
    width: 100%;
    text-align: left;
    line-height: 1.7em;
    font-size: 0.98rem;
    font-weight: 500;
    padding: 1em 0;
  }
  #program .container .wrapper .index li {
    margin-right: 1rem;
  }
  #program .container .wrapper .index li::before {
    content: "";
    display: inline-block;
    width: 0.9em;
    height: 0.9em;
    background: #E5DFDA;
    position: relative;
    top: 1px;
    margin-right: 5px;
  }
  #program .container .wrapper .speaker {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 1rem 0;
    align-items: center;
  }
  #program .container .wrapper .speaker .name {
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  #program .container .wrapper .speaker .name li:nth-child(1) {
    font-size: 0.9rem;
    color: #029B27;
    padding-bottom: 1em;
  }
  #program .container .wrapper .speaker .photo {
    width: 12%;
    padding-top: 12%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
  }
  #program .container .wrapper .speaker .company {
    flex-grow: 1;
    font-size: 0.9rem;
    line-height: 1.5em;
    text-align: left;
    padding-left: 1rem;
    display: flex;
    flex-direction: column;
  }
  #program .container .wrapper .speaker .speaker__logo {
    width: 20%;
    display: flex;
    justify-content: flex-end;
  }
  #program .container .wrapper .speaker .profile {
    width: 100%;
    text-align: justify;
    font-size: 0.8rem;
    line-height: 1.6em;
    padding-top: 1em;
  }
  #program .container .wrapper .speaker:not(:last-of-type) {
    border-bottom: 1px dotted #494949;
  }
  #program .container .wrapper .netdata .photo {
    background-image: url(../images/photo_matsuoka.webp);
  }
  #program .container .wrapper .netdata .speaker__logo img {
    width: 85%;
  }
  #program .container .wrapper .kokudo .photo {
    background-image: url(../images/photo_suwa.webp);
  }
  #program .container .wrapper .kokudo .speaker__logo img {
    width: 90%;
  }
  #program .container .wrapper .lib .photo {
    background-image: url(../images/photo_nagaoka.webp);
  }
  #program .container .wrapper .lib .speaker__logo img {
    width: 100%;
  }
  #program .container .wrapper .tanaka .photo {
    background-image: url(../images/photo_tanaka.webp);
  }
  #program .container .wrapper .tanaka .speaker__logo img {
    width: 100%;
  }
  #program .container .wrapper .mizuta .photo {
    background-image: url(../images/photo_mizuta.webp);
  }
  #program .container .wrapper .mizuta .speaker__logo img {
    width: 100%;
  }
  #program .container .wrapper .inenaga .photo {
    background-image: url(../images/photo_inenaga.webp);
  }
  #program .container .wrapper .inenaga .speaker__logo img {
    width: 85%;
  }
  #program .container .wrapper .sumarch .speaker__logo img {
    width: 80%;
  }
  #program .container .wrapper .noimage .name li:first-child {
    padding-top: 1.2em;
  }
  #program .container .wrapper .noimage .photo {
    background-image: url(../images/photo_commingsoon.webp);
  }
  #program .container .wrapper .noimage .speaker__logo img {
    width: 92%;
  }
  #program .container .wrapper .noimage .company {
    padding-top: 0.5rem;
  }
  #program .container .wrapper .noimage .company .cs02 {
    font-size: 0.85rem;
    line-height: 2em;
    font-weight: bold;
    color: #bdbdbd;
  }
  #program .container .wrapper .banner {
    width: 100%;
  }
  #program .container .wrapper .banner img {
    width: 100%;
  }
  #program .container .wrapper .about {
    width: 100%;
    text-align: justify;
  }
  #program .container .wrapper .about li:first-child {
    font-size: 0.98rem;
    line-height: 1.8em;
    padding-top: 1em;
  }
  #program .container .wrapper .about li:nth-child(2) {
    font-size: 0.8rem;
    padding: 1.5em 0 2em;
  }
  #program .container .night-order {
    background: linear-gradient(to right, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    color: #000;
  }
  #program .container .night {
    padding: 0;
  }
  #program .container .night .about {
    padding: 1.5rem 3rem;
  }
  #program .btn-area {
    padding-top: 2rem;
  }
}
@media screen and (max-width: 428px) {
  #program {
    padding: 3rem 1rem 1rem;
  }
  #program .container {
    width: 100%;
    padding: 1rem 0 2rem;
    margin: 0 auto 2rem auto;
  }
  #program .container .order {
    margin: 1rem 0 0;
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 1.1rem;
    padding: 1em 1em 0.5em;
  }
  #program .container .order li:nth-child(2) {
    padding-top: 0.3em;
  }
  #program .container .wrapper {
    padding: 1.5rem 1rem 1rem;
    margin-bottom: 0;
  }
  #program .container .wrapper .index li {
    margin-right: 0;
  }
  #program .container .wrapper .index-wrap {
    display: flex;
    flex-direction: column;
    padding-bottom: 1rem;
  }
  #program .container .wrapper .index-wrap .index02 {
    display: inline-block;
    text-align: left;
    line-height: 1.7em;
    font-size: 0.98rem;
    font-weight: 500;
    padding: 0 0;
    margin-right: 0;
  }
  #program .container .wrapper .index-wrap .index02 li {
    margin-right: 1rem;
  }
  #program .container .wrapper .index-wrap .index02 li::before {
    content: "";
    display: inline-block;
    width: 0.9em;
    height: 0.9em;
    background: #E5DFDA;
    position: relative;
    top: 1px;
    margin-right: 5px;
  }
  #program .container .wrapper .detail {
    text-align: left;
    padding: 0.5rem 0;
    margin-bottom: 1rem;
    border-left: none;
  }
  #program .container .wrapper .detail li:nth-child(1) {
    text-align: justify;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.5em;
    padding: 0.3em 0 0.3em 0.7em;
    border-left: 3px solid #E5DFDA;
  }
  #program .container .wrapper .detail li:nth-child(1) .coming {
    font-size: 0.9rem;
    font-weight: bold;
    color: #000;
  }
  #program .container .wrapper .speaker-head {
    font-size: 0.9rem;
    background: #edebeb;
    color: #767474;
    padding-bottom: 0;
    margin-bottom: 0.3em;
  }
  #program .container .wrapper .speaker {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    padding: 1rem 0;
    align-items: flex-start;
  }
  #program .container .wrapper .speaker .name {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  #program .container .wrapper .speaker .name li:nth-child(1) {
    font-size: 0.9rem;
    color: #029B27;
    padding-bottom: 1em;
  }
  #program .container .wrapper .speaker .photo {
    width: 32%;
    padding-top: 32%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
  }
  #program .container .wrapper .speaker .company {
    width: 66%;
    font-size: 0.9rem;
    line-height: 1.5em;
    padding-left: 0;
  }
  #program .container .wrapper .speaker .company .logo {
    width: 100%;
    padding: 3px 0 10px;
  }
  #program .container .wrapper .speaker .profile {
    width: 100%;
    text-align: justify;
    font-size: 0.8rem;
    line-height: 1.6em;
    padding-top: 1em;
  }
  #program .container .wrapper .speaker:not(:last-of-type) {
    border-bottom: 1px dotted #494949;
  }
  #program .container .wrapper .netdata .logo img {
    width: 50%;
  }
  #program .container .wrapper .noimage .logo img {
    width: 50%;
  }
  #program .container .wrapper .kokudo .logo img {
    width: 50%;
  }
  #program .container .wrapper .lib .logo img {
    width: 62%;
  }
  #program .container .wrapper .sumarch .logo img {
    width: 48%;
  }
  #program .container .night {
    padding: 0;
  }
  #program .container .night .about {
    padding: 1rem 1rem;
  }
}

#timetable {
  background: rgba(255, 255, 255, 0.7);
}
#timetable .container {
  max-width: 980px;
}
#timetable .container table {
  width: 100%;
  background: rgba(175, 159, 142, 0.4);
  text-align: left;
  border-radius: 20px 0;
}
#timetable .container table thead, #timetable .container table tbody {
  width: 100%;
}
#timetable .container table thead tr, #timetable .container table tbody tr {
  display: flex;
  width: 95%;
  margin: 0.3rem auto;
  padding: 1.2rem 1rem;
}
#timetable .container table thead tr th, #timetable .container table tbody tr th {
  font-family: "Roboto Mono", monospace;
}
#timetable .container table thead tr td, #timetable .container table tbody tr td {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#timetable .container table thead tr td ul, #timetable .container table tbody tr td ul {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#timetable .container table thead tr .time, #timetable .container table tbody tr .time {
  width: 15%;
  text-align: center;
  font-family: "Roboto Mono", monospace;
}
#timetable .container table thead tr .program, #timetable .container table tbody tr .program {
  width: 54%;
  padding-left: 2rem;
}
#timetable .container table thead tr .program ul, #timetable .container table tbody tr .program ul {
  padding-right: 2rem;
  font-weight: 500;
}
#timetable .container table thead tr .program ul li:first-child, #timetable .container table tbody tr .program ul li:first-child {
  border-bottom: 1px dotted #000;
  padding-bottom: 0.3em;
  margin-bottom: 0.7em;
}
#timetable .container table thead tr .program ul li:nth-child(2), #timetable .container table tbody tr .program ul li:nth-child(2) {
  font-size: 1.1rem;
  line-height: 1.4em;
}
#timetable .container table thead tr .program ul .coming, #timetable .container table tbody tr .program ul .coming {
  font-size: 0.9rem !important;
  color: #C9C4B7;
}
#timetable .container table thead tr .speakers, #timetable .container table tbody tr .speakers {
  width: 31%;
}
#timetable .container table thead tr .speakers ul, #timetable .container table tbody tr .speakers ul {
  border-left: 4px solid #029B27;
  padding-left: 1em;
}
#timetable .container table thead tr .speakers ul .cs, #timetable .container table tbody tr .speakers ul .cs {
  font-size: 0.85rem;
  line-height: 2em;
  font-weight: bold;
  color: #bdbdbd;
}
#timetable .container table thead tr .speakers ul li:nth-child(2), #timetable .container table tbody tr .speakers ul li:nth-child(2) {
  font-size: 0.85rem;
  line-height: 1.4em;
  padding-top: 0.3em;
}
#timetable .container table thead tr .speakers ul:nth-of-type(n+2), #timetable .container table tbody tr .speakers ul:nth-of-type(n+2) {
  margin-top: 0.8em;
}
#timetable .container table thead tr .speakers ul:not(:last-of-type), #timetable .container table tbody tr .speakers ul:not(:last-of-type) {
  margin-bottom: 0.5em;
}
#timetable .container table thead tr:nth-of-type(6), #timetable .container table tbody tr:nth-of-type(6) {
  margin-bottom: 2.5rem;
}
#timetable .container table thead .coming, #timetable .container table tbody .coming {
  font-size: 0.9rem;
  color: #C9C4B7;
}
#timetable .container table thead tr {
  padding-top: 1.5rem;
  border-bottom: 1px solid transparent;
}
#timetable .container table thead tr td {
  text-align: center;
}
#timetable .container table tbody tr {
  background: rgba(255, 255, 255, 0.9);
}
#timetable .container table tbody .break {
  background: none;
  padding: 0.5rem 1rem;
}
#timetable .container table tbody .break td:nth-of-type(2) {
  font-size: 0.9rem;
  padding-left: 2rem;
}
#timetable .container table tbody .break:last-of-type {
  padding-bottom: 1.5rem;
}
@media screen and (max-width: 820px) {
  #timetable {
    padding: 3rem 0.5rem 0;
  }
  #timetable .container {
    width: 100%;
    padding-top: 0;
  }
  #timetable .container table {
    width: 100%;
    background: rgba(175, 159, 142, 0.4);
    text-align: left;
    border-radius: 20px 0;
    margin-top: 2rem;
  }
  #timetable .container table thead, #timetable .container table tbody {
    width: 100%;
  }
  #timetable .container table thead tr, #timetable .container table tbody tr {
    display: flex;
    flex-direction: column;
    width: 95%;
    margin: 0.3rem auto;
    padding: 1.2rem 1rem;
    border-radius: 20px 0 0 0;
  }
  #timetable .container table thead tr th, #timetable .container table tbody tr th {
    font-family: "Roboto Mono", monospace;
    color: #029B27;
  }
  #timetable .container table thead tr td, #timetable .container table tbody tr td {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  #timetable .container table thead tr .time, #timetable .container table tbody tr .time {
    width: 100%;
    text-align: left;
  }
  #timetable .container table thead tr .program, #timetable .container table tbody tr .program {
    width: 100%;
    padding-left: 0;
  }
  #timetable .container table thead tr .program ul, #timetable .container table tbody tr .program ul {
    padding: 1rem 0 1.5rem 0;
    font-weight: 500;
    text-align: justify;
  }
  #timetable .container table thead tr .program ul li:first-child, #timetable .container table tbody tr .program ul li:first-child {
    border-top: 1px dotted #000;
    padding-top: 0.3em;
  }
  #timetable .container table thead tr .program ul li:nth-child(2), #timetable .container table tbody tr .program ul li:nth-child(2) {
    font-size: 1.1rem;
    line-height: 1.4em;
  }
  #timetable .container table thead tr .speakers, #timetable .container table tbody tr .speakers {
    width: 100%;
  }
  #timetable .container table thead tr .speakers > p, #timetable .container table tbody tr .speakers > p {
    font-size: 0.9rem;
    color: #029B27;
    padding-bottom: 1em;
  }
  #timetable .container table thead tr .speakers ul, #timetable .container table tbody tr .speakers ul {
    border-left: 3px solid #029B27;
    padding: 0.3em 0.3em 0.3em 1em;
  }
  #timetable .container table thead tr .speakers ul:nth-of-type(n+2), #timetable .container table tbody tr .speakers ul:nth-of-type(n+2) {
    margin-top: 0.5em;
  }
  #timetable .container table thead tr:first-of-type, #timetable .container table tbody tr:first-of-type {
    margin-top: 2rem;
  }
  #timetable .container table thead {
    display: none;
  }
  #timetable .container table tbody .break {
    background: none;
    padding: 0.5rem 1rem;
  }
  #timetable .container table tbody .break td:nth-of-type(2) {
    font-size: 0.9rem;
    padding: 0.5rem 0;
  }
}
@media only screen and (min-width: 429px) and (max-width: 820px) {
  #timetable .container {
    width: 80%;
    padding-top: 0;
  }
}

#outline {
  padding-bottom: 1rem;
}
#outline .container {
  padding: 3rem 0;
  display: flex;
  justify-content: space-around;
  /*イベント名*/
}
#outline .container .event {
  padding-top: 1rem;
}
#outline .container .event .host li:first-child {
  width: 200px;
  margin: 0 auto;
}
#outline .container .event .host li:first-child img {
  width: 100%;
  padding-bottom: 0.6rem;
}
#outline .container .event .host li:nth-child(2) {
  display: inline-block;
  font-size: 0.7rem;
  padding: 0.3em 1.3em;
  font-weight: normal;
  background: #868686;
  color: #fff;
  border-radius: 50px;
}
#outline .container .event .event-title {
  padding: 1em;
}
#outline .container .event .event-title li:nth-child(1) {
  font-size: 1rem;
  padding: 1.3rem 0 1em;
  border-top: 1px solid #868686;
}
#outline .container .event .event-title li:nth-child(2) {
  font-size: 1.4rem;
  line-height: 1.5em;
}
#outline .container .event .event-title li:nth-child(3) {
  font-size: 1rem;
  line-height: 1.5em;
}
#outline .container .event .event-title li:nth-child(4) {
  font-size: 0.95rem;
  line-height: 1.5em;
  padding: 1em 0 0.8em;
  border-bottom: 1px solid #868686;
}
#outline .container .event .event-title li:nth-child(5) {
  font-size: 1.2rem;
  line-height: 1.5em;
  padding-top: 1em;
}
#outline .container .event .event-title li:nth-child(6) {
  font-size: 0.95rem;
  line-height: 2em;
}
#outline .container .detail table {
  width: 100%;
  font-size: 1.05rem;
  line-height: 2em;
}
#outline .container .detail table tbody tr th {
  font-weight: normal;
  text-align: right;
  padding: 0.5em 1em 0.5em 0;
}
#outline .container .detail table tbody tr td {
  text-align: left;
  padding: 0.5em 0;
}
#outline .container .detail table tbody tr td small {
  font-size: 0.7rem;
  line-height: 1.1em;
  padding-top: 1em;
}
#outline .container .detail table tbody tr td .address {
  font-size: 0.9rem;
  line-height: 1.5em;
  padding: 0.5em 0;
}
#outline .container .detail table tbody tr td .material-icons {
  font-size: 1.2rem;
  color: #868686;
  position: relative;
  top: 3px;
  padding-right: 4px;
}
#outline .container .detail table tbody tr td a {
  transition: 0.5s;
}
#outline .container .detail table tbody tr td a:hover {
  opacity: 0.5;
}
#outline .container .detail table tbody tr td ul li {
  display: flex;
  align-items: center;
}
#outline .container .detail table tbody tr td .hybrid {
  display: inline-block;
  width: 8em;
  font-size: 0.7rem;
  line-height: 1em;
  padding: 0.4em 1em;
  background: #868686;
  border-radius: 50px;
  color: #fff;
  display: flex;
  justify-content: center;
}
#outline .container .detail table tbody tr td .green {
  color: #029B27;
}
#outline .btn-area {
  padding-bottom: 5rem;
}
@media screen and (max-width: 820px) {
  #outline {
    background: rgba(255, 255, 255, 0.7);
    padding-bottom: 5rem;
  }
  #outline .container {
    display: flex;
    flex-direction: column;
    /*イベント名*/
  }
  #outline .container .event .host {
    margin: 0 auto;
  }
  #outline .container .event .host li:first-child {
    width: 100%;
  }
  #outline .container .event .host li:first-child img {
    width: 60%;
    padding-bottom: 0.6rem;
  }
  #outline .container .event .host li:nth-child(2) {
    display: inline-block;
    font-size: 0.7rem;
    padding: 0.3em 1.3em;
    font-weight: normal;
    background: #868686;
    color: #fff;
    border-radius: 50px;
  }
  #outline .container .event .event-title li:nth-child(2) {
    font-size: 1.6rem;
    line-height: 1.6em;
  }
  #outline .container .event .event-title li:nth-child(3) {
    padding-top: 0.3em;
  }
  #outline .container .event .event-title li:nth-child(6) {
    font-size: 0.95rem;
    line-height: 2em;
  }
  #outline .container .detail table {
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
    line-height: 1.5em;
  }
  #outline .container .detail table tbody tr {
    display: flex;
    flex-direction: column;
  }
  #outline .container .detail table tbody tr th {
    color: #029B27;
    text-align: left;
    padding: 1em 0 0.6em;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
  }
  #outline .container .detail table tbody tr th::after {
    content: "";
    display: inline-block;
    flex-grow: 1;
    height: 1px;
    border-top: 1px dotted #000;
    margin-left: 1rem;
  }
  #outline .container .detail table tbody tr td {
    text-align: justify;
    padding: 0;
    font-size: 1.1rem;
  }
  #outline .container .detail table tbody tr td small {
    font-size: 0.7rem;
    line-height: 1.1em;
  }
  #outline .container .detail table tbody tr td .material-icons {
    font-size: 1.2rem;
    color: #868686;
    position: relative;
    top: 3px;
    padding-right: 4px;
  }
  #outline .container .detail table tbody tr td a {
    transition: 0.5s;
  }
  #outline .container .detail table tbody tr td a:hover {
    opacity: 0.5;
  }
  #outline .container .detail table tbody tr .inquiry {
    line-height: 2em;
  }
}
@media only screen and (min-width: 429px) and (max-width: 820px) {
  #outline .event, #outline .detail {
    width: 60%;
    margin: 0 auto;
  }
}