@charset "utf-8";


/*リセットCSS*/
@import url("reset.css");

/*slick.css*/
@import url("https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css");

/*Font Awesome*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css");



/*--ベース設定--*/
html,body {
	margin: 0;padding: 0;
	overflow-x: hidden;
	font-size: 14px;
}

body {
	font-family: "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	-webkit-text-size-adjust: none;
	background: #fff;
	color: #333;
	line-height: 2;
}

/*リセット*/
figure {margin: 0;}
dd {margin: 0;}
nav {margin: 0;padding: 0;}

/*table*/
table {border-collapse:collapse;}

/*画像*/
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}

/*videoタグ*/
video {max-width: 100%;}

/*iframeタグ*/
iframe {width: 100%;}

/*ul,olタグ*/
ul, ol {margin-bottom: 30px;}

/*sectionタグ*/
section + section {
	margin-top: 3em;
}


/*リンク*/
a {
	color: #333;
	transition: 0.3s;
	text-decoration: none;
}
a:hover {
	opacity: 0.8;
}


/*container*/
#container {
	width: 100%;
}


/*header*/
header #logo_wrap {
	line-height: 1;
	display: flex;
	justify-content: space-between;
	max-width: 1100px;
	margin: 1em auto;
}
header #logo_wrap > p {
  height: fit-content;
  margin: 0;
  padding: 0.4em 0.5em 0.2em;
  color: #c63527;
  font-size: clamp(0.75rem, 0.523rem + 1.14vw, 1.375rem);
  font-weight: 700;
  border: #c63527 1px solid;
  border-radius: 5px;
  line-height: 1.6;
}

header #logo {
	margin: 0 1em 10px 0;
	width: 450px;
	height: auto;
}
header #logo.eng {
	width: 450px;
}

/*menubar*/
#menubar ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

#menubar {
	display: none;
}
/*開閉*/
#menubar.db {display: block;}
#menubar.dn {display: none;}

#mainmenu {
	background-color: #41b22f;
}
#menubar ul {
	max-width: 1100px;
	margin: 0 auto;
}
#menubar ul li {
	background-color: #41b22f;
}
#menubar a {
	display: flex;
  align-items: center;
  height: 100%;
	text-decoration: none;
	text-align: center;	
	color: #fff;
	padding: 1em 0;
}
#menubar ul li:hover {
	background: #379928;
}



/*小さな端末用の開閉ブロック設定
---------------------------------------------------------------------------*/
.s #menubar.db {
	position: fixed;overflow: auto;z-index: 100;
	left: 0px;top: 0px;
	width: 100%;
	height: 100%;
	animation: animation1 0.2s both;
	background: #fff;
	padding: 5%;
}

.s #menubar.db a {
	display: block;
	padding: 5px 20px;
	text-align: left;
}


/*開閉ブロック内のsubmenu
---------------------------------------------------------------------------*/
.sh ul.submenu li {
	background: transparent !important;
}
.sh ul.submenu li a {
	color: #555 !important;
}

/*ドロップダウン*/
#menubar .ddmenu_parent ul {
	display: none;
}

#menubar a.ddmenu::before {
	font-family: "Font Awesome 5 Free";
	content: "\f078";
	font-weight: bold;
	margin-right: 0.5em;
}

#menubar .ddmenu_parent ul a {
	padding: 0.8em 1em;
	background: #fff !important;
	color: #707070 !important;
	border: 1px solid #707070;
	border-top: none;
	text-align: left;
}


/*ハンバーガー*/
#menubar_hdr {
	display: block;
	position: fixed;z-index: 100;
	top: 5px;
	right: 1%;
	width: 50px;
	height: 50px;
	cursor: pointer;
	background: #41b22f url("../img/ham_menu.png") no-repeat center top/50px;
	transition: 0.2s;
}
#menubar_hdr:hover {
	filter: brightness(1.1);
}
#menubar_hdr.ham {
	background: #41b22f url("../img/ham_menu.png") no-repeat center bottom/50px;
}


