@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?&family=Noto+Sans+JP:wght@400;500;700;900&family=Noto+Serif+JP:wght@400;500;700;900&display=swap');

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

html {
	font-size: 62.5%;
	overflow: auto;
}

body {
	position: relative;
	color: #231815;
	font-size: 1.6rem;/*16px*/
	font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Arial", "Yu Gothic", "Meiryo", sans-serif;
	line-height: 1.4;
	-webkit-text-size-adjust: 100%;
	font-variant-ligatures: none;
	padding-top: 125px;
	overflow-x: auto;
}

body.pgfixed {
	position: fixed;
	overflow: clip;
	overscroll-behavior: none;
}

html:has(body.pgfixed) {
	overscroll-behavior: none;
}

a {
	color: #ea3094;
	text-decoration: none;
	transition: 0.3s;
}

a:hover {
	cursor: pointer;
	text-decoration: underline;
}

img {
	pointer-events: none;
	vertical-align: middle;
}

a img {
	transition: 0.3s;
	vertical-align: middle;
}

a:hover img {
	cursor: pointer;
	opacity: 0.7;
}

.spOnly {
	display: none;
}

/* Wrap
****************************************
 */

#Wrap {
	width: 100%;
}

/* header
****************************************
 */

#HeaderWrap {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	border-bottom: 2px solid #2419A6;
	background-color: #fff;
	z-index: 9;
	padding: 0 40px;
}

#header {
	position: relative; 
	width: 100%;
	max-width: 1200px;
	height: 125px;
	margin: 0 auto;
	z-index: 2;
}

#header #logo_home {
	position: absolute;
	width: 193px;
	top: 15px;
	left: 0;
}

#header #logo_home a {
	overflow: hidden;
	display: block;
	width: 100%;
	height: 0;
	background: url(../img/logo_home.png) no-repeat left top;
	background-size: 100% auto;
	padding-top: 97px;
}

#header #logo_home a:hover {
	opacity: 0.7;
}

#header #logo_ywbch {
	position: absolute;
	width: 246px;
	top: 45px;
	left: 200px;
}

#header #logo_ywbch a {
	overflow: hidden;
	display: block;
	width: 100%;
	height: 0;
	background: url(../img/logo_ywbch.png) no-repeat left top;
	background-size: 100% auto;
	padding-top: 30px;
}

#header #logo_ywbch a:hover {
	opacity: 0.7;
}

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

/* ナビ メイン */

#navi ul.menu01 {
	position: absolute;
	bottom: 10px;
	right: 0;
	display: flex;
	justify-content: space-between;
	width: 780px; /* 337px */
	margin-top: 80px;
}

#navi ul.menu01 > li {
	display: flex;
	justify-content: center;
	align-items: center;

	position: relative;
	height: 30px;
}

#navi ul.menu01 > li a {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #231815;
	line-height: 1.2;
	text-decoration: none;
}

/* current */

#navi ul.menu01 li a:hover,
#about #navi ul.menu01 > li:nth-child(2) > a,
#program #navi ul.menu01 > li:nth-child(3) > a,
#registration #navi ul.menu01 > li:nth-child(4) > a,
#abstract #navi ul.menu01 > li:nth-child(5) > a,
#information #navi ul.menu01 > li:nth-child(6) > a,
#sponser #navi ul.menu01 > li:nth-child(7) > a,
#contact-us #navi ul.menu01 > li:nth-child(8) > a {
	color: #0067C0;
}

#navi ul.menu01 li a:hover::after {
	width: 20px;
	visibility: visible;
	opacity: 1;
}

#navi ul.menu01 > li > .dropdown_list {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: 30px;
	left: -1em;
	background-color: #fff;
	/* transform: rotate3d(1, 0, 0, -90deg); */
	transform: rotateX(-90deg);
	transform-origin: 0 0;
	transition: all 1s;
}
#navi ul.menu01 li:hover > .dropdown_list {
	display: block;
	width: 240px;
	visibility: visible;
	opacity: 1;
	transform: none;
	box-shadow: 0px 2px 5px 0px rgb(0 0 0 / 10%);
}

#navi ul.menu01 li:nth-child(2):hover > .dropdown_list {
	width: 340px;
}

#navi ul.menu01 > li > .dropdown_list li {
	width: 100%;
	height: 48px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

#navi ul.menu01 > li > .dropdown_list a {
	background-color: #ffffff;
	display: block;
	justify-content: flex-start;
	align-items: center;
	position: relative;
	width: 100%;
	height: 100%;
	padding: 15px 1em;
}

#navi ul.menu01 > li > .dropdown_list a:hover {
	padding-left: 30px;
}

#navi ul.menu01 > li > .dropdown_list a::before {
	display: block;
	content: '';
	position: absolute;
	background-color: #2419A6;
	width: 0;
	height: 5px;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	transition: all .3s ease-in-out;
}

#navi ul.menu01 > li > .dropdown_list a:hover::before {
	width: 5px;
}

}


