@charset "utf-8";

/*------------------------------------------------------------
|
| Common
|
------------------------------------------------------------*/

body {
  background: linear-gradient(337deg, rgba(187, 205, 170, 1) 0%, rgba(240, 249, 231, 1) 100%);
  background-attachment: fixed;
  color: #77665F;
  font-family: "Noto Sans JP", sans-serif;
  height: 100vh;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

img {
  vertical-align: top;
}

a {
  color: #DF5424;
  font-weight: normal;
  outline: none;
  text-decoration: underline;
  transition: .3s;
}

a:visited {
  color: #DF5424;
}

a:hover {
  color: #FFAD4A;
  font-weight: normal;
  text-decoration: none;
  transition: .3s;
}

a img {
  border: none;
}

a img:hover {
  opacity: 0.5;
  transition: 0.8s;
}

a.ovimg {
  background-color: #FFF;
  display: inline-block;
}

a.ovimg:hover img,
a.ovimg:active img {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
}

/* Common Utility */
.pc {
  display: block;
}

.sp {
  display: none;
}

.parent {
  align-items: center;
  display: flex;
}

.col {
  display: flex;
}

.col-between {
  display: flex;
  justify-content: space-between;
}

.float-l {
  float: left;
}

.float-r {
  float: right;
}

.clear-both {
  clear: both;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.al-mid {
  display: table-cell;
  vertical-align: middle;
}

/* Margin Utility */
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-80 { margin-bottom: 80px; }
.mb-180 { margin-bottom: 180px; }
.my-20 { margin-top: 20px; margin-bottom: 20px; }
.my-30 { margin-top: 30px; margin-bottom: 30px; }
.my-40 { margin-top: 40px; margin-bottom: 40px; }
.ml-1 { margin-left: 1rem; }

/* hr */
hr { margin-top:5em; }

/* color */
.red {
  color:#d50b0b;
}

/* font-size */
.fs18 { font-size:18px; }
.fs19 { font-size:19px; }
.fs20 { font-size:20px; }


/* Image Width Utility */
.img-100 img {
  width: 100%;
}

.img-80 img {
  margin: auto;
  width: 80%;
}

.img-50 img {
  margin: auto;
  width: 50%;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .col {
    display: block;
  }
  .col-between {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .img-80 img,
  .img-50 img {
    margin: auto;
    width: 90%;
  }
}

div.button p {
	display: flex;
	gap: 10px;
	flex-direction: row;
	justify-content: center;
	padding-left: 0;
	margin-bottom: 10px;
}
div.button ul {
	display: flex;
	gap: 10px;
	flex-direction: column;
	padding-left: 0;
	margin-bottom: 10px;
}

div.button > p a {
	flex-basis: 100px;
}

div.button ul > li {
	list-style-type: none;
	width: 100%;
	min-height: 32px;
	border-radius: 0;
	margin-bottom: 0;
	position: relative;
	z-index: 0;
}
div.button > p a,
div.button ul > li a {
	overflow: hidden;
	will-change: transform;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.25;
	text-align: center;
	text-decoration: none;
	padding: 10px;
	user-select: none;
	position: relative;
	z-index: 0;
	transition: 0.05s;
	cursor: pointer;
}
div.button > p a {
	flex-basis: 300px;
}

div.button > p a:before,
div.button ul > li a::before {
	content: "";
	display: block;
	width: 5px;
	height: 7px;
	border-top: 3.5px solid transparent;
	border-bottom: 3.5px solid transparent;
	border-left: 5px solid #333;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
}
div.button > p a:hover,
div.button ul > li a:hover {
	filter: brightness(110%);
	transform: translateY(1px);
}
div.button > p a:active,
div.button ul > li a:active {
	transform: translateY(3px);
}
div.button > p.off a,
div.button ul > li.off a {
	background: #bbb;
	border: 1px solid #888;
	pointer-events: none;
	opacity: 0.6;
}

div.button > p a,
div.button ul > li a {
	color: #000;
	font-size: clamp(16px, 2vw, 18px);
	background: #FFDC73;
	border: 3px double #FFC926;
	box-shadow: 2px 2px 0 #D9A300;
	z-index: 0;
}

div.button > p a::after,
div.button ul > li a::after {
	z-index: -2;
}

a[href$=".pdf"]::after,
* html a.pdf {
	content: "";
	display: inline-block;
	width: 1em;
	height: 1em;
	background: url("../images/icon_s/icon_pdf.png") left top no-repeat;
	background-size: contain;
	margin-right: 0.3em;
	margin-left: 0.5em;
	margin-bottom: -0.15em;
	position: relative;
}

/*------------------------------------------------------------
|
| Fonts
|
------------------------------------------------------------*/

h2 {
  color: #DF5424;
  font-family: 'Noto Sans JP', serif;
  font-size: 1.8rem;
  font-weight: normal;
  height: 100px;
  padding-left: 32px;
  padding-top: 30px;
  position: relative;
  text-align: left;
  text-shadow: 0px 0px 6px rgba(255, 255, 255, 0.9);
  background-image: url(../images/h2.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% auto;
}

h3 {
  color: #77665F;
  font-family: 'Noto Sans JP', serif;
  font-size: 1.5rem;
  font-weight: normal;
  letter-spacing: 0.1rem;
  line-height: 2.8rem;
  margin-top: 2.0rem;
  padding-bottom: 0.8rem;
  padding-top: 0.5rem;
  position: relative;
  border-bottom: double 5px #FFC778;
}


h4 {
  background-color: #ECEEE2;
  border-radius: 16px;
  color: #915933;
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.5rem;
  margin-bottom: 1.0rem;
  margin-top: 1.4rem;
  padding: 0.8rem 0.8rem 0.8rem 1.5rem;
}

h5 {
  color: #346321;
  font-size: 1.0rem;
  font-weight: bold;
  margin-bottom: 0px;
}

h6 {
  background-color: #519043;
  color: #FFFFFF;
  font-size: 1.0rem;
  line-height: 1.6rem;
  margin: 15px 0;
  padding: 6px;
}

@media screen and (max-width: 1294px) {
  h2 {
    background-position: center center;
    background-size: 100% auto;
    padding-top: 30px;
  }
  
  #top > main > div > div.approval-notice > h2 {
    height: fit-content;
  
  
  }
}

@media screen and (max-width: 768px) {
  h2 {
    background-position: center center;
    background-size: 100% 100%;
    height: 80px;
    margin-bottom: 0px;
    padding-top: 18px;
  }
}

/* Font Utility */
.font-serif {
  font-family: 'Noto Sans JP', sans-serif;
}
.weight-500 {
  font-weight: 500;
}
.weight-700 {
  font-weight: 700;
}
.text-xs {
  font-size: 0.6rem;
  letter-spacing: 0.1rem;
  line-height: 1.4rem;
  padding-top: 1em;
}
.text-s {
  font-size: 0.72rem;
  letter-spacing: 0.1rem;
  line-height: 1.4rem;
  padding-top: 1rem;
}
.text-sm {
  font-size: 0.95rem;
  line-height: 1.5rem;
  padding-top: 1rem;
}
.text-m {
  font-size: 1.05rem;
  letter-spacing: 0.15rem;
  line-height: 2.0rem;
  padding-top: 0.8rem;
}
.text-l {
  font-size: 1.2rem;
  letter-spacing: 0.15rem;
  line-height: 2.2rem;
  padding-top: 0.8rem;
}
.text-xl {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.15rem;
  line-height: 2.0rem;
  padding-top: 0.8rem;
}
.list li {
  line-height: 1.8rem;
  list-style-type: disc;
  margin-left: 1rem;
  text-indent: 0rem;
}
.indent-1 {
  text-indent: 1rem;
}
.indent-h-1 {
  line-height: 1.8rem;
  padding-left: 1rem;
  text-indent: -1rem;
}
.list-ol {
  line-height: 1.8rem;
  list-style-type: decimal;
  margin-left: 3rem;
  text-indent: 0rem;
}
.list-ol li {
  margin-bottom: 0.5rem;
  margin-left: 1rem;
}
.text-justify {
  text-align: justify;
}

/* Text Color Utility */
.text-red {
  color: #F72608;
}
.text-orange {
  color: #F78608;
}
.text-white {
  color: #FFFFFF;
  margin: 5px;
}
.text-gray {
  color: #B3B3B3;
}
.text-blue {
  color: #005bac;
}
.text-day {
  color: #FF6E00;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 2.0rem;
  padding-left: 0.4rem;
  padding-top: 1rem;
}

/* Text Decoration */
.del {
  background-image: linear-gradient(transparent 0.5em, #fe3464 0, #fe3464 calc(0.5em + 1px), transparent 0, transparent calc(0.5em + 3px), #fe3464 0, #fe3464 calc(0.5em + 4px), transparent 0);
  color: #888;
  text-decoration: none;
}
.marker {
  text-decoration: underline;
  text-decoration-color: rgba(255, 218, 0, 0.4);
  text-decoration-skip-ink: none;
  text-decoration-thickness: 0.6rem;
  text-underline-offset: -0.4rem;
}

/*------------------------------------------------------------
|
| All
|
------------------------------------------------------------*/

.wrapper {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  max-width: 1100px;
  width: 100%;
}

main {
  background-color: #FFF;
  width: calc(100% - 240px);
}

main .inner {
  margin: 0px 5% 64px 5%;
  width: 90%;
}

@media screen and (max-width: 768px) {
  .wrapper {
    display: block;
    width: 100%;
  }
  main {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
  }
  main .inner {
    background-color: #FFFFFF;
    margin: 32px auto;
    padding: 0px 0px 32px 0px;
    width: 90%;
  }
}

/*------------------------------------------------------------
|
| Header
|
------------------------------------------------------------*/

header {
  -webkit-box-shadow: 0px 0px 10px 2px #000;
  background-color: #fff;
  background-image: url(../images/head_footer_back.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 1280px auto;
  border-top: 4px solid #CBD900;
  box-shadow: 0px 0px 10px 2px #A5A5A5;
  color: #fff;
  margin: 0 auto;
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 1000;
}

header .inner {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1240px;
  width: 90%;
}

h1 {
  background-image: url(../images/header_title.svg);
  background-position: 0px -10px;
  background-repeat: no-repeat;
  background-size: 700px auto;
  font-size: 0px;
  height: 96px;
  margin-top: 16px;
  overflow: hidden;
  text-indent: -9999px;
  width: 700px;
}

@media screen and (max-width: 768px) {
  header {
    background-color: #999;
    height: 80px;
    position: fixed;
  }
  header .inner {
    width: 90%;
  }
  h1 {
    background-size: 500px auto;
    height: 70px;
    margin-top: 8px;
    width: 500px;
  }
}

@media screen and (max-width: 600px) {
  header {
    height: 60px;
  }
  h1 {
    background-position: 0px 5px;
    background-size: 280px auto;
    height: 50px;
    margin-top: 0px;
    width: 280px;
  }
}

/*------------------------------------------------------------
|
| navi
|
------------------------------------------------------------*/

.nav-area {
  background-color: #FFB24A;
  padding: 12px 16px 48px 16px;
  width: 240px;
}

.nav-menu {
  padding-bottom: 24px;
}

nav ul {
  display: block;
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}

nav ul li a {
  border-bottom: 1px solid #D69B87;
  color: #fff;
  display: block;
  font-size: 1.0rem;
  font-weight: 500;
  letter-spacing: 0.0rem;
  line-height: 1.5rem;
  padding: 12px 30px 12px 12px;
  text-decoration: none;
  width: 208px;
  text-shadow: #372121 1px 0 10px;
}

nav ul li a:hover {
  color: #FFAD4A;
}

nav ul li a:visited {
  color: #ffffff;
}

.nav-menu .none {
  border-bottom: 1px solid #D69B87;
  color: #D69B87;
  display: block;
  font-size: 1.0rem;
  font-weight: 500;
  letter-spacing: 0.0rem;
  line-height: 1.5rem;
  padding: 12px 0px 12px 12px;
  text-decoration: none;
}

.nav-arrow {
  line-height: 1.25;
  position: relative;
  text-decoration: none;
  transition: .3s;
}

.nav-arrow:after {
  border-right: .1rem solid #fff;
  border-top: .1rem solid #fff;
  bottom: .1rem;
  content: "";
  height: .5rem;
  margin: auto;
  position: absolute;
  right: 8%;
  top: 0;
  transform: rotate(45deg);
  transition: .3s;
  width: .5rem;
}

.nav-arrow:hover:after {
  border-right: .1rem solid #ffec66;
  border-top: .1rem solid #ffec66;
  right: 4%;
}

.nav-banner {
  background-color: #F1F1F1;
  border: 1px solid #333;
  margin: 24px 0px;
  padding: 0px;
}

.nav-banner img {
  padding: 0px;
  width: 100%;
}

.nav-windowicon-white {
  background-image: url(../images/w-icon-white.svg);
  background-position: 20px 4px;
  background-repeat: no-repeat;
  background-size: 14px 24px;
  display: inline-block;
  height: 22px;
  margin: 0px 2px 0px 0px;
  padding-right: 2.5rem;
  padding-top: 0px;
  width: 22px;
}

.nav-pdf-white {
  background-image: url(../images/w-icon-pdf.svg);
  background-position: 10px 2px;
  background-repeat: no-repeat;
  background-size: 24px 18px;
  display: inline-block;
  height: 20px;
  margin: 0px 2px 0px 0px;
  padding-right: 2.5rem;
  padding-top: 0px;
  width: 26px;
}

@media screen and (max-width: 768px) {
  .nav-area {
    overflow: scroll;
    padding: 0px;
    width: 0px;
  }
  .nav-menu {
    background-color: #DF5424;
    color: #fff;
    height: calc(100% - 60px);
    left: 100%;
    opacity: 1;
    overflow: auto;
    position: fixed;
    top: 60px;
    transition: all 0.5s;
    width: 100%;
    z-index: 100;
  }
  nav ul li a {
    margin: 0 10%;
    width: 80%;
  }
  .nav-menu .none {
    margin: 0 10%;
    width: 80%;
  }
  .nav-banner {
    margin: 24px auto;
    width: 80%;
  }
}

/*------------------------------------------------------------
|
| hamburger
|
------------------------------------------------------------*/

.hamburger {
  background-color: #DF5424;
  cursor: pointer;
  display: none;
  flex-direction: row;
  height: 60px;
  justify-content: center;
  padding-top: 24px;
  width: 60px;
  z-index: 9999!important;
}

.hamburger .bar {
  background: #fff;
  border-radius: 1px;
  display: block;
  height: 2px;
  position: absolute;
  transition: all 0.3s;
  width: 40px;
}

.hamburger .bar-top {
  transform: translate(0, -12px);
}

.hamburger .bar-bottom {
  transform: translate(0, 12px);
}

.hamburger::after {
  color: #fff;
  content: "MENU";
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 200;
  margin-top: 20px;
}

.checkbox {
  display: none;
}

.checkbox:checked~.hamburger::after {
  color: #fff;
  content: "CLOSE";
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 200;
  margin-top: 20px;
}

.checkbox:checked~.hamburger .bar-middle {
  opacity: 0;
}

.checkbox:checked~.hamburger .bar-top {
  transform: translate(0, 0) rotate(45deg);
}

.checkbox:checked~.hamburger .bar-bottom {
  transform: translate(0, 0) rotate(-45deg);
}

@media screen and (max-width: 768px) {
  .hamburger {
    display: flex;
    position: fixed;
    right: 0;
    top: 0;
  }
  .checkbox:checked~.nav-menu {
    left: 0;
  }
}

/*------------------------------------------------------------
|
| footer
|
------------------------------------------------------------*/

footer {
  background-color: #fff;
  background-image: url(../images/head_footer_back.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 1200px auto;
  bottom: 0px;
  margin: 32px 0px 0px 0px;
  padding: 0px 0px 32px 0px;
  width: 100%;
}

footer .inner {
  color: #77665F;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  max-width: 1240px;
  padding: 48px 0px 56px 0px;
  width: 100%;
}

footer .inner a {
  color: #744E62;
}

.footer-jimukyoku {
  border-right-width: 0px;
  margin-bottom: 15px;
  padding: 0% 2%;
  width: 38%;
}

.footer-info {
  margin-bottom: 15px;
  padding: 0% 2%;
  width: 62%;
}

.footer-title {
  background-color: #DF5424;
  border-radius: 12px;
  color: #ffffff;
  display: inline;
  font-size: 0.8rem;
  font-weight: 400;
  padding: 6px 16px;
}

.footer-copyright {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  width: 956px;
}


#page-top a {
  background: #DF5424;
  border: 2px solid #DF5424;
  border-radius: 90px;
  bottom: 50px;
  color: #fff;
  display: block;
  font-family: "roboto", sans-serif;
  font-size: 0.8rem;
  height: 60px;
  letter-spacing: 0.1rem;
  line-height: 30px;
  opacity: 0.9;
  padding: 28px 5px;
  position: fixed;
  right: 10px;
  text-align: center;
  text-decoration: none;
  transition: all .3s ease;
  width: 60px;
}

#page-top a:hover {
  background: #fff;
  border: 2px solid #DF5424;
  color: #DF5424;
  text-decoration: none;
}

#page-top a:after {
  border-right: .15em solid #FFF;
  border-top: .15em solid #FFF;
  bottom: .1rem;
  content: "";
  height: .5rem;
  left: 25px;
  margin: auto;
  position: absolute;
  top: -10px;
  transform: rotate(315deg);
  transition: .3s;
  width: .5rem;
}

#page-top a:hover:after {
  border-right: .15em solid #DF5424;
  border-top: .15em solid #DF5424;
  top: -14px;
}

@media screen and (max-width: 768px) {
  footer .inner {
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 40px 0px 0px 0px;
    width: 90%;
  }
  .footer-jimukyoku, .footer-info {
    padding-bottom: 10px;
    width: 100%;
  }
}

/*------------------------------------------------------------
|
| LAYOUT
|
------------------------------------------------------------*/

/* GoogleMap */
#google_map {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  padding-top: 30px;
  position: relative;
  width: 100%;
}

#google_map iframe,
#google_map object,
#google_map embed {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

/* Link Icon */
.windowicon-black,
.windowicon-white {
  background-position: 20px 4px;
  background-repeat: no-repeat;
  background-size: 20px 24px;
  display: inline-block;
  height: 32px;
  margin: 0px 2px 0px 0px;
  padding-right: 2.5rem;
  padding-top: 0px;
  width: 32px;
}

.windowicon-black {
  background-image: url(../images/w-icon-black.svg);
}

.windowicon-white {
  background-image: url(../images/w-icon-white.svg);
}


/* Box Layouts */
.contact-box {
  background-color: #F0F0F0;
  border-radius: 18px;
  padding: 18px;
}

.color-box-01 {
  background-color: #EFEEE3;
  border: 4px solid #E88747;
  border-radius: 0px;
  padding: 18px;
}

.color-box-02 {
  background-color: #EFEEE3;
  border: 4px solid #DDCFC6;
  border-radius: 0px;
  padding: 18px;
}

.color-box-03 {
  border: 1px solid #D7D7D7;
  border-radius: 0px;
  margin: 14px 0px;
  padding: 18px;
}

/* News Box */
#news {
  height: 240px;
  margin: 20px 0px;
  overflow-x: hidden;
  overflow-y: scroll;
  padding: 0px;
}