/*contents*/
#contents {
	margin: 3%;
}


/*main*/
main {
	order: 0;
	margin-bottom: 40px;
}

main h2 {
	padding: 0.25em 0 0.25em 0.5em;
	margin: 0 0 1em;
  background: #e9ffe6;
  border-left: solid 5px #41b22f;
	font-size: 1.5em;
  line-height: 1.4;
}

main h3 {
  position: relative;
	font-size: 1.3em;
	padding: 0 0.8em 0 1.3em;
	margin: 2em 0 1em;
	line-height: 1.4;
}
main h3:before {
  position: absolute;
  content: "";
  background: #f89400;
  left: 0;
  width: 15px;
  height: 18px;
  top: 45%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

main h4 {
	position: relative;
	font-size: 1.1em;
	padding: 0 0 0 1em;
	margin: 1em 0 0.8em;
	line-height: 1.4;
}
main h4::before {
  position: absolute;
  top: 0.2em;
  left: 0;
  content: "";
  width: 0.3em;
  height: 0.8em;
  background-color: #00a2dd;
}

main p {
	margin: 0 0 0.8em;
}

.f_color {
	color: #f89400;
}
.f_color02 {
	color: #00a2dd;
  border-bottom: #00a2dd 1px solid;
}
.red {
  color: red;
}
.f_red {
	font-weight: 700;
  color: red;
}
.f_s {
	font-size: 80%;
}
.f_b {
	font-weight: 700;
}
.f_bb {
	font-size: 1.2em;
	font-weight: 700;
}
.f_bb2 {
	font-size: 1.5em;
	font-weight: 700;
}
.f_bbor {
	font-weight: 700;
  border-bottom: #707070 1px solid;
}

.flex_box {
	display: flex;
	justify-content: flex-start;
	max-width: 1100px;
	margin: 1em auto;
}
.flex_box02 {
	display: block;
}
.flex_box > h4 {
	margin-top: 0.1em;
}

.line_box {
	display: block;
  width: 100%;
  margin: 1em 0;
	padding: 0.8em;
  border: #ddd 4px solid;
  border-radius: 5px;
}
.line_box02 {
	display: block;
  width: 70%;
  margin: 1em auto;
	padding: 0.8em;
  border: #ddd 1px solid;
  border-radius: 5px;
}
.line_box02 > .flex_box02 {
  margin: 0;
}

.fl_r {
  float: right;
  margin-left: 0.5em;
}
.txt_c {
  text-align: center;
}
.txt_r {
  text-align: right;
}
.txt_deco {
  text-decoration: line-through;
}
.txt_deco02{
  position: relative;
  color: #158b2b;
  font-size: 1.8em;
  padding: 0.3em 0;
  text-align: center;
  margin: 1.5em 0;
  font-weight: 700;
  line-height: 1.8;
}
.txt_deco02:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30%;
  height: 135%;
  border-radius: 50%;
  border: 5px solid #a6ddb0;
  border-left-color: transparent;
  border-right-color: transparent;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}
.marker_or {
background: linear-gradient(transparent 60%, #f7c67c 0%);
}
.wid30,
.wid48,
.wid70 {
  width: 100%;
}
.wid30 img,
.wid48 img,
.wid70 img {
  width: 100%;
}
.wid30.bor {
  margin-bottom: 1em;
  padding: 5px;
  border: #ddd 1px solid;
  text-align: center;
}
.wid30.bor img {
  max-height: 250px;
}
.mb1 {
  margin-bottom: 1em!important;
}
.mb3 {
  margin-bottom: 3em!important;
}
.mtb1 {
  margin-top: 1em!important;
  margin-bottom: 1em!important;
}
.mtb2 {
  margin-top: 2em!important;
  margin-bottom: 2em!important;
}
.mr1 {
  margin-right: 1em!important;
}
.m_all { margin: auto;}

.bb_solid {
  margin-bottom: 1em ;
  padding-bottom: 1em;
  border-bottom: #ddd 1px solid;
}

/*パンくず*/
#breadcrumbs{
  display: block;
  margin: 0 0 2em;
  padding: 0;
}
#breadcrumbs ul{
  display: flex;
  margin: 0;
  padding: 0;
}
#breadcrumbs li{
  font-size: 0.8em;
}
#breadcrumbs li::after{
  content: '>';
  display: inline-block;
  padding: 0 10px; /*左右に余白*/
}
#breadcrumbs li:last-child::after{
  display: none;
}
#breadcrumbs li a{
	color: #0066C0;
}