/* Common
****************************************
 */

/* Contents
--------------------------------------*/

.Contents_Wrap {
	position: relative;
	width: 100%;
	border-bottom: 1px solid #2419A6;
	padding: 80px 40px;
}

.Contents {
	width: 100%;
	max-width: 1200px;
	min-height: 400px;
	margin: 0 auto;
}

/* Title
--------------------------------------*/

/* h1 */

.titleWrap {
	width: 100%;
	background-color: #fbe6ef;
	padding: 0 40px;
}

.titleWrap .titleCol {
	overflow: hidden;
	position: relative; 
	display: flex;
	justify-content: center;
	flex-direction: column;
	width: 100%;
	max-width: 1200px;
	height: 180px;
	color: #e4007f;
	margin: 0 auto;
}

.titleWrap .titleCol::before {
	position:absolute;
	content: "";
	width: 420px;
	height: 420px;
	top: 35px;
	right: -15px;
	background-image: url(../img/nadeshiko.svg);
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 100% auto;
	filter: invert(93%) sepia(93%) saturate(0%) hue-rotate(228deg) brightness(107%) contrast(107%);
	opacity: 0.75;
	margin: auto;
}

.titleWrap .titleCol p {
	font-size: 1.8rem;
	color: #2419A6;
}

.titleWrap .titleCol p::before,
.titleWrap .titleCol p::after {
	content: "-";
	margin: 0 0.5em;
}

.titleWrap .titleCol h1 {
	display: inline-block;
	font-size: 3.8rem;
	line-height: 1.2;
	font-weight: bold;
	padding-left: 0.25em;
	z-index: 2;
}

/* h2 */

h2 {
	font-size: 2.8rem;
	font-weight: bold;
	line-height: 1.2;
	color: #2419A6;
	border-left: 6px solid #2419A6;
	padding-left: 1em;
	margin-bottom: 1.5em;
}

/* h3 */

h3 {
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 1.2;
	margin-bottom: 0.75em;
}

/* h4 */

h4 {
	font-size: 2.2rem;
	font-weight: bold;
	line-height: 1.2;
	margin-bottom: 0.75em;
}

/* h5 */

h5 {
	font-size: 2.0rem;
	font-weight: bold;
	line-height: 1.2;
	margin-bottom: 0.75em;
}

/* h6 */

h6 {
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.2;
	margin-bottom: 0.75em;
}

/* Read
--------------------------------------*/

.readCol {
	margin-bottom: 2em;
}

/* List
--------------------------------------*/

/* ul */

ul.dot,ul.cir {	
	position: relative;
}

ul.dot li,ul.cir li {
	position: relative;
	padding-left: 1.5em;
	margin-bottom: 0.25em;
}

ul.dot li::before,ul.cir li::before {
	position: absolute;
	top: 0.5em;
	left: 0.25em;
	display: inline-block;
	content: "";
	width: 0.3em;
	height: 0.3em;
	background-color: #231815;
	border-radius: 9999px;
}

ul.cir li::before {
	width: 0.5em;
	height: 0.5em;
}

.dot.lbg_blue li::before,
.cir.lbg_blue li::before {
	background-color: #2419A6;
}

.dot.lbg_pink li::before,
.cir.lbg_pink li::before {
	background-color: #e4007f;
}

.dot.lbg_gray li::before,
.cir.lbg_gray li::before {
	background-color: #727171;
}

/* ol */

ol.num {
	margin-left: 1.5em;
}

ol.num li {
	list-style-type: decimal;
	margin-bottom: 0.25em;
}

/* attention */

.atsn,.atsn_list li {
	position: relative;
	padding: 0.25em 0.25em 0.25em 1.25em;
}

.atsn::before,.atsn_list li::before {
	position: absolute;
	top: 0.5em;
	left: 0.25em;
	display: inline-block;
	content: "*";
}

/* pg_no */

 ul li.pg_no, ol li.pg_no {
	list-style-type: none;
	padding-left: 0;
	margin-left: -1.0em;
}

/* Link
--------------------------------------*/

.link_next a,.link_pdf a,.link_out a,
.icn_call,.icn_mobile,.icn_mail,.icn_person {
	position: relative;
	display: inline-block;
	font-weight: bold;
	padding: 0 0 0 2em;
}

.icn_call,.icn_mobile,.icn_mail,.icn_person {
	padding: 0 0 0 2.5em;
}

.link_next a::before,.link_pdf a::before,.link_out a::before,
.icn_call::before,.icn_mobile::before,.icn_mail::before,.icn_person::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 1.5em;
	height: 1.5em;
	filter: invert(62%) sepia(52%) saturate(903%) hue-rotate(297deg) brightness(103%) contrast(91%);
	background-size: 100% auto;
}

.icn_call::before,.icn_mobile::before,.icn_mail::before,.icn_person::before {
	top: -0.25em;
	width: 2.0em;
	height: 2.0em;
}

.icn_person::before {
	top: -0.5em;
	left: -0.35em;
	width: 2.5em;
	height: 2.5em;
}

