/*===============================
MARK: root 
=================================*/
html {
	scroll-behavior: smooth;
}

:root {
	--fz10: 0.625rem;
	--fz12: 0.75rem;
	--fz13: 0.8125rem;
	--fz14: 0.875rem;
	--fz16: 1rem;
	--fz17: 1.0625rem;
	--fz18: 1.125rem;
	--fz20: 1.25rem;
	--fz22: 1.375rem;
	--fz24: 1.5rem;
	--fz26: 1.625rem;
	--fz28: 1.75rem;
	--fz30: 1.875rem;
	--fz32: 2rem;
	--fz34: 2.125rem;
	--fz36: 2.25rem;
	--fz38: 2.375rem;
	--fz40: 2.5rem;
	--c-navy: #0e3192;
	--c-black: #333333;
	--c-red: #d3350f;
	--c-blue: #0c94d6;
	--c-pink: #fce5e5;
	--c-link: #0c94d6;
}

/*===============================
MARK: common
=================================*/

body {
	position: relative;
	overflow-x: hidden;
	font-family:
		'M PLUS 1', 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo,
		sans-serif;
	font-weight: 500;
	-webkit-font-smoothing: antialiased;
	background: #fff;
	color: var(--c-black);
	letter-spacing: 0.05em;
	clip-path: inset(0);
}

body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	z-index: -10;
	width: 100%;
	height: 100%;
	background: url(../images/main_bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

a {
	transition: 0.3s;
	color: var(--c-link);
}

a:hover {
	opacity: 0.8;
}

img {
	width: 100%;
}

.main-wrap {
	width: min(100%, 1080px);
	padding-inline: 20px;
	margin-inline: auto;
	margin-top: 10px;
	display: flex;
	gap: 30px;
}

.container {
	width: min(100%, 1080px);
	padding-inline: 15px;
	margin-inline: auto;
}

.page-content {
	width: 100%;
}

.d-flex {
	display: flex;
	align-items: start;
	justify-content: start;
}

.tb-content {
	display: none;
}

.sp-content {
	display: none;
}

.indent1em {
	text-indent: -1em;
	margin-left: 1em;
}

.indent2em {
	text-indent: -2em;
	margin-left: 2em;
}

.text-center {
	text-align: center !important;
}

.text-right {
	text-align: right !important;
}

.c-white,
.c-white * {
	color: #fff;
}

.c-red,
.c-red * {
	color: var(--c-red);
}

.mt1em {
	margin-top: 1em;
}

.message {
	margin-top: 15px;
	border: 1px solid #d3350f;
	background: #fff;
	padding: 10px 15px;
	line-height: 1.7;
	margin-bottom: 10px;
}

/*===============================
MARK: BTN
=================================*/

.btn {
	position: relative;
	display: inline-block;
	line-height: 1.5;
	text-decoration: none;
	padding: 1.3em 2.2em;
	font-weight: 700;
	background: var(--c-blue);
	color: #fff;
	border: 2px solid #fff;
	border-radius: 20px;
}

.btn:hover {
	color: var(--c-blue);
	background-color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 0 5px rgb(0 0 0 / 0.25);
	border-color: var(--c-blue);
	opacity: 1;
}

.btn::after {
	content: '';
	width: 10px;
	height: 10px;
	border: 0;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	position: absolute;
	top: 50%;
	right: 1em;
	transform: translateY(-50%) rotate(45deg);
	transition: 0.3s;
}

.btn:hover::after {
	border-color: var(--c-blue);
}

.btn-training {
	border-radius: 50em;
	font-size: 12px;
	padding: 1em 1.5em;
}

.btn-training::after {
	content: none;
}

/*===============================
MARK: header
=================================*/
.site-header {
	position: relative;
	padding: 0;
	width: 100%;
}

.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: min(100%, 1080px);
	padding: 10px 20px 17px 20px;
	margin-inline: auto;
}

.site-logo {
	display: inline-block;
	width: clamp(320px, 77vw, 1009px);
}

.site-logo img {
	display: block;
	max-width: 100%;
}

/*===============================
MARK: NAV
=================================*/
#js-sp-nav {
	flex-shrink: 0;
	width: 100%;
	max-width: 240px;
}