/*sub*/
#sub {
	order: 1;
}
#sub {
	font-size: 0.9rem;
}
#sub h2 {
	margin: 0;
	padding: 0.5em 0.1em;
	background-color: #ddd;
	text-align: center;
	font-size: 1em;
	font-weight: 700;
}

/*submenu*/
ul.submenu {
	list-style: none;
	padding: 0;
	margin: 0;
	margin-bottom: 20px;
}
ul.submenu li {
	display: block;
	margin: 0;
	background: #fff;
	border-bottom: solid 1px #ddd;
}
ul.submenu li a {
	display: block;
	position: relative;
	padding: 0.3em 0.1em;
	text-decoration: none;
}
ul.submenu li a:hover {
	background-color: #707070;
	color: #fff;
}
ul.submenu li a::after {
	font-family: "Font Awesome 5 Free";
	content: "\f054";
	font-weight: bold;
	position: absolute;
	right: 0.5em;
}

/*calendar*/
.calendar {
  display: block;
  width: auto;
  height: 100vw;
  max-height: 720px;
	padding: 0.8em;
	margin-bottom: 20px;
	border: 1px solid #707070;
}
.calendar iframe {
	display: block;
  width: 100%;
  height: 100%;
}

/*フッター*/
footer {
	background-color: #f2f2f2;
	padding: 1em 0;
}
#footer_inner {
	display: flex;
  justify-content: space-between;
	max-width: 1100px;
	margin: auto;
	padding: 1em;
}

#footer_logo {
	display: inline-block;
  width: 30%;
	margin: auto 0;
	padding: 0;
}
#footer_logo a {
	display: inline-block;
}
#footer_logo a img {
  width: 100%;
	max-width: 344px;
}
/*フッターメニュー*/
#footermenu {
	display: block;
	width: auto;
	margin: 0 0 0 auto;
  padding-top: 1em;
	font-size: 0.8em;
}
#footermenu a {
	text-decoration: none;
	color: #333;
}
#footermenu ul {
  display: flex;
  flex-wrap: wrap;
	width: 100%;
	margin: 0 0 1em;
	padding: 0;
	list-style: none;
}
#footermenu li a {
  display: inline-block;
  position: relative;
	color: #333;
  margin-right: 1em;
	padding-left: 1.2em;
}
#footermenu li a::before {
	font-family: "Font Awesome 5 Free";
	content: "|";
	font-weight: bold;
	position: absolute;
	left: 0;
}
#footermenu li:first-child a::before {
	display: none;
}
#footermenu li:last-child a {
  margin-right: 0;
}
footer small {
	display: block;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
	padding: 0;
	background-color: #f2f2f2;
	color: #707070;
	font-size: 0.6em;
  text-align: center;
}

ul.li_disc {
  margin: 1em 0;
  padding: 0 0 0 2.8em;
  list-style: disc;
}
ul.li_disc li {
  margin: auto 0.2em 0.3em 0;
  line-height: 1.6;
}

ol.li_deci {
  margin: 1em 0;
  padding: 0 0 0 1.5em;
  list-style: decimal;
}
ol.li_deci li {
  margin: auto 0 0.3em 0;
  line-height: 1.6;
}

