@charset "utf-8";
@import 'print.css' print;
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&family=Shippori+Mincho+B1&display=swap');


/* root
---------------------------------------------------------------------------*/
:root {
	--main-color: #7a6c9f;
	--main-color-sub: #aba2c3;
	--white: #eee;
	--txt-color: #231815;
	--link-color: #ed6c00;
	--link-hover: #ff9343;

	--red: #e83820;
	--red-bg: rgba(232,56,32, .08);
	--gray: #888;
	--silver: rgba(95,151,175, .16);
	--white: #fcfcfc;
	
	/* 320 - 1920 */
	--fs-xsmall: 1.2rem;
	--fs-small: 1.4rem;
	--fs-default: clamp(1.4rem, 1.344rem + 0.28vw, 1.68rem);/*100%*/
	--fs-regular: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
	--fs-medium: clamp(1.76rem, 1.696rem + 0.32vw, 2.08rem);
	--fs-large: clamp(2.4rem, 2.36rem + 0.2vw, 2.6rem);
	--fs-xlarge: clamp(3.08rem, 3.04rem + 0.2vw, 3.28rem);
	--fs-xxlarge: clamp(3.8rem, 3.76rem + 0.2vw, 4rem);
	--fs-xxxlarge: clamp(4.2rem, 4.08rem + 0.6vw, 4.8rem);
	
  --trans-fast: cubic-bezier(.215, .61, .355, 1) .16s;
  --trans-basis: cubic-bezier(.215, .61, .355, 1) .64s;
  --trans-slow: cubic-bezier(.215, .61, .355, 1) 1.6s;
	
	--line-default: 1.4;
	--line-wide: 1.8;
}


/* html, body
---------------------------------------------------------------------------*/
html {
	scroll-behavior: smooth;
}

body {
  background: url("../images/kv_bg.jpg") repeat;
	background-position: top center;
  color: var(--txt-color);
  display: flex;
  flex-direction: column;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: var(--fs-default);
  font-weight: normal;
  line-height: var(--line-default);
  letter-spacing: 0.05em;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
	-webkit-text-size-adjust: none; }

body#sub {
	background: var(--white);
}
body#top {
  background: url(../images/36cyto.jpg) no-repeat;
  background-size: cover;
  background-attachment: fixed;
  & div#container-wrap {
    background-color: white;
  }
}

/* header
---------------------------------------------------------------------------*/
header {
	background: var(--white);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 888;
	transition: var(--trans-basis);
	width: 100%;
}
/* #top header {
	position: fixed;
	top: 0;
	left: 0;
	transform: translateY(-100%);
	transition: var(--trans-basis);
} */
/* #top.fixed header {
	transform: translateY(0);
} */

header > div {
  width: 100%; 
}
header > div.wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-right: 0;
  margin-right: 0;
}
header > div h1 {
  width: 45%;
	max-width: 45%;
	height: auto;
	padding: 14px 0;
}

@media screen and (max-width: 1180px) {
	header > div h1 {
    width: 80%;
		max-width: 80%;
		padding: 18px 0;
	}
}

/* #gNav
---------------------------------------------------------------------------*/
#gNav ol {
  display: flex !important;
  justify-content: center;
  align-items: center;
  height: 48px;
  padding-left: 1em;
  padding-right: 1em;
  background: var(--main-color); 
}

#gNav ol > li:last-child {
  display: none; 
}


#gNav ol > li {
	display: block;
	height: 100%;
}
#gNav ol > li > a {
  position: relative;
  padding-left: 1.6em;
  padding-right: 1.6em;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: var(--white); }
#gNav ol > li.home {
  display: none; }
#gNav ol > li > a:hover {
  background: var(--main-color-sub); }
#gNav ol > li a img {
  max-width: auto; }
#gNav ol > li a {
  cursor: pointer; }
#gNav ol > li > div ul li {
  white-space: nowrap;
  line-height: 1; }
#gNav ol > li > div ul li a {
  margin-left: 0.4em; }
#gNav ol > li > div ul li h4 a {
  margin-left: 0; }
#gNav ol > li > div ul li a::before {
  content: '・'; }
#gNav ol > li > div ul li > a {
  font-size: var(--fs-regular); }

#gNav ol > li > div ul li h3 {
  font-size: var(--fs-medium);
  color: var(--white);
  display: inline-block; }
#gNav ol > li > div ul li h3 i {
  font-style: normal;
  padding: 0.02em 0.4em 0.1em;
  border: solid 2px var(--white); }

#gNav ol > li > div ul li h4 {
  padding: 0.2em 0.4em;
  color: var(--main-color);
  position: relative;
  margin-left: 0.2em; }
#gNav ol > li > div ul li h4::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 16px;
  background: var(--white);
  border-radius: 2px;
  position: absolute;
  margin-left: -0.2em;
  top: 0.5em;
  left: 0; }
#gNav ol > li > div ul li h4 a::before {
  display: none; }

#gNav ol > li > div ul li h3 + a {
  margin-top: 1.4em; }
#gNav ol > li > div ul li h3 + h4,
#gNav ol > li > div ul li a + h4 {
  margin-top: 0.8em; }
#gNav ol > li > div ul li > a + a {
  margin-top: 0.6em; }
#gNav ol > li > div ul li h4 + h4 {
  margin-top: 0.4em; }
#gNav ol > li > div ul li h4 + a {
  margin-top: 0.2em; }

/* 1180以上の時 */
@media screen and (min-width: 1180px) {
#gNav ol > li > div {
  position: absolute;
  top: 135px;
  left: 0;
  width: 100vw;
  height: auto;
  padding-top: 35px;
  padding-bottom: 35px;
  background: var(--main-color);
  display: none;
  z-index: 10; }
header.is-animation #gNav ol > li > div {
  top: 60px; }
#gNav ol > li > div ul {
  display: flex;
  justify-content: center;
  align-items: flex-start; }
#gNav ol > li > div ul li {
  display: flex;
  flex-direction: column;
  letter-spacing: 0; }
#gNav ol > li > div ul li a {
  color: var(--main-color);
  margin-top: 0; }
#gNav ol > li > div ul li + li {
  margin-left: 60px; }
}

@media screen and (max-width: 1023px) {
  #gNav ol > li > a {
    padding-bottom: 0; }
  #gNav ol > li.current a::before,
  #gNav ol > li.current span::before {
    display: none; }
  #gNav ol > li:hover > a::before {
    bottom: -0.6em; }
  #gNav ol > li.home {
    display: block; }
  #gNav ol > li > div ul.wrap {
    margin-top: 0.8em;
    padding-left: 0;
    padding-right: 0; }
  #gNav ol > li > div ul li h3,
  #gNav ol > li > div ul li h4 {
    color: var(--main-color); }
  #gNav ol > li > div ul li h3 {
    margin-top: 0.8em; }
  #gNav ol > li > div ul li h3.none {
    display: none; }
  #gNav ol > li > div ul li h3.mgnT2em {
    margin-top: 2em; }
  #gNav ol > li > div ul li h3 i {
    border: solid 2px var(--white); }
  #gNav ol > li > div ul li h4::before {
    background: var(--white); }