#js-sp-nav .main-nav {
	list-style: none;
	margin-block: 0 20px;
}

.main-nav li {
	margin-bottom: 9px;
}

.main-nav button,
.main-nav a {
	position: relative;
	display: block;
	text-decoration: none;
	color: #fff;
	font-weight: 700;
	width: 100%;
	line-height: 1;
	padding: 0.7em 1em 0.7em 1em;
	text-align: left;
	transition: all 0.1s;
	border: 1px solid #fff;
	border-radius: 15em 50em 50em 15em;
	background: #0e3192;
	background: linear-gradient(
		90deg,
		rgba(14, 49, 146, 1) 0%,
		rgba(12, 61, 151, 1) 30%,
		rgba(9, 93, 166, 1) 88%,
		rgba(8, 103, 171, 1) 100%
	);
	box-shadow: 0 0 14px rgb(255 255 255 / 1);
}

.main-nav li button:hover,
.main-nav li a:hover,
.main-nav li.active a {
	background: linear-gradient(
		90deg,
		rgba(255, 255, 255, 1) 0%,
		rgba(255, 255, 255, 1) 30%,
		rgba(255, 255, 255, 1) 88%,
		rgba(255, 255, 255, 1) 100%
	);
	color: var(--c-navy);
	border-color: var(--c-navy);
	opacity: 1;
}

.sub-menu {
	height: 0;
	overflow: hidden;
}

.active .sub-menu {
	height: auto;
}

.sub-menu li {
	padding-left: 10px;
	list-style: none;
	margin-top: 9px;
}

.main-nav li .sub-menu li a {
	background: var(--c-blue);
	box-shadow: none;
	color: #fff;
	border-color: #fff;
}

.main-nav li .sub-menu li.active a,
.main-nav li .sub-menu li a:hover {
	border-color: var(--c-navy);
	background-color: #fff;
	color: var(--c-navy);
}

.nav-inner .btn {
	display: flex;
	align-items: center;
	border-radius: 15px;
	border: 2px solid #fff;
	box-shadow: none;
	padding: 1em 3em 1em 1em;
	margin-bottom: 10px;
	background: var(--c-blue);
	color: #fff;
	height: 74px;
}

.nav-inner .btn::after {
	content: '';
	display: block;
	border: none;
	transform: translateY(-50%);
	background-repeat: no-repeat;
	background-size: contain;
	right: 0.5em;
}

.nav-inner .btn.btn-registration {
	background: var(--c-red);
}

.nav-inner .btn.btn-registration::after {
	background-image: url(../images/icon_apply.svg);
	width: 11%;
	height: 33%;
}
.nav-inner .btn.btn-login::after {
	background-image: url(../images/icon_login.svg);
	width: 11%;
	height: 36%;
	right: 0.6em;
}
.nav-inner .btn.btn-book::after {
	background-image: url(../images/icon_book.svg);
	width: 11%;
	height: 33%;
	right: 0.7em;
}

.nav-inner .btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 0 5px rgb(0 0 0 / 0.25);
}

/*===============================
MARK: TOP-CONTENT
=================================*/

#mv {
	position: relative;
	width: 100%;
}

.mv-image img {
	display: block;
}

.on-demand-message {
	position: absolute;
	top: 33%;
	padding: 0 15px;
}
.on-demand-message .inner {
	background: rgba(255, 255, 255, 0.85);
	padding: 15px;
	border-radius: 17px;
	border: 2px solid #ff685d;
}
.on-demand-message h3 {
	border-bottom: 2px solid #ff685d;
	margin-bottom: 0.5em;
	padding-bottom: 0.3em;
	font-size: min(2.3vw, 1.125rem);
}
.on-demand-message p {
	font-size: min(1.5vw, 1rem);
}
.on-demand-message p:last-of-type {
	margin-top: 1em;
}

#news {
	margin-top: 30px;
	background: #fff;
	padding: 20px 20px 10px 20px;
	border-radius: 25px;
}

#news .heading h3 {
	border-bottom: 1px solid #dddddd;
	padding-bottom: 0.5em;
}

#news .heading h3 img {
	max-width: 11.5em;
}

.news-list {
	list-style: none;
	padding-right: 10px;
	min-height: 180px;
	max-height: 240px;
	margin-top: 1em;
	overflow: auto;
}