#news ul {
  margin-bottom: 0px;
  margin-right: 0px;
  margin-top: 20px;
  padding: 0px;
}

#news li {
  background-position: 0px 0px;
  background-repeat: no-repeat;
  font-size: 0.9rem;
  letter-spacing: 0.1rem;
  line-height: 200%;
  list-style: none;
  margin: 0px 0px 10px 9rem;
  padding: 8px 0px 0px 0px;
  text-indent: -9rem;
  width: 530px;
}

#news strong {
  background-color: #AE8364;
  border-radius: 5px;
  color: #FFF;
  font-family: 'Roboto', sans-serif;
  font-weight: normal;
  margin: 10px 10px 10px 15px;
  padding: 8px 8px 8px 13px;
}

@media screen and (max-width: 768px) {
  #news {
    width: 100%;
  }
  #news ul {
    margin: 0;
    padding: 0px;
  }
  #news li {
    background-position: 0px 0px;
    background-repeat: no-repeat;
    font-size: 0.9rem;
    letter-spacing: 0.1rem;
    line-height: 200%;
    list-style: none;
    margin: 0px 0px 0px 10px;
    padding: 8px 0px 0px 0px;
    text-indent: 0rem;
    width: 96%;
  }
  #news strong {
    display: table;
    font-size: 0.9em;
    line-height: 1.0rem;
    margin-bottom: 2px;
    margin-left: 0px;
    padding-left: 0rem;
    padding-top: 0.5rem;
    text-indent: 1rem;
  }
}


