@charset "UTF-8";
/* CSS Document */
body, button, input, select, option, textarea {
	font-family: 'Noto Sans JP', sans-serif;
}

/*
Noto Sans Japanese
Regular 400
Medium 500
SemiBold 600
Bold 700
*/

/*----------------------------------------------------
	Structure Module
----------------------------------------------------*/
html {
  /* overflow-y: scroll; */
}

body {
  margin: 0;
  padding: 0;
  color: #333333;
  /* text-align: center; */
  line-height: 1.65;
  letter-spacing: 1px;
  /* word-break: break-all;
  -ms-word-break: break-all;
  word-wrap: break-word;
  -webkit-text-size-adjust: 100%; */

	text-align: justify;
	text-justify: inter-ideograph;
	text-justify: inter-character;

	font-feature-settings: "palt" 1;
}

/*----------------------------------------------------
	Headings Module
----------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

/*----------------------------------------------------
	Phrasing Module
----------------------------------------------------*/
p {
  margin: 0;
  padding: 0;
}

cite, dfn, address, i, em {
  font-style: normal;
}

strong, em, b {
  font-weight: 600;
}

u {
  text-decoration: none;
}

abbr {
  border: 0 none;
}

mark {
  background-color: transparent;
}

q {
  quotes: none;
}

button {
  text-align: left;
  cursor: pointer;
}

input:focus, button:focus, select:focus, textarea:focus {
  outline: none;
}

/*----------------------------------------------------
	Hypertext Module
----------------------------------------------------*/
a {
  outline: none;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(152, 152, 152, .3);
}

a:link,
a:visited {
  color: #ff0000;
}

a:hover {
  text-decoration: underline;
}

a:active,
a:focus {
  background-color: transparent;
}

/*----------------------------------------------------
	Image Module
----------------------------------------------------*/
img {
  border: 0;
  vertical-align: bottom;
}

/*----------------------------------------------------
	Embedded Module
----------------------------------------------------*/
object, embed {
  outline: none;
}

/*----------------------------------------------------
	List Module
----------------------------------------------------*/
ul, ol, dl, dt, dd, li {
  margin: 0;
  padding: 0;
}

ul li {
  list-style: none;
}

ol li {
  list-style: none;
}

/*----------------------------------------------------
	Table Module
----------------------------------------------------*/
table {
  border-collapse: separate;
  border-spacing: 0;
}

th, td {
  font-weight: normal;
  vertical-align: top;
  text-align: left;
}

/*----------------------------------------------------
	Forms Module
----------------------------------------------------*/
form, button, input, select, option, textarea {
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

textarea {
  width: 350px;
}

input {
  border: 0 none;
  border-radius: 0px;
}

button {
  background: none;
  border: 0 none;
  overflow: visible;
}

/*----------------------------------------------------
	HTML5 Reset
----------------------------------------------------*/
article, aside, figure, figcaption, dialog, details,
footer, header, menu, main, nav, section, summary {
  display: block;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}


/*==================================================

  Optimization

====================================================*/
/*  html
--------------------------*/
html {
  font-size: 62.5%; /* 10px */
}
.post, .page {
  margin: 0;
}

/*  Body
--------------------------*/
body,
body *,
body *::before,
body *::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  letter-spacing: 0px;
  /* font-size: 100%;
	font-size: 1rem;  */
	/* 10px */
}


button, input, select, option, textarea {
  border: 0 none;
  letter-spacing: 0px;
  border-radius: 0px;
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}
button:disabled, input:disabled, select:disabled, option:disabled, textarea:disabled {
  background-color: transparent;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: none;
  vertical-align: bottom;
}

img {
  -webkit-touch-callout: none;
	vertical-align: top;
	max-width: 100%;
	height: auto;
	/* width: 100%; */
}

a:hover {
  text-decoration: none;
}

i {
}

h1, h2, h3, h4 {
  font-size: 100%;
  font-weight: 400;
}

table {
  border-collapse: collapse;
}

/*==================================================

  BaseColor

====================================================*/
/* テキスト
--------------------------*/
body {
  color: #4D4D4D;
  width: 100%;
}

button, input, select, option, textarea {
  color: #000;
}

input:-moz-placeholder {
  color: #bbbbbb;
}
input::-webkit-input-placeholder {
  color: #bbbbbb;
}

textarea:-moz-placeholder {
  color: #bbbbbb;
}
textarea::-webkit-input-placeholder {
  color: #bbbbbb;
}

/* リンク
--------------------------*/
a:link,
a:visited {
  color: #4D4D4D;
}

/*==================================================

  Animation

====================================================*/

@keyframes anim_opct0-1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}


/*==================================================

  layout[ALL]

====================================================*/
.pc {
	display: inline;
}
.sp {
	display: none;
}


.event_disable {
	pointer-events: none;
	user-select: none;
}
.opct_0 {
	opacity: 0;
}
a:hover {
	transition: all 300ms ease 0s;
}
.fadein {
	opacity: 0;
	transform: translateY(5%);
}
.fadein.view {
	opacity: 1;
	transform: translateY(0);
	transition: all 1200ms ease 500ms;
}

a:hover, button:hover {
  animation: animation .4s 1 linear;
}
@keyframes animation {
  50% {
	 opacity: .6;
  }
  100% {
	 opacity: .8;
  }
}

/*  Html
--------------------------*/
html {
	font-size: 1px;
}
body {
  font-size: 16rem;
}
#wrapper {
  background-color: #d4f2fb;
  background-image: url("/pop/images/common/bg02.webp"), url("/pop/images/common/bg01.webp");
  background-repeat: repeat-x, no-repeat;
  background-position: top center, top;
  background-size: 1200rem, 1200rem;
}
main {
  margin: 0 auto 0;
  width: 100%;
  
}
section {
  width: 100%;
  max-width: 1200rem;
  margin: 0 auto;
  font-size: 16rem;
}

:where(:focus-visible,:target) {
    scroll-margin-block: 0rem;
}

@media screen and (max-width: 1200px) {
	html {
		font-size: calc(1 / 1200 * 100vw);
	}
	body {
	}
	#wrapper {
	}
}


@media screen and (max-width: 767px) {
  #wrapper {
    background-image: none;
    overflow: hidden;
  }
  
  
	img {
		width: 100%;
	}
	.pc {
		display: none;
	}
	.sp {
		display: inline;
	}
	html {
		font-size: calc(1 / 767 * 100vw);
	}
	body {
    font-size: 32rem;
	}
  main {
    margin: 160rem auto 0;
  }
  section {
    max-width: 100%;
    font-size: 32rem;
  }
}

.cat_event {
  background: #ec5a24!important;
}
.cat_oshirase {
  background: #5a9fe2!important;
}
.cat_news {
  background: #e875a5!important;
}
.cat_smate {
  background: #009966!important;
}

/*  Header
--------------------------*/
header.nav {
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  height: 160rem;
  z-index: 3;
}
.nav_header {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  width: 100%;
  height: 160rem;
  max-width: 1520rem;
  margin: 0 auto;
}

.nav_logo {
  width: 720rem;
  text-decoration: none;
}
.nav_logo img {

}


.nav_list-wrapper {
  display: none;
  width: 100%;
  background: #4C79C9;
}
.nav_list {
  max-width: 960rem;
  box-sizing: border-box;
  display: flex;
  margin: 0 auto;
  padding: 12rem 0;
  justify-content: space-between;
}
.nav_list-item {
  list-style: none;
  text-decoration: none;
  border-right: 0rem solid #FFF;
  flex-grow: 1;
  text-align: center;
}
a.nav_list-link {
  color: #FFF!important;
  display: block;
  font-size: 21rem;
  line-height: 21rem;
  font-weight: 600;
  text-shadow: 0rem 1rem 1rem rgba(0, 13, 132, 1);
  text-decoration: none;
}
.nav_list-item:last-child {
  border-right: 0rem solid #FFF;
}

.nav_list-wrapper2 {
  position: sticky;
  width: 100%;
  background: #4C79C9;
  height: 45rem;
  top: 0;
  z-index: 3;
}

ul.nav_link03 {
  display: none;
}

.hum-menu {
  position: relative;
}

@media screen and (max-width: 767px) {
  
  header.nav {
    position: fixed;
    height: 160rem;
    background: #4c79c9;
    border-bottom: 10rem solid #b9b9b9;
  }
  
  .nav_header {
    justify-content: left;
  }
  
  .nav_logo {
    width: 640rem;
  }
  .nav_logo img {

  }
  
  
  .hum-menu_list {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    width: 100%;
    height: auto;
    padding-bottom: 60rem;
    margin: 0 auto;
    transform: translateX(100%);
    position: absolute;
    top: -10rem;
    background: #4C79C9;
  }
  .nav_list-wrapper  {
    position: relative;
  }

  .nav_list {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    transition: 0.3s;
    gap: 20rem;
    width: 100%;
    padding: 20rem;
  }
  .nav_list .nav_list-item {
    width: 100%;
    font-size: 30rem;
    background: #4C79C9;
    flex-grow: 0;
    color: #FFF;
  }

  .nav_list .nav_list-item ul.nav_lang {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    width: 600rem;
    justify-content: space-between;
    margin: 0 auto;
  }

  .nav_list .nav_list-item ul.nav_lang li a {
    color: #FFF;
    text-shadow: 0rem 2rem 2rem rgba(0, 13, 132, 1);
  }

  a.nav_list-link  {
    color: #FFF!important;
    width: 100%;
    display: block;
    font-size: 30rem;
    line-height: 80rem;
    font-weight: 400;
    text-shadow: none;
    text-decoration: none;
    text-shadow: 0rem 2rem 2rem rgba(0, 13, 132, 1);
  }

  #hamburger:checked ~ .hum-menu_list {
    transform: translateX(0%);
    transition: 0.3s;
  }
  
  .nav_list-wrapper2 {
    display: none;
  }
  
}

.hum-menu_input {
  display: none;
}

.hum-menu_button {
  display: none;
}

@media screen and (max-width: 767px) {
  .hum-menu_button {
    position: fixed;
    top: 0rem;
    right: 0rem;
    appearance: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 10rem;
    height: 150rem;
    justify-content: center;
    width: 124rem;
    padding: 30rem 32rem;
  }
}

.hum-menu_button-mark {
  background-color: #FFF;
  display: block;
  height: 10rem;
  transition: 0.3s;
  width: 60rem;
  border-radius: 3rem;
}

@media screen and (max-width: 767px) {
  #hamburger:checked
    ~ .hum-menu_button
    .hum-menu_button-mark:nth-of-type(1) {
    transform: translate(10rem, -1rem) rotate(45deg);
    transform-origin: 0%;
  }
  #hamburger:checked
    ~ .hum-menu_button
    .hum-menu_button-mark:nth-of-type(2) {
    opacity: 0;
  }
  #hamburger:checked
    ~ .hum-menu_button
    .hum-menu_button-mark:nth-of-type(3) {
      transform: translate(10rem, 1rem) rotate(-45deg);
      transform-origin: 0%;
  }
}

/*  Home
--------------------------*/

#wrapper.home {
  background-color: #d4f2fb;
  background-image: url("/pop/images/home/home_bg.webp");
  background-repeat: repeat-x;
  background-position: top center;
  background-size: 1200rem;
}

#wrapper.home header.nav {
  height: 0;
}
#wrapper.home .nav_header {
  display: none;
}

#wrapper.home .mainv {
  height: 380rem;
  width: 100%;
  position: relative;
}
#wrapper.home .mainv h1 {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 1200rem;
  margin: 0 auto;
  z-index: 2;
}

.mainv .swiper {
  width: 100%;
  height: 310rem;
  position: absolute!important;
  top: 40rem;
} 
.mainv .swiper-slide {
  width: 920rem!important;
  height: 310rem!important;
}
.mainv .swiper-button-next {
  right: calc(50% - 480rem)!important;
  width: 50rem!important;
  height: 50rem!important;
  background: url("/pop/images/home/swiper_next.webp") no-repeat center center!important;
  background-size: contain!important;
}

.mainv .swiper-button-prev{
  left: calc(50% - 480rem)!important;
  width: 50rem!important;
  height: 50rem!important;
  background: url("/pop/images/home/swiper_prev.webp") no-repeat center center!important;
  background-size: contain!important;
}
.mainv .swiper-button-next:after, .mainv .swiper-button-prev:after {
  display: none;
}

@media screen and (max-width: 767px) {
  .mainv .swiper {
    display: none;
  } 
  .mainv .swiper-slide {
    display: none!important;
  }
  #wrapper.home {
    overflow: clip;
    contain: paint;
    background-image: none;
  }

  #wrapper.home header.nav {
    position: sticky;
    top: 0;
    height: 90rem;
    border-bottom: 0rem;
  }
  #wrapper.home .mainv {
    height: 326rem;
  }
  #wrapper.home .mainv h1 {
    width: 100%;
    margin: 0 auto;
    bottom: auto;
    top: 0;
  }
  #wrapper.home .mainv h1 img {
    width: 100%;
    height: auto;
  }
  #wrapper.home .hum-menu_button {
    position: absolute;
    top: 0rem;
    right: 0rem;
    appearance: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 10rem;
    height: 90rem;
    justify-content: center;
    width: 124rem;
    padding: 0rem 32rem;
  }
  #wrapper.home .hum-menu_list {
    top: 90rem;
  }

  #wrapper.home main {
    margin: 0 auto;
    width: 100%;
  }
}