ol.step {
  list-style-type: none;
  counter-reset: num;
  padding-left: 2em;
  margin-left: 4em;
}
ol.step li {
  position: relative;
  padding: 0 0.5em 0.5em 1em;
}
ol.step li:before,
ol.step li:after {
  position: absolute;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: #fff;
}
ol.step li:before {
  width: 60px;
  left: -60px;
  height: 30px;
  padding-right: 0.4em;
  border-radius: 5px;
  background-color: #00a2dd;
  content: '\A 'counter(num);
  counter-increment: num;
  top: 0;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 0;
}
ol.step li:after {
  width: auto;
  left: -53px;
  top: 3px;
  content: 'STEP';
  font-size: 12px;
}

/*スライドショー*/
.mainimg {
	position: relative;
	width: 100%;
	margin: 0 auto 3em;
}
#application.mainimg{
	position: relative;
  display: block;
	width: 100%;
  max-width:1100px;
  height: 36vw;
  max-height: 440px;
	margin: 0 auto 2em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
}
#application.mainimg {
  background-image: url("../img/application_vsl.jpg");
}
.mainimg > h2 {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 0;
  font-size: 3em;
  line-height: 1.6;
  letter-spacing: 5px;
}
.mainimg > h2 span {
  width: auto;
  height: auto;
  display: inline-block;
  margin-top: 0.5em;
  padding: 0.2em 0.5em;
  background-color: rgba(255,255,255,0.8);
  text-align: center;
  font-weight: normal;
  line-height: 1.2;
}
#symposium.mainimg > h2 {
  display: block;
  position: absolute;
  top: 0.8em;
  left: 0;
  height: auto;
  text-align: center;
  z-index: 2;
}

.slid_txt {
  display: block;
  position: absolute;
  bottom: 5em;
  left: 2%;
  width: 60%;
  max-width: 550px;
  margin: auto;
  padding: 0.8em 0.5em;
  background-color:rgba(255,255,255,0.8);
  text-align: center;
  z-index: 10;
}
.slid_txt p {
  margin: 0;
  padding: 0;
  color: #000;
  font-size: 1.2em;font-weight: 700;
  line-height: 1.4;
}
.slider-2 {
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 751px){
div.slick-list.draggable{
	height:440px;
}
}

.slider-2 .slick-slide {
  width: 100vw;
  height: auto;
  margin: 0;
  position: relative;
  overflow: hidden;
}
.slider-2 .slick-slide img {
  display: block;
  width: 100%;
  max-width: 1100px;
  height: 100%;
  margin: 0 auto;
  object-fit: cover;
}
.slider-2 .slick-arrow {
  width: 40px;
  height: 60px;
  background-color: #4da9ff;
  cursor: pointer;
  border: none;
  outline: none;
  font-size: 0;
  position: absolute;
  top: 50%;
  margin-top: -30px;
  z-index: 1;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
  opacity: 0.7;
}
.slider-2 .slick-arrow:hover {
  opacity: 1;
}
.slider-2 .slick-arrow::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid #fff;
  border-width: 3px 3px 0 0;
  position: absolute;
  top: 24px;
  transform: rotate(45deg);
}
.slider-2 .slick-next {
  right: 0;
}
.slider-2 .slick-prev {
  left: 0;
}
.slider-2 .slick-next::before {
  left: 15px;
}
.slider-2 .slick-prev::before {
  border-width: 0 0 3px 3px;
  right: 15px;
}
.dots-2 .slick-dots {
  margin: 0;
  padding: 0;
  text-align: center;
}
.dots-2 .slick-dots li {
  display: inline-block;
}
.dots-2 .slick-dots button {
  display: block;
  width: 30px;
  height: 10px;
  margin: 6px;
  font-size: 0;
  padding: 0;
  border: #f89400 1px solid;
  outline: none;
  cursor: pointer;
  background: #fff;
}
.dots-2 .slick-dots .slick-active button {
  background: #f89400;
}