.link_next li a,.link_pdf li a ,.link_out li a {margin-bottom: 0.25em;}
.link_next a::before {background-image: url(../img/arrow_circle_right.svg);}
.link_pdf a::before {background-image: url(../img/picture_as_pdf.svg);}
.link_out a::before {background-image: url(../img/link_2.svg);}
.icn_call::before {background-image: url(../img/call.svg);}
.icn_mobile::before {background-image: url(../img/mobile.svg);}
.icn_mail::before {background-image: url(../img/mail.svg);}
.icn_person::before {background-image: url(../img/person.svg);}

/* button */

.linkbtn_01,.linkbtn_02,.linkbtn_03,.linkbtn_04 {
	width: 300px;
}

.linkbtn_01 a,.linkbtn_02 a,.linkbtn_03 a,.linkbtn_04 a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 100%;
	font-size: 1.8rem;
	color: #fff;
	font-weight: bold;
	letter-spacing: 1px;
	background-color: #f37aa8;
	padding: 0.5em 0;
	border-radius: 9999px;
}

.linkbtn_02 a {	background-color: #4c4398;}
.linkbtn_03 a {	background-color: #762475;}
.linkbtn_04 a {	background-color: #2419A6;}

.linkbtn_01 a::before,.linkbtn_01 a::after,
.linkbtn_02 a::before,.linkbtn_02 a::after,
.linkbtn_03 a::before,.linkbtn_03 a::after,
.linkbtn_04 a::before,.linkbtn_04 a::after {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 1em;
	margin: auto;
	content: "";
	vertical-align: middle;
}

.linkbtn_01 a::before,.linkbtn_02 a::before,.linkbtn_03 a::before,.linkbtn_04 a::before {
	box-sizing: border-box;
	width: 1.25em;
	height: 1.25em;
	background-color: #fff;
	border-radius: 9999px;
}
.linkbtn_01 a::after,.linkbtn_02 a::after,.linkbtn_03 a::after,.linkbtn_04 a::after {
	right: 1.5em;
	width: 6px;
	height: 6px;
	border-top: 2px solid #f37aa8;
	border-right: 2px solid #f37aa8;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.linkbtn_02 a::after {
	border-top: 2px solid #4c4398;
	border-right: 2px solid #4c4398;
}

.linkbtn_03 a::after {
	border-top: 2px solid #762475;
	border-right: 2px solid #762475;
}

.linkbtn_04 a::after {
	border-top: 2px solid #2419A6;
	border-right: 2px solid #2419A6;
}

.linkbtn_01 a:hover,.linkbtn_02 a:hover,.linkbtn_03 a:hover,.linkbtn_04 a:hover {
	text-decoration: none;
	opacity: 0.7;
}

/* hr_line */

hr {
	height: 0;
	margin: 3em 0;
	padding: 0;
	border: 0;
}

hr.gray {border-top: 1px solid #ddd;}
hr.blue {border-top: 1px solid #2419A6;}
hr.pink {border-top: 1px solid #f37aa8;}

/* color
--------------------------------------*/

/* font color */

.fc_pink_1 { color: #e4007f;}
.fc_pink_2 { color: #f37aa8;}
.fc_pink_3 { color: #ee86b4;}
.fc_pink_4 { color: #fadae8;}
.fc_white { color: #fff;}
.fc_gray_1 { color:#727171;}
.fc_gray_2 { color:#999999;}
.fc_blue_purple { color: #4c4398;}
.fc_violet { color: #69318f;}
.fc_blue { color: #2419A6;}
.fc_blue_1 { color: #eaf4ff;}

/* bg_color */

.bg_pink_1 { background-color: #e4007f;}
.bg_pink_2 { background-color: #f37aa8;}
.bg_pink_3 {background-color: #ee86b4;}
.bg_pink_4 {background-color: #fadae8;}
.bg_white {background-color: #fff;}
.bg_dark_red {background-color:#231815;}
.bg_gray_1 {background-color:#727171;}
.bg_gray_2 {background-color:#efefef;}
.bg_blue_purple {background-color: #4c4398;}
.bg_violet {background-color: #69318f;}
.bg_blue {background-color: #2419A6;}
.bg_blue_1 {background-color: #eaf4ff;}


/* border_color */

.bd_pink_1 {border: 1px solid #e4007f;}
.bd_pink_2 {border: 1px solid #f37aa8;}
.bd_pink_3 {border: 1px solid #ee86b4;}
.bd_pink_4 {border: 1px solid #fadae8;}
.bd_white {border: 1px solid #fff;}
.bd_dark_red {border: 1px solid #231815;}
.bd_gray_1 {border: 1px solid #727171;}
.bd_gray_2 {border: 1px solid #efefef;}
.bd_blue_purple {border: 1px solid #4c4398;}
.bd_violet {border: 1px solid #69318f;}
.bd_blue {border: 1px solid #2419A6;}
.bd_blue_1 {border: 1px solid #eaf4ff;}


/* Column
--------------------------------------*/

.Col1,.Col2,.Col3 {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.Col1 .inrCol,.Col2 .inrCol,.Col3 .inrCol {
	flex: none;
}

.Col1 .inrCol {
	width: 100%;
}

.Col2 .inrCol {
	width: 47.92%;/* 575-1200 */
	margin-top: 2em;
}

.Col3 .inrCol {
	width: 30%;/* 360-1200 */
	margin-top: 2em;
}

.Col2 .inrCol:nth-child(-n+2),
.Col3 .inrCol:nth-child(-n+3) {
	margin-top: 0;
}


.Col1 .inrCol .pic,
.Col2 .inrCol .pic,
.Col3 .inrCol .pic {
	flex: none;
	width: 100%;
}

.Col1 .inrCol .pic img,
.Col2 .inrCol .pic img,
.Col3 .inrCol .pic img {
	width: 100%;
	height: auto;
}

/* Table
--------------------------------------*/

/* scrollCol */

.scrollCol {
  background-color: #fff;
  padding: 0 0 20px 0;
  overflow-x: scroll;
  -ms-overflow-style: none;
  /* IE, Edge 対応 */
  scrollbar-width: none;
  /* Firefox 対応 */
}
.scrollCol::-webkit-scrollbar {
  /* Chrome, Safari 対応 */
  display: none;
}
.simplebar-scrollbar::before {
  background: #999;
  border-radius: 0;
  height: 8px !important;
  margin-left: 2px;
  margin-top: 0;
  border-radius: 5px;
}
.simplebar-scrollbar.simplebar-visible::before {
  opacity: 1;
}
.simplebar-track {
  background: #efefef;
  height: 12px !important;
}

/* Table */

table th.center,table td.center {
	text-align: center;
}

table th.left,table td.right {
	text-align: right;
}

table th.left,table td.left {
	text-align: left;
}

table table.type_0 {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

table table.type_0 td {
	border-collapse:collapse;
	border: none !important;
	padding: 1px;
}

table.type_1 {
	border-collapse:collapse;
	border: 1px solid #c9caca;
	background-color: #fff;
}

table.type_1 th {
	font-weight: bold;
}

table.type_1 th, table.type_1 td {
	padding: 12px 20px;
	border-collapse:collapse;
	border: 1px solid #c9caca;
}

table.type_2 {
	width: 100%;
	border-collapse:collapse;
	border-top: 1px solid #c9caca;
}

table.type_2 th, table.type_2 td {
	padding: 20px 0;
	border-collapse:collapse;
	vertical-align: top;
	border-bottom: 1px solid #c9caca;
}

table.type_2 th:nth-child(odd), table.type_2 td:nth-child(odd) {
	padding-right: 20px;
}

table.type_2 th {
	font-weight: bold;
	border-bottom: 1px solid #c9caca;
}

/*box*/

.box_round {
	width: 100%;
	padding: 2em;
	margin: 0 auto;
	border-radius: 15px;
}

.box_square {
	width: 100%;
	padding: 2em;
	margin: 0 auto;
}

/*margin*/

.mt0 { margin-top: 0 !important; }
.mt1 { margin-top: 1em !important; }
.mt2 { margin-top: 2em !important; }
.mt3 { margin-top: 3em !important; }
.mt4 { margin-top: 4em !important; }
.mt5 { margin-top: 5em !important; }
.mt10 { margin-top: 10em !important; }

.mb0 { margin-bottom: 0 !important; }
.mb1 { margin-bottom: 1em !important; }
.mb2 { margin-bottom: 2em !important; }
.mb3 { margin-bottom: 3em !important; }
.mb4 { margin-bottom: 4em !important; }
.mb5 { margin-bottom: 5em !important; }
.mb10 { margin-bottom: 10em !important; }

.pd0 { padding: 0 !important; }
.pd1 { padding: 1em !important; }
.pd2 { padding: 2em !important; }
.pd3 { padding: 3em !important; }
.pd10 { padding: 10em !important; }

/*radius*/	
.bdr15 { border-radius: 15px; }

/*width*/

.wd50 { width: 50% !important; }
.wd100 { width: 100% !important; }


/* PersonCol
--------------------------------------*/

.chairpersonCol {

}

.chairpersonCol .personCol {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	border-top: 1px dashed #4c4398;
	padding-top: 2em;
	margin-top: 2em;
}

.chairpersonCol .personCol:nth-child(1) {
	border-top: none;
	padding-top: 0;
	margin-top: 0;
}

.chairpersonCol .picCol {
	flex: none;
	width: 13.33%;/* 160-1200 */
}

.chairpersonCol .picCol img {
	width: 100%;
	height: auto;
	border-radius: 5px;
	box-shadow: 5px 5px 5px 0px #d6d6d6;
}

.chairpersonCol .txtCol {
	flex: none;
	width: 83.33%;/* 900-1200 */
}

.chairpersonCol .txtCol h3 {
	margin-bottom: 0.5em;
}

.chairpersonCol .txtCol .jp {
	margin-bottom: 0.25em;
}

.chairpersonCol .txtCol .career {
	margin-top: 1em;
}

/* HOME
***************************************
 */

/* Slider
--------------------------------------*/

#home #SliderWrap {
	width: 100%;
	/* max-height: 350px; */
	border-bottom: 1px solid #2419A6;
}

/* 
--------------------------------------*/

#home .Contents_Wrap {
	padding: 0 40px;
	margin-top: 0;
}

/* greeting
--------------------------------------*/

#home .greetingCol {
	overflow:hidden;
	position: relative; 
	width: 100%;
	border-left: 26px solid #2419A6;
	padding: 70px 0 55px 250px;
}

#home .greetingCol::before {
	position:absolute;
	content: "";
	width: 167px;
	height: 100%;
	top: 15px;
	left: 25px;
	background-image: url(../img/nadeshiko_l.svg);
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 100% auto;
	filter: invert(93%) sepia(93%) saturate(0%) hue-rotate(228deg) brightness(107%) contrast(107%);
	opacity: 1;
}

#home .greetingCol::after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 220px;
	height: 100%;
	background-color: #e1efff;
	z-index: -1;
}

#home .greetingCol .txtCol {
	font-size: 1.7rem;
	z-index: 999;
}

#home h2.greeting {
	border-left: none;
	padding-left: 0;
	margin-bottom: 0.5em;
}

#home .greetingCol .txtCol .chairman {
	margin-top: 3em;
}

/* popup */

#home #click-btn {
	display: inline-block;
	color: #e4007f;
	font-weight: bold;
	border: 1px solid #e4007f;
	background-color: #fff;
	padding: 5px 20px;
	cursor: pointer;
	border-radius: 9999px;
	transition: 0.3s;
}


#home #click-btn:hover {
	background-color: #f9e6ef;
}


#home #popup-wrapper {
	background-color: rgba(0, 0, 0, .5);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 0 40px;
	display: none;
	overflow: auto;
	z-index: 9;
}

#home #popup-inside {
	position: relative;
	width: 1200px;
	max-width: 100%;
	background-color: #fff;
	padding: 40px;
	margin: 10% auto;
	box-shadow: 5px 5px 5px 0 rgba(10,10,10,0.25);
}

#home #message {
	text-align: left;
	font-family: 'Noto Serif JP', serif;
	font-size: 1.4rem;
	line-height: 1.8;
	font-weight: 500;
}

#home #message h2.greeting {
	font-size: 2.4rem;
	border-left: none;
	padding-left: 0;
	margin-bottom: 1em;
}

#home .closebox {
	position: absolute;
	top: 40px;
	right: 40px;
	cursor: pointer;
}

#home .closebox #close {
	display: block;
	position: relative;
	width: 30px;
	height: 30px;
}

#home .closebox #close::before, #home .closebox #close::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 4px;
	height: 30px;
	background-color: #2419A6;
	border-radius: 2.5px;
}

#home .closebox #close::before {
	transform: translate(-50%,-50%) rotate(45deg);
}

#home .closebox #close::after {
	transform: translate(-50%,-50%) rotate(-45deg);
}


/* About Conference
****************************************
 */

/* Program
****************************************
 */

/* Registration
****************************************
 */

#registration .contact_info ul li:nth-child(1) {
	border-right: 2px solid #ccc;
	padding-right: 2em;
	margin-right: 2em;
}

/* Information
****************************************
 */

/* Venue
--------------------------------------*/

.venue .qrCol {
	display: flex;
	justify-content: space-between;
	align-items: start;
	flex-wrap: wrap;
	margin: 0 auto;
}

.venue .qrCol .txt {
	flex: none;
	width: calc(100% - 160px);
}

.venue .qrCol .pic {
	flex: none;
	overflow:hidden;
	width: 140px;
	text-align: center;
}

.venue .qrCol .pic img {
	width: 100%;
	height: auto;
	border: 1px solid #ccc;
}

.venue .mapCol {
	width: 800px;
	background-color:#efefef;
	padding: 1em;
	margin: 0 auto;
}

.venue .mapCol img {
	width: 100%;
	height: auto;
}

/* Sponsor
****************************************
 */

/* Contact Us
****************************************
 */

#contact-us .Col2.contact_info .inrCol {
	padding: 1em;
	background-color: #efefef;
	border-radius: 15px;
}

/* banner
****************************************
 */

#BannerWrap {
	width: 100%;
	padding: 0 40px;
	margin-top: 40px;
}

#BannerWrap .bnrCol {
	width: 1060px;
	padding: 20px 0;
	margin: 0 auto;
}

#BannerWrap .bnrCol h6 {
	font-size: 1.4rem;
	color: #727171;
	border-bottom: 1px solid #efefef;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

#BannerWrap .bnrCol ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

#BannerWrap .bnrCol ul li {
	width: 250px;
	margin-right: 20px;
}

#BannerWrap .bnrCol ul li:nth-child(n+5) {
	margin-top: 20px;
}

#BannerWrap .bnrCol ul li:nth-child(4n) {
	margin-right: 0;
}

#BannerWrap .bnrCol ul li a {
	display: inline-block;
	border: 1px solid #efefef;
	transition: 0.3s;
}

#BannerWrap .bnrCol ul li a img {
	width: 100%;
	height: auto;
}

#BannerWrap .bnrCol ul li.logotype {
	text-align: center;
}

#BannerWrap .bnrCol ul li.logotype a {
	border: none;
}

#BannerWrap .bnrCol ul li.logotype.w30 img {width: 30%;}
#BannerWrap .bnrCol ul li.logotype.w40 img {width: 40%;}
#BannerWrap .bnrCol ul li.logotype.w50 img {width: 50%;}
#BannerWrap .bnrCol ul li.logotype.w75 img {width: 75%;}
#BannerWrap .bnrCol ul li.logotype.w90 img {width: 90%;}

#BannerWrap .bnrCol ul li a:hover img { 
	text-decoration: none;
	opacity: 0.7;
}

/* Footer
****************************************
 */

#FooterWrap {
	position: relative; 
	width: 100%;
	background-color: #eaf4ff;
	padding: 20px 40px;
	margin-top: 40px;
}

/* footer */

#FooterWrap #footer {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

/* Copyright */

.copyright {
	font-size: 1.2rem;
	text-align: center;
	margin: 0 auto;
}


/*  floating-menu
----------------------------------------------- */

#pagetop {
	position: fixed;
	right: 35px;
	bottom: 140px;
	width: 54px;
	height: 54px;
	background-color: #2419A6;
	border-radius: 9999px;
	transition: 0.3s;
	z-index: 9;
}

#pagetop a {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
}

#pagetop a span {
  position: relative;
  display: inline-block;
  width: 2px;
  height: 18px;
  margin: 32% 46%;
  border-radius: 9999px;
  background-color: #fff;
}

#pagetop a span::before,
#pagetop a span::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 1px);
  width: 2px;
  height: 12px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: 50% 1px;
}

#pagetop a span::before {
  transform: rotate(45deg);
}

#pagetop a span::after {
  transform: rotate(-45deg);
}

#pagetop:hover { 
	opacity: 0.7;
}

/* 404・error
--------------------------------------*/

body#error .errCol {
	overflow: hidden;
	width:800px;
	text-align:left;
	background-image: url(../../images/error_bg.png);
	background-repeat: repeat;
	padding: 24px;
	margin: 60px auto 0 auto;
}

body#error .errCol .inr {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	background-color: #fff;
	padding: 20px;
}

body#error .errCol .ttl {
	font-size: 2.0rem; /*20px*/
	font-weight: bold;
	margin-bottom: 10px;
}

body#error .errCol .pic {
	width:140px;
	height: 0;
	background-image: url(../../images/error_logo.gif);
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 100% auto;
	padding-top: 90px;
}