#gNav ol > li:last-child {
  display: block; 
}
#fixedBTN {
  display: none;
}


  #gNav ol > li > div ul li a {
    color: #666; }
  #gNav ol > li > div ul li h3 + h4 {
    margin-top: 0.6em; }
  #gNav ol > li > div ul li a + a {
    display: block;
    margin-top: 0; }
  
  #gNav ol {
	  opacity: 0;
    visibility: hidden;
    display: none!important;
    background: none;
    width: 0;
    height: 0;
    transition: var(--trans-fast); }
  .open	#gNav ol {
	  opacity: 1;
    visibility: visible;
    display: flex!important;
    background: var(--main-color);
    width: 100%;
    height: 100vh;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    padding-top: 60px;
    padding-left: 60px;
    padding-bottom: 60px;
    margin-top: 0;
    overflow-y: scroll;
  	position: fixed;
    top: 0;
    right: 0;
    z-index: 9998;
    transition: var(--trans-fast); }
  .open	#gNav ol.wrap {
    padding-left: 20px; }
  .open	#gNav ol > li {
    color: var(--white);
    width: auto;
    padding: 0;
    margin: 0;
    height: auto; }
  .open	#gNav ol > li span {
    margin: 0;
    padding: 0; }

  .open	#gNav ol > li a {
    color: var(--white);
		font-size: var(--fs-regular);
    font-weight: bold;
		padding-left: 0;
		padding-right: 0;
	}
  .open	#gNav ol > li + li {
    margin-top: 10px; 
  }
  .open #gNav ol > li:last-child.forSpOnly {
    margin-top: 2em;
    padding-top: 1em;
    border-top: 2px solid white;
  }

  /* hamburger(trigger) */
  .trigger {
    line-height: 1;
    letter-spacing: 0;
    color: var(--main-color);
    background: var(--main-color);
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  	position: fixed;
    top: 0;
    right: 0;
    z-index: 9999; }
  .trigger:hover {
    color: var(--main-color);
    cursor: pointer; }
  .trigger .bar {
    display: block;
    width: 46px;
    height: 2px;
    background: var(--white);
    margin-bottom: 8px;
    transition: all var(--trans-fast); }
  .trigger .bar:last-child {
    margin-bottom: 0; }
  .trigger .menu::before {
    content: 'メニュー';
    color: var(--white);
		font-size: var(--fs-xsmall);
    font-weight: bold; }

  .trigger.active {
    color: var(--main-color);
    background: var(--main-color); }
  .trigger.active .bar {
    background: var(--white);
    margin-bottom: 10px; }
  .trigger.active .top {
    transform: translateY(6px) rotateZ(20deg); }
  .trigger.active .bottom {
    transform: translateY(-6px) rotateZ(-20deg); }
  .trigger.active .menu::before {
    content: '閉じる'; }
}

@media screen and (max-width: 1180px) {
  #gNav ol > li a img,
  #gNav ol > li span img {
    height: 26px; }
  #gNav ol > li:nth-child(1) a img {
    height: 22px; }
}
@media screen and (max-width: 500px) {
  .trigger {
    width: 60px;
    height: 60px; }
  .trigger .bar {
    display: block;
    width: 40px; }
  .open	#gNav ol div {
    margin-top: 0.3em; }
  .open	#gNav ol {
    padding-bottom: 160px; }
  .open	#gNav ol {
    padding-left: 40px; }
}


/* aside
---------------------------------------------------------------------------*/
aside {
  background: url(../images/36cyto.jpg) no-repeat;
  background-size: cover;
  background-attachment: fixed;
	text-align: center;
  object-fit: cover;
  margin-top: 120px;
}
aside .kv-img {
	height: auto;
	width: 78.5%;
	margin-left: auto;
	margin-right: auto;
  object-fit: cover;
}
aside .kv-img-sp {
  display: none;
}
aside figure {
	position: relative;
	width: 100%;
  padding: 80px 40px;
	/* max-width: 1680px; */
	margin-left: auto;
	margin-right: auto;
  object-fit: cover;
}

/* #fixedBTN {
  position: fixed;
  right: 2.4vw;
  bottom: 2.4vw;
  z-index: 8888;
} */
#fixedBTN a {
  display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	/* border-radius: 50%; */
  background: #b7337a;
  color: var(--white);
	height: 80px;
	width: 200px;
  border: 5px solid white;
}
#fixedBTN a span {
	margin-top: 0.4em;
}
#fixedBTN a:hover {
	opacity:0.75;
}

@media screen and (max-width:1023px) {
  aside {
    background: url(../images/36cyto.jpg) no-repeat;
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
    object-fit: cover;
    margin-top: 60px;
  }
  aside figure {
    padding: 15px 8px;
  }
  aside .kv-img {
    display: none;
  }
  aside .kv-img-sp {
    display: block;
    width: 90%;
  }
}

/* footer
---------------------------------------------------------------------------*/
footer {
  /* margin-top: 20px; */
  background: #eeeeeed9;
}

footer address {
  padding: 56px 0; 
  /* background: #eeeeeed9; */
}
footer address h2 {
  width: 224px; }
footer address ul {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; }
footer address ul li h3 {
	color: var(--txt-color);
  display: inline-block;
	font-size: var(--fs-medium);
  font-style: normal;
  letter-spacing: 0.1em;
	margin-top: -0.4em;
	padding-left: 2.4em;
	position: relative;
}
footer address ul li h3::before {
	background: var(--txt-color);
	content: '';
	display: inline-block;
	height: 1px;
	margin-right: 0.4em;
	position: absolute;
	top: 0.76em;
	left: 0;
	width: 2em;
}
footer address ul li h4 {
	color: var(--txt-color);
	font-style: normal;
	font-size: var(--fs-medium);
	margin-top: 0.24em;
}
footer address ul li h4 .com {
	font-size: var(--fs-regular)!important;
}
footer address ul li p {
  font-style: normal;
	line-height: var(--line-wide);
	margin-top: 0.24em;
}
footer .wrap small{
  display: block;
  padding-bottom: 56px; }