/* Photo Area */
.photo-area {
  display: flex;
  margin-top: 32px;
}

.photo-box {
  margin-bottom: 30px;
  width: 300px;
}

.photo-box img {
  width: 90%;
}

.photo-txt {
  line-height: 1.2rem;
  margin-left: 0px;
  margin-top: 100px;
  width: 500px;
}

@media screen and (max-width: 768px) {
  .photo-area {
    display: block;
    margin-top: 32px;
  }
  .photo-box {
    margin: 0 auto 1px auto;
    width: 80%;
  }
  .photo-box img {
    width: 100%;
  }
  .photo-txt {
    margin-top: 1px;
    width: 100%;
  }
}

/* Program */
.program-line {
  border-top: 1px solid #EAE6E3;
  padding-top: 25px;
}

.program-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 24px 0px 12px 0px;
}

.program-col {
  display: flex;
  margin-bottom: 16px;
  margin-left: 12px;
}

.program-day {
  color: #726151;
  font-size: 1.0rem;
  font-weight: bold;
  line-height: 2.2rem;
  margin-bottom: 16px;
  text-align: right;
}

.program-day span {
  font-size: 0.8rem;
  font-weight: normal;
}

.program-chair {
  color: #6D6C6C;
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 2.2rem;
}

.program-chair span {
  font-size: 1.0rem;
  font-weight: normal;
}

