@charset "UTF-8";

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

* {
  box-sizing: border-box;
}

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

* {
  -webkit-appearance: none;
  /*webkit系ブラウザのデフォルトスタイル*/
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 400;
  overflow-wrap: break-word;
  color: #ee7300;
  margin: 0;
  background-color:#ee7300;
  padding-bottom: 110px;
}
@media screen and (max-width: 768px) {
  body {
    padding-bottom: 80px;
  }
}

br {
  display: block;
  content: "";
  margin: 10px 0;
}

.pc_br {
  display: none;
}

@media (min-width: 960px) {
  .pc_br {
    display: block;
  }
}

.sp_br {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp_br {
    display: block;
  }
}


h1 {
  line-height: 1.2;
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1.5;
  letter-spacing: 0.01em;
}

h3 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.4;
  letter-spacing: 0.01em;
}

h4 {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  line-height: 1.4;
  letter-spacing: 0.005em;
}

h5 {
  font-size: clamp(1.5rem, 3.5vw, 1.9rem);
  line-height: 1.5;
  letter-spacing: 0.005em;
}

h6 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  line-height: 1.8;
  letter-spacing: normal;
}

p {
  font-size: clamp(1.5rem, 2.5vw, 1.6rem);
  line-height: 2;
  /* letter-spacing: 0.01em; */
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  opacity: .7;
}

img {
  max-width: 100%;
  vertical-align: top;
}

section {
  padding-top: 110px;
}
@media (max-width: 768px) {
  section {
    padding-top: 63px;
  }
}

/* wrapper */

.kv__wrapper .container {
  margin: 0 80px;
}
@media (max-width: 768px) {
  .kv__wrapper .container {
    margin: 0 20px;
  }
}

.bg__card {
  background: #ffffff;
  border-radius: 30px;
  margin: 0 80px;
  padding: 60px 60px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media (max-width: 768px) {
  .bg__card {
    border-radius: 30px;
    margin: 0px 20px;
    padding: 40px 20px;
  }
}

.wrapper .container {
  width: 100%;
  margin: 0px auto;
  padding: 0px 5%;
}

@media (max-width: 768px) {
  .wrapper .container {
    padding: 0px 20px;
  }
}

.wrapper__inner .container {
  width: 100%;
  margin: 0px auto;
  padding: 40px 5%;
}

@media (max-width: 768px) {
  .wrapper__inner .container {
    padding: 30px 20px 30px 20px;
  }
}

.wrapper__common .container {
  width: 100%;
  margin: 0px auto;
  padding: 180px 120px 5%;
}

@media (max-width: 768px) {
  .wrapper__common .container {
    padding: 120px 20px 60px;
  }
}

.footer__wrapper .container {
  width: 100%;
  margin: 0px auto;
  padding: 40px 5% 15px 5%;
}

@media (max-width: 768px) {
  .footer__wrapper .container {
    padding: 20px 20px 15px 20px;
  }
}

.copyright__wrapper .container {
  width: 100%;
  margin: 0px auto;
  padding: 5px 5%;
}

@media (max-width: 768px) {
  .copyright__wrapper .container {
    padding: 5px 5%;
  }
}

.bg__lg {
  background: #531f83;
}

.bg__image {
  background-color:#ee7300;
  background-image:url("/img/thai_pattern.png");
  background-size:500px;
  background-repeat:repeat;
}


@keyframes spin {
  to { transform: rotate(360deg); }
}

/* header */

#header {
  width: 100%;
  align-items: center;
  height: 80px;
  align-items: center;
  background: #ee7300;
  display: flex;
  justify-content: space-between;
  padding: 0 3%;
  position: sticky;
  top: 0;
  z-index: 999;
  color: #fff;
  transition: 0.7s ease-out;
  /* box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16); */
}

#header__sub {
  width: 100%;
  align-items: center;
  height: 80px;
  align-items: center;
  background: transparent;
  display: flex;
  justify-content: space-between;
  padding: 0 3%;
  position: sticky;
  top: 0;
  z-index: 999;
  background: #ee7300;
  color: #fff;
  transition: 0.7s ease-out;
}

#header.scroll-nav {
  width: 100%;
  height: 80px;
  align-items: center;
  background: #ee7300;
  color: #fff;
  display: sticky;
  justify-content: space-between;
  padding: 0 3%;
  position: fixed;
  top: 0;
  z-index: 999;
  transition: 0.7s ease-out;
  /* box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16); */
}

/* nav */

nav {
  width: 100%;
  display: flex;
  align-items: center;
  margin: 0 auto;
  justify-content: space-between;
}

nav h1 {
  text-decoration: none;
}

.header__nav__logo {
  display: flex;
  align-items: center;
  justify-content: left;
  flex-basis: 15%;
}


@media(max-width: 768px) {

  #header {
    display: none;
  }

  #header__sub {
    display: none;
  }

  #header.scroll-nav {
    display: none;
  }

  #header__sp {
    width: 100%;
    height: 68px;
    padding: 0 20px;
    align-items: center;
    position: sticky;
    top: 0;
    background: #ee7300;
    z-index: 999;
    transition: 0.7s ease-out;
    /* box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16); */
  }

  #header__sub__sp {
    width: 100%;
    height: 68px;
    padding: 0 20px;
    align-items: center;
    position: sticky;
    top: 0;
    background: #ee7300;
    z-index: 999;
    transition: 0.7s ease-out;
  }

  #header__sp.scroll-nav__sp {
    width: 100%;
    height: 68px;
    padding: 0 20px;
    align-items: center;
    position: sticky;
    top: 0;
    background: #ee7300;
    z-index: 999;
    transition: 0.7s ease-out;
    /* box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16); */
  }

  .header__sp__container {
    display: flex;
    height: 68px;
    justify-content: space-between;
    align-items: center;
  }

  .header__sp__inner {
    display: flex;
    align-items: center;
    justify-content: left;
  }

    .header__sp__inner {
    display: flex;
    align-items: center;
    justify-content: left;
  }

    .header__sp__logotype {
    display: flex;
    align-items: center;
    justify-content: left;
    text-align: left;
  }

    .header__sp__logotype {
    display: flex;
    align-items: center;
    justify-content: left;
  }


  .header__sp__image img {
    width: 200px
  }

  .header__sp__name {
    display: flex;
    align-items: start;
    list-style: none;
    margin-left: 6px;
    margin-top: 2px;
  }


  /* ハンバーガーボタンのデザイン */
  .drawer__button {
    position: relative;
    width: 4rem;
    height: 2rem;
    background-color: transparent;
    border: none;
    cursor: pointer;
    margin-right: 18px;
    z-index: 999;
    align-items: center;
    /* メニューを開いている時もクリックできるよう設定 */
  }

  /* ハンバーガーボタン内の線 */
  .drawer__button>span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3rem;
    height: 1.5px;
    background-color: #ffffff;
    transform: translateX(-50%);
  }

  .drawer__button>span:first-child {
    transform: translate(-50%, calc(-50% - 0.8rem));
    transition: transform 0.3s ease;
  }

  .drawer__button>span:nth-child(2) {
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
  }

  .drawer__button>span:last-child {
    transform: translate(-50%, calc(-50% + 0.8rem));
    transition: transform 0.3s ease;
  }

  .drawer__button>span.scroll-nav_button {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3rem;
    height: 1.5px;
    background-color: #ffffff;
    transform: translateX(-50%);
  }

  .drawer__button>span:first-child.scroll-nav_button {
    transform: translate(-50%, calc(-50% - 0.8rem));
    transition: transform 0.3s ease;
  }

  .drawer__button>span:nth-child(2).scroll-nav_button {
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
  }

  .drawer__button>span:last-child.scroll-nav_button {
    transform: translate(-50%, calc(-50% + 0.8rem));
    transition: transform 0.3s ease;
  }

  /* 展開時のデザイン */
  .drawer__button.active>span:first-child {
    background-color: #ffffff;
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .drawer__button.active>span:nth-child(2) {
    opacity: 0;
  }

  .drawer__button.active>span:last-child {
    background-color: #ffffff;
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .drawer__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
    opacity: 0;
    visibility: hidden;
  }

  .drawer__nav.active {
    opacity: 1;
    visibility: visible;
  }

  .drawer__nav__inner {
    position: relative;
    width: 100%;
    height: 100%;
    background-color:#ee7300;
    /* background-image:url("/img/thai_pattern.png");
    background-size:500px;
    background-repeat:repeat; */
    padding: 6rem 1.5rem 1rem;
    margin: 0 0 0 auto;
    overflow: scroll;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .drawer__nav.active .drawer__nav__inner {
    transform: translateX(0);
  }

  .drawer__nav__menu {
    list-style: none;
    padding-left: 0;
    margin-top: 8px;
  }

  .drawer__nav__link {
    display: block;
    text-decoration: none;
    padding: 2rem 2rem;
    border-bottom: solid 1px #eeeeee84;
    color: #fff;
  }

  .drawer__nav__menu>li:first-child {
    border-top: solid 1px #eeeeee84;
  }

  .drawer__nav__item {
    font-weight: 600;
    letter-spacing: .1rem;
  }

  .drawer__translate {
  display: flex;
  margin-top: 20px;
  justify-content: center;
  list-style: none;
}

  .drawer__translate__link {
    font-size: 1rem;
    letter-spacing: .1rem;
    text-align: center;
    color: #fff;
    opacity: .8;
  }

  /* body.active {
    height: 100%;
    overflow: hidden;
  } */
}

@media screen and (min-width: 960px) {
  #header__sp {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  header nav {
    display: none;
  }
}