body#error .errCol .txt {
	width: calc(100% - 180px);
}

body#error .errCol .home_link {
	width: 100%;
	margin-top: 30px;
}


/* PC 1300px以上 Settings スクロールバー非表示
********************************************************************************
*/


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

body {
	overflow-x: hidden;
}

}


/* PC 1300px以下 Settings
********************************************************************************
*/

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

}

/* for SP Settings（スマホ）
********************************************************************************
*/


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


body {
	font-size: 1.4rem;/*14px*/
	line-height: 1.4;
	padding-top: 0;
}

.pcOnly {
	display: none;
}
.spOnly {
	display: inline-block;
}

br.spOnly {
	display: inline;
}

a {
	-webkit-tap-highlight-color:rgba(0,0,0,0);
}

/* Wrap
****************************************
 */

#Wrap {
	width: 100%;
}

/* header
****************************************
 */

#HeaderWrap {
	position: relative;
	padding: 0 2.67vw;
}

#header {
	width: 100%;/* 710 */
	height: 16.67vw;/* 125 */
	z-index: 9;
}

#header #logo_home {
	width: 21.33vw;/* 160 */
	top: 2.67vw;
	left: 0;
}

#header #logo_home a {
	padding-top: 50.63%;/* 81 */
}

#header #logo_ywbch {
	width: 32vw; /* 240 */
	top: 6.13vw;
	left: 24vw;
}