@media screen and (max-width: 1280px) {
  footer .add address h2 {
    width: 320px; }
  footer .add {
    flex-direction: column; }
  footer .add nav {
    margin-top: 40px;
    margin-bottom: 40px; }
  footer .add nav ol li + li {
    margin-top: 1em; }
  footer .add address div {
    flex-direction: column;
    align-items: center; }
  footer .add address div p {
    margin-top: 1em; }
}
@media screen and (max-width: 960px) {
  footer .add address h2 {
    margin-left: 0;
    margin-right: auto; }
  footer .add nav {
    flex-direction: column; }
  footer .add nav ol + ol {
    margin-top: 2.4em;
    margin-left: 0; }
  footer address ul {
    flex-direction: column;
    align-items: flex-start; }
  footer address ul li + li {
    margin-top: 32px; }
  footer address ul li p {
    padding-top: 5px; }
}


#footBANNER {
  width: 100%;
  background-color: #dae2e5;
  padding: 40px 0;
}
#footBANNER h5 {
  text-align: center;
  color: var(--main-color);
  margin-bottom: 1.0em;
}
#footBANNER ul {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
  width: 100%;
  margin: auto;
  text-align: center;
}
#footBANNER ul li {
  width: calc((100% - 4.8%) / 3);
}
#footBANNER ul li:not(:nth-child(3n - 2)) {
	margin-left: 2.4%;
}
#footBANNER ul li:nth-child(n + 4) {
	margin-top: 1.6%;
}

@media screen and (max-width: 500px) {
	#footBANNER ul li {
  	width: calc((100% - 2.4%) / 2);
	}
	#footBANNER ul li:not(:nth-child(3n - 2)) {
		margin-left: 0;
	}
	#footBANNER ul li:nth-child(even) {
		margin-left: 2.4%;
	}
	#footBANNER ul li:nth-child(n + 4) {
		margin-top: 0;
	}
	#footBANNER ul li:nth-child(n + 3) {
		margin-top: 1.6%;
	}
}


#toTop a {
  width: 50px;
  height: 50px;
  background: url("../images/totop.svg") no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 2.4vw;
  left: 2.4vw;
  z-index: 2;
  transition: var(--trans-fast); }
#toTop a:hover {
	background: url("../images/totop_hover.svg") no-repeat;
  transition: var(--trans-fast);
}


/* a
---------------------------------------------------------------------------*/
a {
  color: var(--link-color);
	text-decoration: none;
  transition: var(--trans-fast); }
a:hover {
  color: var(--link-hover);
  cursor: pointer;
  transition: var(--trans-fast); }
a:hover img {
  opacity: 0.8; }

.txt-brake {
  white-space: normal;
  word-break: break-all!important; }


/* img
---------------------------------------------------------------------------*/
main figure img {
  margin: auto; }
main figcaption.txtC {text-align: center;}
main figcaption.txtR {text-align: right;}

.img-wrap {
  border: solid 2px var(--silver);
  border-radius: 20px;
  padding: 10px;
  display: inline-block; }


/* h-tag
---------------------------------------------------------------------------*/
h2, h3, h4, h5, h6 {
  color: var(--main-color);
  font-weight: bold;
  letter-spacing: 0.1em; }

/* h2 */
main h2 {
  color: var(--white);
  font-size: var(--fs-large);
  padding: 0.6em 1em;
  background: linear-gradient(90deg, var(--main-color) 40%, rgba(0,0,0,0) 100%);
  position: relative; }
main h2.color {
  background: linear-gradient(90deg, var(--main-color-sub) 40%, rgba(0,0,0,0) 100%);
}
.news.important h2 {
  background: var(--red);
  border-radius: 0.2em 0.2em 0 0; 
}

section.news {
  margin-top: 50px;
}

/* h3 */
main h3 {
  color: var(--main-color);
  font-size: var(--fs-xlarge); }
main h3 i {
	font-style: normal;
}

/* h4 */
main h4 {
  font-size: var(--fs-medium);
  letter-spacing: 0.02em; }

main h4 {
  font-size: var(--fs-medium);
  position: relative;
  padding-left: 1em; }
main h4::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 100%;
  background: var(--main-color);
  position: absolute;
  top: 0;
  left: 1.6em;
  margin-left: -1.6em; }

/* h5 */
main h5 {
	border-bottom: solid 1px var(--main-color);
  color: var(--main-color);
  font-size: var(--fs-regular);
  letter-spacing: 0.05em;
	padding-bottom: 0.4em;
}

address h5 {
  display: inline-block;
  width: 100%;
  margin: 10px 0;
  margin-bottom: 0;
  font-style: normal;
}


main h6 {
  color: var(--main-color);
}


/* wrap
---------------------------------------------------------------------------*/
.wrap {
  max-width: 1366px;
  width: 100%;
  padding-left: 100px;
  padding-right: 100px;
  margin-left: auto;
  margin-right: auto; }
.container {
  padding-top: 64px;
  padding-bottom: 64px;
  position: relative; }
.container::before {
  content: '';
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: blur(10px);
  transform: translateY(5px) scale(0.98);
  mix-blend-mode: multiply; }

@media screen and (max-width: 1180px) {
  .wrap {
    padding-left: 20px;
    padding-right: 20px; }
}