.drawer__nav__logo {
  text-align: center;
  margin-top: 40px;
}

.drawer__nav__logo img {
  width: 180px;
}

/* kv_copy pc */

.kv_copy__top {
  width: 100%;
  position: absolute;
  top: 18%;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (max-width: 768px) {
  .kv_copy__top {
    display: none;
  }
}

.kv_copy__top h2 {
  font-size: 4rem;
  line-height: 1.5;
  letter-spacing: .1rem;
  text-align: center;
  color: #ffffff;
}

.kv_copy__middle {
  width: 100%;
  position: absolute;
  top: 42%;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0px;
}

@media (max-width: 768px) {
  .kv_copy__middle {
    display: none;
  }
}

.kv_copy__middle img {
  width: 200px;
}


.kv_copy__bottom {
  width: 100%;
  position: absolute;
  top: 60%;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0px;
}

@media (max-width: 768px) {
  .kv_copy__bottom {
    display: none;
  }
}

.kv_copy__bottom h3 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: .1rem;
  line-height: 1.8;
  text-align: center;
  color: #fff;
}

.kv_copy__bottom h4 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .1rem;
  line-height: 1.8;
  text-align: center;
  color: #fff;
}

.kv__nav {
  width: 100%;
  position: absolute;
  top: 80%;
  align-items: center;
  justify-content: center;
  display: flex;
  gap: 0px 30px;
}
@media (max-width: 768px) {
  .kv__nav {
    display: none;
  }
}


.kv__nav__btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #b8922d;
  background: linear-gradient(
    90deg,
    rgba(133,104,26,1) 0%,   /* 左端：濃い金（視認性確保） */
    rgba(183,144,42,1) 20%,  /* 徐々に明るく */
    rgba(224,185,60,1) 40%,  /* やや明るいゴールド */
    rgba(250,220,100,1) 50%, /* 🔸中央：輝きを残しつつトーンを抑える */
    rgba(224,185,60,1) 60%,  /* 自然に戻す */
    rgba(183,144,42,1) 80%,  /* トーンを統一 */
    rgba(133,104,26,1) 100%  /* 右端：濃金 */
  );
  min-width: 280px;
  height: 60px;
  border-radius: 999px;
  padding: 10px 15px;
  transition: 0.3s;/*マウスオンした時の変化のスピード*/
}
@media (max-width: 768px) {
  .kv__nav__btn {
    height: 48px;
  }
}

.kv__nav__btn__label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.kv__nav__btn__label h3 {
  font-size: 1.8rem;
  letter-spacing: .1rem;
  color: #ffffff;
  margin: 0;
}

.kv__nav__btn__label p {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .1rem;
  color: #ffffff;
  margin: 0;
}

/* アイコンのスタイル */
.kv__nav__btn__arrow::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 22px;
  width: 14px;
  height: 14px;
  margin: auto;
  background: url('/img/icon_arrow.svg') no-repeat center center;
  background-size: contain; /* SVG全体をフィット */
}

.kv__nav__btn__blank::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 22px;
  width: 12px;
  height: 12px;
  margin: auto;
  background: url('/img/icon_blank.svg') no-repeat center center;
  background-size: contain; /* SVG全体をフィット */
}


/* kv_copy sp */