#header #logo_ywbch a {
	padding-top: 4vw; /* 30 */
}

/* ナビ メイン */

#navi ul.menu01 {
	display: block;
	position: relative;
	width: 92vw;/* 690 */
	margin: 16vw auto 0 auto;
	gap: 0;
	border: solid 1px #e8e8e8;
	border-bottom: solid 1px #fff;
}

#navi ul.menu01 > li {
	display: block;
	font-size: 1.8rem;
	text-align: left;
	margin: 0;
}

#navi ul.menu01 li > .dropdown_list {
	display: none;
	position: relative;
	padding: 0.5em 0;
	border-bottom: solid 1px #e8e8e8;
}

#navi ul.menu01 > li a {
	display: block;
	position: relative;
	padding: 1em;
	padding-left: 2em;
	width: 100%;
	height: 100%;
	color: #234443;
	text-decoration: none;
	
}
#navi ul.menu01 > li > a {
	border-bottom: solid 1px #e8e8e8;
}
#navi ul.menu01 > li > .dropdown_list li a {
	font-size: 1.7rem;
	padding: 0.5em 0 0.5em 3em;
	
}
#navi ul.menu01 > li:has(ul) > a::after {
	display: flex;
	position: absolute;
	justify-content: center;
	align-items: center;
	top: 0px;
	bottom: 0px;
	right: 20px;
	left: auto;
	margin: auto;
	width: 22px;
	height: 22px;
	content: "＋";
	color: #fff;
	background-color: #2419A6;
	opacity: 1;
	z-index: 1;
}
#navi ul.menu01 > li:has(ul) > a.is-open::after {
	content: "－";
}