#wrapper.home section.info {
  width: 100%;
  max-width: 1200rem;
  margin: 0 auto;
  padding: 50rem 40rem;
  position: relative;
  z-index: 1;
}

#wrapper.home section.info .info_content {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  row-gap: 24rem;
}

#wrapper.home section.info .info_content .info_content_l,
#wrapper.home section.info .info_content .info_content_r {
  width: 548rem;
}
#wrapper.home section.info .info_content .info_content_l ul.news {
  background: url("/pop/images/home/home_news_bg.webp");
  background-position: cover;
  border-top: 1rem solid #4dc9f0;
  border-bottom: 1rem solid #4dc9f0;
}
#wrapper.home section.info .info_content .info_content_l ul.news li a {
  display: flex;
  justify-content: left;
  align-items: center;
  flex-wrap: nowrap;
  height: 46rem;
}
#wrapper.home section.info .info_content .info_content_l ul.news li a .news_cat {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12rem;
  line-height: 16rem;
  font-weight: 600;
  color: #FFF;
  background: #5a9fe2;
  height: 16rem;
  border-radius: 8rem;
  width: 70rem;
  margin-left: 6rem;
  white-space: nowrap;
}
#wrapper.home section.info .info_content .info_content_l ul.news li a .news_cat.cat_smate {
  font-size: 8rem;
}
#wrapper.home section.info .info_content .info_content_l ul.news li a .news_date {
  font-size: 16rem;
  line-height: 16rem;
  margin-left: 10rem;
  white-space: nowrap;
}

#wrapper.home section.info .info_content .info_content_l ul.news li a .news_title {
  font-size: 16rem;
  line-height: 16rem;
  width: 350rem;
  margin-left: 12rem;
  white-space: nowrap;
  overflow: hidden;
  margin-right: 6rem;
}
#wrapper.home section.info .info_content .info_content_l ul.news li:nth-child(odd) {
  background: rgba(139, 200, 255, 0.1);
}

.info_pricetime {
  display: flex;
  justify-content: space-between;
  margin-top: 22rem;
}
.info_pricetime .info_price {
  width: 210rem;
}
.info_pricetime .info_time {
  width: 329rem;
}

.info_content_r .info_access {
  display: flex;
  background: url("/pop/images/home/home_info_bg.webp");
  background-position: cover;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  height: 71rem;
  font-size: 14rem;
  margin-bottom: 10rem;
}
.info_content_r .info_access h4 {
  width: 97rem;
}
.info_content_r .info_access .info_access_btn {
  width: 200rem;
}
.info_content_r .info_cal {
  background: url("/pop/images/home/home_info_bg.webp");
  background-position: cover;
  display: flex;
  flex-wrap: nowrap;
  padding: 20rem 20rem 20rem 15rem;
}
.info_content_r .info_cal .info,
.info_content_r .info_cal .cal {
  width: 50%;
}
.info_content_r .info_cal .month-event-space {
  display: none;
}

.xo-event-calendar table.xo-month .month-dayname-space {
  height: 24rem;
}
.xo-event-calendar table.xo-month .month-dayname td div {
  font-size: 14rem;
  line-height: 1em;
  padding: 5rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  #wrapper.home section.info {
    padding: 50rem 30rem;
  }

  #wrapper.home section.info .info_content {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    flex-wrap: nowrap;
    row-gap: 20rem;
    width: 100%;
  }

  #wrapper.home section.info .info_content .info_content_l,
  #wrapper.home section.info .info_content .info_content_r {
    width: 100%;
    margin: 0rem;
  }
  #wrapper.home section.info .info_content .info_content_l ul.news {
    background: url("/pop/images/home/home_news_bg.webp");
    background-position: cover;
    border-top: 2rem solid #4dc9f0;
    border-bottom: 2rem solid #4dc9f0;
  }
  #wrapper.home section.info .info_content .info_content_l ul.news li a {
    display: flex;
    justify-content: left;
    align-items: center;
    flex-wrap: wrap;
    height: auto;
    padding: 20rem 0;
  }
  #wrapper.home section.info .info_content .info_content_l ul.news li a .news_cat {
    font-size: 25rem;
    line-height: 32rem;
    color: #FFF;
    height: 32rem;
    border-radius: 16rem;
    width: 200rem;
    margin-left: 12rem;
  }
  #wrapper.home section.info .info_content .info_content_l ul.news li a .news_cat.cat_smate {
    font-size: 22rem;
  }
  #wrapper.home section.info .info_content .info_content_l ul.news li a .news_date {
    font-size: 32rem;
    line-height: 32rem;
    margin-left: 20rem;
  }

  #wrapper.home section.info .info_content .info_content_l ul.news li a .news_title {
    font-size: 32rem;
    line-height: 48rem;
    width: calc(100% - 24rem);
    margin-left: 12rem;
    white-space: wrap;
    overflow: visible;
    margin-right: 12rem;
    margin-top: 10rem;
  }
  #wrapper.home section.info .info_content .info_content_l ul.news li:nth-child(odd) {
    background: rgba(139, 200, 255, 0.1);
  }

  .info_pricetime {
    display: flex;
    justify-content: space-between;
    margin-top: 40rem;
  }
  .info_pricetime .info_price {
    width: 275rem;
  }
  .info_pricetime .info_time {
    width: 412rem;
  }

  .info_content_r .info_access {
    display: flex;
    background: url("/pop/images/home/home_info_bgmb.webp");
    background-position: cover;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    text-align: left;
    height: 194rem;
    font-size: 28rem;
    line-height: 1em;
    margin-bottom: 20rem;
  }
  .info_content_r .info_access h4 {
    width: 199rem;
  }
  .info_content_r .info_access .info_access_btn {
    width: 454rem;
  }
  .info_content_r .info_cal {
    background: url("/pop/images/home/home_info_bgmb.webp");
    background-position: cover;
  }
  .info_access_address {
    text-align: center;
    font-size: 28rem;
    width: 100%;
    margin: 20rem auto;
  }

  .info_content_r .info_cal {
    flex-wrap: wrap;
    padding: 30rem;
  }
  .info_content_r .info_cal .info,
  .info_content_r .info_cal .cal {
    width: 100%;
  }
  .info_content_r .info_cal .cal {
    margin-top: 20rem;
    padding: 10rem;
  }

  .xo-event-calendar table.xo-month .month-dayname-space {
    height: 48rem;
  }

  .xo-event-calendar table.xo-month .month-dayname td div {
    font-size: 28rem;
    padding: 10rem;
  }
}

section.study {
  background: url("/pop/images/home/home_study_bg.webp");
  background-repeat: no-repeat;
  background-position: top center;
  max-width: 1366rem;
  background-size: 1366rem;
}
section.study .study_content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 1120rem;
  margin: 0 auto;
  padding-top: 360rem;
}
.study_content .study01 a,
.study_content .study02 a,
.study_content .study03 a,
.study_content .study04 a,
.study_content .study05 a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.study_content .study01,
.study_content .study02 {
  width: 540rem;
  height: 345rem;
  position: relative;
}
.study_content .study01 h3,
.study_content .study02 h3 {
  margin-top: 200rem;
  font-size: 28rem;
  line-height: 1em;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-align: center;
  color: #0071b7;
}
.study_content .study01 p,
.study_content .study02 p {
  width: 490rem;
  margin: 16rem auto 0;
  font-size: 18rem;
  line-height: 28rem;
  color: #4d4d4d;
}
.study_content .study03,
.study_content .study04,
.study_content .study05 {
  position: relative;
  width: 350rem;
  height: 352rem;
}
.study_content .study03 h3,
.study_content .study04 h3,
.study_content .study05 h3 {
  margin-top: 182rem;
  font-size: 28rem;
  line-height: 1em;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-align: center;
  color: #0071b7;
}
.study_content .study03 p,
.study_content .study04 p,
.study_content .study05 p {
  width: 300rem;
  margin: 16rem auto 0;
  font-size: 18rem;
  line-height: 28rem;
  color: #4d4d4d;
}
.study_content .study06 {
  position: relative;
  width: 1120rem;
  height: 156rem;
}
.study_content .study01 {
  background: url("/pop/images/home/home_study01.webp");
  background-size: cover;
}
.study_content .study02 {
  background: url("/pop/images/home/home_study02.webp");
  background-size: cover;
}
.study_content .study03 {
  background: url("/pop/images/home/home_study03.webp");
  background-size: cover;
}
.study_content .study04 {
  background: url("/pop/images/home/home_study04.webp");
  background-size: cover;
}
.study_content .study05 {
  background: url("/pop/images/home/home_study05.webp");
  background-size: cover;
}
.study_content .study06 {
  background: url("/pop/images/home/home_study06.webp");
  background-size: cover;
  position: relative
}
.study_content .study06 .study_sns {
  position: absolute;
  top: 60rem;
  left: 460rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 420rem;
  height: 70rem;
}

@media screen and (max-width: 767px) {
  section.study {
    background: url("/pop/images/home/home_study_bgmb.webp");
    background-repeat: no-repeat;
    max-width: 767rem;
    background-size: 767rem;
  }
  section.study .study_content {
    display: flex;
    flex-wrap: wrap;
    width: 687rem;
    margin: 0 auto;
    padding-top: 380rem;
  }
  .study_content .study01,
  .study_content .study02 {
    width: 687rem;
    height: 668rem;
    position: relative;
  }
  .study_content .study01 h3,
  .study_content .study02 h3 {
    margin-top: 320rem;
    font-size: 56rem;
    line-height: 1em;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-align: center;
    color: #0071b7;
  }
  .study_content .study01 p,
  .study_content .study02 p {
    width: 587rem;
    margin: 32rem auto 0;
    font-size: 36rem;
    line-height: 56rem;
    color: #4d4d4d;
  }
  .study_content .study03,
  .study_content .study04,
  .study_content .study05 {
    position: relative;
    width: 687rem;
    height: 668rem;
  }
  .study_content .study03 h3,
  .study_content .study04 h3,
  .study_content .study05 h3 {
    margin-top: 320rem;
    font-size: 56rem;
    line-height: 1em;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-align: center;
    color: #0071b7;
  }
  .study_content .study03 p,
  .study_content .study04 p,
  .study_content .study05 p {
    width: 587rem;
    margin: 32rem auto 0;
    font-size: 36rem;
    line-height: 56rem;
    color: #4d4d4d;
  }
  .study_content .study06 {
    position: relative;
    width: 687rem;
    height: 647rem;
  }
  .study_content .study01 {
    background: url("/pop/images/home/home_study01mb.webp");
    background-size: cover;
  }
  .study_content .study02 {
    background: url("/pop/images/home/home_study02mb.webp");
    background-size: cover;
  }
  .study_content .study03 {
    background: url("/pop/images/home/home_study03mb.webp");
    background-size: cover;
  }
  .study_content .study04 {
    background: url("/pop/images/home/home_study04mb.webp");
    background-size: cover;
  }
  .study_content .study05 {
    background: url("/pop/images/home/home_study05mb.webp");
    background-size: cover;
  }
  .study_content .study06 {
    background: url("/pop/images/home/home_study06mb.webp");
    background-size: cover;
    position: relative
  }
  .study_content .study06 .study_sns {
    position: absolute;
    top: 398rem;
    left: 45rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 597rem;
    height: 166rem;
    margin-left: 0;
  }
  .study_content .study06 .study_sns li {
    width: 166rem;
    height: 166rem;
    position: relative;
  }
  .study_content .study06 .study_sns li img{
    width: 100%;
    height: auto;
  }
  .study_content .study06 .study_sns .study_sns_yt {
    position: absolute;
    top: -156rem;
    left: 104rem;
    width: 190rem;
  }
}

section.program {
  background: url("/pop/images/home/home_program_bg.webp");
  background-repeat: no-repeat;
  background-position: center center;
  max-width: 1366rem;
  background-size: 1366rem;
  height: 500rem;
}
section.program h3.prohram_title {
  padding-top: 70rem;
  text-align: center;
}
section.program ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 1120rem;
  margin: 30rem auto;
}
section.program ul li {
  list-style: none;
  width: 540rem;
  height: 180rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  section.program {
    background: url("/pop/images/home/home_program_bgmb.webp");
    background-repeat: no-repeat;
    background-position: center center;
    max-width: 767rem;
    background-size: 767rem;
    height: 984rem;
  }
  section.program h3.prohram_title {
    padding-top: 70rem;
  }
  section.program ul {
    flex-wrap: wrap;
    width: 100%;
    max-width: 687rem;
    margin: 30rem auto;
    row-gap: 40rem;
  }
  section.program ul li {
    list-style: none;
    width: 687rem;
    height: 229rem;
    position: relative;
  }
}