.kv_copy__top__sp {
  width: 100%;
  position: absolute;
  top: 14%;
  left: 0;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (min-width: 960px) {
  .kv_copy__top__sp {
    display: none;
  }
}

.kv_copy__top__sp h2 {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: .1rem;
  line-height: 1.6;
  text-align: center;
  color: #fff;
}


.kv_copy__middle__sp {
  width: 100%;
  position: absolute;
  top: 26%;
  left: 0;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (min-width: 960px) {
  .kv_copy__middle__sp {
    display: none;
  }
}

.kv_copy__middle__sp img {
  width: 160px;
}

.kv_copy__bottom__sp {
  width: 100%;
  position: absolute;
  top: 38%;
  left: 0;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (min-width: 960px) {
  .kv_copy__bottom__sp {
    display: none;
  }
}

.kv_copy__bottom__sp h3 {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: .1rem;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  margin-top: 10px;
}

.kv_copy__bottom__sp h4 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .1rem;
  line-height: 1.8;
  text-align: center;
  color: #fff;
  margin-top: 10px;
}

.kv__nav__sp {
  width: 100%;
  position: absolute;
  top: 55%;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  gap: 20px 0px;
}
@media (min-width: 960px) {
  .kv__nav__sp {
    display: none;
  }
}



.header__logo__container {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  position: relative;
  top: 400px;
  z-index: 999;
  background: #63320a00;
}

.header__nav__item {
  margin: 0 0 0 30px;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: .1rem;
}

.nav-box01 p {
  margin: 0;
  padding: 0;
}

.nav-box02 {
  background: #;
  padding: 5px 5px 5px 5px;
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 10px;
}

.nav-box02 p {
  margin: 0;
  padding: 0;
}

.header__type__en {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header__type__en img {
  width: 180px;
}

.header__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header__logo img {
  width: 160px;
}

.header__logo p {
  font-size: 1.4rem;
  font-weight: 600;
  color: #505050;
  letter-spacing: .2rem;
  line-height: 1;
  margin-top: 6px;
}

.header__sp__icon {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header__sp__icon img {
  width: 130px;
}

.header__sp__image {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header__sp__image img {
  width: 220px;
}

.header__sp__image p {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
}

.header__nav__translate {
  display: flex;
  align-items: center;
  justify-content: right;
  list-style: none;
  flex-basis: 20%;
}

.header__nav__translate__item {
  font-size: 1rem;
  letter-spacing: .1rem;
  align-items: center;
  opacity: .9;
}

.header__nav__container {
  display: flex;
  align-items: center;
  justify-content: right;
  list-style: none;
  flex-basis: auto;
}

.header__nav__link {
  font-size: 1.2rem;
  letter-spacing: .1rem;
  opacity: .7;
  align-items: center;
}


/* common */

.common__bg__wrapper {
  margin-top: 60px;
}

@media (max-width: 768px) {
  .common__bg__wrapper {
    margin-top: 40px;
  }
}

.common__bg__wrapper img {
  border-radius: 20px;
}

@media (max-width: 768px) {
  .common__bg__wrapper img {
    border-radius: 10px;
  }
}

.common__title {
  text-align: center;
}

.common__title h2 {
  color: #FFF;
}

.common__title p {
  color: #fff;
}

@media (max-width: 768px) {
  .common__title p {
    font-size: 1.2rem;
    margin-top: 10px;
  }
}

.common__lead {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .common__lead {
    margin-top: 20px;
  }
}

.common__lead p {
  margin-block-start: 1em;
  margin-block-end: 1em;
  text-align: center;
  
}
@media (max-width: 768px) {
  .common__lead p {
    text-align: left;
  }
}

.privacy__lead {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .privacy__lead {
    margin-top: 20px;
  }
}

.privacy__lead p {
  margin-block-start: 1em;
  margin-block-end: 1em;
  text-align: left;
  color: #555;
  
}
@media (max-width: 768px) {
  .privacy__lead p {
    text-align: left;
  }
}


.common__pagelink__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 240px;
  height: 60px;
  margin: 0 auto;
  padding: .2em 1em;
  border-radius: 60px;
  background: #352294;
  color: #ffffff;
  letter-spacing: 0.1px;
  line-height: 1;
  margin-top: 80px;
}

@media (max-width: 768px) {
  .common__pagelink__btn {
    margin-top: 60px;
    border-radius: 60px;
    height: 55px;
  }
}

.common__pagelink__btn::after {
  transform: rotate(45deg);
  width: 10px;
  height: 10px;
  margin-left: 10px;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  content: '';
}

/* kv */

.kv {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .kv {
    display: none;
  }
}

.kv img {
  border-radius: 30px;
}

.kv__sp img {
  border-radius: 30px;
}

.kv__sp {
  width: 100%;
  height: 100%;
}
@media (min-width: 960px) {
  .kv__sp {
    display: none;
  }
}


.common__title__img {
  margin-top: 80px;
  text-align: center;
}

@media (max-width: 768px) {
  .common__title__img {
    margin-top: 40px;
  }
}

.top__common__lead {
  text-align: center;
  margin-top: 80px;
}

@media (max-width: 768px) {
  .top__common__lead {
    text-align: left;
    margin-top: 40px;
  }
}

/*  */

.vendor__lead {
  border: #63320A 0px solid;
  text-align: left;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .vendor__lead {
    margin-top: 30px;
  }
}

.vendor__type {
  margin-top: 60px;
  text-align: center;
}
@media (max-width: 768px) {
  .vendor__type {
  }
}

.vendor__at__etc {
  text-align: left;
  margin-top: 20px;
  color: #555555;
}
@media (max-width: 768px) {
  .vendor__at__etc p {
    text-align: left;
  }
}


.vendor__item {
  margin-top: 60px;
  overflow: scroll;
  border-radius: 20px;
  border: solid 2px #ee7300;
}
@media (max-width: 768px) {
  .vendor__item {
    margin-top: 5px;
  }
}

.vendor__booth__map {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .vendor__booth__map {
    margin-top: 30px;
  }
}


.vendor__item__sp p {
  display: block;
  font-size: 1.2rem;
  margin-top: 30px;
  color: #555555;
}
@media (min-width: 960px) {
  .vendor__item__sp {
    display: none;
  }
}

.vendor__label {
  background: #63320A;
  border-radius: 5px;
}

.vendor__item table {
  width: 100%;
  border-collapse: separate;
  overflow: hidden;
  border-spacing: 0;
  border-radius: 20px;
  text-align: center;
  border: 0px transparent;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .vendor__item table {
    width: 100%;
    min-width: 780px;
  }
}

.vendor__item tbody {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

.vendor__item table tr {
  padding: .35em;
  border: 1px solid #ee730030;
  border-radius: 20px;
}

.vendor__item table th,
.vendor__item table td {
  padding: 1em;
  text-align: center;
  vertical-align: middle;
  border-right: 1px solid #ee730030;
  border-bottom: 1px solid #ee730030;
  background: #fff;
}

.vendor__item table td {
  color: #555555;
}

.vendor__item table th:last-child,
.vendor__item table td:last-child {
  border-right: none;
}

.vendor__item table tbody tr:last-child th,
.vendor__item table tbody tr:last-child td {
  border-bottom: none;
}


.txt{
   text-align: left;
   font-size: .85em;
}
.booth__title {
  font-weight: bold;
}
.price span {
    font-size: .6em;
}

/* 上のオレンジ見出し */
.booth-table thead tr:first-child th{
}

/* 項目行 */
.booth-table thead tr:nth-child(2) th{
  background:#fff1e6;
}

/* ブース名 */
.booth-table tbody th{
  background:#fff7f2;
}

/* オプション列 */
.booth-table td:nth-child(n+4){
  background:#fff4eb;
}

/* ホバー */
.booth-table tbody tr:hover td,
.booth-table tbody tr:hover th{
  background:#ffe3cc;
  transition:0.2s;
}

/* top */

.top__products__nav__inner {
  max-width: 1280px;
  margin-top: 80px;
}

@media (max-width: 768px) {
  .top__products__nav__inner {
    width: 100%;
    margin-top: 40px;
  }
}

.top__products__nav__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .top__products__nav__container {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 30px 0px;
  }
}

.top__products__btn {
  display: block;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 60px 0em;
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .top__products__btn {
    width: 100%;
    margin: 0 auto;
    padding: 30px 0em;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 10px 0px;
  }
}

.top__products__btn img {
  max-width: 160px;
}

.top__products__btn h3 {
  color: #352294;
  font-weight: 400;
  line-height: 1;
  letter-spacing: .1rem;
}

.top__products__btn p {
  line-height: 1;
  margin-top: 15px;
}

.top__products__nav__item {
  width: 100%;
  text-align: center;
  margin: 0 20px;
  padding: 0px 0;
}

@media (max-width: 768px) {
  .top__products__nav__item {
    padding: 0px 0px;
    margin: 0 0;
  }
}

.top__brands__nav__inner {
  max-width: 1280px;
  margin-top: 80px;
}

@media (max-width: 768px) {
  .top__brands__nav__inner {
    width: 100%;
    margin-top: 40px;
  }
}

.top__brands__nav__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .top__brands__nav__container {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 40px 0px;
  }
}

.top__brands__nav__item {
  width: 100%;
  margin: 0 20px;
  padding: 40px 0;
}

@media (max-width: 768px) {
  .top__brands__nav__item {
    padding: 0px 0px;
    margin: 0 0;
  }
}

.top__common__brands {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 280px;
  margin: 0 auto;
  padding: 60px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 20px;
  color: #ffffff;
}

@media (max-width: 768px) {
  .top__common__brands {
    width: 100%;
    height: 150px;
    padding: 30px 0;
    margin: 0 auto;
    flex-direction: column;
    flex-wrap: wrap;
  }
}

.top__common__brands img {
  width: 300px;
}

@media (max-width: 768px) {
  .top__common__brands img {
    width: 240px;
  }
}

/* news */

.news__inner {
  max-width: 1280px;
  max-height: 300px;
  padding: 40px;
  margin-top: 80px;
  background: #fff;
  border-radius: 20px;
  overflow: scroll;
}

@media (max-width: 768px) {
  .news__inner {
    width: 100%;
    padding: 20px;
    margin-top: 40px;
    border-radius: 10px;
  }
}

/***** news cms ******/

/* clearfix */
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.clearfix {
  display: inline-block;
  margin-top: 0px;
}

/* for macIE \*/
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

ul#newsList {
  margin: 0 0 15px;
  padding: 0;
}

ul#newsList li {
  margin: 0px 0;
  padding: 0px 0 10px 0;
  margin-bottom: 10px;
  border-bottom: 1px solid #f8f8f8;
  line-height: 120%;
  list-style-type: none;
}

.catName {
  display: inline-block;
  padding: 4px 8px;
  border: 1px solid #eeeeee;
  background: #352294;
  color: #fff;
  border-radius: 5px;
  line-height: 100%;
  margin: 0 2px;
}

.title__innner {
  display: block;
  margin: 8px 0;
}

.newMark {
  display: inline-block;
  border: 1px solid #F00;
  padding: 1px 4px;
  line-height: 100%;
  background: #F00;
  color: #fff;
}

.comment {
  display: block;
  padding: 5px 0;
  float: left;
  overflow: hidden;
  max-width: 1280px;
  font-size: 1.5rem;
  /* 本文部分の幅。ここは特に設置ページ合わせて変更下さい */
}

.thumbNailWrap {
	display:block;
	width:110px;
	float:left;
	height:80px;
	overflow:hidden;
}

.up_ymd {
  font-size: 1.2rem;
  color: #a0a0a0;
}

.title {
  font-size: 1.5rem;
  color: #352294;
}

@media (max-width: 768px) {
  .title {
    font-size: 1.2rem;
  }
}

.detailText {
  font-size: 1.5rem;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .detailText {
    font-size: 1.2rem;
  }
}

/* brands */

.blands__title {
  width: 100%;
  margin: auto;
  text-align: center;
  align-items: center;
}

.blands__title h3 {
  color: #ee7300;
  line-height: 1;
}

.blands__title p {
  line-height: 1;
  margin-top: 20px;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .blands__title p {
    font-size: 1.2rem;
    margin-top: 10px;
  }
}

.brands__nav__inner {
  max-width: 1280px;
  margin-top: 80px;
}

@media (max-width: 768px) {
  .brands__nav__inner {
    width: 100%;
    margin-top: 40px;
  }
}

.brands__nav__list {
  display: flex;
  gap: 0px 60px;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

@media (max-width: 768px) {
  .brands__nav__list {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 30px 0px;
  }
}

.brands__nav__item {
  width: 100%;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.brands__nav__item:hover {
  opacity: .6;
  transition: opacity .6s;
}

.brands__common__nav {
  display: block;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  height: 350px;
  margin: 0 auto;
  padding: .2em 0em;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 768px) {
  .brands__common__nav {
    display: flex;
    align-items: center;
    width: 100%;
    height: 120px;
    margin: 0 auto;
    padding: 0;
    flex-direction: column;
    flex-wrap: wrap;
  }
}

.brands__common__nav img {
  width: 300px;
}

@media (max-width: 768px) {
  .brands__common__nav img {
    width: 180px;
  }
}

.brands__pocely__inner {
  max-width: 1280px;
  background: #fff;
  border-radius: 20px;
  padding: 100px 60px;
  text-align: center;
}

@media (max-width: 768px) {
  .brands__pocely__inner {
    padding: 60px 30px;
  }
}

.brands__dermazipangu__inner {
  max-width: 1280px;
  background: #ffffff;
  border-radius: 20px;
  padding: 100px 60px;
  text-align: center;
  margin-top: 120px;
}

@media (max-width: 768px) {
  .brands__dermazipangu__inner {
    padding: 60px 30px;
  }
}

.brands__cipirica__inner {
  max-width: 1280px;
  background: #fff;
  border-top: #9BB7BD;
  border-radius: 20px;
  padding: 100px 60px;
  text-align: center;
  margin-top: 120px;
}

@media (max-width: 768px) {
  .brands__cipirica__inner {
    padding: 60px 30px;
  }
}

.brands__logo {
  margin-top: 0px;
}

.brands__logo img {
  width: 400px;
}

@media (max-width: 768px) {
  .brands__logo img {
    width: 240px;
  }
}

.brands__logo__lead {
  margin-top: 60px;
}

.brands__logo__lead p {
  text-align: justify;
}

.brands__lineup__comingsoon {
  display: flex;
  width: 300px;
  height: 300px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid #eee;
  border-radius: 20px;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .brands__lineup__comingsoon {
    margin-top: 40px;
    width: 255px;
    height: 255px;
  }
}

.brands__lineup__comingsoon p {
  font-size: 3rem;
  letter-spacing: 1rem;
  font-weight: 400;
  color: #cccccc;
}
@media (max-width: 768px) {
  .brands__lineup__comingsoon p {
    font-size: 2rem;
  }
}

.brands__lineup {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 20px;
  justify-content: space-around;
  margin-top: 80px;
}

@media (max-width: 768px) {
  .brands__lineup {
    margin-top: 40px;
  }
}

.brands__lineup__item img {
  border-radius: 20px;
}

.brands_lineup__products_txt {
  margin-top: 10px;
  line-height: 1;
  text-align: center;
}

.brands__common__products_img {
  background: #fff;
  border: #e1e1e1 solid 0.5px;
  border-radius: 0px;
}

/* products */

.products_item {
  max-width: 400px;
  padding: 30px;
  background: #fff;
  border: #e1e1e1 solid 0.5px;
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.products__item {
  text-align: center;
}

.products__label {
  text-align: center;
  margin-top: 20px;
}

.products__brands {
  font-size: 1.2rem;
  line-height: 1;
  text-align: center;
}

.products__data__brands {
  text-align: center;
  margin-top: 30px;
}

.products__data__brands img {
  width: 120px;
}

.products_item img {
  max-width: 200px;
}

.products_item img:hover {
  translate: 0 0px;
  rotate: 0deg;
  scale: 1.1;
}

.products__title h3 {
  text-align: center;
  color: #352294;
  font-weight: 700;
}

.products__lineup__inner {
  max-width: 1280px;
  background: #fff;
  border-radius: 20px;
  padding: 80px 30px 100px;
  text-align: center;
  /* 文字を中央揃えに */
}

@media (max-width: 768px) {
  .products__lineup__inner {
    padding: 60px 30px;
  }
}

.products__image {
  margin-top: 40px;
  text-align: center;
}

.products__name {
  font-size: 2.0rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1rem;
  text-align: center;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .products__name {
    font-size: 1.6rem;
    line-height: 1.2;
  }
}

.products__data__name {
  font-size: 2.0rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  line-height: 1;
  text-align: center;
}

@media (max-width: 768px) {
  .products__data__name {
    font-size: 1.6rem;
    line-height: 1.2;
  }
}

.products__feature {
  text-align: justify;
  line-height: 1.8;
  padding: 30px 20px 0px 20px;
  margin-top: 20px;
}

.products__detail {
  margin-top: 40px;
  text-align: left;
}

@media (max-width: 768px) {
  .products__detail {
    padding: 0 20px;
    margin-top: 40px;
  }
}

.products__detail dl {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .products__detail dl {
      padding: 0;
  }
}

.products__detail dt {
  flex-basis: 15%;
  padding: 30px;
  font-weight: 700;
  border-bottom: #eeeeee solid 1px;
}

.products__detail dd {
  flex-basis: 85%;
  padding: 30px;
  line-height: 1.5;
  border-bottom: #eeeeee solid 1px;
}

@media (max-width: 768px) {
  .products__detail dt {
    column-width: 100%;
    padding: 15px 0px 5px 0px;
    flex-basis: 100%;
    text-align: left;
  }

  .products__detail dd {
    padding: 10px 0px 30px 0px;
    flex-basis: 100%;
    border-bottom: #eeeeee solid 0px;
    text-align: justify;
  }
}

.products__detail dt:first-child {
  border-top: 1px solid #eeeeee;
}

@media (max-width: 768px) {
  .products__detail dt:first-child {
    display: none;
  }
}

.products__detail dd:nth-child(2) {
  border-top: 1px solid #eeeeee;
}

@media (max-width: 768px) {
  .products__detail dd:nth-child(2) {
    display: none;
  }
}

/* products modal */

.modal__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 20px;
  justify-content: space-around;
  margin-top: 60px;
}

@media (max-width: 768px) {
  .modal__inner {
    flex-wrap: wrap;
    margin-top: 40px;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 8887;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 1s ease-in-out;
}

.modal-toggle:hover {
  opacity: .6;
  transition: opacity .6s;
}

.modal-container .img {
  background: #f1f1f1;
  margin-bottom: 15px;
}

.modal-container p {
  margin-bottom: 10px;
}

.modal-container p:last-child {
  margin-bottom: 0;
}

.modal-content {
  background: #FFF;
  border-radius: 20px;
  overflow-y: auto;
  padding: 60px 60px;
  width: 100%;
  max-width: 1280px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: show 0.6s linear 0s;
  filter: drop-shadow(0px 2px 6px #777);
  overflow-y: scroll;
  height: 80%;
}

@media (max-width: 768px) {
  .modal-content {
    padding: 60px 20px;
  }
}

.modal-top {
  display: inline-block;
  position: absolute;
  right: 15px;
  top: 15px;
}

.modal-close {
  text-decoration: none;
  font-size: 3rem;
  line-height: 1;
  padding: 0 8px;
  transition: opacity .6s;
}

.modal-close:hover,
.modal-close:focus {
  text-decoration: none;
  cursor: pointer;
}

.modal__bottom {
  text-align: center;
  margin: 20px 0;
}

.modal__bottom__close {
  text-decoration: none;
  font-size: 3rem;
  line-height: 1;
  padding: 0 8px;
  transition: opacity .6s;
}

.modal__bottom__close:hover,
.modal__bottom__close:focus {
  text-decoration: none;
  cursor: pointer;
}

@keyframes show {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* oem odm */

.oem_odm__inner {
  text-align: center;
  padding-bottom: 30px;
  margin-top: 60px;
}

@media (max-width: 768px) {
  .oem_odm__inner {
    margin-top: 0px;
  }
}

.oem__title {
  text-align: center;
  margin-top: 80px;
}

@media (max-width: 768px) {
  .oem__title {
    margin-top: 40px;
  }
}

.ome__flow {
  font-size: 4.0rem;
  font-weight: 700;
  text-align: center;
  color: #352294;
}

@media (max-width: 768px) {
  .ome__flow {
    font-size: 2.0rem;
  }
}

.ome__text {
  font-size: 3.0rem;
  font-weight: 700;
  text-align: center;
  color: #352294;
}

@media (max-width: 768px) {
  .ome__text {
    font-size: 1.6rem;
  }
}

.oem__title_text {
  text-align: left;
  margin-top: 20px;
}

.accordion {
  margin-top: 80px;
}

@media (max-width: 768px) {
  .accordion {
   margin-top: 40px;  
  }
}

.accordion-006 {
  max-width: 1280px;
  margin: 0 auto;
  margin-bottom: 7px;
  border: #352294 solid 1px;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .accordion-006 {
    border-radius: 10px;
  }
}

.accordion-006 summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 2em 2em;
  font-weight: 600;
  cursor: pointer;
}

.accordion-006 summary::-webkit-details-marker {
  display: none;
}

.accordion-006 summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 8px;
  height: 8px;
  margin-left: 10px;
  border-bottom: 2px solid #555555;
  border-right: 2px solid #555555;
  content: '';
  transition: transform .3s;
}

.accordion-006[open] summary::after {
  transform: rotate(225deg);
}

.accordion-006 p {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: .3em 2em 1.5em;
  transition: transform .5s, opacity .5s;
}

.accordion-006[open] p {
  transform: none;
  opacity: 1;
}


.arrow {
  position: relative;
  margin-top: 20px;
  margin-bottom: 50px;
}

.arrow::before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 50%;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border: 10px solid transparent;
  border-top: 10px solid #352294;
  border-bottom-width: 0;
}

/* company */

.overview__inner {
  text-align: center;
  background: #fff;
  border-radius: 20px;
  padding: 0px 0px;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .overview__inner {
    padding: 0px 0px;
    border-radius: 10px;
    margin-top: 20px;
  }
}

.finance__inner {
  text-align: center;
  background: #fff;
  border-radius: 20px;
  padding: 0px 0px;
  margin-top: 60px;
}

@media (max-width: 768px) {
  .finance__inner {
    padding: 0px 0px;
    border-radius: 10px;
    margin-top: 20px;
  }
}

.company__lead {
  text-align: center;
  margin-top: 80px;
}

@media (max-width: 768px) {
  .company__lead {
    text-align: left;
    margin-top: 40px;
  }
}

.company__lead img {
  max-width: 800px;
}
@media (max-width: 768px) {
  .company__lead img {
    width: 100%;
  }
}

.company__lead p {
  margin-top: 30px;
}
@media (max-width: 768px) {
  .company__lead p {
    margin-top: 15px;
  }
}


.overview__item {
  max-width: 600px;
  display: flex;
  margin: 0 auto;
  text-align: left;
}

.overview__item dl {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  margin: 0 auto;
}

.overview__item dt {
  flex-basis: 20%;
  font-weight: 700;
  letter-spacing: .1rem;
  padding: 20px;
  text-align: right;
  border-bottom: #d2d2d7 solid 1px;
}

.overview__item dd {
  color: #555555;
  flex-basis: 80%;
  padding: 20px;
  border-bottom: #d2d2d7 solid 1px;
}

.overview__item dd span {
  font-size: 1.4rem;
}


@media (max-width: 768px) {
  .overview__item dt {
    text-align: left;
    column-width: 100%;
    padding: 0px 0px 10px 10px;
    flex-basis: 100%;
  }

  .overview__item dd {
    padding: 10px 0px 30px 10px;
    flex-basis: 100%;
    border-bottom: #d2d2d7 solid 0px;
  }

  .overview__item dd span {
  font-size: 1.2rem;
}
}

.overview__item dt:first-child {
  border-top: 1px solid #d2d2d7;
}
@media (max-width: 768px) {
  .overview__item dt:first-child {
    border-top: transparent;
  }
}

.overview__item dd:nth-child(2) {
  border-top: 1px solid #d2d2d7;
}
@media (max-width: 768px) {
  .overview__item dd:nth-child(2) {
    border-top: transparent;
  }
}

.finance__item {
  max-width: 800px;
  display: flex;
  margin: 0 auto;
  text-align: left;
}

.finance__item dl {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  margin: 0 auto;
}

.finance__item dt {
  flex-basis: 30%;
  font-weight: 700;
  letter-spacing: .1rem;
  padding: 20px;
  border-bottom: #eeeeee solid 1px;
}

.finance__item dd {
  color: #555555;
  flex-basis: 70%;
  padding: 20px;
  line-height: 1.5;
  border-bottom: #eeeeee solid 1px;
}

@media (max-width: 768px) {
  .finance__item dt {
    column-width: 100%;
    padding: 15px 0px 10px 10px;
    flex-basis: 100%;
  }

  .finance__item dd {
    padding: 10px 0px 30px 10px;
    flex-basis: 100%;
    border-bottom: #eeeeee solid 0px;
  }
}

.finance__item dt:first-child {
  border-top: 1px solid #eeeeee;
}
@media (max-width: 768px) {
  .finance__item dt:first-child {
    border-top: transparent;
  }
}

.finance__item dd:nth-child(2) {
  border-top: 1px solid #eeeeee;
}
@media (max-width: 768px) {
  .finance__item dd:nth-child(2) {
    border-top: transparent;
  }
}

.company__en__text {
  font-size: 1.2rem;
  margin-top: 20px;
}

/* company access*/

.company__access__map {
  max-width: 1280px;
  margin: 0 auto;
  vertical-align: top;
  margin-top: 60px;
}

@media (max-width: 768px) {
  .company__access__map {
    max-width: 100%;
  }
}

/* privacy policy */

.privacy__inner {
  margin-top: 80px;
  padding-bottom: 30px;
}

@media (max-width: 768px) {
  .privacy__inner {
    margin-top: 40px;
  }
}

.privacy__content {
  color: #555;
}

.privacy__content h3 {
  margin-top: 40px;
}

.privacy__content p {
  margin-top: 10px;
}

.pprivacy__content ol {
  padding-left: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.privacy__content li {
  padding-top: 10px;
  list-style-position: inside;
  padding-left: 10px;
}

.privacy__end__text {
  text-align: right;
}

/* contact */

.webform__lead__list {
  text-align: left;
  color: #555555;
}

.webform__form__message p {
  text-align: center;
  margin-top: 10px;
  color: #555;
}
@media (max-width: 768px) {
  .webform__form__message p {
    text-align: left;
  }
}

.contact_us__lead {
  display: flex;
  margin: 0 auto;
  justify-content: center;
  text-align: center;
}

@media (max-width: 768px) {
  .contact_us__lead {
    font-size: 1.6rem;
    letter-spacing: 0rem;
  }
}

.contact_us__lead h3 {
  text-align: center;
  color: #ee7300;
}

.form__complete {
  margin-top: 40px;
  text-align: center;
  color: #ee7300;
}

/* contact form */

.item {
  margin-top: 20px;
  text-align: center;
}


form {
  max-width: 1000px;
  margin: 0 auto;
}

label {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: left;
  display: block;
  margin-top: 40px;
}

@media (max-width: 768px) {
  label {
  font-size: 1.5rem;
  margin-top: 30px;
  }
}



label span {
  padding-left: 5px;
  color: red;
}

select,
option,
input[type=text],
input[type=tel],
input[type=url],
input[type=email] {
  width: 100%;
  height: 50px;
  background: #F0F0F0;
  font-weight: 400;
  margin-bottom: 0px;
  padding: 7px 7px;
  text-align: left;
  display: block;
  box-sizing: none;
}

textarea {
  width: 100%;
  height: 120px;
  background: #F0F0F0;
  margin-top: 5px;
  margin-bottom: 40px;
  padding: 7px 7px;
  text-align: left;
  display: block;
}

input[type="radio"] {
  position: relative;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  border: 1px solid #3f3f3f;
  border-radius: 50%;
  vertical-align: -2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type="radio"]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #3f3f3f;
  content: '';
}

.radio__content {
  padding: 10px;
  margin-bottom: 40px;
  background: #F0F0F0;
}

.radio__item {
  margin: 5px;
}

input[type="submit"] {
  appearance: none;
  -webkit-appearance: none;
  min-width: 180px;
  height: 60px;
  background: #ee7300;
  border-radius: 999px;
  align-items: center;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  input[type="submit"] {
    appearance: none;
    -webkit-appearance: none;
    height: 48px;
    width: 100%;
    max-width: 320px;
    padding: 0;
  }
}

.submit-btn {
  display: block;
  margin: 24px auto 0;
}

input[type="submit"]:hover {
  background-color: #ee7300;
  box-shadow: 0 4px 8px rgba(99, 50, 10, 0.25); /* 控えめな浮き影 */
  transform: translateY(-1px); /* ふわっと浮く */
}

input[type="submit"]:active {
  background-color: #ee7300;
  box-shadow: 0 2px 4px rgba(99, 50, 10, 0.2);
  transform: translateY(0);
  opacity: 0.95;
}

.click__down a:hover {
  transform: translateY(4px);
}

.click__down {
  transition: 0.2s;
}

.click__down:active {
  transform: translateY(4px);
}

.agreement__check {
  display: block;
  margin-top: 15px;
}

input[type="button"] {
  appearance: none;
  -webkit-appearance: none;
  min-width: 180px;
  height: 60px;
  border: 1px solid #ee7300;
  border-radius: 99px;
  opacity: 1;
  align-items: center;
  color: #ee7300;
  transition: 0.7s;
}

@media (max-width: 768px) {
  input[type="button"] {
    appearance: none;
    -webkit-appearance: none;
    height: 48px;
    width: 100%;
    max-width: 320px;
    padding: 0;
  }
}

input[type="radio"] {
  appearance: none;
}

input[type="checkbox"] {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  width: 20px !important;
  height: 20px !important;
  background: red !important;
  appearance: auto !important;
  -webkit-appearance: checkbox !important;
}

.checkbox__01 {
  width: 15px;
}

input[type="submit"]:disabled {
  background: #ccc;
  cursor: not-allowed;
  opacity: 0.6;
}

.h-adr {
  max-width: 1000px;
  margin: 0 auto;
}

.webform__lead {
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 60px;
  align-items: center;
}

@media (max-width: 768px) {
  .webform__lead {
    margin-top: 30px;
  }
}

.webform__lead h4 {
  text-align: center;
}

.webform__lead ol {
  margin-left: 20px;
}

.webform__lead li {
  margin-top: 20px;
  font-weight: 700;
}

.webform__lead p {
  text-align: center;
  margin-top: 30px;
}

.webform__inner {
  margin-top: 0px;
}
@media (max-width: 768px) {
  .webform__inner {
    margin-top: 0px;
  }
}

.complete__lead {
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 60px;
  align-items: center;
}

@media (max-width: 768px) {
  .complete__lead {
    margin-top: 30px;
  }
}

.complete__message p {
  text-align: center;
  margin-top: 10px;
  color: #555;
}
@media (max-width: 768px) {
  .complete__message p {
    text-align: left;
  }
}

.form__bottom {
  margin-bottom: 80px;
}

.webform__required_field {
  color: red;
  align-items: center;
}

#formWrap {
  width: 100%;
  margin: 0 auto;
  line-height: 120%;
  font-size: 15px;
}

table.formTable {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 40px;
}

table.formTable td,
table.formTable th {
  display: block;
  text-align: left;
  border: 1px solid #FFF;
}

table.formTable td {
  margin-top: 5px;
}

table.formTable th {
  width: 30%;
  margin-top: 50px;
  text-align: left;
}

p.error_messe {
  text-align: left;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-right: 0;
  margin-left: 0;
  color: red;
}

/*　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/
@media screen and (max-width:768px) {
  #formWrap {
    width: 100%;
    margin: 0 auto;
    padding: 0 0px;
  }

  table.formTable th,
  table.formTable td {
    width: auto;
    display: block;
  }

  table.formTable th {
    margin-top: 20px;
    border-bottom: 0;
  }
}

.form__required {
  margin: 30px 0;
}

.form__inner {
  background: #ffffff;
  border-radius: 30px;
  margin: 40px;
  padding: 80px 60px;
}
@media (max-width: 768px) {
  .form__inner {
    border-radius: 30px;
    margin: 20px;
    padding: 40px 20px;
  }
}

.form__line__top {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 30px;
  border-bottom: 1px solid #352294;
  margin-bottom: 30px;
}

.form__line__bottom {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 30px;
  border-bottom: 1px solid #352294;
  margin-top: 30px;
  margin-bottom: 20px;
}

.form_sec07 {
  font-size: 21px;
  line-height: 20px;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .form_sec07 {
    margin-bottom: 120px;
  }
}

.form__message {
  text-align: center;
}

.form_sec09 {
  text-align: center;
}

.form__btn__item {
  text-align: center;
  margin-top: 60px;
}

.form_sec11 {
  text-align: center;
}

@media (max-width: 768px) {
  .form_sec11 {
    text-align: left;
  }
}

.form__message__detail {
  text-align: center;
  margin: 20px 0;
}

@media (max-width: 768px) {
  .form_sec12 {
    text-align: left;
  }
}

/* iOSフォーム対策 */
@media (max-width: 768px) {
  input, textarea, select {
    font-size: 16px;
  }
}

/* Toggle Button */
#nav-toggle {
  display: none;
  position: absolute;
  right: 12px;
  top: 14px;
  width: 34px;
  height: 36px;
  cursor: pointer;
  z-index: 101;
}