/* ハンバーガー */

.navToggle {
	position: absolute;
	top: 3.2vw;
	right: 0;
	display: block;
	width: 8.99vw;/* 62 */
	height: 8.99vw;
	background-color: #2419A6;
	border-radius: 5px;
	cursor: pointer;
	z-index: 99;
}
.navToggle span {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 50%;
	border-bottom: solid 2px #fff;
	transition: .35s ease-in-out;
}
.navToggle span:nth-child(1) {
	top: 2.75vw;
}
.navToggle span:nth-child(2) {
	top: 4.49vw;
}
.navToggle span:nth-child(3) {
	top: 6.23vw;
}

.navToggle.active span:nth-child(1) {
	top: 4.2vw;
	border-bottom: solid 2px #fff;
	transform: translateX(-50%) rotate(-45deg);
}

.navToggle.active span:nth-child(2), .navToggle.active span:nth-child(3) {
	top: 4.2vw;
	border-bottom: solid 2px #fff;
	transform: translateX(-50%) rotate(45deg);
}

/* ナビ */

#header #navi {
	display: none;
}

#header #navi.active {
	position: fixed ;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color:#fff;
	overflow: auto;
}

body.pgfixed {
	position: fixed;
	overflow: clip;
	overscroll-behavior: none;
}

html:has(body.pgfixed) {
	overscroll-behavior: none;
}