section.techno {
  background: url("/pop/images/home/home_techno_bg01.webp"),url("/pop/images/home/home_techno_bg02.webp");
  background-repeat: no-repeat, repeat-x;
  background-position: center center, center center;
  max-width: 100%;
  background-size: 1366rem;
  height: 516rem;
  text-align: center;
}
section.techno .techno_content {
  width: 100%;
  max-width: 1120rem;
  margin: 0 auto;
  position: relative;
}
section.techno .techno_content a.techno_btn {
  display: block;
  position: absolute;
  top: 380rem;
  right: 50rem;
  width: 349rem;
  height: 83rem;
}
@media screen and (max-width: 767px) {
  section.techno {
    background: none;
    max-width: 100%;
    height: 1216rem;
    text-align: center;
  }
  section.techno .techno_content {
    width: 100%;
    max-width: 767rem;
    margin: 0 auto;
    position: relative;
  }
  section.techno .techno_content a.techno_btn {
    display: block;
    position: absolute;
    top: 700rem;
    right: 59rem;
    width: 649rem;
    height: 164rem;
  }
}

section.home_bnr {
  margin: 50rem auto 120rem;
}
section.home_bnr .home_bnr_content {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 1120rem;
  margin: 0 auto;
}
section.home_bnr .home_bnr_content .home_bnr_content_l {
  width: 630rem;
  height: 232rem;
  position: relative;
  text-align: center;
  background: url("/pop/images/home/home_bnr_bg.webp");
  background-size: contain;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 16rem;
}
section.home_bnr .home_bnr_content .home_bnr_content_l h4 {
  font-size: 24rem;
  line-height: 30rem;
  font-weight: 600;
  color: #2890c9;
}
section.home_bnr .home_bnr_content .home_bnr_content_l p {
  font-size: 14rem;
  line-height: 20rem;
  color: #4d4d4d;
}
section.home_bnr .home_bnr_content .home_bnr_content_l a.btn {
  display: block;
  width: 78rem;
  height: 18rem;
} 
section.home_bnr .home_bnr_content ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 425rem;
  margin: 0 auto;
  row-gap: 25rem;
}
section.home_bnr .home_bnr_content ul li {
  list-style: none;
  width: 200rem;
}
section.home_bnr .home_bnr_content ul li img {
  list-style: none;
  width: 200rem;
  height: 60rem;
}
section.home_bnr .home_bnr_content ul li.home_bnr_l {
  width: 425rem;
}
section.home_bnr .home_bnr_content ul li.home_bnr_l img {
  list-style: none;
  width: 425rem;
  height: 50rem;
}
@media screen and (max-width: 767px) {
  section.home_bnr {
    margin: 100rem auto 240rem;
  }
  section.home_bnr .home_bnr_content {
    flex-wrap: wrap;
    flex-direction: column;
    width: 707rem;
    margin: 0 auto;
  }
  section.home_bnr .home_bnr_content .home_bnr_content_l {
    width: 707rem;
    height: 348rem;
    background: url("/pop/images/home/home_bnr_bgmb.webp");
    background-size: contain;
    margin-bottom: 40rem;
  }
  section.home_bnr .home_bnr_content .home_bnr_content_l h4 {
    font-size: 36rem;
    line-height: 45rem;
  }
  section.home_bnr .home_bnr_content .home_bnr_content_l p {
    font-size: 28rem;
    line-height: 40rem;
    color: #4d4d4d;
  }
  section.home_bnr .home_bnr_content .home_bnr_content_l a.btn {
    display: block;
    width: 150rem;
    height: 33rem;
  } 
  section.home_bnr .home_bnr_content ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 707rem;
    margin: 0 auto;
    row-gap: 41rem;
  }
  section.home_bnr .home_bnr_content ul li {
    list-style: none;
    width: 333rem;
  }
  section.home_bnr .home_bnr_content ul li img {
    list-style: none;
    width: 333rem;
    height: 100rem;
  }
  section.home_bnr .home_bnr_content ul li.home_bnr_l {
    width: 707rem;
  }
  section.home_bnr .home_bnr_content ul li.home_bnr_l img {
    list-style: none;
    width: 707rem;
    height: 84rem;
  }
}

.home_popup {
  max-width: 700rem!important;
  padding: 80rem!important;
  position: relative;
}
.home_popup_header {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-bottom: 40rem;
}
.home_popup_header h3 {
  font-size: 28rem;
  line-height: 34rem;
  font-weight: 600;
  color: #000000;
  text-align: center;
}
.home_popup_image {
  width: 100%;
  height: auto;
  margin-bottom: 40rem;
}
a.home_popup_btn {  
  display: block;
  width: 240rem;
  height: 60rem;
  background: #4c79c9;
  color: #FFF;
  text-align: center;
  line-height: 60rem;
  font-size: 21rem;
  font-weight: 600;
  margin: 0 auto;
}
.home_popup_close {
  position: absolute;
  top: 20rem;
  right: 20rem;
  width: 40rem;
  height: 40rem;
  background: url("/pop/images/exhibit/exhibit_popup_close.webp") no-repeat center center;
  background-size: contain;
  cursor: pointer;
}
.home_popup {
  font-size: 18rem;
  line-height: 27rem;
}
.home_popup p.font_s {
  font-size: 14rem;
  line-height: 21rem;
}
.pup_worksheet h3 {
  text-align: center;
  margin-bottom: 20rem;
  font-weight: 600;
}
.pup_worksheet p {
  text-align: center;
  margin-bottom: 20rem;
}
.pup_worksheet ul {
  margin: 0 auto 50rem;
}
.pup_worksheet ul li {
  margin-bottom: 20rem;
}

@media screen and (max-width:767px) {
  .home_popup {
    max-width: 720rem!important;
    padding: 100rem 40rem!important;
    position: relative;
  }
  .home_popup_header {
    margin-bottom: 60rem;
  }
  .home_popup_header h3 {
    font-size: 36rem;
    line-height: 48rem;
  }
  .home_popup_image {
    margin-bottom: 60rem;
  }
  a.home_popup_btn {  
    display: block;
    width: 480rem;
    height: 120rem;
    background: #4c79c9;
    color: #FFF;
    text-align: center;
    line-height: 120rem;
    font-size: 42rem;
    font-weight: 600;
    margin: 0 auto;
  }
  .home_popup_close {
    position: absolute;
    top: 20rem;
    right: 20rem;
    width: 60rem;
    height: 60rem;
    background: url("/pop/images/exhibit/exhibit_popup_close.webp") no-repeat center center;
    background-size: contain;
    cursor: pointer;
  }
  .home_popup {
    font-size: 32rem;
    line-height: 48rem;
  }
  .home_popup p.font_s {
    font-size: 25rem;
    line-height: 36rem;
  }
}

/*  Footer 
--------------------------*/
footer {
  width: 100%;
  background: #2ea1ff;
  color: #FFF;
  text-align: center;
  box-shadow: 0rem -1rem 0rem 0rem rgba(32, 117, 255, 1);
}
.footer_inner {
  width: 100%;
  max-width: 1200rem;
  padding: 20rem 40rem 30rem;
  margin: 0 auto;
  position: relative;
}
.footer_gotop {
  position: absolute;
  top: -29rem;
  right: 140rem;
  width: 174rem;
  z-index: 2;
}

.footer_nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 10rem;
  margin-bottom: 20rem;
}
.footer_nav .logo {
  text-decoration: none;
}
.footer_nav .logo img {
  width: 470rem;
}
.footer_nav ul {
  display: flex;
  justify-content: right;
  width: 650rem;
  margin: 42.5rem auto;
}
.footer_nav ul li {
  list-style: none;
  font-size: 15rem;
  line-height: 1em;
  padding: 0 12rem;
  border-left: 1rem solid #FFF;
}
.footer_nav ul li:last-child {
  border-right: 1rem solid #FFF;
}
.footer_nav ul li a {
  color: #FFF;
  text-decoration: none;
}

.footer_content {
  display: flex;
  text-align: left;
  justify-content: space-between;
  flex-direction: row-reverse;
  border-bottom: 1rem solid #FFF;
}
.footer_content a {
  color: #FFF;
  text-decoration: none;
}
.footer_content .info {
  width: 520rem;
  text-align: center;
}
.footer_content .info .info_contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40rem;
}
.footer_content .info .info_contact h4 {
  font-size: 15rem;
  font-weight: 600;
  color: #FFF;
  width: 100%;
  border-bottom: 1rem solid #FFF;
  text-align: left;
  margin-bottom: 16rem;
}
.footer_content .info .info_contact p {
  font-size: 18rem;
  line-height: 28rem;
  margin-bottom: 40rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: left;
}
.footer_content .info .info_contact p span {
  letter-spacing: 0.075em;
  font-size: 24rem;
}
.footer_content .info p span:last-child {
  letter-spacing: 0.035em;
  font-size: 21rem;
}
.footer_content .info .info_contact a.btn {
    color: #FFF;
    background: #0051c9;
    border-radius: 10rem;
    display: block;
    width: 180rem;
    height: 90rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 18rem;
  }

.footer_content .exhibit {
  width: 580rem;
}
.footer_content .exhibit .exhibit_title {
  width: 100%;
  border-bottom: 1rem solid #FFF;
  display: flex;
  justify-content: space-between;
  margin-bottom: 17rem;
}
.footer_content .exhibit .exhibit_title h3 {
  font-size: 15rem;
  font-weight: 600;
  color: #FFF;
}
.footer_content .exhibit .exhibit_title span {
  font-size: 13rem;
  color: #FFF;
}
.footer_content .exhibit .exhibit_title span a {
  color: #FFF;
  text-decoration: none;
}
.footer_content .exhibit .exhibit_list {
  display: flex;
  justify-content: space-between;
  column-gap: 20rem;
  margin: 0;
}
.footer_content .exhibit .exhibit_list li {
  list-style: none;
  font-size: 13rem;
  line-height: 1em;
  margin-bottom: 17rem;
}
.footer_content .exhibit .exhibit_list li a {
  color: #FFF;
  text-decoration: none;
}
ul.footer_policy {
  display: flex;
  justify-content: center;
  margin: 20rem auto;
}
ul.footer_policy li {
  list-style: none;
  font-size: 12rem;
  line-height: 1em;
  padding: 0 10rem;
  border-left: 1rem solid #FFF;
}
ul.footer_policy li:last-child {
  border-right: 1rem solid #FFF;
}
ul.footer_policy li a {
  color: #FFF;
  text-decoration: none;
}

footer .copy {
  font-size: 13rem;
}

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

  footer {
    box-shadow: 0rem -2rem 0rem 0rem rgba(32, 117, 255, 1);
  }
  .footer_gotop {
    position: absolute;
    top: -52rem;
    right: 209.5rem;
    width: 348rem;
  }
  .footer_inner {
    width: 100%;
    padding: 50rem 50rem 60rem;
    margin: 0 auto;
  }

  .footer_nav {
    flex-direction: column;
    align-items: center;
    margin-bottom: 60rem;
  }
  .footer_nav .logo {
    margin-bottom: 20rem;
  }
  .footer_nav .logo img {
    width: 560rem;
  }
  .footer_nav ul {
    width: 560rem;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    row-gap: 16rem;
  }
  .footer_nav ul li {
    padding: 0 24rem;
    font-size: 30rem;
    border-left: 2rem solid #FFF;
  }
  .footer_nav ul li:nth-of-type(2), .footer_nav ul li:nth-of-type(5) {
    border-right: 2rem solid #FFF;
  }
  .footer_nav ul li:last-child {
    border-right: 2rem solid #FFF;
  }

  .footer_content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer_content .info {
    width: 100%;
    margin-bottom: 40rem;
  }
  .footer_content .info .info_contact {
    display: flex;
    flex-direction: column;
    margin-top: 60rem;
  }
  .footer_content .info .info_contact h4 {
    font-size: 30rem;
    border-bottom: 2rem solid #FFF;
    text-align: left;
    margin-bottom: 30rem;
  }
  .footer_content .info .info_contact p {
    font-size: 36rem;
    line-height: 56rem;
  }
  .footer_content .info .info_contact p span {
    font-size: 48rem;
  }
  .footer_content .info p span:last-child {
    font-size: 42rem;
  }
  .footer_content .info .info_contact a.btn {
    border-radius: 20rem;
    width: 100%;
    height: 128rem;
    font-size: 42rem;
  }

  .footer_content .exhibit {
    width: 100%;
  }
  .footer_content .exhibit .exhibit_title {
    border-bottom: 2rem solid #FFF;
    margin-bottom: 40rem;
  }
  .footer_content .exhibit .exhibit_title h3 {
    font-size: 32rem;
  }
  .footer_content .exhibit .exhibit_title span {
    font-size: 26rem;
  }
  .footer_content .exhibit .exhibit_list {
    display: flex;
    flex-direction: column;
    column-gap: 0rem;
    text-align: left;
  }
  .footer_content .exhibit .exhibit_list li {
    list-style: none;
    font-size: 30rem;
    line-height: 1em;
    margin-bottom: 30rem;
  }

  ul.footer_policy {
    width: 660rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 20rem;
    margin: 40rem auto;
  }
  ul.footer_policy li {
    list-style: none;
    font-size: 24rem;
    line-height: 1em;
    padding: 0 20rem;
    border-left: 2rem solid #FFF;
  }
  ul.footer_policy li:nth-of-type(2), ul.footer_policy li:last-child {
    border-right: 2rem solid #FFF;
  }
  ul.footer_policy li a {
    color: #FFF;
    text-decoration: none;
  }

  footer .copy {
    font-size: 26rem;
  }
}