.program-performer {
  border-bottom: 1px solid #CFCFCF;
  color: #6D6C6C;
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 2.2rem;
  margin-bottom: 12px;
  padding-bottom: 12px;
  text-indent: 1rem;
}

.program-performer span {
  font-size: 1.0rem;
  font-weight: normal;
}

.program-performer-title {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 2.2rem;
}

.program-col .chair-tab {
  background-color: #D95500;
  color: #FFF;
  display: inline-block;
  font-size: 0.9rem;
  font-weight: normal;
  line-height: 2rem;
  margin-right: 12px;
  padding: 3px 10px 0 10px;
  text-align: center;
  width: 64px;
}

.program-col .performer-tab {
  align-items: center;
  background-color: #619857;
  color: #FFF;
  display: inline-block;
  font-size: 0.9rem;
  font-weight: normal;
  justify-content: center;
  line-height: 2rem;
  margin-right: 12px;
  padding: 3px 10px 0 10px;
  text-align: center;
  width: 64px;
}

@media screen and (max-width: 768px) {
  .program-col {
    display: block;
  }
}

/* COI */
.col-area {
  margin-left: 2rem;
}

.col-coi {
  display: flex;
  margin: 16px 0px;
}

.col-coi img {
  margin-bottom: 18px;
  width: 90%;
}

