@charset "UTF-8";
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 100;
  src: local("Noto Sans JP Thin"), url("fonts/NotoSansJP-Thin.woff2") format("woff2"), url("fonts/NotoSansJP-Thin.woff") format("woff"), url("fonts/NotoSansJP-Thin.ttf") format("ttf"), url("fonts/NotoSansJP-Thin.eot") format("embedded-opentype");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 300;
  src: local("Noto Sans JP Light"), url("fonts/NotoSansJP-Light.woff2") format("woff2"), url("fonts/NotoSansJP-Light.woff") format("woff"), url("fonts/NotoSansJP-Light.ttf") format("ttf"), url("fonts/NotoSansJP-Light.eot") format("embedded-opentype");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: local("Noto Sans JP Regular"), url("fonts/NotoSansJP-Regular.woff2") format("woff2"), url("fonts/NotoSansJP-Regular.woff") format("woff"), url("fonts/NotoSansJP-Regular.ttf") format("ttf"), url("fonts/NotoSansJP-Regular.eot") format("embedded-opentype");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  src: local("Noto Sans JP Medium"), url("fonts/NotoSansJP-Medium.woff2") format("woff2"), url("fonts/NotoSansJP-Medium.woff") format("woff"), url("fonts/NotoSansJP-Medium.ttf") format("ttf"), url("fonts/NotoSansJP-Medium.eot") format("embedded-opentype");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: local("Noto Sans JP Bold"), url("fonts/NotoSansJP-Bold.woff2") format("woff2"), url("fonts/NotoSansJP-Bold.woff") format("woff"), url("fonts/NotoSansJP-Bold.ttf") format("ttf"), url("fonts/NotoSansJP-Bold.eot") format("embedded-opentype");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 900;
  src: local("Noto Sans JP Black"), url("fonts/NotoSansJP-Black.woff2") format("woff2"), url("fonts/NotoSansJP-Black.woff") format("woff"), url("fonts/NotoSansJP-Black.ttf") format("ttf"), url("fonts/NotoSansJP-Black.eot") format("embedded-opentype");
  font-display: swap;
}
/*
reset
------------------------------------------------------------------------------------------*/
address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: normal;
}

img {
  max-width: 100%;
  border-style: none;
  vertical-align: bottom;
  height: auto;
}

p,
dl,
dt,
dd,
ul,
ul > li,
h1,
h2,
h3,
h4,
h5,
h6,
iframe,
figure {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

ul {
  list-style: none;
}

ul > li {
  list-style-type: none;
}

caption,
th {
  text-align: left;
}

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

abbr,
acronym {
  border: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

/*
layout
------------------------------------------------------------------------------------------*/
* {
  box-sizing: border-box;
  letter-spacing: 0.06em;
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 500;
  line-height: 1.6;
  color: #663300;
  background: #FFFBF0;
  margin: 0;
  padding: 0;
  min-width: 320px;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  line-break: strict;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-feature-settings: "palt";
}

.page__wrapper {
  max-width: 100%;
  width: 820px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .page__wrapper {
    padding: 0 4%;
  }
}
@media screen and (max-width: 819px) {
  .page__wrapper {
    padding: 0 4%;
  }
}

.pc_block {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc_block {
    display: none;
  }
}

.sp_block {
  display: block;
}
@media screen and (min-width: 820px) {
  .sp_block {
    display: none;
  }
}

h1 {
  font-size: 42px;
  margin-top: 60px;
  margin-bottom: 80px;
  text-align: center;
  position: relative;
}
h1:before {
  display: inline-block;
  position: absolute;
  content: "";
  bottom: -20px; /*下線の上下の位置*/
  left: 50%;
  width: 80px; /*下線の幅*/
  height: 4px; /*下線の太さ*/
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translate(-50%); /*位置の調整*/
  background-color: #327ec1; /*下線の色*/
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 28px;
    margin-top: 60px;
    margin-bottom: 40px;
  }
}

h2 {
  font-size: 32px;
  margin-bottom: 1em;
  padding-left: 0.3em;
  padding-bottom: 0.3em;
  position: relative;
  width: 100%;
}
h2:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30%;
  border-bottom: 3px solid #327ec1;
}
h2:after {
  content: "";
  position: absolute;
  left: 30%;
  bottom: 0;
  width: 70%;
  border-bottom: 3px solid #ECB02D;
}
h2 span::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0da";
  display: inline-block;
  color: #327ec1;
  margin-right: 0.5em;
}
@media screen and (max-width: 767px) {
  h2 {
    font-size: 24px;
  }
}