/*  Entry
--------------------------*/

.entry_content {
  padding: 30rem 0 70rem;
  position: relative;
}

.entry_header {
  position: relative;
  width: 100%;
  max-width: 1120rem;
  margin: 0 40rem;
  
}
.entry_header .gotop {
  width: 135rem;
}
.entry_header .gotop img {
  vertical-align: middle;
}
.entry_header_inner {
  position: relative;
  width: 100%;
  max-width: 1200rem;
  padding: 36rem 40rem 36rem 20rem;
  text-align: left;
  font-size: 43rem;
  line-height: 60rem;
  font-weight: 600;
  color: #0066cc;
  border-top: 5rem solid #b9b9b9;
  background: url("/pop/images/common/entry-header_bg.webp") no-repeat;
  background-size: cover;
}
.entry_header_inner h1 {
  font-size: 43rem;
  line-height: 60rem;
  font-weight: 600;
}
.entry_header_inner h1 span {
  font-size: 28rem;
  margin-left: 20rem;
}
.entry_content_inner {
  width: 1120rem;
  margin: 5rem auto 50rem auto;
  background: #FFF;
  padding: 30rem 0 70rem;
}
.entry-content_inner p {
  font-size: 18rem;
  line-height: 2em;
  margin-bottom: 2em;
}

ul.circle {
  list-style: none;
  margin-bottom: 2em;
}
ul.circle li {
  position: relative;
  padding-left: 1.5em;
}
ul.circle li::before {
  font-family: "Font Awesome 6 Free";
  content: '\f111';
  font-weight: 900;
  position: absolute;
  top: 2rem;
  left: 0;
}


@media screen and (max-width:767px) {
  .entry_content {
    width: 100%;
    padding: 0 0 100rem;
  }
  .entry_header {
    width: 100%;
    max-width: 100%;
    margin: 0;
    position: relative;
  }
  .entry_header .gotop {
    display: none;
  }
  .entry_header_inner {
    width: 100%;
    text-align: center;
    font-size: 56rem;
    line-height: 80rem;
    font-weight: 600;
    padding: 45rem 20rem;
    border-top: 0;
    background: url("/pop/images/common/entry-header_mbbg.webp") no-repeat;
    background-size: cover;
  }
  .entry_header_inner h1 {
    font-size: 56rem;
    line-height: 80rem;
    font-weight: 600;
  }
  .entry_header_inner h1 span {
    display: block;
    font-size: 36rem;
    margin: 0 auto;
  }
  .entry_content_inner {
    width: 100%;
    margin: 10rem auto 50rem auto;
    padding: 70rem 20rem 100rem
  }
  .entry_content_inner p {
    font-size: 28rem;
    line-height: 2em;
    margin-bottom: 1em;
  }
  

}

.wp-block-columns.is-layout-flex {
  margin-bottom: 2em;
}

.content_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 1120rem;
  column-gap: 60rem;
  padding-bottom: 40rem;
}
.content_flex100 {
  width: 1060rem;
  margin-bottom: 40rem;
}
.content_flex30 {
  width: 300rem;
  margin-bottom: 40rem;
}
.content_flex50 {
  width: 500rem;
  margin-bottom: 40rem;
}
.content_flex70 {
  width: 700rem;
  margin-bottom: 40rem;
}
.content_flex800 {
  width: 100%;
  max-width: 800rem;
  margin-bottom: 40rem;
}
.content_flex920 {
  width: 100%;
  max-width: 920rem;
  margin-bottom: 40rem;
}

.content_flex h2 {
  font-size: 24rem;
  font-weight: 600;
  color: #0066cc;
  padding: 15rem 30rem;
  margin-bottom: 20rem;
  border-top: 5rem solid #eee433;
  border-bottom: 1rem solid #eee433;
}
.content_flex h3 {
  font-size: 24rem;
  font-weight: 600;
  color: #159c58;
  padding: 5rem 0;
  margin-bottom: 20rem;
  border-bottom: 2rem solid #393;
}
.content_flex p {
  font-size: 18rem;
  line-height: 2em;
  margin-bottom: 1.5em;
}
.content_flex a {
  color: #0066cc;
}

@media screen and (max-width:767px) {
  .content_flex {
    display: block;
    margin-bottom: 40rem;
  }
  .content_flex100 {
    width: 100%;
    margin-bottom: 40rem;
  }
  .content_flex50,
  .content_flex30,
  .content_flex70 {
    width: 100%;
    margin-bottom: 40rem;
  }

  .content_flex h2 {
    font-size: 36rem;
    line-height: 1em;
    font-weight: 600;
    color: #0066cc;
    padding: 40rem 20rem;
    margin-bottom: 30rem;
    border-top: 10rem solid #eee433;
    border-bottom: 2rem solid #eee433;
  }
  .content_flex h3 {
    font-size: 36rem;
    padding: 10rem 0;
    margin-bottom: 30rem;
    border-bottom: 2rem solid #393;
  }
  .content_flex p {
    font-size: 28rem;
    line-height: 2em;
    margin-bottom: 2em;
  }
}

.content_flex table {
	border: 1rem solid #CCC;
  font-size: 18rem;
}

.content_flex table tr {
  border-bottom: 1rem solid #f2f2f2;
}
.content_flex table tr:last-child {
  border-bottom: none;
}
.content_flex table td {
  padding: 10rem;
  font-size: 18rem;
  border-right: 1rem solid #f2f2f2;
}
.content_flex table td:last-child {
  border-right: none;
}

.content_flex table tr th {
	background:#ecf4e6;
  font-size: 18rem;
  padding: 10rem;
  vertical-align: middle;
  text-align: center;
  text-wrap: nowrap;
}
.access_content .red {
  color: #FF0000;
}
.access_content .bolder {
  font-weight: 600;
}
.content_flex table .txt_m {
  font-size: 14rem;
}
.content_flex table .aln_c {
  text-align: center;
}
.content_flex table p {
  margin-bottom: 0;
}

@media screen and (max-width:767px) {
  .content_flex table {
    border:2rem solid #CCC;
    font-size: 32rem;
  }

  .content_flex table tr {
    border-bottom: 2rem solid #f2f2f2;
  }
  .content_flex table td {
    padding: 20rem;
    font-size: 24rem;
    border-right: 2rem solid #f2f2f2;
  }

  .content_flex table tr th {
    background:#ecf4e6;
    padding: 20rem;
    font-size: 24rem;
    text-wrap: nowrap;
  }
  .content_flex table .txt_m {
    font-size: 18rem;
  }
}


/* Exhibit
--------------------------*/

.exhibit_content {
  padding: 30rem 0 70rem;
  position: relative;
}

.exhibit_header {
  position: relative;
  width: 100%;
  max-width: 1120rem;
  margin: 0 40rem;
  
}
.exhibit_header .gotop {
  width: 135rem;
}
.exhibit_header .gotop img {
  vertical-align: middle;
}
.exhibit_header_inner {
  position: relative;
  width: 100%;
  max-width: 1200rem;
  padding: 36rem 40rem 36rem 20rem;
  text-align: left;
  color: #0066cc;
  border-top: 5rem solid #b9b9b9;
  background: url("/pop/images/common/entry-header_bg.webp") no-repeat;
  background-size: cover;
}
.exhibit_header_inner h1 {
  position: relative;
  width: 85%;
  font-size: 43rem;
  line-height: 60rem;
  font-weight: 600;
}
.exhibit_header_inner a {
  display: flex;
  justify-content: left;
  align-items: center;
}
.exhibit_header_inner a::after {
  content: "";
  display: block;
  width: 130rem;
  height: 24rem;
  margin-left: 10rem;
  background: url("/pop/images/exhibit/exhibit_header_website.webp") no-repeat;
  background-size: contain;
}
.exhibit_header_inner h2 {
  font-size: 18rem;
  color: #424242;
}
.exhibit_header_inner .exhibit_icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10rem;
  width: 200rem;
  height: auto;
}

.exhibit_content_inner {
  width: 1120rem;
  margin: 5rem auto 50rem auto;
  padding-top: 60rem;
  background: #FFF;
}
.exhibit_content_inner p {
  font-size: 18rem;
  line-height: 2em;
  margin-bottom: 2em;
}

.exhibit_images .mySwiper2 {
  margin-bottom: 10rem;
}

.exhibit_images .mySwiper2 .swiper-button-next {
  right: -16rem!important;
  width: 80rem!important;
  background: url("/pop/images/home/swiper_next.webp") no-repeat center center!important;
  background-size: contain!important;
}

.exhibit_images .mySwiper2 .swiper-button-prev{
  left: -16rem!important;
  width: 80rem!important;
  background: url("/pop/images/home/swiper_prev.webp") no-repeat center center!important;
  background-size: contain!important;
}
.exhibit_images .mySwiper2 .swiper-button-next:after, .exhibit_images .mySwiper2 .swiper-button-prev:after {
  display: none;
}

.exhibit_videos {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1060rem;
  flex-direction: row;
  margin: 40rem auto 60rem;
  gap: 40rem;
  padding: 0;
}
.exhibit_videos .exhibit_video {
  width: 500rem;
  margin: 0 auto;
  position: relative;
}

.exhibit_newspapers {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1060rem;
  flex-direction: row;
  margin: 40rem auto 60rem;
  gap: 40rem;
}
.exhibit_newspapers .exhibit_newspaper {
  width: 500rem;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
.exhibit_newspapers .exhibit_newspaper img {
  width: 300rem;
  height: auto;
}

.exhibit_newspapers .exhibit_newspaper a.text {
  display: block;
  width: 400rem;
  margin: 0 auto;
  font-size: 18rem;
}

@media screen and (max-width:767px) {
  .exhibit_content {
    width: 100%;
    padding: 0 0 100rem;
  }
  .exhibit_header {
    width: 100%;
    max-width: 100%;
    margin: 0;
    position: relative;
  }
  .exhibit_header .gotop {
    display: none;
  }
  .exhibit_header_inner {
    width: 100%;
    max-width: 100%;
    padding: 45rem 20rem;
    color: #0066cc;
    border-top: 0;
    background: url("/pop/images/common/entry-header_mbbg.webp") no-repeat;
    background-size: cover;
  }

  .exhibit_header_inner a {
    width: 80%;
  }
  .exhibit_header_inner a::after {
    content: "";
    display: block;
    width: 40rem;
    height: 40rem;
    background: #b9b9b9;
    margin-left: 10rem;
    background: url("/pop/images/exhibit/exhibit_header_websitemb.webp") no-repeat;
    background-size: cover;
  }
  .exhibit_header_inner h2 {
    font-size: 32rem;
    color: #424242;
  }

  .exhibit_header_inner h1 {
    width: 85%;
    font-size: 56rem;
    line-height: 80rem;
    font-weight: 600;
  }

  .exhibit_header_inner .exhibit_icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0rem;
    width: 160rem;
    height: auto;
  }

  .exhibit_content_inner {
    width: 100%;
    margin: 10rem auto 50rem auto;
    padding-left: 20rem;
    padding-right: 20rem;
  }
  .exhibit_content_inner p {
    font-size: 28rem;
    line-height: 2em;
  }
  .exhibit_images .mySwiper2 {
    margin-bottom: 20rem;
  }

  .exhibit_videos .exhibit_video {
    width: 100%;
  }

  .exhibit_newspapers .exhibit_newspaper {
    width: 100%;
  }

  .exhibit_newspapers .exhibit_newspaper img {
    width: 600rem;
    height: auto;
  }
  .exhibit_newspapers .exhibit_newspaper a.text {
    display: block;
    width: 100%;
    margin: 0 auto;
    font-size: 28rem; 
  }
}

/* Exhibit Archive
--------------------------*/

#exhibit_archive .exhibit_content {
  padding-bottom: 0;
}
#exhibit_archive .exhibit_header {
  padding-bottom: 270rem;
  position: relative;
}
.exhibit_archive_header_image {
  position: absolute;
  width: 100%;
  max-width: 1120rem;
  margin: 0 auto;
  top: 35rem;
  left: 50%;
  transform: translateX(-50%);
}

.exhibit_archive_map {
  width: 100%;
  max-width: 1120rem;
  margin: 0 auto;
  padding: 0;
}
.exhibit_archive_map_inner {
  position: relative;
}
.exhibit_archive_map_image {
  width: 100%;
}
.exhibit_archive_map_inner ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}
.exhibit_archive_map_inner ul li {
  position: absolute;
}
.exhibit_archive_map_inner ul li a {
  display: block;
  width: 100%;
  height: 100%;
}
.exhibit_archive_map_inner ul li a:hover {
  background: #0071bc;
  opacity: 0.3;
}