#nav-toggle div {
  position: relative;
}

#nav-toggle span {
  display: block;
  position: absolute;
  height: 1px;
  width: 100%;
  background: #333;
  left: 0;
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}

#nav-toggle span:nth-child(1) {
  top: 0;
}

#nav-toggle span:nth-child(2) {
  top: 11px;
}

#nav-toggle span:nth-child(3) {
  top: 22px;
}

@media screen and (max-width: 640px) {

  #top-head,
  .inner {
    width: 100%;
    padding: 0;
  }

  #top-head {
    top: 0;
    position: fixed;
    margin-top: 0;
  }

  /* Fixed reset */
  #top-head.fixed {
    padding-top: 0;
    background: transparent;
  }

  #top-head.fixed .logo,
  #top-head .logo {
    position: absolute;
    left: 13px;
    top: 13px;
    font-size: 26px;
  }

  #nav-toggle {
    display: block;
  }

  /* #nav-toggle 切り替えアニメーション */
  .open #nav-toggle span:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(315deg);
    -moz-transform: rotate(315deg);
    transform: rotate(315deg);
  }

  .open #nav-toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }

  .open #nav-toggle span:nth-child(3) {
    top: 11px;
    -webkit-transform: rotate(-315deg);
    -moz-transform: rotate(-315deg);
    transform: rotate(-315deg);
  }
}

