html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
	box-sizing: border-box;
}
html {
	font-size: 62.5%;
	font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-style: normal;
}
body {
	line-height: 1;
	font-size: 1rem;
	-webkit-text-size-adjust: 100%;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}





/* CommonStyles */

body {
  min-width: 980px;
}
.section {
  width: 980px;
  margin: 0 auto;
}

span.bold {
  font-weight: 700;
}
span.red {
  color: #e60012;
}
span.marker {
  position: relative;
  text-decoration: underline;
  text-decoration-color: #fff100;
  text-decoration-thickness: 0.75em;
  text-decoration-skip-ink: underline;
  text-underline-offset: -0.375em;
}
span.num {
  font-family: "LINE Seed JP", sans-serif;
}

@media screen and (max-width: 749px)
{
  .pc-only {
    display: none;
  }
}

@media screen and (min-width: 750px)
{
  .sp-only {
    display: none;
  }
  .pc-only {
    display: block;
  }
}





.apply {
  max-width: 980px;
  margin: 0 auto;
  padding: 30px 20px 24px 20px;
  background-color: #e6e6e6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.apply-button-container {
  width: 470px;
}
.apply-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 42px;
  border-radius: 21px;
  background-color: #e60012;
  color: #fff;
  text-decoration: none;
  box-shadow: 1px 1px 2px 0 rgba(0,0,0,0.5);
  -webkit-transition: .1s;
  transition: .1s;
}
.apply-button::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-style: solid;
  border-color: #fff;
  border-width: 3px 3px 0 0;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25px;
  margin: auto 0;
  opacity: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: .1s;
  transition: .1s;
}
.apply-button-icon {
  width: 38px;
  height: 38px;
  overflow: hidden;
  border-radius: 50%;
  background-color: #fff;
  margin-left: 2px;
  -webkit-transition: .1s;
  transition: .1s;
}
.apply-button-text {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1;
  padding-bottom: 2px;
  flex-grow: 2;
}
.apply-button:hover {
  transform: scale(1.01);
}
.apply-button:hover::after {
  opacity: 1;
  right: 22px;
}
.apply-caption {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.025em;
  margin: 0.5em 0 -0.25em 0;
}





#header {
  width: 980px;
  margin: 0 auto;
  position: relative;
}
#header-flag {
  width: 380px;
  position: absolute;
  top: 25px;
  right: -6px;
}





#apply-01 {
  margin-top: 52px;
}





#schedule {
  padding-top: 40px;
}
.schedule-title {
  max-width: 900px;
  margin: 100px auto 20px auto;
  padding: 9px 12px 11px 12px;
  background-color: #61c1be;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
}

.venues {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 0 40px;
  width: 980px;
  margin: 0 auto;
}
.venue {
  background-color: #005178;
  color: #fff;
  flex-basis: calc(100% / 3);
  max-width: 280px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-feature-settings: "palt";
}

.venue__header {
  text-align: center;
}
.venue__header-capacity {
  font-size: 13px;
  font-weight: 700;
  border-bottom: solid 1px rgba(255,255,255,0.75);
  padding: 4px 15px 4px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 25px;
}
.venue__header-capacity .num {
  font-size: 1.2em;
}
.venue__header-area {
  font-size: 84px;
  line-height: 1;
  font-weight: 900;
  border-bottom: solid 1px rgba(255,255,255,0.75);
  padding: 3px 0px 11px 0px;
  white-space: nowrap;
}
.venue__header-date {
  font-size: 28px;
  font-weight: 700;
  border-bottom: dashed 1px rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 15px 2px 15px;
  min-height: 41px;
}
.venue__header-date .num {
  font-size: 1.2em;
}
.venue__header-time {
  font-size: 16px;
  font-weight: 700;
  border-bottom: solid 1px rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  padding: 2px 15px 6px 15px;
  min-height: 28px;
}
.venue__header-time .num {
  font-size: 1.2em;
}

.venue__access {
  padding: 6px 15px 15px 15px;
}
.venue__access-info {
  display: flex;
  align-items: center;
  min-height: 72px;
}
.venue__access-info-title {
  padding-right: 1.1em;
  font-size: 10px;
  line-height: 1;
  white-space: nowrap;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-feature-settings: "vchw" 1;
}
.venue__access-info-description {
  font-size: 14px;
  line-height: 18px;
}
.venue__access-map {
  border: solid 8px #fff;
  background-color: #ddd;
  margin-top: 7px;
  width: 100%;
  aspect-ratio: 250/132;
}
.venue__access-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}

.venue.end .venue-info,
.venue.end .venue-map {
  opacity: 0.8;
}
.venue.end::before {
  content: "終了しました";
  font-size: 30px;
  font-weight: 700;
  color: #e60012;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: rgba(255,255,255,0.8);
  z-index: 1;
}





#features {
  display: flex;
  flex-direction: column;
  gap: 56px;
  margin-top: 92px;
}
.feature-title {
  position: relative;
  border-bottom: solid 1px #727171;
}
.feature-title::before {
  content: "";
  display: block;
  width: 100%;
  border-top: solid 1px #727171;
  position: absolute;
  left: 0;
  bottom: 232px;
  z-index: -1;
}
.feature-body {
  padding: 48px 56px;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
}
.feature-body > p+p {
  margin-top: 2em;
}

.case-introduction {
  display: flex;
  align-items: center;
  gap: 36px;
  margin: 0 -1em;
}
.case-introduction-image {
  width: 390px;
  flex-shrink: 0;
}
.case-introduction-body {
}