a.inner_link {
  display: inline-block;
  color: #FF6699;
  text-decoration: underline;
}
a.inner_link::before {
  display: inline-block;
  content: "";
  padding-right: 0.3em;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f144";
  font-size: 14px;
  text-decoration: none;
}
a.inner_link:hover {
  color: #327ec1;
}

img {
  max-width: 100%;
  max-height: 100%;
}

p {
  margin: 1em 0;
}

.block__btn {
  text-align: center;
}
.block__btn .btn_margin {
  margin-top: 20px;
}
.block__btn .btn_center {
  margin-left: auto;
  margin-right: auto;
}
.block__btn .btn {
  display: block;
  width: 320px;
  background-color: #327ec1;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  position: relative;
}
.block__btn .btn::before {
  content: "";
  margin-right: 0.5em;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f144";
}
.block__btn .btn:hover {
  background-color: #ECB02D;
}

#side_menu {
  position: fixed;
  top: 180px;
  left: 0;
  z-index: 9999;
}

#side_menu a {
  color: #fff;
  width: 3em;
  background: #E3495C;
  background: linear-gradient(#E3495C, #e86d7c);
  padding: 1em 0.5em;
  writing-mode: vertical-rl;
  border: solid 3px #e5d800;
  border-left: none;
  font-size: 18px;
  border-radius: 0 8px 8px 0;
  margin-top: 0.1em;
  color: #fff;
  text-orientation: upright;
}

#side_menu a:hover {
  background: #e5d800;
}

.header {
  position: relative;
  border-top: #327ec1 10px solid;
  height: 400px;
  background-color: #327ec1;
}
@media screen and (max-width: 767px) {
  .header {
    height: 340px;
  }
}
.header .bg {
  background-image: url(../images/bg_main_visual_pc_2024.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.1;
  width: 100%;
  height: 100%;
}
.header img {
  width: 600px;
  max-width: 94%;
  position: absolute;
  z-index: 9999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*
footer
------------------------------------------------------------------------------------------*/
#footer {
  position: relative;
  width: 100%;
  background: #327ec1;
  box-shadow: 0px -20px 0px -10px #ECB02D;
  filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.8));
  margin-top: 80px;
  /*
      &::before {
          position: absolute;
          content: "";
          top: -16px;
          left: 0;
          width: 100%;
          height: 20px;
          background:
              linear-gradient(45deg, $main_color 10px, transparent 0), 
              linear-gradient(315deg, $main_color 10px, transparent 0);
      	background-size: 20px 20px;
      }
  */
}
#footer ul {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  #footer ul {
    display: block;
  }
}
#footer li {
  padding: 60px 0;
  color: #fff;
}
@media screen and (max-width: 767px) {
  #footer li {
    width: 100%;
    padding: 0;
    text-align: center;
  }
}
#footer .column__info {
  width: 50%;
  margin-inline: auto;
}
#footer .column__info .organizer_info {
  text-align: center;
  margin-top: 1em;
}
#footer .column__info .font_normal {
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  #footer .column__info {
    width: 100%;
    padding-top: 60px;
  }
}
#footer .associate {
  padding: 0.5em 0;
}
#footer .btn_block {
  border-top: solid 1px #ECB02D;
  margin-top: 10px;
  padding: 10px 10px;
}
#footer .btn_block a {
  display: block;
  width: 200px;
  margin: 0 auto;
  background: #ECB02D;
  color: #fff;
  padding: 0.4em;
  text-align: center;
  border-radius: 10px;
  text-decoration: none;
  font-weight: normal;
}
#footer .btn_block a:hover {
  background: #e0803a;
}
#footer #copyright {
  background: #ECB02D;
  font-weight: normal;
  text-align: center;
  color: #fff;
  font-size: 12px;
  padding: 1em;
}

/*---------------------------------------------------------------------------------------*
    TOP （ブース出展について）
 *---------------------------------------------------------------------------------------*/