/* Loading Animation
---------------------------------------------------------------------------*/
#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: white;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.loaded {
  opacity: 0;
  visibility: hidden;
}
.loading-anim {
  display: flex;
  flex-direction: column;
  height: 100vh;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  & .img-fadeIn {
    padding: 0;
    animation: fadeIn 1.5s ease-out 1 normal backwards;
    will-change: transform, opacity;
    & img {
      width: 300px;
      object-fit: contain;
    }
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(80px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
.dots { 
  height: 40px;
  padding: 0;
  margin: 0;
  & div.disp_manage {
    display: none;
  }
  & div {
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
  }
}
.dots div .dot {
  width: 20px; height: 20px;
  margin: 0 8px;
  background-color: #bababa;
  border-radius: 50%;
  animation: dot-pulse 1.5s ease-in-out infinite;
}
.dots div .dot:nth-child(1) { animation-delay: 0s; }
.dots div .dot:nth-child(2) { animation-delay: 0.2s; } /* Fixed delays for simplicity */
.dots div .dot:nth-child(3) { animation-delay: 0.4s; }
.dots div .dot:nth-child(4) { animation-delay: 0.6s; }
.dots div .dot:nth-child(5) { animation-delay: 0.8s; }
@keyframes dot-pulse {
  0%, 100% { transform: scale(0.7); opacity: 0.7; }
  50% { transform: scale(1); opacity: 1; }
}
/* main
---------------------------------------------------------------------------*/
main.top .container {
	margin-top: -35px;
}

.items .item {
	width: -webkit-calc(100% / 3) ;
	width: calc(100% / 3) ;
}

.timer {
	display: none;
}


/* top only
---------------------------------------------------------------------------*/
.top .read {
  text-align: center; }
.top .read img {
  width: 945px;
  height: 50px;
  margin: 100px auto 80px; }

.top .submenu {
  list-style: none; }
.top .submenu li {
  text-align: center; }
.top .submenu li h3 {
  margin-bottom: 30px; }
.top .submenu li h3 img {
  height: 22px; }
.top .submenu li figure + p {
  margin-top: -70px; }
.top .submenu li .btnA {
  margin-top: 30px; }
.top .submenu li .btnA a {
  margin-left: auto;
  margin-right: auto; }
.top .submenu li + li {
  margin-top: 0; }

@media screen and (max-width: 500px) {
  .top .read img {
    width: 365px;
    height: 125px; }
}


/* sub
---------------------------------------------------------------------------*/
.sub {
	margin-top: 180px;
}
section + section {
	margin-top: 4em;
}

.sub .h2ttl {
  direction: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  margin-top: 100px; }
.sub .h2ttl span {
  display: inline-block;
  color: var(--white);
  background: var(--main-color);
  padding: 0.15em 1em 0.3em;
  margin-bottom: 0.25em; }
.sub .h2ttl i {
  content: '';
  display: inline-block;
  width: 60px;
  height: 5px;
  background: var(--main-color);
  margin-top: 20px; }

.sub .ttl-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2; }
.sub .ttl-container h3 {
  width: 100%;
  display: block;
  color: var(--white);
  background: var(--main-color);
  text-align: center;
  padding: 0.6em 1em;
  border-radius: 10px; }
.sub .ttl-container h3::before {
  display: none; }
.sub section:not(:first-child) + .ttl-container,
.sub section + .h3ttl-none {
  margin-top: 80px; }
.sub section:first-child + .ttl-container {
  margin-top: 40px; }
.sub .ttl-container + .wrap {
  margin-bottom: 40px; }
.sub section:last-child {
	padding-bottom: 40px;
}

.sub-bg img {
  width: 100vw;
  position: absolute; }

ul + .flex-wrap {
  margin-top: 40px; }
.flex-wrap {
  list-style: none;
  display: flex;
  flex-direction: row-reverse; }
.flex-wrap.reverse {
  flex-direction: row; }
.flex-wrap li figure {
  width: 250px;
  margin-left: 20px;
  text-align: right; }
.flex-wrap.reverse li figure {
  margin-left: 0;
  margin-right: 20px;
  text-align: left; }
.flex-wrap li figure figcaption {
  text-align: center; }
.flex-wrap.imgA li figure {
  width: 450px; }
.flex-wrap li figure + figure,
.flex-wrap li + li {
  margin-top: 0; }

@media screen and (max-width: 1120px) {
  .flex-wrap,
  .flex-wrap.reverse {
    flex-direction: column; }
  .flex-wrap li {
    width: 100%; }
  .flex-wrap li figure {
    width: auto;
    margin-left: 0;
    text-align: center; }
  .flex-wrap li figure:last-child {
    margin-bottom: 30px; }
}
@media screen and (max-width: 1023px) {
  .sub {
    margin-top: 90px;
  }
}
@media screen and (max-width: 500px) {
  .sub .ttl-container:not(:first-child) {
    margin-top: 80px; }
  .sub .ttl-container .wrap p {
    font-weight:bold; }
  .sub .ttl-container .wrap {
    margin-top: 0; }
  .flex-wrap li figure,
  .flex-wrap.imgA li figure {
    width: auto; }
}


/* x-container
---------------------------------------------------------------------------*/
.card-container {
  display: flex;
  flex-wrap: wrap; }
.card-container li {
  list-style: none; }
.card-container li + li {
  margin-top: 0; }

/* one-wrap */
.one-wrap {
  display: block; }
.one-wrap li a {
  display: flex;
  color: var(--white);
  background: var(--white);
  border: solid 1px var(--silver);
  box-shadow: 0 12px 24px rgb(42,42,42, .2);
  transition: var(--trans-fast); }
.one-wrap li a:hover {
	transform: translateY(-6px);
  box-shadow: 0 6px 12px rgb(42,42,42, .3);
  transition: var(--trans-fast); }
.one-wrap > li + li {
  margin-top: 60px; }

/* two-wrap */
.two-wrap.w50p {
  width: 50%; }
.two-wrap li:nth-child(n + 3) {
  margin-top: 20px; }

/* three-wrap */
.three-wrap li {
  width: calc(((100% - 100px) - .01px) / 3); }
.three-wrap li:not(:nth-child(3n - 2)) {
  margin-left: 50px; }
.three-wrap li:nth-child(n + 4) {
  margin-top: 30px; }

.three-wrap li a figure figcaption {
  padding: 0.6em 1em;
  color: var(--white);
  background: var(--white);
  transition: var(--trans-fast); }
.three-wrap li a:hover figure figcaption {
  background: rgba(37,86,209, 0.9);
  transition: var(--trans-fast); }

/* four-wrap */
.four-wrap li {
  width: calc((100% - 150px) / 4); }
.four-wrap li:not(:nth-child(4n - 3)) {
  margin-left: 50px; }
.four-wrap li:nth-child(n + 5) {
  margin-top: 20px; }

@media screen and (max-width: 1120px) {
  .three-wrap li {
    width: calc((100% - 30px) / 2); }
  .three-wrap li:not(:nth-child(3n - 2)) {
    margin-left: 0; }
  .three-wrap li:nth-child(even) {
    margin-left: 30px; }
  .top .three-wrap li:nth-child(n + 3) {
    margin-top: 60px; }

  .four-wrap li {
    width: calc((100% - 30px) / 2); }
  .four-wrap li:not(:nth-child(4n - 3)) {
    margin-left: 0; }
  .four-wrap li:nth-child(even) {
    margin-left: 30px; }
  .four-wrap li:nth-child(n + 3) {
    margin-top: 30px; }
}
@media screen and (max-width: 500px) {
  .one-wrap li a {
    flex-direction: column; }
  .one-wrap.schedule li a div {
    padding: 25px 1.5em 17px; }
  main .one-wrap.schedule li a figure {
    width: 100%;
    height: auto; }
  main .one-wrap.schedule li a figure img {
    width: 100%; }
  .one-wrap.schedule li a figure + div {
    width: 100%; }

  .two-wrap li,
  .two-wrap.w50p {
    width: 100%; }
  .two-wrap li:nth-child(n + 3) {
    margin-top: 20px; }

  .three-wrap li {
    width: 100%; }
  .three-wrap li:nth-child(even) {
    margin-left: 0; }
  .top .three-wrap li + li,
  .top .three-wrap li:nth-child(n + 3) {
    margin-top: 60px; }
  
  .four-wrap li {
    width: 100%; }
  .four-wrap li:nth-child(even) {
    margin-left: 0; }
  .four-wrap li + li,
  .four-wrap li:nth-child(n + 3) {
    margin-top: 20px; }
}

/* balloon
---------------------------------------------------------------------------*/
.balloon-wrap {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap; }
.balloon-wrap li {
  margin-top: 10px;
  margin-bottom: 10px;
  position: relative; }
.balloon-wrap li figure img {
  max-width: 200px;
  padding-left: 10px;
  padding-right: 10px; }
.balloon-wrap li figure,
.balloon-wrap li figcaption {
  color: #27486D;
  font-weight: bold;
  text-align: center; }

.balloon {
  width: 100%;
  letter-spacing: 0;
  padding: 1em 1.2em;
  border-radius: 0.4em;
  color: var(--white);
  background: #27486D;
  position: absolute;
  left: 0;
  z-index: 2;
  display: none;
  opacity: 0;
  transition: opacity var(--trans-fast); }
.balloon:after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 12.5px 15px 12.5px;
  border-color: transparent transparent var(--silver) transparent;
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  text-align: center;
  margin: auto; }
.balloon-wrap li figure:hover {
  cursor: pointer; }
.balloon-wrap li figure:hover + p.balloon {
  display: block;
  opacity: 1;
  transition: opacity var(--trans-fast); }

.balloon-wrap2 table + h3,
.balloon-wrap2 p + h3 {
  margin-top: 60px; }

@media screen and (max-width: 500px) {
  .balloon-wrap {
    flex-direction: column;
    justify-content: center;
    align-items: center; }
  .balloon-wrap li + li {
    margin-top: 40px; }
  .balloon-wrap li {
    width: 80%;
    margin: auto; }
  .balloon-wrap li figure {
    width: 100%;
    padding-left: 0;
    padding-right: 0; }
  .balloon {
    display: block;
    opacity: 1;
    position: relative; }
}

/* main
---------------------------------------------------------------------------*/
main p {
	line-height: var(--line-wide); }
figcaption span {
  display: block;
  margin-top: 0.4em;
  line-height: 1; }


/* table
---------------------------------------------------------------------------*/
main table {
  width: 100%; }
main table th,
main table td {
  border-top: solid 1px var(--silver);
  border-bottom: solid 1px var(--silver);
  padding: 1.2em 2em; }

/* tableA（横幅100%） */
main table.tableA th {
  color: var(--main-color);
  font-weight: bold;
  vertical-align: middle;
  width: 20%;
  background: rgba(130,147,156, .05); }

main table.honbunrei th {
	vertical-align: middle;
}

/* tableB（スマホ時・横スワイプ） */
main table.tableB caption {
  text-align: right;
  margin-bottom: 0.5em;
}
main table.tableB th,
main table.tableB td {
  border: solid 1px var(--silver);
	font-size: var(--fs-small);
  vertical-align: middle;
}
main table.tableB th {
  background: rgba(130,147,156, .05);
  color: var(--main-color);
  font-weight: bold;
  width: auto;
}

@media screen and (max-width: 1120px) {
  main table.tableA th,
  main table.tableA td {
    width: 100%;
    display: block; }
  main table.tableA th,
  main table.tableA tr:not(:last-child) td {
		text-align: left;
    border-bottom: none; }
	main table.tableA td {
		border-top: none;
	}
  main table.tableA tr:last-child td {
    border-bottom: solid 1px var(--silver); }
}


/* news
---------------------------------------------------------------------------*/
main .news table {
  margin-top: 20px;
  border: none; }
main .news table td {
  border-left: none;
  border-right: none; }
main .news table td + td {
  padding-top: 0; }

@media screen and (max-width: 1120px) {
  main .news table td {
    border-bottom: none; }
  main .news table td + td {
    border: none; }
  main .news table tr {
    border-bottom: solid 1px var(--silver); }
  main .news table.tableA tr:last-child td {
    border: none; }
}

main .news.important {
  background: var(--red-bg);
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-radius: 0 0 0.2em 0.2em; }
  main .news.important p{text-align: center;
    margin: 1.0em 2.0em 0 2.0em;
  }
  main .news.important p + .btnA a{
    margin: 1.0em auto 0 auto !important;
    text-align: center !important;
    background-color: #d54e39;
  }

main .news.important dl dt,
main .news.important dl dd {
  border-bottom: solid 1px var(--silver); }
main .news.important + section {
  margin-top: 40px; }

  .news_list {
    list-style: circle;
    padding-left: 3rem;
    margin-top: 20px;
  }

  .news_list + div {
    aspect-ratio: 16 / 9;
    max-width: 1200px;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .news_list + div iframe {
    width: 100%;
    height: 100%;
  }

  .news_list li::before {
    margin-right: 5px;    
  }

  .news_list li + li {
    margin-top: 10px;
  }

.news dl {
	margin-top: 1.6em;
	padding: 0 0.8em;
}
.news dl dt + dd,
.news dl dd + dt {
	margin-top: 0.4em!important;
}
.news dl dt {
	clear: both;
	float: left;
	width: 8em;
}
.news dl dd {
	padding-left: 8em;
}

@media screen and (max-width: 767px) {
  main .news dl[class^="style"] dt,
  main .news dl[class^="style"].w8 dd {
    float: none;
    margin-left: 0;
    width: 100%;
    border: none; }
  main .news dl[class^="style"] dt {
    padding-bottom: 0.2em;
    margin-bottom: 0; }
  main .news dl[class^="style"].w8 dd {
    border-bottom: dashed 1px var(--silver); }
  main .news dl[class^="style"] dt::after {
    display: none; }
	
	.news dl dt {
		float: none;
		width: 100%;
	}
	.news dl dd {
		padding-left: 0;
		margin-bottom: 1em;
	}
}


/* pickup
---------------------------------------------------------------------------*/
.pickup_box {
  width: 100%;
  margin-top: 1.6em;
}
.pickup_box + .pickup_box {
	margin-top: 3.2em;
}
.pickup_box ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-content:flex-start;
	max-width: 1024px;
	margin-left: auto;
	margin-right: auto;
}
.pickup_box ul li {
	background: var(--white);
  border: 1px solid var(--silver);
  box-shadow: 2px 2px 4px var(--silver);
	margin-left: auto;
	margin-right: auto;
  width: calc((100% - 40px) / 3);
}
.pickup_box ul li:not(:nth-child(3n - 2)) {
  margin-left: 20px;
}
.pickup_box ul li:nth-child(n + 4) {
  margin-top: 20px;
}
.pickup_box ul li a {
  display: block;
  height: 100%;
}

.pickup_box ul li div.pickup_block {
  padding: 16px;
}
.pickup_box ul li div.pickup_block h4 {
  border-bottom: 1px solid var(--main-color);
  padding-bottom: 0.24em;
}
.pickup_box ul li div.pickup_block h4 + div {
  margin-top: 10px;
  margin-left: 0;
}

.pickup_box ul li div.pickup_block h4 + div p {
  letter-spacing: 0.02em;
  margin-top: 0;
}
.pickup_box ul li div.picture h4 + div figure {
 width: 100%;
 height: 200px;
 display: flex;
 align-items:start
}

.pickup_box ul li div.picture h4 + div figure img {
  display: block;
  object-fit: cover;
  height: 100%;
}

.pickup_box ul li div.picture h4 + div figure + p {
  width: 90%;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  color: var(--main-color);
 }

.pickup_box ul li div.pickup_block p span.time {
  font-weight: bold;
}

.pickup_box .btn_pickup {
  margin-top: 20px;
  margin-bottom: 10px;
  width: 90%;
  align-items: center;
  text-align: center;
  color: var(--white);
  background: var(--main-color);
  padding: 0.4em 0.8em;
  border: 1px solid var(--main-color);
  border-radius: 0.1em;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

.pickup_box ul li a:hover .btn_pickup {
  color: var(--main-color);
  background: var(--white);
  border: 1px solid var(--main-color);
}

.pickup_box ul li div.pickup_block.no_picture h4 + div {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 1180px) {
  .pickup_box ul li {
    width: calc((100% - 20px) /2);
    border: 1px solid var(--main-color);
    margin-bottom: 20px;
  }
	.pickup_box ul li:not(:nth-child(3n - 2)) {
	  margin-left: 0;
	}
	.pickup_box ul li:nth-child(even) {
		margin-left: 20px;
	}
	.pickup_box ul li:nth-child(n + 3) {
	  margin-top: 20px;
	}

  .pickup_box ul li div.pickup_block {
    padding: 10px;
	}

  .pickup_box .btn_pickup a {
    padding: 0.6em 1.0em;
	}
}

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

  .pickup_box ul li {
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 4px 4px 4px #a1a1a1;
  }
	.pickup_box ul li:not(:nth-child(3n - 2)),
	.pickup_box ul li:nth-child(even) {
		margin-left: auto;
	}

  .pickup_box ul li + li {
    margin-top: 20px;
	}

	.pickup_box ul li div.pickup_block {
  	padding: 20px;
	}
}


/* location_illust
---------------------------------------------------------------------------*/
.location_illust {
  margin-top: 80px;
}

.location_illust div {
  display: flex;
  justify-content: center;
}


/* aside
---------------------------------------------------------------------------*/
aside figure img{
  width: 100%; }

/* style
---------------------------------------------------------------------------*/
.txtC {text-align: center!important;}
.txtR {text-align: right!important;}
.txtL {text-align: left!important;}

.fontXS {font-size: var(--fs-xsmall)!important;}
.fontS, .com, small {font-size: var(--fs-small)!important;}
.fontM {font-size: var(--fs-medium)!important;}
.fontL {font-size: var(--fs-large)!important;}
.fontLL {font-size: var(--fs-xlarge)!important;}

.fontB {font-weight: 700!important;}
.fcR {color: #e13c15!important;}
.underline {text-decoration: underline;}


.txt-top {
  font-size: var(--fs-xsmall);
  vertical-align: top;
  position: relative;
  top: -0.1em;
  margin-right: 0.2em; }
.txt-bottom {
  font-size: var(--fs-xsmall);
  vertical-align: bottom;
  position: relative;
  top: 0.2em;
  margin-right: 0.2em; }

.reference {
  max-width: 760px;
  border: solid 2px var(--main-color);
  padding: 10px 1em;
  background: #FEF5D3;
  margin-left: auto;
  margin-right: 0;
  padding-left: 75px;
  border-radius: 8px;
  position: relative; }
.reference::before {
  content: '参考';
  color: var(--white);
  width: 60px;
  height: 100%;
  background: var(--main-color);
  padding: 0.1em 0.4em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0; }

/* list
---------------------------------------------------------------------------*/
main ul,
main ol {
	line-height: var(--line-wide);
}
main ul {
  list-style: disc;
	margin-left: 1.2em; }
main ol {
  list-style: decimal;
	margin-left: 1.6em; }

main ul[class^="list"] li + li,
main ol[class^="list"] li + li {
  margin-top: 0.6em; }
main ol[class^="list"] li > ul,
main ol[class^="list"] li > ol,
main ul[class^="list"] li > ol,
main ul[class^="list"] li > ul,
main ol[class^="list"] li > ul > li,
main ol[class^="list"] li > ol > li,
main ul[class^="list"] li > ol > li,
main ul[class^="list"] li > ul > li {
  margin-top: 0.4em; }


/* ol */
main ol.listA {
  list-style: none; }
main ol.listA > li {
  padding-left: 1.8em;
  position: relative; }
main ol.listA > li::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0.2em; }
main ol.listA > li:nth-child(n + 10)::before {
  left: -0.3em; }
main ol.listA > li:nth-child(1)::before {
  content: '1．'; }
main ol.listA > li:nth-child(2)::before {
  content: '2．'; }
main ol.listA > li:nth-child(3)::before {
  content: '3．'; }
main ol.listA > li:nth-child(4)::before {
  content: '4．'; }
main ol.listA > li:nth-child(5)::before {
  content: '5．'; }
main ol.listA > li:nth-child(6)::before {
  content: '6．'; }
main ol.listA > li:nth-child(7)::before {
  content: '7．'; }
main ol.listA > li:nth-child(8)::before {
  content: '8．'; }
main ol.listA > li:nth-child(9)::before {
  content: '9．'; }
main ol.listA > li:nth-child(10)::before {
  content: '10．'; }
main ol.listA > li:nth-child(11)::before {
  content: '11．'; }
main ol.listA > li:nth-child(12)::before {
  content: '12．'; }
main ol.listA > li:nth-child(13)::before {
  content: '13．'; }
main ol.listA > li:nth-child(14)::before {
  content: '14．'; }
main ol.listA > li:nth-child(15)::before {
  content: '15．'; }
main ol.listA > li:nth-child(16)::before {
  content: '16．'; }
main ol.listA > li:nth-child(17)::before {
  content: '17．'; }
main ol.listA > li:nth-child(18)::before {
  content: '18．'; }
main ol.listA > li:nth-child(19)::before {
  content: '19．'; }

main ol.listB {
  list-style: none; }
main ol.listB > li {
  position: relative;
  padding-left: 2.4em; }
main ol.listB > li::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 1em; }
main ol.listB > li:nth-child(1)::before {
  content: '①'; }