@media screen and (max-width: 768px) {
  .col-coi {
    display: block;
    margin: 16px 0px;
  }
}

/* Abstract Registration */
.abstract-grid {
  display: grid;
  grid-column-gap: 16px;
  grid-row-gap: 0px;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
}

@media screen and (max-width: 768px) {
  .abstract-grid {
    display: block;
  }
}

/* Abstract Category Table */
.category-table {
  background-color: #D0D0D0;
  border: 1px solid #D0D0D0;
  border-collapse: collapse;
  margin: 15px 0px;
  width: 100%;
}

.category-table th {
  background-color: #886E4F;
  border: 1px solid #D0D0D0;
  color: #F8F5E7;
  margin: 0px;
  padding: 15px;
}

.category-table td {
  background-color: #FFF;
  border: 1px solid #D0D0D0;
  padding: 15px;
  text-align:center;
}

@media screen and (max-width: 640px) {
  .category-table {
   font-size:12px;
  
  }
  
  .category-table td {
   padding:5px;
  
  }
}

/* Hands-on Seminar */
.handson-box {
  display: flex;
  margin-bottom: 24px;
}

.handson-date {
  background-color: #F5F3F3;
  font-weight: bold;
  line-height: 2.6rem;
  margin-right: 16px;
  padding: 16px;
}