.exhibit_popup {
  max-width: 700rem!important;
  padding: 80rem!important;
  position: relative;
}
.exhbit_popup_header {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40rem;
}
.exhibit_popup_icon {
  width: 150rem;
  cursor: pointer;
}
.exhbit_popup_header h3 {
  font-size: 28rem;
  line-height: 34rem;
  font-weight: 600;
  color: #000000;
  text-align: left;
  width: calc(100% - 160rem);
}
.exhbit_popup_header h3 span {
  display: block;
  font-size: 18rem;
  color: #4d4d4d;
  font-weight: 400;
}
.exhibit_popup_image {
  width: 100%;
  height: auto;
  margin-bottom: 40rem;
}
a.exhibit_popup_btn {  
  display: block;
  width: 240rem;
  height: 60rem;
  background: #4c79c9;
  color: #FFF;
  text-align: center;
  line-height: 60rem;
  font-size: 21rem;
  font-weight: 600;
  margin: 0 auto;
}
.exhibit_popup_close {
  position: absolute;
  top: 20rem;
  right: 20rem;
  width: 40rem;
  height: 40rem;
  background: url("/pop/images/exhibit/exhibit_popup_close.webp") no-repeat center center;
  background-size: contain;
  cursor: pointer;
}

.exhibit_list {
  width: 100%;
  max-width: 1120rem;
  margin: 50rem auto 70rem;
  padding: 0;
}

.exhibit_list h2.exhibit_list_title {
  width: 100%;
  text-align: center;
  margin-bottom: 60rem;
  font-size: 32rem;
  line-height: 48rem;
  font-weight: 600;
  color: #0066cc;
}
.exhibit_list h3.exhibit_list_title {
  width: 100%;
  text-align: left;
  margin-bottom: 20rem;
}
.exhibit_list h3.exhibit_list_title img {
  width: 48rem;
  height: 48rem;
  vertical-align: middle;
}

.exhibit_list .exhibit_list_inner {
  width: 100%;
}
.exhibit_list .exhibit_list_inner ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  width: 100%;
  max-width: 1120rem;
  padding: 0;
  margin: 0;
  gap: 9rem;
  margin-bottom: 40rem;
}
.exhibit_list .exhibit_list_inner ul li {
  list-style: none;
  width: calc(100% / 3 - 6rem);
  position: relative;
  background: #FFF;
  display: flex;
  flex-wrap: wrap;
  flex-wrap: left;
  padding: 2rem;
  gap: 2rem;
}
.exhibit_list .exhibit_list_inner ul li span.boothno {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 49rem;
  height: 55rem;
  background: url("/pop/images/exhibit/exhibit_list_nobg.webp") no-repeat center center;
  background-size: contain;
  font-size: 28rem;
  line-height: 55rem;
  font-weight: 600;
  color: #4d4d4d;
} 
.exhibit_list .exhibit_list_inner ul li .colink {
  font-size: 16rem;
  line-height: 18rem;
  color: #333333;
  background: #f5f5f5;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: calc(100% - 51rem);
  padding-left: 10rem;
  padding-right: 10rem;
  height: 55rem;
  margin-block-start: 0;
  margin-block-end: 0;
}
.exhibit_list .exhibit_list_inner ul li h4 {
  display: flex;
  align-items: center;
}
.exhibit_list .exhibit_list_inner ul li h4::after {
  content: "";
  display: block;
  width: 20rem;
  height: 20rem;
  background: #b9b9b9;
  margin-left: 10rem;
  background: url("/pop/images/exhibit/exhibit_header_websitemb.webp") no-repeat;
  background-size: cover;
}
.exhibit_list .exhibit_list_inner ul li a.exlink {
  width: calc(100% - 61rem);
  height: 69rem;
  font-size: 16rem;
  line-height: 21rem;
  color: #0071bc;
  display: flex;
  align-items: center;
}
.exhibit_list .exhibit_list_inner ul li h3.nolink {
  width: calc(100% - 61rem);
  height: 69rem;
  font-size: 16rem;
  line-height: 21rem;
  display: flex;
  align-items: center;
}
.exhibit_list .exhibit_list_inner ul li .icon {
  width: 100%;
  height: 69rem;
  width: 49rem;
  display: flex;
  padding: 17rem 7rem;
}
.exhibit_list .exhibit_list_inner ul li .icon img {
  width: 35rem;
  height: 35rem;
}

@media screen and (max-width:767px) {
  #exhibit_archive .exhibit_header {
    padding-bottom: 0;
  }
  #exhibit_archive .exhibit_header .exhibit_header_inner h1 {
    text-align: left;
    width: 100%;
  }

  .exhibit_archive_header_image {
    position: relative;
    width: 100%;
    max-width: 767rem;
    top: auto;
    left: auto;
    transform: none;
  }

  .exhibit_popup {
    max-width: 720rem!important;
    padding: 100rem 40rem!important;
    position: relative;
  }
  .exhbit_popup_header {
    margin-bottom: 60rem;
  }
  .exhibit_popup_icon {
  }
  .exhbit_popup_header h3 {
    font-size: 36rem;
    line-height: 48rem;
  }
  .exhbit_popup_header h3 span {
    font-size: 30rem;
  }
  .exhibit_popup_image {
    margin-bottom: 60rem;
  }
  a.exhibit_popup_btn {  
    display: block;
    width: 480rem;
    height: 120rem;
    background: #4c79c9;
    color: #FFF;
    text-align: center;
    line-height: 120rem;
    font-size: 42rem;
    font-weight: 600;
    margin: 0 auto;
  }
  .exhibit_popup_close {
    position: absolute;
    top: 20rem;
    right: 20rem;
    width: 60rem;
    height: 60rem;
    background: url("/pop/images/exhibit/exhibit_popup_close.webp") no-repeat center center;
    background-size: contain;
    cursor: pointer;
  }

  .exhibit_list {
    width: 100%;
    max-width: 720rem;
    margin: 60rem auto 100rem;
    padding: 0;
  }

  .exhibit_list h2.exhibit_list_title {
    margin-bottom: 60rem;
    font-size: 64rem;
    line-height: 80rem;
  }
  .exhibit_list h3.exhibit_list_title {
    width: 100%;
    text-align: center;
    margin-bottom: 40rem;
  }
  .exhibit_list h3.exhibit_list_title img {
    width: 96rem;
    height: 96rem;
    vertical-align: middle;
  }

  .exhibit_list .exhibit_list_inner {
    width: 100%;
  }
  .exhibit_list .exhibit_list_inner ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    width: 100%;
    max-width: 720rem;
    padding: 0;
    margin: 0;
    gap: 20rem;
    margin-bottom: 60rem;
  }
  .exhibit_list .exhibit_list_inner ul li {
    list-style: none;
    width: 100%;
    position: relative;
    background: #FFF;
    display: flex;
    flex-wrap: wrap;
    flex-wrap: left;
    padding: 4rem;
    gap: 4rem;
  }
  .exhibit_list .exhibit_list_inner ul li span.boothno {
    width: 96rem;
    height: 108rem;
    background: url("/pop/images/exhibit/exhibit_list_nobg.webp") no-repeat center center;
    background-size: contain;
    font-size: 56rem;
    line-height: 108rem;
  } 
  .exhibit_list .exhibit_list_inner ul li .colink {
    font-size: 32rem;
    line-height: 48rem;
    color: #333333;
    background: #f5f5f5;
    width: calc(100% - 100rem);
    padding-left: 20rem;
    padding-right: 20rem;
    height: 108rem;
  }
  .exhibit_list .exhibit_list_inner ul li h4::after {
    content: "";
    display: block;
    width: 36rem;
    height: 36rem;
    background: #b9b9b9;
    margin-left: 10rem;
    background: url("/pop/images/exhibit/exhibit_header_websitemb.webp") no-repeat;
    background-size: cover;
  }
  .exhibit_list .exhibit_list_inner ul li a.exlink {
    width: calc(100% - 120rem);
    height: 108rem;
    font-size: 32rem;
    line-height: 42rem;
    color: #0071bc;
    display: flex;
    align-items: center;
  }
  .exhibit_list .exhibit_list_inner ul li h3.nolink {
    width: calc(100% - 120rem);
    height: 108rem;
    font-size: 32rem;
    line-height: 42rem;
    display: flex;
    align-items: center;
  }
  .exhibit_list .exhibit_list_inner ul li .icon {
    width: 100%;
    height: 108rem;
    width: 96rem;
    display: flex;
    padding: 17rem 7rem;
  }
  .exhibit_list .exhibit_list_inner ul li .icon img {
    width: 64rem;
    height: 64rem;
  }


}

/*  Newspaper Archive
--------------------------*/
.newspaper_archive .entry_content {
  padding: 30rem 0 70rem;
  position: relative;
}

.newspaper_archive .entry_content p {
  font-size: 18rem;
  max-width: 960rem;
  margin: 0 auto 0;
  padding-top: 60rem;
}

.newspaper_archive .entry_content h2 {
  font-size: 24rem;
  line-height: 1em;
  font-weight: 600;
  color: #0066cc;
  padding: 15rem 30rem;
  margin-bottom: 20rem;
  border-top: 5rem solid #eee433;
  border-bottom: 1rem solid #eee433;
  max-width: 960rem;
  margin: 0 auto 20rem;
}

.newspaper_list {
  width: 100%;
  max-width: 960rem;
  margin: 50rem auto 0;
  padding: 0 0 70rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  gap: 30rem;
}
.newspaper_list li {
  list-style: none;
  width: 300rem;
  position: relative;
  margin-bottom: 20rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 13rem;
  text-align: center;
}
@media screen and (max-width:767px) {
  .newspaper_archive .entry_content {
    width: 100%;
    padding: 0 0 100rem;
  }
  .newspaper_archive .entry_content_inner {
    padding-bottom: 70rem;
  }
  .newspaper_archive .entry_content p {
    font-size: 32rem;
    max-width: 640rem;
    margin: 0 auto;
    padding-top: 60rem;
  }

  .newspaper_archive .entry_content h2 {
    width: 640rem;
    font-size: 36rem;
    line-height: 1em;
    font-weight: 600;
    color: #0066cc;
    padding: 40rem 20rem;
    margin-bottom: 30rem;
    border-top: 10rem solid #eee433;
    border-bottom: 2rem solid #eee433;
  }

  .newspaper_list {
    width: 100%;
    max-width: 720rem;
    margin: 60rem auto 100rem;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40rem;
  }
  .newspaper_list li {
    width: 100%;
    font-size: 32rem;
  }
  .newspaper_list li a {
    width: 100%;
    height: auto;
  }
  .newspaper_list li img {
    width: 640rem;
    height: auto;
  }
}
/*  Access
--------------------------*/

table.exhibitorsTable {
	border: 1rem solid #CCC;
  font-size: 18rem;
}

table.exhibitorsTable tr {
  border-bottom: 1rem solid #f2f2f2;
}
table.exhibitorsTable tr:last-child {
  border-bottom: none;
}
table.exhibitorsTable td {
  padding: 10rem;
  font-size: 18rem;
  border-right: 1rem solid #f2f2f2;
}
table.exhibitorsTable td:last-child {
  border-right: none;
}

table.exhibitorsTable tr th {
	background:#ecf4e6;
  font-size: 18rem;
  padding: 10rem;
  vertical-align: middle;
  text-align: center;
}
.access_content .red {
  color: #FF0000;
}
.access_content .bolder {
  font-weight: 600;
}
table.exhibitorsTable .txt_m {
  font-size: 14rem;
}
table.exhibitorsTable .aln_c {
  text-align: center;
}
table.exhibitorsTable p {
  margin-bottom: 0;
}

.access_content .access_terminal {
  background-color: #ecf4e6;
  padding: 30rem;
}
.access_content .access_terminal .access_terminal_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20rem;
}
.access_content .access_terminal .access_terminal_inner .access_terminal_inner_l {
  width: calc(60% - 20rem);
}
.access_content .access_terminal .access_terminal_inner .access_terminal_inner_l span {
  display: block;
  margin-top: 10rem;
  width: 100%;
  line-height: 2em;
  text-align: center;
  background:#5abed6;
  line-height: 2em;
  border-radius: 5rem;
  color: #FFF;
  font-weight: 600;
}
.access_content .access_terminal .access_terminal_inner .access_terminal_inner_r {
  width: calc(40% - 0rem);
}

@media screen and (max-width:767px) {
  table.exhibitorsTable {
    border:2rem solid #CCC;
    font-size: 32rem;
  }

  table.exhibitorsTable tr {
    border-bottom: 2rem solid #f2f2f2;
  }
  table.exhibitorsTable td {
    padding: 20rem;
    font-size: 24rem;
    border-right: 2rem solid #f2f2f2;
  }

  table.exhibitorsTable tr th {
    background:#ecf4e6;
    padding: 20rem;
    font-size: 24rem;
    text-wrap: nowrap;
  }
  table.exhibitorsTable .txt_m {
    font-size: 18rem;
  }
}


/* FAQ
--------------------------*/


ul.qanda {
  width: 100%;
  max-width: 920rem;
  list-style: none;
  margin: 40rem auto;
  border-top: #D1D1D1 1rem solid;
}
ul.qanda li {
  padding: 30rem 40rem;
  background-color: #fff;
  cursor: pointer;
  box-sizing: border-box;
  font-size: 21rem;
  line-height: 32rem;
  border-bottom: #D1D1D1 1rem solid;
}
.qanda_q {
  position: relative;
  padding-right: 35rem;
  padding-left: 50rem;
  font-weight: 400;
}
.qanda_q:before {
  content: "Q:";
  position: absolute;
  left: 20rem;
  color: #FF3838;
}
.qanda_q:after {
  content: "";
  position: absolute;
  right: 20rem;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 12rem;
  height: 12rem;
  border-top: solid 3rem #959EA7;
  border-right: solid 3rem #959EA7;
  transform: rotate(135deg);
}
.qanda_q.arrow:after {
  transform: rotate(-45deg);
  top: 45%;
}
.qanda_a {
  position: relative;
  display: none;
  padding: 30rem 20rem 10rem 50rem;
}
.qanda_a:before {
  content: "A:";
  position: absolute;
  left: 23rem;
  color: #1771DA;
}
.qanda_a p.note {
  position: relative;
  font-size: 14rem;
  line-height: 24rem;
  padding: 30rem 20rem 10rem 20rem;
}
.qanda_a p.note:before {
  content: "※";
  position: absolute;
  left: 0rem;
}