main ol.listB > li:nth-child(2)::before {
  content: '②'; }
main ol.listB > li:nth-child(3)::before {
  content: '③'; }
main ol.listB > li:nth-child(4)::before {
  content: '④'; }
main ol.listB > li:nth-child(5)::before {
  content: '⑤'; }
main ol.listB > li:nth-child(6)::before {
  content: '⑥'; }
main ol.listB > li:nth-child(7)::before {
  content: '⑦'; }
main ol.listB > li:nth-child(8)::before {
  content: '⑧'; }
main ol.listB > li:nth-child(9)::before {
  content: '⑨'; }
main ol.listB > li:nth-child(10)::before {
  content: '⑩'; }

/* dl */
main dl[class^="style"] dt {
  float: left;
  clear: both; }
main dl[class^="style"] dd + dt,
main dl[class^="style"] dt + dd {
  margin-top: 0.8em; }

main dl[class^="style"].w4 dt {
  width: 4em; }
main dl[class^="style"].w4 dd {
  margin-left: 4em; }
main dl[class^="style"].w6 dt {
  width: 6em; }
main dl[class^="style"].w6 dd {
  margin-left: 6em; }
main dl[class^="style"].w8 dt {
  width: 8em; }
main dl[class^="style"].w8 dd {
  margin-left: 8em; }