.news-item {
	display: flex;
	align-items: start;
	justify-content: start;
	gap: 14px;
	border-bottom: 1px solid #dddddd;
	padding: 1.2em 0;
}

.news-date {
	position: relative;
	padding-left: 1.5em;
	font-weight: 800;
	color: #5d5d5d;
}

.news-date::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 1em;
	height: 1em;
	background-image: url(../images/news_list.png);
	background-repeat: no-repeat;
	background-size: contain;
}

/*===============================
MARK: footer
=================================*/
.site-footer {
	position: relative;
	margin-top: 100px;
	background: #ffffff;
	background: linear-gradient(0deg, rgba(255, 255, 255, 1) 91%, rgba(255, 255, 255, 0) 100%);
}

#page-top {
	position: fixed;
	text-decoration: none;
	right: 30px;
	bottom: 40px;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
}

#page-top.show {
	opacity: 1;
	visibility: visible;
}

#page-top a {
	position: relative;
	display: block;
	background: #0e3192;
	background: linear-gradient(
		180deg,
		rgba(14, 49, 146, 1) 0%,
		rgba(12, 61, 151, 1) 30%,
		rgba(9, 93, 166, 1) 88%,
		rgba(8, 103, 171, 1) 100%
	);
	border: 1px solid #fff;
	border-radius: 10px;
	width: 40px;
	height: 40px;
}

#page-top a::after {
	content: '';
	display: block;
	color: #fff;
	line-height: 1;
	width: 0.5em;
	height: 0.5em;
	border: 1px solid currentColor;
	border-left: 0;
	border-bottom: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: rotate(-45deg) translateY(-50%) translateX(-25%);
}

.secretariat {
	width: min(100%, 1080px);
	padding: 75px 20px 80px 20px;
	margin-inline: auto;
	display: flex;
}

.secretariat .conference,
.secretariat .operation {
	flex: 1;
}

.secretariat dt {
	font-weight: 500;
	font-size: var(--fz14);
}

.secretariat dt span {
	display: inline-block;
	background: #1a1311;
	padding: 4px 8px 3px 8px;
	border-radius: 5px;
	color: #fff;
}

.secretariat dd {
	margin-top: 10px;
}

.secretariat dd h4 {
	font-size: var(--fz20);
}

.secretariat dd .address {
	font-size: var(--fz14);
	margin-top: 10px;
	line-height: 1.6;
}

.copyright {
	position: relative;
	padding-block: 1.5em;
	font-size: var(--fz12);
	text-align: center;
	background: #1a1311;
}

.copyright .d-flex {
	justify-content: space-between;
}

/*===============================
MARK: 下層ページ
=================================*/
.lower-page p {
	margin-bottom: 1em;
	line-height: 1.7;
}

.lower-page ol,
.lower-page ul {
	padding-left: 1.5em;
}

.lower-page ol li {
	margin-bottom: 1em;
}

.lower-page h3 {
	position: relative;
	padding-left: 1.8em;
	padding-block: 0.3em;
	margin-block: 2em 1em;
	font-size: clamp(1.125rem, calc(1.0514705882352942rem + 0.29411764705882354vw), 1.25rem);
	font-weight: 600;
	line-height: 1.6;
	background: #dbeaf3;
	border-radius: 50em;
}

.lower-page h3::before {
	content: '';
	display: block;
	width: 1em;
	height: 1em;
	background-color: #fff;
	position: absolute;
	top: 50%;
	left: 1%;
	transform: translateY(-50%);
	border-radius: 50%;
}

.lower-page h4 {
	padding: 0.6em 10px 0.3em 1em;
	margin-block: 1.5em 1em;
	background: #fffcd1;
	color: var(--c-navy);
	border-left: 3px solid var(--c-navy);
	font-size: clamp(1rem, calc(0.921875rem + 0.3125vw), 1.125rem);
	font-weight: 700;
	line-height: 1.6;
}

.lower-page h5 {
	padding-bottom: 0.2em;
	margin-block: 1em 0.8em;
	border-bottom: 1px dashed var(--c-navy);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.6;
}

.lower-page .page-inner {
	background: #fff;
	padding: 20px 20px;
	border-radius: 20px;
}