.handson-program {
  border-left: 1px solid #949494;
  padding: 16px;
}

@media screen and (max-width: 768px) {
  .handson-box {
    display: block;
  }
  .handson-date {
    line-height: 1rem;
  }
  .handson-program {
    border-left: 0px solid #949494;
    padding: 16px;
  }
}

/* Poster Presentation */
.poster-box {
  display: flex;
  margin-top: 32px;
}

.poster-l {
  width: 70%;
}

@media screen and (max-width: 768px) {
  .poster-box {
    display: block;
  }
}


/*------------------------------------------------------------
|
| BUTTON
|
------------------------------------------------------------*/

/* Registration Button */
.btn-a,
.btn-b {
  align-items: center;
  border-radius: 16px;
  color: #fff;
  display: flex;
  font-size: 1.3rem;
  font-weight: bold;
  justify-content: space-evenly;
  margin: 24px 0px;
  padding: 2rem;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: 0.5s;
  width: 350px;
}

.btn-a {
  background-color: #EB9300;
}
.btn-a:hover {
  background-color: #EBC200;
  color: #fff;
}
.btn-b {
  background-color: #3EAC31;
}
.btn-b:hover {
  background-color: #95C68F;
  color: #fff;
}

.btn-a::after,
.btn-b::after {
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  content: '';
  height: 7px;
  transform: rotate(45deg);
  width: 7px;
}