main dl[class^="style"].w10 dt {
  width: 10em; }
main dl[class^="style"].w10 dd {
  margin-left: 10em; }
main dl[class^="style"].w12 dt {
  width: 12em; }
main dl[class^="style"].w12 dd {
  margin-left: 12em; }

@media screen and (max-width: 500px) {
  main dl[class^="style"].w4 dt,
  main dl[class^="style"].w6 dt,
  main dl[class^="style"].w8 dt,
  main dl[class^="style"].w10 dt,
  main dl[class^="style"].w12 dt,
  main dl[class^="style"].w4 dd,
  main dl[class^="style"].w6 dd,
  main dl[class^="style"].w8 dd,
  main dl[class^="style"].w10 dd,
  main dl[class^="style"].w12 dd {
    width: 100%;
    float: none;
    margin-left: 0; }
  main dl[class^="style"] dt + dd {
    margin-top: 0.2em; }
  main dl[class^="style"] dd + dt {
    margin-top: 1.6em; }
}

/* btn */
.btnA a {
  width: 340px;
  display: flex;
	flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
  background: var(--main-color);
  padding: 0.8em 1em;
  border-radius: 0.1em;
  position: relative; }

.btnA.more a {
  width: 200px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--main-color);
  padding: 0.6em 1em;
  border-radius: 10px;
  position: relative; }