.page-ttl {
	font-size: clamp(1.5rem, calc(1.3529411764705883rem + 0.5882352941176471vw), 1.75rem);
	color: #fff;
	background: linear-gradient(
		90deg,
		rgba(14, 49, 146, 1) 0%,
		rgba(12, 61, 151, 1) 30%,
		rgba(9, 93, 166, 1) 88%,
		rgba(8, 103, 171, 1) 100%
	);
	border-radius: 15em 50em 50em 15em;
	letter-spacing: 0.1em;
	padding: 0.3em 0.5em;
	margin-bottom: 1em;
}

.getting-ready {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 20vh;
}

.getting-ready .inner {
	border-radius: 25px;
	padding: 1em 2.5em;
	box-shadow: 0 0 20px rgb(0 0 0 /0.1);
}

.getting-ready p {
	margin-bottom: 0;
	color: var(--c-navy);
}

.lower-page section:not(:first-of-type) {
	padding-top: 1.8em;
}

.chairman {
	justify-content: end;
	align-items: end;
	font-size: var(--fz14);
	gap: 1em;
}

.katagaki {
	text-align: right;
}

.chairman .img-wrap {
	max-width: 180px;
}

.table {
	border-collapse: collapse;
	width: 100%;
}

.table th,
.table td {
	border-bottom: 1px solid #ddd;
	padding: 1em;
}
.table th {
	border-bottom: 1px solid #ddd;
	font-weight: bold;
	text-align: center;
	width: 20%;
	min-width: 4em;
}

.table-common {
	margin-bottom: 0.8em;
}

.table-common th,
.table-common td {
	border: 1px solid;
}

.table-common th {
	text-align: left;
	background: #eee;
	width: auto;
}

.btn-wrap.entry {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
	grid-column-gap: 30px;
	grid-row-gap: 30px;
}

.dl-table {
	display: flex;
	border-bottom: 1px solid var(--c-black);
}

.dl-table > dt,
.dl-table > dd {
	padding: 1.2em 15px;
}

.dl-table dt {
	background: var(--c-l-blue);
	font-weight: 700;
	width: 35%;
}

.dl-table dd {
	flex: 1;
}

.border {
	border: 1px solid var(--c-navy);
	padding: 0.8em;
	margin-bottom: 1em;
}

.attention {
	border: solid 2px var(--c-red);
	padding: 10px;
	margin-top: 1em;
}

.lower-page.registration .page-inner {
	padding-bottom: 100px;
}

.training ol {
	padding-left: 2em;
}

.training ol li {
	margin-bottom: 30px;
}

.training .btn-wrap {
	margin-top: 10px;
}

.timeline-item {
	margin-bottom: 40px;
}

.timeline-item h3 {
	font-size: var(--fz18);
}

.timeline-item .item-info {
	border-bottom: 1px dashed var(--c-navy);
}

.timeline-item .time {
	font-weight: 700;
	color: var(--c-navy);
	margin-bottom: 10px;
}

.timeline-item .place {
	display: inline-block;
	width: fit-content;
	background: var(--c-l-blue);
	color: var(--c-navy);
	font-size: var(--fz14);
	border-radius: 5px;
	padding: 5px 0.5em 2px 1em;
}

.timeline-item dl {
	margin-top: 1em;
	display: flex;
	align-items: start;
	font-size: var(--fz14);
}

.timeline-item dl dd {
	flex: 1;
	line-height: 1.7;
}

.program .timeline-item .item-info {
	display: flex;
	gap: 15px;
	align-items: center;
}

.timeline-item dl dd .ttl {
	display: block;
	font-weight: 700;
	margin-top: 0.7em;
}

.timeline-item dl dd .ttl:first-child {
	margin-top: 0;
}

.participant .table-common th {
	text-align: center;
}

.participant .table-common td {
	font-size: 14px;
}

.participant .table-common th:first-child {
	width: 21%;
}

.participant .table-common th:nth-child(2) {
	width: 38%;
}

.participant a {
	word-wrap: break-word;
}

.digitalbook .btn-wrap {
	margin-block: 40px 30px;
}

.digitalbook .btn-wrap a {
	display: block;
	max-width: 267px;
	margin-inline: auto;
}

.digitalbook .btn-wrap.entry a {
	width: 100%;
}