/* Common
****************************************
 */

/* Contents
--------------------------------------*/

.Contents_Wrap {
	padding: 5.33vw 2.67vw;
}

.Contents {
	max-width: 100%;
	min-height: auto;
}

/* Title
--------------------------------------*/

/* h1 */

.titleWrap {
	padding: 0 2.67vw;
}

.titleWrap .titleCol {
	max-width: 100%;
	height: auto;
	min-height: 18.67vw;/* 140 */
	padding: 2.67vw 0;
}

.titleWrap .titleCol::before {
	width: 48vw;
	height: 48vw;
	top: 2.67vw;
	right: -2.67vw;
}

.titleWrap .titleCol p {
	font-size: 1.2rem;
	margin-bottom: 0;
}

.titleWrap .titleCol p span::before,
.titleWrap .titleCol p span::before {
	content: "";
	margin: 0 0 0 4px;
}

.titleWrap .titleCol h1 {font-size: 2.4rem;}

/* h2 */

h2 {font-size: 2.2rem;}

/* h3 */

h3 {font-size: 2.0rem;}

/* h4 */

h4 {font-size: 1.8rem;}

/* h5 */

h5 {font-size: 1.6rem;}

/* h6 */

h6 {font-size: 1.4rem;}


/* Read
--------------------------------------*/

/* List
--------------------------------------*/

/* ul */
/* ol */
/* attention */

/* Link
--------------------------------------*/

/* button */

.linkbtn_01,.linkbtn_02,.linkbtn_03,.linkbtn_04 {
	width: 64vw;
}

.linkbtn_01 a,.linkbtn_02 a,.linkbtn_03 a,.linkbtn_04 a {
	font-size: 1.5rem;
}

/* color
--------------------------------------*/

/* font color */
/* bg_color */
/* border_color */

/* Column
--------------------------------------*/

.Col1,.Col2,.Col3 {
	flex-direction: column;
}

.Col1 .inrCol,.Col2 .inrCol,.Col3 .inrCol {
	width: 100%;
}

.Col2 .inrCol:nth-child(-n+2),
.Col3 .inrCol:nth-child(-n+3) {
	margin-top: 2em;
}

.Col2 .inrCol:nth-child(1),.Col3 .inrCol:nth-child(1) {
	margin-top: 0;
}

/* Table
--------------------------------------*/

/* scrollCol */

/* Table */

table.type1 th, table.type1 td {
	padding: 3.2vw 4vw;

}

table.type2 th, table.type2 td {
	padding: 3.2vw 0;
}

table.type2 th:nth-child(odd), table.type2 td:nth-child(odd) {
	padding-right: 3.2vw;
}