.case-list {
  margin-top: 80px;
}
.case-list-title {
  font-size: 28px;
  line-height: 36px;
  font-weight: 700;
}
.case-item {
  display: flex;
  border: solid 1px #727171;
  padding: 12px 20px;
  margin-top: 1.75em;
  gap: 20px;
}
.case-item-info {}
.case-item-info-detail {}
.case-item-info-notes {
  font-weight: 700;
}
.case-item-image {
  flex-grow: 2;
  display: flex;
  justify-content: center;
}
.case-item-image img {
  height: 160px;
  width: auto;
}

.alert-box {
  border: solid 1px #727171;
  padding: 12px 20px;
  margin-top: 1.75em;
}
.alert-box+.alert-box {
  margin-top: 2.25em;
}
.alert-box-title {
  font-weight: 700;
}
.alert-box-description {}




#pickup {
  margin-top: 96px;
  padding: 0 80px;
  position: relative;
}
#pickup-title {
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin: -0.25em 0 0.33em 0;
}
#pickup-list {
  border: solid 1px #000;
  padding: 34px 34px;
  font-feature-settings: "palt";
}
#pickup-list dt {
  font-size: 19px;
  line-height: 31px;
  letter-spacing: 0.025em;
  font-weight: 700;
  padding-left: 24px;
  position: relative;
}
#pickup-list dd {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.025em;
  margin-top: 6px;
  padding-left: 24px;
}
#pickup-list dd+dt {
  margin-top: 25px;
}
#pickup-list dt::before,
#pickup-list dt::after {
  content: "";
  display: block;
  position: absolute;
}
#pickup-list dt::before {
  width: 12px;
  height: 12px;
  border: solid 1px #000;
  top: 10px;
  left: 0;
}
#pickup-list dt::after {
  top: 2px;
  left: -2px;
  width: 17px;
  height: 10px;
  border-left: 4px solid #0096ff;
  border-bottom: 4px solid #0096ff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#pickup-list dd small {
  font-size: 12px;
  letter-spacing: 0;
}

#pickup-notes {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin: 0.25em 0 -0.25em 0;
}

#pickup-after {
  padding-top: 54px;
  font-feature-settings: "palt";
  font-size: 19px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0.025em;
}

#pickup::before {
  content: "";
  display: block;
  width: 170px;
  height: 270px;
  background: url(img/pickup-figure.png) center no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -126px;
  right: 80px;
}





#apply-03 {
  margin-top: 68px;
  padding: 40px 80px;
  align-items: flex-start;
}





#informations {
  width: 980px;
  margin: 0 auto;
}

#present {
  background-color: #e7383d;
  color: #fff;
  padding: 100px 120px 64px 120px;
  position: relative;
}
#present-title {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0.025em;
  font-feature-settings: "palt";
  position: relative;
  padding-left: 82px;
}
#present-title span {
  font-size: 56px;
  padding-left: 0.05em;
  color: #fff799;
}
#present-title::before {
  content: "";
  display: block;
  width: 72px;
  height: 72px;
  background: url(./img/present-icon.png) center no-repeat;
  background-size: contain;
  position: absolute;
  top: -4px;
  left: 0;
}

#present-inner {
  display: flex;
  gap: 32px;
  margin-top: 44px;
}
#present-img {
  width: 225px;
  flex-shrink: 0;
}
#present-body-introduction {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.025em;
  margin-top: -0.25em;
}
#present-body-lead {
  font-family: serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 2;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  margin: 0.5em 0 0.75em 0;

  display: flex;
  flex-direction: column;
}
#present-body-lead span {
  display: block;
}
#present-body-lead span:nth-child(2) {
  align-self: flex-end;
}
#present-body-caption {
  font-feature-settings: "palt";
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.075em;
  text-align: justify;
}





#zadankai {
  background-color: #feecd2;
  padding-bottom: 48px;
}
#zadankai-title {
  font-family: serif;
  font-size: 36px;
  line-height: 62px;
  letter-spacing: 0.01em;
  font-weight: 700;
  text-align: center;
  padding: 12px 0 8px 0;
  background-color: #f39800;
  color: #fff;
}
.zadankai-description {
  font-size: 18px;
  line-height: 1.5;
  text-align: justify;
}

#zadankai-introduction {
  display: flex;
  gap: 16px;
  margin: 30px 80px;
}
#zadankai-introduction-notes {
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  margin: 0 0 20px 0;
}
#zadankai-introduction-image {
  flex-shrink: 0;
  width: 245px;
}

#zadankai-consulting {
  display: flex;
  align-items: flex-end;
  background-color: #fff;
  gap: 10px;
  margin: 0 80px;
  padding: 40px 42px;
}
#zadankai-consulting-lead {
  font-size: 25px;
  line-height: 1.5;
  font-weight: 700;
  color: #005178;
  margin: -0.25em 0 8px 0;
}
#zadankai-consulting-image {
  flex-shrink: 0;
  width: 245px;
  margin-right: -4px;
}





#footer {
  width: 980px;
  margin: 0 auto;
}
#footer-logo {
  width: 375px;
  margin: 136px auto;
}

#footer-link {
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  align-self: flex-start;
  width: 100%;
  padding-bottom: 0.5em;
}
#footer-link a {
  color: inherit;
  text-decoration: none;
}
#footer-link a:hover {
  text-decoration: underline;
}