.btnA.txtR a {
  margin-left: auto;
  margin-right: 0; }

p.btnA.txtC {
  margin-left: auto !important;
  margin-right: auto !important; }

  p.btnA.txtC a{
  margin-left: auto !important;
  margin-right: auto !important; }

p.btnA.txtC + p.btnA.txtC{
  margin-left: auto !important;
  margin-right: auto !important; }


/* bnr */
.wrap + .wrap {
  margin-top: 100px; }
.bnr li {
  width: calc((100% - 150px) / 4); }
.bnr li:not(:nth-child(4n - 3)) {
  margin-left: 50px; }
.bnr li:nth-child(n + 5) {
  margin-top: 20px; }
main .bnr li a[target="_blank"]::after {
  display: none; }

@media screen and (max-width: 767px) {
  .bnr li {
    width: calc((100% - 30px) / 2); }
  .bnr li:not(:nth-child(4n - 3)) {
    margin-left: 0; }
  .bnr li:nth-child(even) {
    margin-left: 30px; }
  .bnr li:nth-child(n + 3) {
    margin-top: 20px; }
}
@media screen and (max-width: 500px) {
  .btnA a {
    width: 100%; }
  .wrap + .wrap {
    margin-top: 60px; }
  .bnr {
    width: 240px;
    margin: auto;
    text-align: center; }
  .bnr >li {
    width: 100%; }
  .bnr li:nth-child(even) {
    margin-left: 0; }
  .bnr li + li,
  .bnr li:nth-child(n + 3) {
    margin-top: 20px; }
}


/* breadcrumbs
---------------------------------------------------------------------------*/
.breadcrumbs {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.6em 20px;
  margin-top: 30px; }
.breadcrumbs.two-rows {
  flex-wrap: wrap; }
.breadcrumbs.two-rows li {
  width: 20%; }
.breadcrumbs li {
  margin-left: 1em;
  margin-right: 1em; }
.breadcrumbs li,
.breadcrumbs li a {
  color: var(--white); }
.breadcrumbs li a:hover {
  color: #a0a0a0; }
.breadcrumbs li::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 0.3em;
  background: url(../images/totop.svg) no-repeat; }
.breadcrumbs a {
  text-decoration: none; }

@media screen and (max-width: 1120px) {
  .breadcrumbs {
    flex-direction: column;
    align-items: flex-start; }
  .breadcrumbs.two-rows {
    flex-direction: row; }
  .breadcrumbs.two-rows li {
    width: calc(100% / 3); }
  .breadcrumbs li {
    margin-left: 0;
    margin-right: 0; }
  .breadcrumbs li + li {
    margin-top: 0.4em; }
}
@media screen and (max-width: 767px) {
  .breadcrumbs.two-rows {
    flex-direction: column; }
  .breadcrumbs.two-rows li {
    width: 100%; }
}


/* ご挨拶
---------------------------------------------------------------------------*/
.greeting .txtR {
	display: flex;
	flex-direction: row-reverse;
	align-items: flex-end;
	margin-left: auto;
	margin-right: 0;
	margin-top: 0.24em;
}
.greeting .txtR figure img {
	height: 200px;
	margin-left: 0.8em;
}
.greeting .txtR div {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-end;
	width: auto;
}
.greeting .txtR div p.name {
	font-size: var(--fs-large);
	line-height: 1;
	margin-top: 0;
}
.greeting .txtR div p:not(.name) + p {
	padding-top: 0.32em;
}
.greeting .txtR div p.name + p {
	text-align: right;
	margin-top: 0.64em;
}

@media only screen and (max-width: 768px) {
	.greeting .txtR {
		display: block;
	}
	.greeting .txtR section {
		margin-top: 0.4em;
	}
}


/* プログラム
---------------------------------------------------------------------------*/
.programBLOCK + .titleDAY{
	margin-top: 60px;
}

.programBLOCK .time{
  display: inline-block;
  background-color: var(--main-color);
  color: var(--white);
  padding: 0.75em;
  font-size: 0.75em;
}
.programBLOCK .type {
  color: var(--main-color);
  font-size: 1.4em;
  font-weight: bold;
}
.programBLOCK .type span {
  background-color: #e9b950;
  color: var(--white);
  padding: 0.25em;
  font-size: 0.75em;
  margin-right: 0.5em;
  font-weight: normal;
}

.programBLOCK .time + .type{
  margin-top: 0.5em;
}
.programBLOCK .type + p{
  margin-top: 0.5em;
}
.programBLOCK .title{
  margin-top: 0.5em;
}