@media screen and (max-width:767px) {
  ul.qanda {
    width: 100%;
    max-width: 680rem;
    list-style: none;
    margin:  0 auto 0 auto;
    border-top: #D1D1D1 2rem solid;
  }
  ul.qanda a {
    color: #0071bc;
  }
  ul.qanda li {
    padding: 50rem 30rem;
    background-color: #fff;
    cursor: pointer;
    box-sizing: border-box;
    font-size: 32rem;
    line-height: 48rem;
    border-bottom: #D1D1D1 1rem solid;
  }
  .qanda_q {
    position: relative;
    padding-right: 35rem;
    padding-left: 50rem;
    font-weight: 400;
  }
  .qanda_q:before {
    content: "Q:";
    position: absolute;
    left: 0rem;
    color: #FF3838;
  }
  .qanda_q:after {
    content: "";
    position: absolute;
    right: 0rem;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: all 0.2s ease-in-out;
    display: block;
    width: 20rem;
    height: 20rem;
    border-top: solid 6rem #959EA7;
    border-right: solid 6rem #959EA7;
    transform: rotate(135deg);
  }
  .qanda_q.arrow:after {
    transform: rotate(-45deg);
    top: 45%;
  }
  .qanda_a {
    position: relative;
    display: none;
    padding: 50rem 20rem 0rem 50rem;
  }
  .qanda_a:before {
    content: "A:";
    position: absolute;
    left: 3rem;
    color: #1771DA;
  }
  .qanda_a p.note {
    position: relative;
    font-size: 24rem;
    line-height: 32rem;
    padding: 30rem 20rem 10rem 20rem;
  }
  .qanda_a p.note:before {
    content: "※";
    position: absolute;
    left: 0rem;
  }
}

/* Group
--------------------------*/
.group .note {
  color: red;
}
.group .groupTable {
  table-layout: fixed;
}
.group .groupTable td {
  text-align: center;
  line-height: 3em;
  height: 3em;
  border-right: 2rem solid #FFF;
  border-bottom: 2rem solid #FFF;
}
.group dl {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 5rem;
  margin-bottom: 30rem;
}
.group dl dt {
  width: 50rem;
  height: 50rem;
  font-size: 18rem;
  font-weight: 600;
  background: #d4fed5;
  display: flex;
  justify-content: center;
  align-items: center;
}
.group dl dd {
  width: calc(100% - 55rem);
  height: 50rem;
  font-size: 18rem;
  background: #d4fed5;
  display: flex;
  align-items: center;
  padding-left: 10rem;
}

@media screen and (max-width:767px) {
  .group .groupTable td {
    border-right: 4rem solid #FFF;
    border-bottom: 4rem solid #FFF;
  }
  .group dl {
    gap: 10rem;
    margin-bottom: 50rem;
  }
  .group dl dt {
    width: 80rem;
    height: 100rem;
    font-size: 32rem;
    font-weight: 600;
  }
  .group dl dd {
    width: calc(100% - 90rem);
    height: 100rem;
    font-size: 32rem;
    padding-right: 20rem;
    padding-left: 20rem;
    line-height: 1.2em;
  }
}

/* For Exhibitor
--------------------------*/
.feature_flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40rem;
  background-color: #e8f1df;
  margin-bottom: 40rem;
} 
.feature_flex h4 {
  width: 100%;
  font-size: 24rem;
  line-height: 32rem;
  font-weight: 600;
  color: #fff;
  background: #5abed6;
  padding: 10rem 15rem;
  margin-bottom: 10rem;
  border-radius: 10rem;
}
.feature_flex70 {
  width: calc(70% - 20rem);
  padding: 20rem 0 20rem 30rem;
}
.feature_flex30 {
  width: calc(30% - 20rem);
  padding: 20rem 30rem 20rem 0;
}
@media screen and (max-width:767px) {
  .feature_flex {
    flex-direction: column;
    gap: 0;
    background-color: #e8f1df;
    margin-bottom: 20rem;
  }
  .feature_flex h4 {
    width: 100%;
    font-size: 32rem;
    line-height: 40rem;
    font-weight: 600;
    color: #fff;
    background: #5abed6;
    padding: 20rem 30rem;
    margin-bottom: 20rem;
    border-radius: 20rem;
  }
  .feature_flex70, .feature_flex30 {
    width: 100%;
    max-width: 100%;
    padding: 40rem;
  }
}


/* News Archive
--------------------------*/

.news_archive_inner {
  padding: 30rem 0;
}

.news_list {
  width: 920rem;
  margin: 30rem auto;
}

.news_list li {
  border-bottom: 1rem solid #CCCCCC;
  
}
.news_list li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 18rem 0;
}

.news_list li a .date {
  width: 120rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 16rem;
  line-height: 24rem;
}

.news_list li a h4 {
  color: #1571DA;
  font-size: 16rem;
  line-height: 24rem;
  font-weight: 400;
  padding-left: 1em;
}

.news_list li a .news_cat {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12rem;
  line-height: 16rem;
  font-weight: 600;
  color: #FFF;
  background: #5a9fe2;
  height: 16rem;
  border-radius: 8rem;
  width: 100rem;
  white-space: nowrap;
}
.news_list li a .news_cat.cat_smate {
  font-size: 10rem;
}



.news_menu {
  width: 100%;
  max-width: 920rem;
  margin: 0 auto;
  padding: 20rem 0;
  display: flex;
  justify-content: center;
}
.news_menu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin: 0;
  gap: 30rem;
}
.news_menu ul li {
  list-style: none;
  width: 160rem;
}
.news_menu ul li a {
  text-align: center;
  display: block;
  font-size: 18rem;
  line-height: 24rem;
  font-weight: 600;
  color: #FFF;
  background: #5a9fe2;
  height: 24rem;
  border-radius: 12rem;
  width: 100%;
}
.news_menu ul li a.cat_smate {
  font-size: 16rem;
}

.news_menu ul li a.all {
  background: #d4d4d4;
}


@media screen and (max-width:767px) {
  .news_list {
    width: 687rem;
    margin: 20rem auto;
  }
  .news_list li a {
    flex-wrap: wrap;
  }
  .news_list li a .date {
    width: auto;
    font-size: 32rem;
    line-height: 40rem;
  }
  .news_list li a h4 {
    font-size: 28rem;
    line-height: 40rem;
    padding: 0;
    width: 100%;
  }
  .news_list li a .news_cat {
    font-size: 25rem;
    line-height: 32rem;
    color: #FFF;
    height: 32rem;
    border-radius: 16rem;
    width: 200rem;
    margin-left: 12rem;
  }
  .news_list li a .news_cat.cat_smate {
    font-size: 22rem;
  }

  .news_menu {
    width: 100%;
    max-width: 687rem;
    margin: 0 auto;
    padding: 30rem 0;
    display: flex;
    justify-content: center;
  }
  .news_menu ul {
    gap: 20rem;
  }
  .news_menu ul li {
    list-style: none;
    width: 209rem;
  }
  .news_menu ul li a {
    text-align: center;
    display: block;
    font-size: 28rem;
    line-height: 40rem;
    height: 40rem;
    border-radius: 20rem;
    width: 209rem;
  }

  .news_menu ul li a.cat_smate {
    font-size: 22rem;
  }
}

/* News Single
--------------------------*/

.news_header h1 {

}

.news_info {
  display: flex;
  flex-wrap: nowrap;
  justify-content: left;
  align-items: center;
  gap: 20rem;
}
.news_info .date {
  font-size: 18rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  line-height: 24rem;
  color: #4D4D4D;
}
.news_info span.news_cat {
  text-align: center;
  display: block;
  font-size: 12rem;
  line-height: 16rem;
  font-weight: 600;
  color: #FFF;
  height: 16rem;
  border-radius: 8rem;
  width: 100rem;
}
.news_info span.news_cat.cat_smate {
  font-size: 10rem;
}

@media screen and (max-width:767px) {
  .news_info {
    justify-content: center;
  }
  .news_info .date {
    font-size: 25rem;
    line-height: 32rem;
  }
  .news_info span.news_cat {
    font-size: 25rem;
    line-height: 32rem;
    color: #FFF;
    height: 32rem;
    border-radius: 16rem;
    width: 140rem;
  }
  .news_info span.news_cat.cat_smate {
    font-size: 22rem;
  }
}


/* wp-pagenavi
--------------------------*/
.wp-pagenavi {
  margin: 50px auto 70px;;
  width: auto;
  font-family: 'Oswald', sans-serif;
  text-align: center;
}
.wp-pagenavi .pages, .wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink {
  display: none;
}
.wp-pagenavi a.page ,.wp-pagenavi .current ,.wp-pagenavi a.first ,.wp-pagenavi a.last {
  text-align: center;
  display: inline-block;
  font-size: 16px;
  padding: 0 10px;
  line-height: 40px;
  height: 40px;
  background: #FFF;
  color: #1C7CD5;
  border-left: 1px solid #DDDDDD;
  border-top: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
  text-decoration: none;
}
.wp-pagenavi a.last{
  border-right: 1px solid #DDDDDD;
}
.wp-pagenavi .current {
  background: #CCCCCC;
}

/* Diary Archive
--------------------------*/


.diary_archive_inner {
  padding: 60rem 0 0;
}

.diary_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  max-width: 920rem;
  column-gap: 30rem;
  padding-bottom: 40rem;
}
.diary_flex_l {
  width: 250rem;
}
.diary_flex_r {
  width: 640rem;
}




.diary_list {
  width: 100%;
  margin: 0 auto;
}

.diary_list li {
  margin-bottom: 30rem;
}
.diary_list li a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-decoration: none;
  position: relative;
  padding: 30rem 20rem 80rem;
  border: 1rem solid #acd9ef
}

.diary_list li a .date {
  font-size: 14rem;
  line-height: 14rem;
}
.diary_list li a .cat {
  font-size: 14rem;
  line-height: 14rem;
  margin-left: 20rem;
  border-left: 1rem solid #4d4d4d;
  padding-left: 20rem;
}

.diary_list li a h4 {
  color: #1571DA;
  font-size: 18rem;
  line-height: 24rem;
  font-weight: 600;
  width: 100%;
  margin: 20rem auto;
}
.diary_list li a .more {
  font-size: 14rem;
  line-height: 14rem;
  color: #0071bc;
  position: absolute;
  bottom: 30rem;
  right: 20rem;
}

.diary_flex .diary_thumb {
  width: 100%;
  text-align: center;
  margin: 20rem auto 0;
}
.diary_flex .diary_thumb img {
  width: 100%;
  height: auto;
  max-width: 400rem;
}

.diary_flex_l h3 {
  font-size: 24rem;
  line-height: 32rem;
  font-weight: 600;
  color: #0071bc;
  margin-top: 60rem;
  margin-bottom: 20rem;
  border-bottom: 1rem solid #0071bc;
  padding-bottom: 10rem;
}
.diary_flex_l ul.diary_cat {
  display: flex;
  flex-wrap: wrap;
  gap: 10rem;
  margin-bottom: 20rem;
  flex-direction: column;
}
.diary_flex_l ul.diary_cat li {
  list-style: none;
  font-size: 14rem;
}
.diary_single .entry_content_inner {
  padding-bottom: 0;
  margin-bottom: 14rem;
}


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

  .diary_flex {
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 720rem;
    padding-bottom: 20rem;
    margin: 0 auto;
    justify-content: center;
  }
  .diary_flex_l {
    width: 100%;
    max-width: 680rem;
    margin-bottom: 40rem;
    margin: 0 auto;
  }
  .diary_flex_r {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20rem;
  }

  .diary_list {
    width: 720rem;
    margin: 40rem auto;
  }
  .diary_list li a {
    flex-wrap: wrap;
    padding: 60rem 30rem 120rem;
    border: 2rem solid #acd9ef;
  }
  .diary_list li a .date,
  .diary_list li a .cat {
    width: auto;
    font-size: 32rem;
    line-height: 32rem;
  }
  .diary_list li a h4 {
    font-size: 32rem;
    line-height: 48rem;
    margin: 30rem auto;
    width: 100%;
  }
  .diary_flex .diary_thumb {
    width: 100%;
    text-align: center;
    margin: 30rem auto 0;
  }
  .diary_flex .diary_thumb img {
    width: 100%;
    height: auto;
    max-width: 600rem;
  }
  .diary_list li a .more {
    font-size: 25rem;
    line-height: 32rem;
    position: absolute;
    bottom: 40rem;
    right: 30rem;
  }

  .diary_flex_l h3 {
    font-size: 32rem;
    line-height: 40rem;
    margin-top: 80rem;
    margin-bottom: 30rem;
    border-bottom: 2rem solid #0071bc;
    padding-bottom: 20rem;
    text-align: center;
  }
  .diary_flex_l ul.diary_cat {
    display: flex;
    flex-wrap: wrap;
    gap: 40rem;
    margin-bottom: 30rem;
    flex-direction: row;
    justify-content: center;
  }
  .diary_flex_l ul.diary_cat li {
    list-style: none;
    font-size: 32rem;
  }
}