.btn-none {
  background-color: #B0B0B0;
  border-radius: 16px;
  color: #FFFFFF;
  display: block;
  font-size: 1.1rem;
  height: 100%;
  left: 0;
  letter-spacing: 0.04rem;
  line-height: 4.6rem;
  margin: 32px auto;
  text-align: center;
  text-decoration: none;
  width: 280px;
}

.btn-windowicon-white {
  background-image: url(../images/w-icon-white.svg);
  background-position: 10px 0px;
  background-repeat: no-repeat;
  background-size: 18px 28px;
  display: inline-block;
  height: 26px;
  margin: 0px 2px 0px 0px;
  padding-right: 2.5rem;
  padding-top: 0px;
  width: 26px;
}

@media screen and (max-width: 1224px) {
  .btn-a,
  .btn-b {
    width: 100%;
  }
}

/* Large Button */
.btn-large {
  background-color: #FA6400;
  border-radius: 16px;
  color: #fff;
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
  margin: auto;
  max-width: 80%;
  padding: 0.5rem 1rem;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition-duration: 0.3s;
  width: 100%;
}

.btn-large a {
  border-radius: 16px;
  color: #FFFFFF;
  display: block;
  padding: 1.5rem 1rem 1.2rem 1rem;
  text-decoration: none;
}