/*お知らせ*/
#new {
	display: flex;
	flex-wrap: wrap;
	max-height: 10vw;
	overflow-y: scroll;
	margin: 0 0 1em;
	padding: 0 1em;
}
#new dt,
#new dd {
	padding: 0.2em 0;
  border-bottom: #ddd 1px solid;
}
#new dt {
	display: flex;
	justify-content: space-between;
  width: 100%;
	min-width: 12em;
}
#new dt span {
	display: inline-block;
	min-width: 6em;
	background: #999;
	color: #fff;
	font-size: 0.9em;
	text-align: center;
	border-radius: 3px;
	margin-right: 1.2em;
	align-self: flex-start;
	line-height: 1.8;
	position: relative;
	top: 0.3em;
}
#new dt span.tab-bg1 {
	background-color: #0066C0;
}
#new dt span.tab-bg2 {
	background-color: #ff667d;
}
#new dd {
	width: 100%;
}
#new_sec > p {
	text-align: right;
}


/*ボタン*/
.btn {
	text-align: center;
}
.btn a,
.btn input {
	display: inline-block;
	text-decoration: none;
	border: none;
	color: #333;
	border-radius: 3px;
	padding: 15px 40px;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
	font-size: 1rem;
	background: #ddd;
	letter-spacing: 0.1em;
}

.btn a:hover,
.btn input:hover {
	cursor: pointer;
	filter: brightness(1.1);
}

.btn02_box {
	display: flex;
	justify-content: center;
  margin-top: 2em;
  margin-bottom: 2em;
	padding-bottom: 1em;
}
.btn02_box02 {
	display: flex;
	justify-content: space-between;
  margin-bottom: 2em;
	padding: 1em;
	background-color: #f2f2f2;
}
.btn02 {
	display: inline-block;
  position: relative;
	padding: 1em 1.5em;
	border: #41b22f 1px solid;
	color: #fff;
	font-size: 1em;
	text-decoration: none;
	text-align: center;
	background: #41b22f;
	letter-spacing: 0.1em;
}
.btn02:hover,
.btn02.on {
	color: #41b22f;
	background: #fff;
  opacity: 1;
}
.btn02.on:hover {
	color: #fff;
	background: #41b22f;
}
.btn02.blue {
	border: #00a2dd 1px solid;
	color: #fff;
	background: #00a2dd;
}
.btn02.blue:hover {
	color: #00a2dd;
	background: #fff;
}
.btn02.orange {
	border: #f89400 1px solid;
	color: #fff;
	background: #f89400;
}
.btn02.orange:hover {
	color: #f89400;
	background: #fff;
}
.btn02_box.col3 .btn02{
	width: 23%;
  margin: auto 0.5em;
}
.btn02_box02.col3 .btn02{
	width: 33%;
  margin: auto;
  padding: 0.8em 0;
  line-height: 1.4;
}
.btn02.outside::after {
  margin-left: 0.3em;
	font-family: "Font Awesome 5 Free";
	content: "\f35d";
	font-weight: bold;
}


/*矢印*/
.btn.arrow a::after {
	font-family: "Font Awesome 5 Free";
	content: "\f0a9";
	color: #333;
	font-weight: bold;
	display: inline-block;
	padding-left: 15px;
	transform: scale(1.4);
	transition: 0.3s;
}
.btn.arrow a:hover::after {
	transform: scale(1.6);
}

/*テキストリンク*/
.txt_link {
	position: relative;
	padding: 0;
  border-bottom: #00a2dd 1px solid;
  color: #00a2dd;
	text-decoration: none;
}
.txt_link02 {
	position: relative;
  margin-right: 0.3em;
	padding: 0.2em 0.5em 0.2em 0.1em;
  color: #00a2dd;
	text-decoration: none;
}
.txt_link02::after {
	font-family: "Font Awesome 5 Free";
	content: "\f35d";
	font-weight: bold;
  margin-left: 0.5em;
}
.txt_link02b {
	position: relative;
	padding: 0.2em 1.5em 0.2em 0.1em;
	text-decoration: none;
}
.txt_link02b::after {
	font-family: "Font Awesome 5 Free";
	content: "\f35d";
	font-weight: bold;
	position: absolute;
	right: 0;
}