/* footer */

.footer {
  width: 100%;
  background: #ee7300;
}

.footer__wrapper {
  padding: 30px;
}

.footer__inner__vh {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 30px;
  position: sticky;
  top: 100vh;
  z-index: 0;
}

.footer__logo {
  width: 280px;
  display: inline-block;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .footer__logo {
    display: flex;
    width: 100%;
    margin: 0 auto;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer__logo img {
    width: 200px;
  }
}


.footer__navi-heading {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 0.75em;
}

@media (max-width: 768px) {
  .footer__navi-heading {
    font-size: 1.2rem;
  }
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 20px 0;
}

.md-flex {
  align-items: baseline;
}

@media (min-width: 768px) {
  .md-flex {
    display: flex;
  }

  .md-justify-between {
    justify-content: space-between;
  }

  .footer__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.footer__button__os {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 26px;
  margin: 0 auto;
  padding: .2em 1em;
  border: 1px solid #555555;
  border-radius: 0px;
  color: #555555;
  font-size: 1.4rem;
  letter-spacing: 0.1px;
  line-height: 1;
}

@media (max-width: 768px) {
  .footer__button__os {
    text-align: left;
  }
}

.footer__button__os::after {
  transform: rotate(45deg);
  width: 6px;
  height: 6px;
  margin-left: 10px;
  border-top: 2px solid #555555;
  border-right: 2px solid #555555;
  content: '';
}

.footer__link__btn {
  text-align: right;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .footer__link__btn {
    text-align: left;
  }
}

.footer__copyright {
  font-size: 1rem;
  text-align: center;
  margin-top: 40px;
  color: #ffffff;
}

@media (max-width: 768px) {
  .footer__copyright {
    display: flex;
    width: 100%;
    margin: 0 auto;
    justify-content: center;
    font-size: .8rem;
  }
}

/* page top */

/*リンクの形状*/
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}

/*リンクを右下に固定*/
#page-top {
  width: 45px;
  position: fixed;
  right: 50px;
  bottom: 50px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}