/* Diary Single
--------------------------*/

.diary_single .diary_thumb {
  display: block;
  text-align: center;
  margin: 30rem auto 30rem;
}
.diary_single .diary_thumb img {
  width: 100%;
  height: auto;
  max-width: 800rem;
}
@media screen and (max-width:767px) {
  .diary_single .diary_thumb {
    margin: 60rem auto 60rem;
  }
}

.diary_footer {
  width: 100%;
  max-width: 1120rem;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}
.diary_footer_nav {
  display: flex;
  justify-content: space-between;
  gap: 14rem;
}
.diary_footer_nav_prev,
.diary_footer_nav_next {
  height: 40rem;
  width: 130rem;
  background: #FFF;
}
.diary_footer_nav_top {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40rem;
  width: 100%;
  background: #FFF;
  color: #0071bc;
  font-size: 14rem;
  line-height: 14rem;
}
.diary_footer_nav_top a {
  display: flex;
  height: 40rem;
  width: calc(100% - 288rem);
  align-items: center;
  justify-content: center;
  font-size: 14rem;
  line-height: 14rem;
  text-decoration: none;
  background: #FFF;
  color: #0071bc;
  text-decoration: none;
}
.diary_footer_nav_prev a,
.diary_footer_nav_next a {
  display: flex;
  height: 40rem;
  width: 130rem;
  align-items: center;
  justify-content: center;
  font-size: 14rem;
  line-height: 14rem;
  text-decoration: none;
  background: #FFF;
  color: #0071bc;
  text-decoration: none;
}

.diary_info {
  display: flex;
  flex-wrap: nowrap;
  justify-content: left;
  align-items: center;
  color: #4D4D4D;
  margin-bottom: 30rem;
}
.diary_info .date {
  font-size: 18rem;
  line-height: 18rem;
}
.diary_info .cat {
  font-size: 18rem;
  line-height: 18rem;
  margin-left: 20rem;
  border-left: 1rem solid #4d4d4d;
  padding-left: 20rem;
}

@media screen and (max-width:767px) {
  .diary_single .content_flex {
    margin-bottom: 0;
  }

  .diary_info {
    justify-content: center;
  }
  .diary_info .date,
  .diary_info .cat {
    width: auto;
    font-size: 32rem;
    line-height: 32rem;
  }
  .diary_footer_nav {
    gap: 20rem;
  }
  .diary_footer_nav_top {
    height: 60rem;
    width: 40%;
  }
  .diary_footer_nav_top a {
    height: 60rem;
    width: 100%;
    font-size: 24rem;
  }
  .diary_footer_nav_prev,
  .diary_footer_nav_next {
    width: 30%;
    height: 60rem;
  }
  .diary_footer_nav_prev a,
  .diary_footer_nav_next a {
    width: 100%;
    height: 60rem;
    font-size: 24rem;
  }
}

/*  contact
--------------------------*/

#contact {
  margin-top: 70rem; 
  text-align: left;
}
#contact .table-wrap {
}
#contact .table {
  width: 100%;
  border-collapse: collapse;
}
#contact table th {
  padding: 8rem 10rem;
  text-align: center;
}
#contact table td {
  padding: 8rem 10rem;
}
#contact p {
  text-align: left;
  margin: 30rem auto 5rem;
}

#contact .col2-contact {
  width: 90%;
  margin: 3rem auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  column-gap: 10%;
  
}
#contact .col2-contact .left {
  width: 40%;
}
#contact .col2-contact .right {
  width: 50%;
}
#contact .col2-contact .full {
  width: 100%;
}
@media screen and (max-width:767px) {
  #contact .col2-contact .left,
  #contact .col2-contact .right,
  #contact .col2-contact .full {
    width: 100%;
  }

  #contact {
    margin-top: 100rem; 
  }
  #contact .table-wrap {
  }

  #contact table th {
    padding: 16rem 20rem;
    text-align: center;
  }
  #contact table td {
    padding: 16rem 20rem;
  }
  #contact p {
    text-align: left;
    margin: 30rem auto 5rem;
  }
  
}


#contact .col2-contact p {
  margin: 0;
  text-align: left;
  width: 100%;
}

#contact label,
#contact .col2-contact .label,
#contact .col2-contact .label p {
  display: block;
  color: #4D4D4D;
  font-size: 14rem;
  line-height: 20rem;
  width: 100%;
  margin-bottom: 0;
  align-items: center;
}

#contact span.must {
  font-size: 10rem;
  line-height: 15rem;
  background: #F8BEBE;
  padding: 2rem 1em;
  margin-left: 2em;
}

#contact input[type="text"],
#contact input[type="tel"],
#contact input[type="email"],
#contact input[type="date"],
#contact textarea {
  width: 100%;
  font-size: 14rem;
  padding: 15rem 20rem;
  background: #FFF;
  border: 1rem solid #CDD6DD;
  margin-top: 10rem;
  margin-bottom: 20rem;
}

#contact .contact_select {
  position: relative;
}

#contact .contact_select:before {
  position: absolute;
  top: calc(50% - 5rem);
  right: 20rem;
  z-index: 10;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8rem solid #CDD6DD;
  border-right: 6rem solid transparent;
  border-left: 6rem solid transparent;
  pointer-events: none;
  content: '';
}
#contact .contact_select_bnone:before {
  display: none;
}


#contact .contact_select select {
  width: 100%;
  font-size: 14rem;
  padding: 15rem 20rem;
  margin-top: 10rem;
  margin-bottom: 20rem;
  background: #FFF;
  color: #4D4D4D;
  border: 1rem solid #CDD6DD;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.wpcf7-list-item {
  width: 100%;
  text-align: center;
  margin: 0;
}
.wpcf7-list-item label {
  display: flex!important;
  justify-content: center;
  align-content: center;
}
.wpcf7-list-item label .wpcf7-list-item-label {
  line-height: 30rem;
}
.wpcf7-spinner {
  display: block;
}

#contact input[type="checkbox"],
#contact input[type="radio"] {
  display: block;
  position: relative;
  width: 30rem!important;
  height: 30rem!important;
  margin-right: 8rem;
  border: 1rem solid #bcbcbc;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  vertical-align: middle;
}

#contact input[type="checkbox"]:checked {
  border: 1rem solid #000;
  background: #FFF;
}

#contact input[type="checkbox"]:checked:before {
  position: absolute;
  top: 2rem;
  left: 7rem;
  transform: rotate(50deg);
  width: 12rem;
  height: 20rem;
  border-right: 2rem solid #CDD6DD;
  border-bottom: 2rem solid #CDD6DD;
  content: '';
}

#contact input[type="submit"] {
  width: 180rem;
  height: 56rem;
}

#contact .contact_button p {
  text-align: center!important;
}

#contact input[type="submit"] {
  width: 360rem;
  height: 50rem;
  font-size: 12rem;
  font-weight: 700;
  background: #1771DA;
  color: #fff;
  transition: opacity .6s;
  margin-top: 1em;
}

#contact input[type="submit"]:hover {
  opacity: .6;
}

#contact span.confirm {
  display: block;
  width: 100%;
  padding: 15rem 20rem;
  background: #FFF;
  border: 1rem solid #CDD6DD;
  margin-top: 10rem;
}

@media screen and (max-width:767px) {
  #contact input[type="checkbox"] {
    opacity: 1;
    visibility: visible;
  }
  #contact input[type="submit"] {
    width: 100%;
  }

  
  
  #contact .col2-contact p {
    margin: 0;
    text-align: left;
    width: 100%;
  }
  
  #contact label,
  #contact .col2-contact .label,
  #contact .col2-contact .label p {
    display: block;
    color: #4D4D4D;
    font-size: 28rem;
    line-height: 40rem;
    width: 100%;
    margin-bottom: 0;
  }
  
  #contact span.must {
    font-size: 20rem;
    line-height: 30rem;
    background: #F8BEBE;
    padding: 4rem 1em;
    margin-left: 2em;
  }
  
  #contact input[type="text"],
  #contact input[type="tel"],
  #contact input[type="email"],
  #contact input[type="date"],
  #contact textarea {
    width: 100%;
    font-size: 24rem;
    padding: 30rem 40rem;
    background: #FFF;
    border: 2rem solid #CDD6DD;
    margin-top: 20rem;
    margin-bottom: 40rem;
  }
  
  #contact .contact_select {
    position: relative;
  }
  
  #contact .contact_select:before {
    position: absolute;
    top: calc(50% - 12rem);
    right: 40rem;
    z-index: 10;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 16rem solid #CDD6DD;
    border-right: 12rem solid transparent;
    border-left: 12rem solid transparent;
    pointer-events: none;
    content: '';
  }
  
  #contact .contact_select select {
    width: 100%;
    font-size: 24rem;
    padding: 30rem 40rem;
    margin-top: 20rem;
    margin-bottom: 40rem;
    background: #FFF;
    color: #4D4D4D;
    border: 2rem solid #CDD6DD;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }
  
  .wpcf7-list-item {
    width: 100%;
    text-align: center;
    margin: 0;
  }
  .wpcf7-list-item label {
    display: flex!important;
    justify-content: center;
    align-content: center;
  }
  .wpcf7-list-item label .wpcf7-list-item-label {
    line-height: 40rem;
  }
  .wpcf7-spinner {
    display: block;
  }
  
  #contact input[type="checkbox"],
  #contact input[type="radio"] {
    display: block;
    position: relative;
    width: 60rem!important;
    height: 60rem!important;
    margin-right: 16rem;
    border: 2rem solid #bcbcbc;
    cursor: pointer;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    vertical-align: middle;
  }
  
  #contact input[type="checkbox"]:checked {
    border: 2rem solid #000;
    background: #FFF;
  }
  
  #contact input[type="checkbox"]:checked:before {
    position: absolute;
    top: 4rem;
    left: 14rem;
    transform: rotate(50deg);
    width: 24rem;
    height: 40rem;
    border-right: 4rem solid #CDD6DD;
    border-bottom: 4rem solid #CDD6DD;
    content: '';
  }
  
  #contact input[type="submit"] {
    width: 360rem;
    height: 112rem;
  }
  
  #contact .contact_button p {
    text-align: center!important;
  }
  
  #contact input[type="submit"] {
    width: 660rem;
    height: 100rem;
    font-size: 28rem;
    font-weight: 700;
    background: #1771DA;
    color: #fff;
    transition: opacity .6s;
  }
  
  #contact input[type="submit"]:hover {
    opacity: .6;
  }
  
  #contact span.confirm {
    display: block;
    width: 100%;
    padding: 30rem 40rem;
    background: #FFF;
    border: 2rem solid #CDD6DD;
    margin-top: 20rem;
  }
}

/*  Print
--------------------------*/

.printonly {
  display: none;
}
@media print {
  header, footer, .noprint {
    display: none;
  }
  .printonly {
    display: block;
  }
  .printswiper {
    margin-top: 40rem;
  }
  main {
    margin-top: 0;
  }
  #wrapper {
    overflow: visible;
  }
  html {
  font-size: .5px;
  }
  .swiper {
    display: none!important;
  }
}
@page {
  size: A4　portrait;
  margin: 10mm 8mm 15mm 8mm;
}