.btn-large:visited {
  color: #fff;
}

.btn-large:hover {
  background-color: #FFAD4A;
  color: #fff;
  display: block;
}

.btn-large:before {
  border: 0;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  content: '';
  height: 8px;
  left: 30px;
  margin-top: -6px;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  transition: .3s;
  width: 8px;
}

.btn-large:hover:before {
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  left: 40px;
}

@media screen and (max-width: 768px) {
  .btn-large:before {
    left: 5%;
  }
}

/* Program Button */
.btn-program {
  background-color: #FA6400;
  border-radius: 16px;
  color: #fff;
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
  margin: auto auto 32px auto;
  padding: 2.0rem 1rem;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition-duration: 0.3s;
  width: 400px;
}

.btn-program a {
  border-radius: 16px;
  color: #FFFFFF;
  display: block;
  padding: 1.5rem 1rem 1.2rem 1rem;
  text-decoration: none;
}

.btn-program:visited {
  color: #fff;
}

.btn-program:hover {
  background-color: #FFAD4A;
  color: #fff;
  display: block;
}

.btn-program:before {
  border: 0;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  content: '';
  height: 8px;
  left: 30px;
  margin-top: -6px;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  transition: .3s;
  width: 8px;
}

.btn-program:hover:before {
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  left: 40px;
}

.btn-program .btn-pdf-white {
  background-image: url(../images/w-icon-pdf.svg);
  background-position: 10px 2px;
  background-repeat: no-repeat;
  background-size: 24px 18px;
  display: inline;
  height: 50px;
  margin: 0px 2px 0px 0px;
  padding-right: 2.5rem;
  padding-top: 0px;
  width: 26px;
}


.approval-notice {
border: 1px solid #e0e0e0;
padding: 25px;
background-color: #ffffff;
max-width: 750px;
margin: 20px auto;
color: #333;
line-height: 1.8;
box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.approval-notice h2 {
text-align: center;
font-size: 1.3em;
color: #333;
border-bottom: 2px solid #d9534f;
padding-bottom: 10px;
margin: 0 0 25px 0;
}
.approval-notice .deadline {
color: #ea1912;
font-weight: bold;
}
.approval-notice p {
margin: 15px 0;
text-align: left;
}
.approval-notice strong {
color: #000;
}
.approval-notice a {
color: #007bff;
text-decoration: none;
font-weight: bold;
}
.approval-notice a:hover {
text-decoration: underline;
}
.approval-notice .note {
font-size: 0.95em;
text-indent: -1.2em;
padding-left: 1.5em;
}

.formbutton {
-moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
    -moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    -ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    background-color: transparent;
    border-radius: 0.375em;
    border: 0;
    box-shadow: inset 0 0 0 2px #f56a6a;
    color: #f56a6a !important;
    cursor: pointer;
    display: inline-block;
    font-size: 0.8em;
    font-weight: 700;
    height: 3.5em;
    letter-spacing: 0.075em;
    line-height: 3.5em;
    padding: 0 1em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.formbutton:hover {

background-color: rgba(245, 106, 106, 0.05);


}