/*sns*/
.insta_btn {
  display: inline-block;
  text-align: center;
  color: #2e6ca5;
  font-size: 1.5em;
  text-decoration: none;
}

.insta_btn:hover {
  color:#668ad8;
  transition: .5s;
}

.insta_btn .insta{
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  overflow: hidden;
  border-radius: 10px;

}

.insta_btn .insta:before{
  content: '';
  position: absolute;
  top: 23px;
  left: -18px;
  width: 50px;
  height: 50px;
  background: -webkit-radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
  background: radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
}

.insta_btn .fa-instagram {
  color: #FFF;
  position: relative;
  z-index: 2;
  font-size: 1.5em;
  line-height: 40px;
}

/*テーブル*/
table caption {
	font-weight: bold;
	padding: 10px 5px;
  line-height: 1.4;
}
table caption.left {
	text-align: left;
  font-size: 1.2em;
}
table {
	table-layout: fixed;
	width: 100%;
	margin: 0 auto;
}
table th, table td {
	padding: 0.8em;
	word-break: break-all;
	border: #ddd 1px solid;
	vertical-align: top;
}
table th {
	width: auto;
	background-color: #f8f8ff;
}
table td.w_22 {
	width: 220px;
}
table.no_fix {
	table-layout: inherit;
}
table.last_cell tr>*:last-child {
	text-align: center;
}
table.ce td {
	text-align: center;
}
table.t_wid50 {
  width: 50%;
  margin-left: 0;
}


/*form*/
form {
  margin: 2em auto;
}
.login{
  width: 350px;
  height: auto;
  margin: auto;
  padding: 1em;
  background-color: #e6e6e6;
  text-align: center;
  z-index: 2;
}
.login input{
  width: 250px;
  height: 30px;
  background: #fff;
  border: 0;
  border-radius: 2px;
  color: #333;
  font-size: 1.2em;
  padding: 0.3em;
  margin-bottom: 1em;
}
.login input[type=submit]{
  width: 260px;
  height: 35px;
  background: #fff;
  border: 1px solid #fff;
  cursor: pointer;
  border-radius: 2px;
  color: #737373;
  font-size: 1.2em;
  margin-bottom: 0;
  padding: 0.3em;
}

.login input[type=submit]:hover{
  opacity: 0.8;
}

.login input[type=submit]:active{
  opacity: 0.6;
}

.login input[type=text]:focus{
  outline: none;
  border: 1px solid rgba(255,255,255,0.9);
}

.login input[type=password]:focus{
  outline: none;
  border: 1px solid rgba(255,255,255,0.9);
}

.login input[type=submit]:focus{
  outline: none;
}

::-webkit-input-placeholder{
   color: #333;
}

::-moz-input-placeholder{
   color: #333;
}

.login #err{
  color: #BA211F;
  font-size: 1em;
  margin-top: 1em;
  background-color: #FCE3E2;
  border: 1px solid #BA211F;
}

/*PAGE TOP*/
.pagetop-show {display: block;}

.pagetop a {
	display: block;
  text-decoration: none;
  text-align: center;
	position: fixed;
	z-index: 99;
	right: 20px;
	bottom: 20px;
	color: #fff;
	font-size: 1.5rem;
	background: rgba(0,0,0,0.3);
	width: 60px;
	line-height: 60px;
  border-radius: 50%;
}
.pagetop a:hover {
	background: rgba(0,0,0,0.5);
}