/* 
margin padding
*/
.mt-0 {
  margin-top: 0rem !important;
}
.mb-0 {
  margin-bottom: 0rem !important;
}
.mr-0 {
  margin-right: 0rem !important;
}
.ml-0 {
  margin-left: 0rem !important;
}
.mt-10 {
  margin-top: 10rem !important;
}
.mb-10 {
  margin-bottom: 10rem !important;
}
.mr-10 {
  margin-right: 10rem !important;
}
.ml-10 {
  margin-left: 10rem !important;
}
.mt-20 {
  margin-top: 20rem !important;
}
.mb-20 {
  margin-bottom: 20rem !important;
}
.mr-20 {
  margin-right: 20rem !important;
}
.ml-20 {
  margin-left: 20rem !important;
}
.mt-30 {
  margin-top: 30rem !important;
}
.mb-30 {
  margin-bottom: 30rem !important;
}
.mr-30 {
  margin-right: 30rem !important;
}
.ml-30 {
  margin-left: 30rem !important;
}
.mt-40 {
  margin-top: 40rem !important;
}
.mb-40 {
  margin-bottom: 40rem !important;
}
.mr-40 {
  margin-right: 40rem !important;
}
.ml-40 {
  margin-left: 40rem !important;
}
.mt-50 {
  margin-top: 50rem !important;
}
.mb-50 {
  margin-bottom: 50rem !important;
}
.mr-50 {
  margin-right: 50rem !important;
}
.ml-50 {
  margin-left: 50rem !important;
}
.mt-60 {
  margin-top: 60rem !important;
}
.mb-60 {
  margin-bottom: 60rem !important;
}
.mr-60 {
  margin-right: 60rem !important;
}
.ml-60 {
  margin-left: 60rem !important;
}
.mt-70 {
  margin-top: 70rem !important;
}
.mb-70 {
  margin-bottom: 70rem !important;
}
.mr-70 {
  margin-right: 70rem !important;
}
.ml-70 {
  margin-left: 70rem !important;
}
.mt-80 {
  margin-top: 80rem !important;
}
.mb-80 {
  margin-bottom: 80rem !important;
}
.mr-80 {
  margin-right: 80rem !important;
}
.ml-80 {
  margin-left: 80rem !important;
}
.mt-90 {
  margin-top: 90rem !important;
}
.mb-90 {
  margin-bottom: 90rem !important;
}
.mr-90 {
  margin-right: 90rem !important;
}
.ml-90 {
  margin-left: 90rem !important;
}
.mt-100 {
  margin-top: 100rem !important;
}
.mb-100 {
  margin-bottom: 100rem !important;
}
.mr-100 {
  margin-right: 100rem !important;
}
.ml-100 {
  margin-left: 100rem !important;
}
.pt-0 {
  padding-top: 0rem !important;
}
.pb-0 {
  padding-bottom: 0rem !important;
}
.pr-0 {
  padding-right: 0rem !important;
}
.pl-0 {
  padding-left: 0rem !important;
}
.pt-10 {
  padding-top: 10rem !important;
}
.pb-10 {
  padding-bottom: 10rem !important;
}
.pr-10 {
  padding-right: 10rem !important;
}
.pl-10 {
  padding-left: 10rem !important;
}
.pt-20 {
  padding-top: 20rem !important;
}
.pb-20 {
  padding-bottom: 20rem !important;
}
.pr-20 {
  padding-right: 20rem !important;
}
.pl-20 {
  padding-left: 20rem !important;
}
.pt-30 {
  padding-top: 30rem !important;
}
.pb-30 {
  padding-bottom: 30rem !important;
}
.pr-30 {
  padding-right: 30rem !important;
}
.pl-30 {
  padding-left: 30rem !important;
}
.pt-40 {
  padding-top: 40rem !important;
}
.pb-40 {
  padding-bottom: 40rem !important;
}
.pr-40 {
  padding-right: 40rem !important;
}
.pl-40 {
  padding-left: 40rem !important;
}
.pt-50 {
  padding-top: 50rem !important;
}
.pb-50 {
  padding-bottom: 50rem !important;
}
.pr-50 {
  padding-right: 50rem !important;
}
.pl-50 {
  padding-left: 50rem !important;
}
.pt-60 {
  padding-top: 60rem !important;
}
.pb-60 {
  padding-bottom: 60rem !important;
}
.pr-60 {
  padding-right: 60rem !important;
}
.pl-60 {
  padding-left: 60rem !important;
}
.pt-70 {
  padding-top: 70rem !important;
}
.pb-70 {
  padding-bottom: 70rem !important;
}
.pr-70 {
  padding-right: 70rem !important;
}
.pl-70 {
  padding-left: 70rem !important;
}
.pt-80 {
  padding-top: 80rem !important;
}
.pb-80 {
  padding-bottom: 80rem !important;
}
.pr-80 {
  padding-right: 80rem !important;
}
.pl-80 {
  padding-left: 80rem !important;
}
.pt-90 {
  padding-top: 90rem !important;
}
.pb-90 {
  padding-bottom: 90rem !important;
}
.pr-90 {
  padding-right: 90rem !important;
}
.pl-90 {
  padding-left: 90rem !important;
}
.pt-100 {
  padding-top: 100rem !important;
}
.pb-100 {
  padding-bottom: 100rem !important;
}
.pr-100 {
  padding-right: 100rem !important;
}
.pl-100 {
  padding-left: 100rem !important;
}
.pd-10 {
  padding: 10rem !important;
}
.pd-20 {
  padding: 20rem !important;
}
.pd-30 {
  padding: 30rem !important;
}
/*フォント系*/
.f-12 {
  font-size: 12rem !important;
}
.f-14 {
  font-size: 14rem !important;
}
.f-20 {
  font-size: 20rem !important;
}
.f-25 {
  font-size: 25rem !important;
}
.f-26 {
  font-size: 26rem !important;
}
.f-30 {
  font-size: 30rem !important;
}
.f-35 {
  font-size: 35rem !important;
}
.f-38 {
  font-size: 38rem !important;
}
.f-40 {
  font-size: 40rem !important;
}
.f-46 {
  font-size: 46rem !important;
}
.f-50 {
  font-size: 50rem !important;
}
.line-h-15 {
  line-height: 1.5 !important;
}
.f-b {
  font-weight: bold !important;
}
.wd-50 {
  width: 50% !important;
}
.wd-80 {
  width: 80% !important;
}
.wd-100 {
  width: 100% !important;
}
.mb-05em {
  margin-bottom: .5em !important;
}
.mb-1em {
  margin-bottom: 1em !important;
}
.mb-15em {
  margin-bottom: 1.5em !important;
}
.mb-2em {
  margin-bottom: 2em !important;
}
.mb-25em {
  margin-bottom: 2.5em !important;
}
.mb-3em {
  margin-bottom: 3em !important
}

@media screen and (max-width:767px) {
  .mt-0mb {
    margin-top: 0rem !important;
  }
  .mb-0mb {
    margin-bottom: 0rem !important;
  }
  .mr-0mb {
    margin-right: 0rem !important;
  }
  .ml-0mb {
    margin-left: 0rem !important;
  }
  .mt-10mb {
    margin-top: 10rem !important;
  }
  .mb-10mb {
    margin-bottom: 10rem !important;
  }
  .mr-10mb {
    margin-right: 10rem !important;
  }
  .ml-10mb {
    margin-left: 10rem !important;
  }
  .mt-20mb {
    margin-top: 20rem !important;
  }
  .mb-20mb {
    margin-bottom: 20rem !important;
  }
  .mr-20mb {
    margin-right: 20rem !important;
  }
  .ml-20mb {
    margin-left: 20rem !important;
  }
  .mt-30mb {
    margin-top: 30rem !important;
  }
  .mb-30mb {
    margin-bottom: 30rem !important;
  }
  .mr-30mb {
    margin-right: 30rem !important;
  }
  .ml-30mb {
    margin-left: 30rem !important;
  }
  .mt-40mb {
    margin-top: 40rem !important;
  }
  .mb-40mb {
    margin-bottom: 40rem !important;
  }
  .mr-40mb {
    margin-right: 40rem !important;
  }
  .ml-40mb {
    margin-left: 40rem !important;
  }
  .mt-50mb {
    margin-top: 50rem !important;
  }
  .mb-50mb {
    margin-bottom: 50rem !important;
  }
  .mr-50mb {
    margin-right: 50rem !important;
  }
  .ml-50mb {
    margin-left: 50rem !important;
  }
  .mt-60mb {
    margin-top: 60rem !important;
  }
  .mb-60mb {
    margin-bottom: 60rem !important;
  }
  .mr-60mb {
    margin-right: 60rem !important;
  }
  .ml-60mb {
    margin-left: 60rem !important;
  }
  .mt-70mb {
    margin-top: 70rem !important;
  }
  .mb-70mb {
    margin-bottom: 70rem !important;
  }
  .mr-70mb {
    margin-right: 70rem !important;
  }
  .ml-70mb {
    margin-left: 70rem !important;
  }
  .mt-80mb {
    margin-top: 80rem !important;
  }
  .mb-80mb {
    margin-bottom: 80rem !important;
  }
  .mr-80mb {
    margin-right: 80rem !important;
  }
  .ml-80mb {
    margin-left: 80rem !important;
  }
  .mt-90mb {
    margin-top: 90rem !important;
  }
  .mb-90mb {
    margin-bottom: 90rem !important;
  }
  .mr-90mb {
    margin-right: 90rem !important;
  }
  .ml-90mb {
    margin-left: 90rem !important;
  }
  .mt-100mb {
    margin-top: 100rem !important;
  }
  .mb-100mb {
    margin-bottom: 100rem !important;
  }
  .mr-100mb {
    margin-right: 100rem !important;
  }
  .ml-100mb {
    margin-left: 100rem !important;
  }
  .pt-0mb {
    padding-top: 10rem !important;
  }
  .pb-0mb {
    padding-bottom: 10rem !important;
  }
  .pr-0mb {
    padding-right: 10rem !important;
  }
  .pl-0mb {
    padding-left: 10rem !important;
  }
  .pt-10mb {
    padding-top: 10rem !important;
  }
  .pb-10mb {
    padding-bottom: 10rem !important;
  }
  .pr-10mb {
    padding-right: 10rem !important;
  }
  .pl-10mb {
    padding-left: 10rem !important;
  }
  .pt-20mb {
    padding-top: 20rem !important;
  }
  .pb-20mb {
    padding-bottom: 20rem !important;
  }
  .pr-20mb {
    padding-right: 20rem !important;
  }
  .pl-20mb {
    padding-left: 20rem !important;
  }
  .pt-30mb {
    padding-top: 30rem !important;
  }
  .pb-30mb {
    padding-bottom: 30rem !important;
  }
  .pr-30mb {
    padding-right: 30rem !important;
  }
  .pl-30mb {
    padding-left: 30rem !important;
  }
  .pt-40mb {
    padding-top: 40rem !important;
  }
  .pb-40mb {
    padding-bottom: 40rem !important;
  }
  .pr-40mb {
    padding-right: 40rem !important;
  }
  .pl-40mb {
    padding-left: 40rem !important;
  }
  .pt-50mb {
    padding-top: 50rem !important;
  }
  .pb-50mb {
    padding-bottom: 50rem !important;
  }
  .pr-50mb {
    padding-right: 50rem !important;
  }
  .pl-50mb {
    padding-left: 50rem !important;
  }
  .pt-60mb {
    padding-top: 60rem !important;
  }
  .pb-60mb {
    padding-bottom: 60rem !important;
  }
  .pr-60mb {
    padding-right: 60rem !important;
  }
  .pl-60mb {
    padding-left: 60rem !important;
  }
  .pt-70mb {
    padding-top: 70rem !important;
  }
  .pb-70mb {
    padding-bottom: 70rem !important;
  }
  .pr-70mb {
    padding-right: 70rem !important;
  }
  .pl-70mb {
    padding-left: 70rem !important;
  }
  .pt-80mb {
    padding-top: 80rem !important;
  }
  .pb-80mb {
    padding-bottom: 80rem !important;
  }
  .pr-80mb {
    padding-right: 80rem !important;
  }
  .pl-80mb {
    padding-left: 80rem !important;
  }
  .pt-90mb {
    padding-top: 90rem !important;
  }
  .pb-90mb {
    padding-bottom: 90rem !important;
  }
  .pr-90mb {
    padding-right: 90rem !important;
  }
  .pl-90mb {
    padding-left: 90rem !important;
  }
  .pt-100mb {
    padding-top: 100rem !important;
  }
  .pb-100mb {
    padding-bottom: 100rem !important;
  }
  .pr-100mb {
    padding-right: 100rem !important;
  }
  .pl-100mb {
    padding-left: 100rem !important;
  }
  .pd-10mb {
    padding: 10rem !important;
  }
  .pd-20mb {
    padding: 20rem !important;
  }
  .pd-30mb {
    padding: 30rem !important;
  }
  .wd-50mb {
    width: 50% !important;
  }
  .wd-80mb {
    width: 80% !important;
  }
  .wd-100mb {
    width: 100% !important;
  }
}

/*=====================================
言語メニュー要素
=====================================*/

#langMenuArea {
  position: absolute;
	width:136rem;
	top: 8rem;
  left: calc(50% + 300rem);
}

ul.langMenu {
	position: relative;
	display: inline-block;
	width: 136rem;
	height: 26rem;
	list-style: none;
	color: #000;
	z-index:9999;
}

ul.langMenu a {
	position: relative;
	display: inline-block;
	width:136rem;
	text-decoration: none;
	text-align:center;
	line-height: 26rem;
	color: #FFF;
	background: url(/pop/images/common/btn_lang_menu.gif) no-repeat ;
  background-size: contain;
}

ul.langMenu li {
	position: relative;
	display: inline-block;
	font-size: 13rem;
	white-space: nowrap;
	display: flex;
	border: none;
}

ul.langMenu ul {
	position: relative;
	display: none;
	border-top: #fff 1rem solid;
}
ul.langMenu > li li {
	clear: left;
	border: #fff 1rem solid;
	border-top: none;
}
ul.langMenu > li li a { background: #4dc9f0; }
ul.langMenu li:hover > a { color: #06F; font-weight:bold; }
ul.langMenu li:hover > ul { position: absolute; display: inline-block; top: 26rem; left: -20rem; }

@media screen and (max-width:767px) {
  #langMenuArea {
    display: none;
  }
}

/* xo-event-calendar
--------------------------*/

.xo-event-calendar table.xo-month button {
  display: flex;
  align-items: center;
  justify-content: center;
}

.content_flex .xo-event-calendar table tr.dayname td:last-child {
  border-right: 1px solid #ccc;
}


/* wp-block
--------------------------*/
.wp-block-file *+.wp-block-file__button {
  color: #fff;
}