.block__note.list {
  padding-left: 1em;
  margin: 1.6em 0;
  border-left: solid 3px #ECB02D;
}
@media screen and (max-width: 767px) {
  .block__note.list {
    padding-left: 0.5em;
  }
}
.block__note.list .list__item {
  padding-left: 1em;
  text-indent: -1em;
}

/* 
    ブース出展のお申し込み
*/
.order_booth {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .order_booth {
    margin-top: 60px;
  }
}
.order_booth .block__btn {
  margin: 20px 0;
}
.order_booth .block__btn .note {
  color: #cc0000;
}
.order_booth .pickup {
  border: solid 2px #ECB02D;
  border-radius: 10px;
  padding: 0 1em;
  background-color: #fff;
}
.order_booth dl {
  margin-top: 1em;
}
.order_booth dt {
  position: relative;
  color: #cc0000;
}
.order_booth dt::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0da";
  display: inline-block;
  color: #327ec1;
  margin-right: 0.5em;
}
.order_booth dd {
  padding: 0 0 1em 1em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .order_booth dd {
    padding: 0;
  }
}

/* 
    ブースタイプ
*/
.about_booth_type {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .about_booth_type {
    margin-top: 60px;
  }
}

.block__booth {
  width: 100%;
  margin: 0 auto;
  margin-top: 30px;
}

.booth__general {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .booth__general {
    display: block;
  }
}
.booth__general .booth__kind {
  width: 48%;
  border: solid 2px #327ec1;
}
@media screen and (max-width: 767px) {
  .booth__general .booth__kind {
    width: 90%;
    margin: 20px auto;
  }
}

.booth__workshop {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .booth__workshop {
    display: block;
  }
}
.booth__workshop .booth__kind {
  width: 48%;
  background-color: #fff;
  border: solid 2px #327ec1;
}
.booth__workshop .booth__kind img {
  padding: 0 5px 10px 5px;
}
@media screen and (max-width: 767px) {
  .booth__workshop .booth__kind {
    width: 90%;
    margin: 0 auto;
  }
}

.booth__name {
  background-color: #327ec1;
  padding: 0.5em 1em;
  color: #fff;
}

.about_option {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .about_option {
    margin-top: 60px;
  }
}
.about_option .option__list {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .about_option .option__list {
    display: block;
  }
}
.about_option .option__list .option__item_image {
  width: 54%;
  background-color: #fff;
  border: solid 2px #327ec1;
}
.about_option .option__list .option__item_image img {
  padding: 0 5px 10px 5px;
}
@media screen and (max-width: 767px) {
  .about_option .option__list .option__item_image {
    width: 90%;
    margin: 0 auto;
  }
}
.about_option .option__list .option__item_info {
  width: 44%;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .about_option .option__list .option__item_info {
    width: 90%;
    margin: 0 auto;
  }
}
.about_option .option__list .option__item_info .block__note.list {
  padding-left: 1em;
  margin: 1.6em 0;
  border-left: none;
}
@media screen and (max-width: 767px) {
  .about_option .option__list .option__item_info .block__note.list {
    padding-left: 0.5em;
  }
}
.about_option .option__list .option__item_info .block__note.list .list__item {
  padding-left: 1em;
  text-indent: -1em;
}

.about_heatstroke_option {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .about_heatstroke_option {
    margin-top: 60px;
  }
}
.about_heatstroke_option .heatstroke_option_detail .detail__note {
  padding-left: 1em;
  text-indent: -1em;
}
.about_heatstroke_option .heatstroke_option_detail p {
  font-size: 14px;
}

/* 
    お申し込みに関して
*/
.about_booth_order {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .about_booth_order {
    margin-top: 60px;
  }
}
.about_booth_order h3 {
  border-left: solid 8px #327ec1;
  margin: 0.5em 0;
  padding-left: 1em;
}
.about_booth_order dl {
  margin-top: 1em;
  margin-left: 1em;
}
@media screen and (max-width: 767px) {
  .about_booth_order dl {
    margin-left: 0;
  }
}
.about_booth_order dt {
  font-weight: 600;
}
.about_booth_order dd {
  padding: 0 0 1em 1em;
  font-weight: 400;
}
.about_booth_order .list .list__item {
  padding-left: 1em;
  text-indent: -1em;
}/*# sourceMappingURL=style.css.map */