@media (max-width: 768px) {
  #page-top {
    width: 40px;
    right: 20px;
    bottom: 20px;
  }
}

/*　上に上がる動き　*/

#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 1;
    transform: translateY(100px);
  }
}

.form-loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(2px);
}

.form-loading__inner {
  text-align: center;
}

.form-loading__spinner {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  border: 4px solid #d9d9d9;
  border-top: 4px solid #222;
  border-radius: 50%;
  animation: formLoadingSpin 0.8s linear infinite;
}

.form-loading__text {
  margin: 0;
  font-size: 14px;
  color: #333;
}

@keyframes formLoadingSpin {
  to {
    transform: rotate(360deg);
  }
}

.form-error {
  display: none;
  margin: 6px 0 14px;
  color: #d93025;
  font-size: 13px;
  line-height: 1.6;
}

.conditional-field {
  opacity: 0;
  transform: translateY(10px);
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.conditional-field.is-active {
  opacity: 1;
  transform: translateY(0);
  max-height: 200px;
}

.confirm-view {
  margin-top: 40px;
}

.confirm-view__title {
  margin: 0 0 24px;
  font-size: 28px;
  text-align: center;
}

.confirm-table {
  border-top: 1px solid #ddd;
}

.confirm-row {
  display: flex;
  border-bottom: 1px solid #ddd;
}

.confirm-label {
  width: 32%;
  padding: 16px;
  font-weight: 700;
  box-sizing: border-box;
}

.confirm-value {
  width: 68%;
  padding: 16px;
  white-space: pre-wrap;
  word-break: break-word;
  box-sizing: border-box;
  color: #555;
}

.confirm-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.confirm-btn {
  min-width: 180px;
  padding: 14px 24px;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.confirm-btn--back {
  background: #eee;
  border-radius: 999px;
  color: #222;
}

.confirm-btn--submit {
  background: #ee7300;
  border-radius: 999px;
  color: #fff;
}

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

  .confirm-label,
  .confirm-value {
    width: 100%;
  }

  .confirm-buttons {
    flex-direction: column;
  }

  .confirm-btn {
    width: 100%;
  }
}

#vendorFormSection {
  scroll-margin-top: 100px;
}