.programBLOCK .title {
  color: var(--main-color);
  font-weight: bold;
  margin-top: 1.0em;
}
.programBLOCK .title2 {
  font-weight: bold;
}
.programBLOCK .title2 + p {
  margin-bottom: 1.0em;
}
.programBLOCK .title + .title2{
  margin-top: 2.0em;
}

img.picL {
  width: 20%;
  float: left;
  margin: 0 10px 10px 0;
}

@media only screen and (max-width: 768px) {
	img.picL {
  	display: block;
  	width: 50%;
  	float: none;
  	margin: 0 auto 10px auto;
	}
}


/* プログラム
---------------------------------------------------------------------------*/
h5.lecture_name {
  margin-left: 16px;
  position: relative;
  padding: 0.1em 0;
}
h5.lecture_name:after {
  content: "";
  display: block;
  height: 2px;
  background: -webkit-linear-gradient(to right, var(--main-color), transparent);
  background: linear-gradient(to right, var(--main-color), transparent);
}

div.lecture {
  display: flex;
  justify-content: space-between;
}

main h4 + div.lecture {
  margin-top: 1.6em;
  margin-left: 0;
}

div.lecture table {
  width: 74%;
}

div.lecture table td {
  vertical-align: middle;
}

div.lecture table + div {
  margin-top: 0;
  width: 26%;
  border: solid 1px var(--silver);
  padding: 2em;
}

div.lecture figure img {
  width: 100%;
}


@media only screen and (max-width: 1120px) {
  div.lecture {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
  }

  div.lecture table {
    width: 100%;
  }
  
  div.lecture table + div {
    margin-top: 0;
    width: 100%;
  }

  div.lecture figure {
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  
}

@media only screen and (max-width: 768px) {
  div.lecture figure {
    max-width: 200px;
  }
}


/* プログラム(修正後)
---------------------------------------------------------------------------*/
.lecture_box {
  border: solid 4px var(--silver);
  border-radius: 0.1em;
  padding: 1em;
  position: relative;
  display: flex;
  margin-left: 0;
  margin-top: 10px;
}

.lecture_info_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 70%;
}
.lecture_info_wrapper-100p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.lecture_info_wrapper div:first-child {
  border-top: solid 1px var(--silver);
}
.lecture_info_wrapper div + div {
	margin-top: 0;
}

.lecture_info {
  border-bottom: solid 1px rgba(130, 147, 156, .3);
  padding: 0.6em 1em;
  display: flex;
	align-items: center;
  margin-top: 0;
}
.lecture_info p:first-child {
  line-height: 1.6;
  width: 30%;
  vertical-align: middle;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lecture_info p:first-child span {
    width: 90%;
    text-align: center;
    color: var(--main-color);
    background:rgba(130, 147, 156, .05);
    line-height: 1.4;
    padding: 0.4em 0.4em;
    border: 1px solid var(--main-color);
    position: relative;
    margin-left: auto;
    margin-right: auto;
    border-radius: 0.2em;
}
.lecture_info p:last-child {
  width: 70%;
  vertical-align: middle;
  margin: 0;
	padding-left: 0.64em;
}

.lecture_box figure {
  width: 30%;
  margin-top: 0;
  display: flex;
  justify-content: center;
  padding: 20px;
}
.lecture_box figure img {
  object-fit: cover;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.pad3em {
  padding-left: 4.15em;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .lecture_box {
    display: flex;
    flex-direction: column-reverse;
    margin-top: 10px;
	}

	.lecture_info_wrapper {
    width: 100%;
  }
  .lecture_info {
    padding: 0.6em 0em;
  }
  .lecture_info p:last-child {
    padding-left: 10px;
  }

  .lecture_box figure {
    width: 100%;
    margin-top: 0;
    display: flex;
    justify-content: center;
    padding: 20px;
	}
}


/* 会長メッセージ
---------------------------------------------------------------------------*/
.chairman_message {
  margin-top: 4em;
}
.chairman_message div {
  margin-top: 1.6em;
}


/* スケジュール
---------------------------------------------------------------------------*/
ul.schedule {
  width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
  list-style: none;
}
ul.schedule li {
	width: 49%;
}

@media only screen and (max-width: 480px) {
	ul.schedule li {
		width: 100%;
	}
}


/* 調整用
---------------------------------------------------------------------------*/
.spOnly {
  display: none; }

span.emphasis {
  font-weight: bold !important;
}
span.emphasis-red {
  font-weight: bold !important;
  color: red;
}

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

main h3 + p.fcR,
main h6 + div, main h6 + p, main h6 + ul, main h6 + ol, main h6 + dl, main h6 + table,
main h4 + div, main h4 + p, main h4 + ul, main h4 + ol, main h4 + dl, main h4 + table,
main h5 + div, main h5 + p, main h5 + ul, main h5 + ol, main h5 + dl, main h5 + table {
  margin-top: 0.8em; }

main h4 + h5,
main table + h3, main table + h4, main table + h5,
main a + h3, main a + h4, main a + h5,
main h2 + div, main h2 + p, main h2 + ul, main h2 + ol, main h2 + dl, main h2 + table,
main h3 + div, main h3 + p, main h3 + ul, main h3 + ol, main h3 + dl, main h3 + table,
main div + div, main div + p, main div + ul, main div + ol, main div + dl, main div + table,
main p + div, main p + p, main p + ul, main p + ol, main p + dl, main p + table,
main ul + div, main ul + p, main ul + ul, main ul + ol, main ul + dl, main ul + table,
main ol + div, main ol + p, main ol + ul, main ol + ol, main ol + dl, main ol + table,
main dl + div, main dl + p, main dl + ul, main dl + ol, main dl + dl, main dl + table, main dl + figure,
main table + div, main table + p, main table + ul, main table + ol, main table + dl, main table + table,
main figure + div, main figure + p, main figure + ul, main figure + ol, main figure + dl {
  margin-top: 1.6em; }

main div + h3, main div + h4, main div + h5,
main p + h3, main p + h4, main p + h5,
main ul + h3, main ul + h4, main ul + h5,
main ol + h3, main ol + h4, main ol + h5,
main dl + h3, main dl + h4, main dl + h5,
main table + h3, table dl + h4, table dl + h5,
main figure + h3, figure dl + h4, figure dl + h5,
main table + p.btnA {
  margin-top: 2.4em; }

main h3 + h3, main h3 + h4, main h3 + h5,
main h4 + figure, main h5 + figure, main h3 + figure, main div + figure, main p + figure, main ul + figure, main ol + figure, main table + figure, main figure + figure {
  margin-top: 24px; }

main h4 + h3,
main figure + table {
  margin-top: 32px; }

main.top .wrap + .wrap {
  margin-top: 80px; }