/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-theme, .color-theme a {color: #66abf9 !important;}
.color-check, .color-check a {color: #f00 !important;}
.c {text-align: center !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.mb30 {margin-bottom: 30px !important;}
.look {display: inline-block;padding: 0px 10px;background: #666; color: #fff; border-radius: 3px;margin: 5px 0;}
.look .color-check {color: #ffcc00 !important;}
.small {font-size: 0.6em;}
.sn {display: none;}
.sm {display: block;}


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


/*header*/
  header #logo_wrap {
    justify-content: flex-start;
    margin-top: 2em;
  }
header #logo {
	width: 240px;
}
header #logo.eng {
	width: 260px;
}
#menubar {
	display: none;
}
#menubar ul {
	margin-top: 40px;
}
.mainimg > h2 {
  font-size: 1.5em;
}
#symposium.mainimg > h2 {
  top: inherit;
  bottom: 1.5em;
}

.slid_txt {
  display: none;
}
#new {
	max-height: 30vw;
}
.content dl dt {
  border-bottom: none;
}

#sub {
  display: none;
}
#footer_inner {
  display: block;
}
#footer_logo {
	width: 100%;
  text-align: center;
}
#footermenu {
  display: none;
  }
table.t_wid50 {
  width: 100%;
}

.btn02 {
	padding: 0.5em;
}
.btn02_box.col3 .btn02{
	width: 33%;
}
.btn02_box02{
	display: block;
}
.btn02_box02.col3 .btn02{
	width: 100%;
  margin-bottom: 0.5em;
}
.btn02_box02.col3 .btn02:last-child{
  margin-bottom: 0;
}
.txt_deco02{
  font-size: 1.4em;
  margin: 2em 0;
}
.txt_deco02:before {
  width: 50%;
}

}



@media screen and (min-width:700px) {
  header #logo_wrap {
    justify-content: flex-start;
    margin-top: 2em;
  }
#menubar {
	display: none;
}
#new {
	max-height: 30vw;
}
/*お知らせ*/
.content dl dt {
	width: 10em;
}
.content dl dd {
	width: calc(100% - 11em);
}
  
#new dt {
	width: 12em;
}
#new dd {
	width: calc(100% - 12em);
}

#sub {
  display: none;
}
  
.flex_box02 {
	display: flex;
	justify-content: space-between;
	max-width: 1100px;
	margin: 1em auto;
}

.wid30 {
  width: 30%;
}
.wid48 {
  width: 48%;
}
.wid70 {
  width: 68%;
}
.sm {display: none;}
}



@media screen and (min-width:1000px) {

html, body {
	font-size: 15px;
}


/*header*/
header #logo_wrap {
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
header #logo {
	margin: 0;
}

/*menubar*/
#menubar {
	display: block;
}
#menubar ul {
	display: flex;
	justify-content: space-around;
	line-height: 1.6;
}

#menubar ul li a {
	padding: 1em 2em;
}

/*ドロップダウン*/
#menubar .ddmenu_parent{
	position: relative;	
}
#menubar .ddmenu_parent ul {
	position: absolute;
	z-index: 100;
	width: 230px;
}
/*ハンバーガー*/
#menubar_hdr {display: none;}

.slid_txt p {
  font-size: 1.5em;
}

/*contents*/
#contents {
	display: flex;
	max-width: 1100px;
	margin: 2em auto;

}
/*main*/
main {
	flex: 1;
	order: 1;
	margin: 0;
}
/*sub*/
#sub {
	width: 250px;
	margin-right: 30px;
	order: 0;
}



#new.cms dt {width: 8em;}
#new.cms dd {width: calc(100% - 8em);}

#footer_inner {
	padding: 1em 0;
}
#footer_logo a img {
	width: 344px;
}

.txt_deco02:before {
  width: 20%;
}

/*その他
---------------------------------------------------------------------------*/
.ws {width: 48%;display: inline;}
.sn {display: block;}
.sh,.sm {display: none;}


}