.g-recaptcha {
  display: flex;
  justify-content: center;
  margin: 24px 0;
}
@media (max-width: 400px) {
  .g-recaptcha {
    transform: scale(0.9);
    transform-origin: center;
  }
}

.form-attention-ja {
  display: block;
  font-weight: 700;
  color: #555;
}

.form-common__title-ja {
  display: block;
  color: #ffffff;
}

.form-text-ja {
  display: block;
  font-weight: 700;
  color: #555;
}

.form-label-ja {
  display: block;
  font-weight: 700;
  color: #ee7300;
}

.form-common__title-th {
  display: block;
  margin-top: 4px;
  font-size: 1.3rem;
  line-height: 1.6;
  color: #ffffff;
  font-weight: 400;
}


.form-label-th {
  display: block;
  margin-top: 4px;
  font-size: 1.3rem;
  line-height: 1.6;
  color: #808080;
  font-weight: 400;
}

.common__lead .form-label-th,
.vendor__at__etc .form-label-th,
.vendor__item__sp .form-label-th,
.finance__item .form-label-th,
.overview__item .form-label-th {
  margin-top: 8px;
}

.form-privacy {
  text-align: center;
}

.privacy-label {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
}

.privacy-link {
  text-align: center;
}

.privacy-label input {
  width: 18px;
  height: 18px;
  margin-top: 6px;
  flex-shrink: 0;
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

.privacy-link a {
  text-decoration: underline;
}

.line__btn {
  margin-top: 20px;
  text-align: center;
}

.line__lead {
  margin-top: 40px;
  color: #555;
}
@media (max-width: 768px) {
  .line__lead {
    margin-top: 30px;
  }
}

.contact__data {
  text-align: center;
}

.form-browser-note {
  text-align: left;
}

.line-browser-warning__text {
  text-align: center;
  margin-top: 20px;
  font-weight: 700;
}

.line-browser-warning {
  background: #f4f4f4;
  padding: 16px;
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
  border-radius: 8px;
}

.line-browser-warning__text {
  margin-bottom: 12px;
  font-size: 1.4rem;
  line-height: 1.8;
}

.line-browser-warning__btn {
  background: #ee7300;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
}

.line-browser-warning__url {
  margin-top: 10px;
  font-size: 1.2rem;
  word-break: break-all;
}

.form-group {
  margin-bottom: 24px;
}

.form-note {
  font-size: 14px;
  color: #666;
  margin-top: 8px;
}

.form-total {
  margin-top: 12px;
  font-size: 16px;
}

.form-total strong {
  font-size: 20px;
  color: #ee7300;
}

.form-error {
  color: #d00;
  font-size: 14px;
  margin-top: 8px;
}

input,
select,
textarea {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 10px;
  width: 100%;
  font-size: 16px;
}

.form-type-toggle {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.form-type-toggle label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  margin: 0;
}

.form-type-toggle input[type="radio"] {
  width: auto;
  margin: 0;
}

.top-link__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.top-link__card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px 18px;
  border-radius: 16px;
  background: #fff;
  text-align: center;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.top-link__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.top-link__card .form-label-ja {
  font-size: 18px;
  font-weight: 700;
}

.top-link__card .form-label-th {
  font-size: 14px;
  opacity: 0.75;
}

@media screen and (max-width: 768px) {
  .top-link__grid {
    grid-template-columns: 1fr;
  }
}

.top-link__label {
  font-size: 1.2rem;
  opacity: .7;
}

.icon {
  font-size: 32px;
  margin-bottom: 12px;
  transition: 0.3s;
}

.top-link__card:hover .icon {
  transform: scale(1.15);
}

#header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ナビ */
.header__nav__container {
  display: flex;
  gap: 28px;
  align-items: center;
}

.header__nav__item a {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s;
}

.header__nav__item a:hover {
  opacity: 0.75;
}

/* CTA */
.header__cta {
  margin-left: 16px;
}

.header__cta__btn {
  display: inline-block;
  padding: 10px 18px;
  background: #fff;
  color: #ee7300;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.header__cta__btn:hover {
  background: #f5f5f5;
  transform: translateY(-1px);
}

/* 翻訳 */
.header__nav__translate {
  margin-left: 16px;
}

.header__nav__translate a {
  color: #fff;
  font-size: 13px;
  text-decoration: none;
}

.header__nav__translate a:hover {
  opacity: 0.75;
}

/* レスポンシブ */
@media screen and (max-width: 768px) {
  #header nav {
    flex-wrap: wrap;
    gap: 10px;
  }

  .header__nav__container {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .header__cta {
    width: 100%;
    text-align: center;
  }

  .header__cta__btn {
    width: 100%;
  }

  .header__nav__translate {
    width: 100%;
    text-align: center;
  }
}

.header__cta {
  display: flex;
  gap: 10px;
  margin-left: 16px;
}

/* メイン（出店） */
.header__cta__btn.is-main {
  background: #fff;
  color: #ee7300;
}

/* サブ（協賛） */
.header__cta__btn.is-sub {
  background: transparent;
  color: #fff;
  border: 1.5px solid #fff;
}

.header__cta__btn.is-sub:hover {
  background: rgba(255,255,255,0.15);
}

.fixed-cta {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 999;
  display: flex;
  gap: 10px;
  padding: 10px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(238, 115, 0, 0.25);
  border-radius: 18px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
}

.fixed-cta__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 48px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: 0.25s ease;
}