/*box*/

.box_line {
	padding: 5.33vw;
}

.box_bg {
	padding: 5.33vw;
}

/*margin*/
/*radius*/	
/*width*/


/* PersonCol
--------------------------------------*/

.chairpersonCol {

}

.chairpersonCol .personCol {
	flex-direction: column;
}

.chairpersonCol .picCol {

	width: 40vw;/* 300 */
	margin: 0 auto;
}

.chairpersonCol .txtCol {
	margin-top: 1.5em;
}

/* HOME
***************************************
 */

/* Slider
--------------------------------------*/

#home #SliderWrap {
	min-height: auto;
}

/* 
--------------------------------------*/

#home .Contents_Wrap {
	padding: 0;
}

#home .Contents {
	max-width: 100%;
}

/* greeting
--------------------------------------*/

#home .greetingCol {
	border-left: 20px solid #2419A6;
	padding: 5.33vw 2.67vw 5.33vw 10.67vw;
}

#home .greetingCol::before {
	width: 6.67vw;
	height: 100%;
	top: 2vw;
	left: 2vw;
}

#home .greetingCol::after {
	width: 40vw;
}

#home .greetingCol .txtCol {
	font-size: 1.4rem;
}

#home h2.greeting {
	font-size: 2.0rem;
}

/* popup */

#home #popup-wrapper {
	padding: 0 2.67vw;
}

#home #popup-inside {
	padding: 4vw;
}

#home #message {
	font-size: 1.4rem;
	line-height: 1.6;
}

#home #message h2.greeting {
	font-size: 1.8rem;
}

#home .closebox {
	top: 4vw;
	right: 4vw;
}

#home .closebox #close {
	width: 20px;
	height: 20px;
}

#home .closebox #close::before, #home .closebox #close::after {
	width: 2px;
	height: 20px;
}

/* About Conference
****************************************
 */

/* Program
****************************************
 */

/* Registration
****************************************
 */

#registration .contact_info ul {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
}

#registration .contact_info ul li:nth-child(1) {
	border-right: none;
	padding-right: 0;
	margin-right: 0;
}

#registration .contact_info ul li:nth-child(2) {
	margin-top: 1.5em;
}

/* Information
****************************************
 */

/* Venue
--------------------------------------*/

.venue .qrCol {
	width: 100%;
}

.venue .qrCol .txt {
	width: 100%;
}

.venue .qrCol .pic {
	display: none;
}

.venue .mapCol {
	width: 100%;
}

/* Sponsor
****************************************
 */

/* Contact Us
****************************************
 */

/* banner
****************************************
 */

#BannerWrap {
	padding: 0 2.67vw;
	margin-top: 2.67vw;
}

#BannerWrap .bnrCol {
	width: 100%;
	padding: 2.67vw 0;
}

#BannerWrap .bnrCol h6 {
	font-size: 1.2rem;
	padding-bottom: 1.33vw;
	margin-bottom: 2.67vw;
}

#BannerWrap .bnrCol ul {
	justify-content: space-between;
}

#BannerWrap .bnrCol ul li {
	width: 45vw;
	margin-right: 0;
}

#BannerWrap .bnrCol ul li:nth-child(n+3) {
	margin-top: 2.67vw;
}

#BannerWrap .bnrCol ul li:nth-child(n+5) {
	margin-top: 2.67vw;
}

#BannerWrap .bnrCol ul li:nth-child(4n) {
	margin-right: 0;
}

/* Footer
****************************************
 */

#FooterWrap {
	padding: 2.67vw 5.33vw;
	margin-top: 5.33vw;
}

/* footer */

#FooterWrap #footer {
	max-width: 100%;
}

/* Copyright */

.copyright {
	font-size: 0.9rem;
}

/*  floating-menu
--------------------------------------*/

#pagetop {
	right: 2.67vw;
	bottom: 6.67vw;
	width: 8vw;/*60px*/
	height: 8vw;
}

#pagetop a span {
  width: 0.27vw;
  height: 2.4vw;
  margin: 36% 48% 0;
}

#pagetop a span::before,
#pagetop a span::after {
  width: 0.27vw;
  height: 1.6vw;
}

/* 404・error
--------------------------------------*/

body#error .errCol {
	width: 89.33%;/* 670 */
	padding: 2.67vw;
	margin: 5.33vw auto 0 auto;
	box-sizing: border-box;
}

body#error .errCol .inr {
	flex-direction: column;
	padding: 2.67vw;
}

body#error .errCol .ttl {
	font-size: 1.6rem; /*16px*/
}

body#error .errCol .pic {
	width:18.67vw;
	height: 0;
	float:none;
	padding-top: 12vw;
	margin: 0 auto 20px;
}

body#error .errCol .txt {
	width:100%;
}

}


/* for small SP（320）
****************************************
 */

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

html {
	font-size: 50%;
}

/* Copyright */

.copyright {
	font-size: 0.6rem; /*6px*/
}

}