.fixed-cta__btn.is-vendor {
  background: #ee7300;
  color: #fff;
  border: 1px solid #ee7300;
}

.fixed-cta__btn.is-sponsor {
  background: #fff;
  color: #ee7300;
  border: 1px solid #ee7300;
}

.fixed-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(238, 115, 0, 0.22);
}

.fixed-cta__btn:active {
  transform: scale(0.97);
}

.fixed-cta__btn i {
  font-size: 15px;
}

.drawer__cta {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.drawer__cta__btn {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

/* メイン */
.drawer__cta__btn.is-main {
  background: #ee7300;
  color: #fff;
}

/* サブ */
.drawer__cta__btn.is-sub {
  border: 1.5px solid #ee7300;
  color: #ee7300;
}

.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  z-index: 999;
  box-shadow: 0 -6px 20px rgba(0,0,0,0.12);
}

.fixed-cta__btn {
  flex: 1;
  text-align: center;
  padding: 14px 10px;
  font-weight: 700;
  text-decoration: none;
}

/* 出店（最優先） */
.fixed-cta__btn.is-main {
  background: #fff;
  color: #ee7300;
}

/* 協賛 */
.fixed-cta__btn.is-sub {
  background: #333;
  color: #fff;
}

.kv__info {
  text-align: center;
  padding: 24px 16px;
}

.kv__title {
  font-size: 28px;
  font-weight: 900;
  color: #ee7300;
  margin-bottom: 16px;
}

.kv__day {
  font-size: 22px;
  font-weight: 700;
  margin-top: 12px;
}

.kv__time {
  font-size: 16px;
  margin-bottom: 8px;
}

.kv__place {
  margin-top: 12px;
  font-weight: 600;
}

.kv__catch {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 700;
  color: #ee7300;
}

.event__info {
  text-align: center;
  margin-top: 20px;
}

.event__title {
  font-size: 25rem;
  font-weight: 900;
  color: #ee7300;
  margin-bottom: 20px;
}

.event__schedule {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.event__date {
  font-size: 22px;
  font-weight: 700;
}

.event__time {
  font-size: 15px;
  color: #ffffff;
}

.event__place {
  margin-top: 16px;
  font-weight: 600;
}

.event__catch {
  margin-top: 24px;
  font-size: 20px;
  font-weight: 700;
  color: #ee7300;
}

.event-highlight__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.event-highlight__item {
  padding: 24px 18px;
  border-radius: 18px;
  background: #f8f8f8;
  text-align: center;
  border: 1px solid rgba(238, 115, 0, 0.18);
}

.event-highlight__icon {
  display: block;
  font-size: 50px;
  margin-bottom: 10px;
}

.event-highlight__item h4 {
  font-size: 18px;
  font-weight: 700;
  color: #ee7300;
  margin-bottom: 8px;
}

.event-highlight__item p {
  font-size: 14px;
  line-height: 1.8;
}

.event__info {
  text-align: center;
}

.event__title {
  font-size: 28px;
  font-weight: 900;
  color: #ee7300;
  margin-bottom: 24px;
}

.event__schedule {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 720px;
  margin: 0 auto;
  margin-top: 20px;
}

.event__day {
  padding: 22px 18px;
  border-radius: 18px;
  background: #ee7300;
  color: #fff;
}

.event__date {
  font-size: 24px;
  font-weight: 800;
}

.event__time {
  margin-top: 6px;
  font-size: 16px;
  font-weight: 600;
}

.event__place {
  margin-top: 24px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.8;
}

.event__catch {
  margin-top: 24px;
  font-size: 24px;
  font-weight: 900;
  color: #ee7300;
}

@media screen and (max-width: 768px) {
  .event-highlight__grid {
    grid-template-columns: 1fr;
  }

  .event__schedule {
    grid-template-columns: 1fr;
  }

  .event__title {
    font-size: 24px;
  }

  .event__date {
    font-size: 22px;
  }
}

.map__btn a {
  display: block;
  text-align: center;
  background: #ee7300;
  color: #fff;
  padding: 14px;
  border-radius: 999px;
  font-weight: 700;
  margin-top: 16px;
  text-decoration: none;
}

.map__embed {
  margin-top: 16px;
  border-radius: 16px;
  overflow: hidden;
}