/*
Theme Name: 第7回日本再生医療とリハビリテーション学会学術大会
Description:
Theme URI:
Author: スリーグッド鹿児島
Author URI:
Version:
License:
License URI:
*/

/* --------------------------
    variables
-------------------------- */
:root {
	--content-width: 1100px;
	--middle-width: 960px;
	--narrow-width: 800px;
	--wide-width: 1200px;
	--color: #333;
	--color-moss-green: #175769;
	--color-blue: #163c5e;
	--color-blue-light: #106fb0;
	--color-blue-pale: #f0f6fb;
	--color-blue-pale2: #c5d7e5;
	--line-height: 1.75;
	--font-size: 16px;
	--font-size-sp: 14px;
	--font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック ProN W3', 'Hiragino Kaku Gothic ProN', 'Meiryo UI', 'ＭＳ Ｐゴシック', sans-serif;
	--font-awesome: 'Font Awesome 6 Free';
	--letter-spacing: 0.1em;
	--header-height: 110px;
	--header-height-sp: 80px;
}

/* --------------------------
    reset
-------------------------- */
* {
    margin: 0;
    padding: 0;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
    padding-inline-start: 0;
    box-sizing: border-box;
}

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

html {
    scroll-behavior: smooth;
	scroll-padding-top: 100px!important;
}

body {
    font-feature-settings: 'palt';
    overflow-wrap: anywhere;
    line-break: strict;
	-webkit-text-size-adjust: 100%;
    font-size: var(--font-size);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
	color: var(--color);
    font-family: var(--font-family);
    font-weight: 500;
    min-height: 100vh;
	text-align: justify;
}

main {
    display: block;
}

img,
input[type="image"],
video,
embed,
iframe,
marquee,
object {
    display: block;
    max-width: 100%;
    aspect-ratio: attr(width) / attr(height);
}

table {
    max-width: 100%;
    aspect-ratio: attr(width) / attr(height);
}

a {
    color: inherit;
    text-decoration: none;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.5rem;
}

h3 {
    font-size: 1.25rem;
}

h4 {
    font-size: 1rem;
}

h5 {
    font-size: 0.75rem;
}

h6 {
    font-size: 0.75rem;
    font-weight: 500;
}

table {
    border-spacing: 0;
}

ul:not(.plain),
ol:not(.plain) {
	background-color: var(--color-blue-pale);
}

@media (max-width: 768px) {
    body {
        font-size: var(--font-size-sp);
    }
}

/* --------------------------
    common
-------------------------- */
.content-width {
    width: 100%;
    max-width: var(--content-width);
    margin: 0 auto;
}

.narrow-width {
    width: 100%;
    max-width: var(--narrow-width);
    margin: 0 auto;
}

.middle-width {
    width: 100%;
    max-width: var(--middle-width);
    margin: 0 auto;
}

.wide-width {
    width: 100%;
    max-width: var(--wide-width);
    margin: 0 auto;
}

.section-padding {
    padding: 4em 4em;
}

.section-padding-low {
    padding: 2em 4em;
}

.section-padding-full {
    padding: 4em 0;
}

.clearfix {
    clear: both;
}

.heading {
	display: flex;
	flex-flow: column;
	margin-bottom: 2em;
}

.heading:before {
	content: attr(data-text);
	font-size: clamp(1.5em, 3.5vw, 2em);
	line-height: 1.25;
	color: var(--color-blue);
}

.heading.white {
	color: #fff;
}

.heading.white:before {
	color: #fff;
}

.heading.center {
	align-items: center;
}

.heading.center > span {
	display: flex;
	margin-top: 0.5rem;
}

.heading.center > span > span {
	position: relative;
	display: block;
	aspect-ratio: 57.735 / 100;
    width: 100%;
    height: 0.75rem;
    background: #333;
	transform: rotate(30deg);
}

.heading.center > span > span:first-of-type {
	background-color: var(--color-moss-green);
}

.heading.center.white > span > span:first-of-type {
	background-color: #fff;
}

.heading.center > span > span:nth-of-type(2) {
	background-color: var(--color-blue-light);
}

.heading.center.white > span > span:nth-of-type(2) {
	background-color: #fff;
}

.heading.center > span > span:last-of-type {
	background-color: var(--color-blue);
}

.heading.center.white > span > span:last-of-type {
	background-color: #fff;
}

.heading.center > span > span:before {
	content: '';
	position: absolute;
    inset: 0;
    background: inherit;
	transform: rotate(60deg);
}

.heading.center > span > span:after {
	content: '';
	position: absolute;
    inset: 0;
    background: inherit;
	transform: rotate(-60deg);
}

.heading.center > span > span + span {
	margin-left: 0.75rem;
}

.heading2 {
	display: flex;
	align-items: center;
	margin-bottom: 1em;
	padding-left: 0.25em;
	margin-top: 2em;
}

.heading2 > span {
	width: 1em;
	height: 1em;
	margin-right: 0.5em;
	display: flex;
	align-items: center;
}

.heading2 > span > span:first-of-type {
	position: relative;
	display: block;
	aspect-ratio: 57.735 / 100;
	width: auto;
	height: 0.75em;
	background-color: var(--color-moss-green);
	transform: rotate(30deg);
}

.heading2 > span > span:first-of-type:before {
	content: '';
	position: absolute;
	inset: 0;
	background: inherit;
	transform: rotate(60deg);
}

.heading2 > span > span:first-of-type:after {
	content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    transform: rotate(-60deg);
}

.heading2 > span > span:last-of-type {
	position: relative;
	display: block;
	aspect-ratio: 57.735 / 100;
	width: auto;
	height: 0.75em;
	background-color: var(--color-blue-light);
	transform: rotate(30deg);
	margin-left: -0.125em;
}

.heading2 > span > span:last-of-type:before {
	content: '';
	position: absolute;
	inset: 0;
	background: inherit;
	transform: rotate(60deg);
}

.heading2 > span > span:last-of-type:after {
	content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    transform: rotate(-60deg);
}

.indent {
	text-indent: 1.1em;
}

.mt-1 {
	margin-top: 1em;
}

.mb-1 {
	margin-bottom: 1em;
}

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

.bg-blue {
	background-color: var(--color-blue-pale);
}

.button-wrap {
	margin-top: 2em;
}

.button-wrap.right {
	text-align: right;
}

.button-wrap.center {
	text-align: center;
}

.button {
	display: inline-block;
	padding: 1em 3em 1em 2em;
	background-color: #fff;
	color: var(--color-blue);
	border: 1px solid var(--color-blue);
	font-weight: 700;
	position: relative;
	transition: all 0.3s ease;
}

.button:before {
	content: '';
	display: block;
	width: 0.5em;
	height: 0.5em;
	border-top: 2px solid var(--color-blue);
	border-right: 2px solid var(--color-blue);
	position: absolute;
	right: 1.5em;
	top: calc(50% - 0.25em);
	transform: rotate(45deg);
	transition: all 0.3s ease;
}

/* .button[target=_blank]:before {
	content: '\f08e';
	font-family: var(--font-awesome);
	display: inline;
	position: absolute;
	border: none;
	right: 1.5em;
	top: 50%;
    transform: translate(50%, -50%);
    width: initial;
    height: initial;
} */

.button:hover {
	background-color: var(--color-blue);
	transition: all 0.3s ease;
	color: #fff;
}

.button:not([target=_blank]):hover:before {
	right: 1em;
	transition: all 0.3s ease;
}

.button:hover:before {
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}

.button-list {
	display: flex;
	list-style-type: none;
	justify-content: space-between;
	margin-top: 2em;
}

.button-list > li {
	width: calc(50% - 1em);
}

.button-list > li > a {
	padding: 1em 3em 1em 2em;
	border: 1px solid var(--color-blue);
	background-color: #fff;
    color: var(--color-blue);
    font-weight: 700;
    position: relative;
    transition: all 0.3s ease;
	width: 100%;
    display: block;
}

.button-list > li > a:before {
	content: '';
    display: block;
    width: 0.5em;
    height: 0.5em;
    border-top: 2px solid var(--color-blue);
    border-right: 2px solid var(--color-blue);
    position: absolute;
    right: 1.5em;
    top: calc(50% - 0.25em);
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.button-list > li > a:hover {
	background-color: var(--color-blue);
    transition: all 0.3s ease;
	color: #fff;
}

.button-list > li > a:hover:before {
	right: 1em;
    transition: all 0.3s ease;
	border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

.lum-lightbox {
	z-index: 255;
}

.lum-lightbox-inner img {
	display: block;
	max-width: 85vw;
	max-height: 85vh;
	width: 100%;
	height: auto;
	object-fit: contain;
	object-position: center;
	margin: auto;
}

.lum-next-button {
	right: 4rem!important;
}

.lum-next-button:after {
	box-shadow: 0.1em -0.1em 0.2em rgba(0, 0, 0, 0.3)!important;
}

.lum-previous-button {
	left: 4rem!important;
}

.lum-previous-button:after {
	box-shadow: -0.1em -0.1em 0.2em rgba(0, 0, 0, 0.3)!important;
}

.bg-blue ul:not(.plain),
.bg-blue ol:not(.plain) {
	background-color: #fff;
}

.bg-blue dl:not(.plain) > dd {
	background-color: #fff;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 2em 1em;
    }

    .section-padding-low {
        padding: 1em;
    }
    
    .section-padding-full {
        padding: 2em 0;
    }
	
	.heading {
		font-size: 1.5em;
	}
	
	.button-list {
		flex-flow: column;
	}
	
	.button-list > li {
		width: 100%;
	}
	
	.button-list > li + li {
		margin-top: 0.5em;
	}
}


/* --------------------------
    header
-------------------------- */
/* header */
header {
	width: 100%;
	height: var(--header-height);
	background-color: var(--color-blue);
	color: #fff;
	position: relative;
	left: 0;
	z-index: 255;
}

#header-content {
	display: flex;
	align-items: center;
	height: 100%;
	padding-right: var(--header-height);
}

#header-content > #header-logo {
	background-color: #fff;
	display: flex;
	height: 100%;
	width: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease;
	padding: 0 2em;
}

#header-content > #header-logo > img {
	height: var(--header-height);
	width: auto;
	object-fit: contain;
}

#header-content > #header-tittle {
	display: flex;
	justify-content: center;
	font-size: clamp(1.25em, 2.25vw, 2em);
	font-weight: 600;
	padding: 0 1rem;	
	width: 100%;
	line-height: 1.5;
}

@media (max-width: 1200px) {
	header {
		height: var(--header-height-sp);
	}
	
	#header-content > #header-logo {
		padding: 0 0.5em;
	}
	
	#header-content > #header-logo > img {
		height: var(--header-height-sp);
	}
	
	#header-content {
		padding-right: var(--header-height-sp);
	}
	
	#header-content > #header-tittle {
		font-size: clamp(10px , 3vw, 1em);
		padding: 0 1em;
	}
}

/* drawer */
#drawer {
	height: var(--header-height);
	transition: height 0.2s ease;
	aspect-ratio: 1 / 1;
    top: 0;
    right: 0;
    position: absolute;
}

#drawer-toggle {
	width: var(--header-height);
	aspect-ratio: 1 / 1;
	background-color: var(--color-blue);
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
	transition: height 0.2s ease;
}

#drawer-toggle:before {
	content: '';
	display: block;
	width: 50%;
	border-top: 1px solid #fff;
	position: absolute;
	top: 40%;
	left: 25%;
	transition: all 0.2s ease;
}

#drawer-toggle:after {
	content: '';
	display: block;
	width: 50%;
	border-top: 1px solid #fff;
	position: absolute;
	bottom: 40%;
	right: 25%;
	transition: all 0.2s ease;
}

#drawer-flag {
	display: none;
}

#drawer-flag:checked + #drawer-toggle:before {
	top: calc(50% - 0.5px);
	transform: rotate(30deg);
	transition: all 0.5s ease;
}

#drawer-flag:checked + #drawer-toggle:after {
	bottom: calc(50% - 0.5px);
	transform: rotate(-30deg);
	transition: all 0.5s ease;
}

#drawer-close {
	display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

#drawer-flag:checked ~ #drawer-close {
	display: block;
    opacity: .5;
}

#drawer-content {
/* 	opacity: 0; */
	pointer-events: none;
	width: 90%;
	max-width: 330px;
	height: 100svh;
	padding: var(--header-height) 1em 2em 1em;
	overflow: auto;
	position: fixed;
	right: 0;
/* 	transition: all 0.5s ease; */
	transition: 0.3s ease-in-out;
	z-index: 100;
	-webkit-transform: translateX(105%);
    transform: translateX(105%);
}

#drawer-flag:checked ~ #drawer-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}

#drawer-flag:checked ~ #drawer-content {
/* 	opacity: 1; */
	pointer-events: auto;
	transition: all 0.5s ease;
	-webkit-transform: translateX(0%);
    transform: translateX(0%);
}

#drawer-content:before {
	content: '';
	display: block;
	width: 100%;
	height: 100svh;
	background-color: var(--color-blue);
	position: fixed;
	top: 0;
	right: 0;
	z-index: -1;
	transition: all 0.5s ease;
}

#drawer-flag:checked ~ #drawer-content:before {
	height: 100svh;
	transition: all 0.5s ease;
}

#mobile-menu {
	list-style-type: none;
	color: #fff;
	background-color: var(--color-blue);
}

#mobile-menu li {
	position: relative;
}

#mobile-menu > li + li {
	border-top: 2px solid var(--color-blue-dark);
}

#mobile-menu > li input {
	display: none;
}

#mobile-menu li > a {
	display: flex;
	justify-content: space-between;
	padding: 1em;
}

#mobile-menu ul > li:before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.1);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

#mobile-menu input:checked + label {
	letter-spacing: 0;
}

#mobile-menu input:checked + label {
	transform: rotate(-180deg);
}

#mobile-menu > li:has(input:not(:checked)) > ul {
	display: none;
}

#mobile-menu > li:has(input:checked) > ul {
	display: block
}

#mobile-menu li > ul {
	list-style-type: none;
}

#mobile-menu li > ul > li + li {
	border-top: 2px solid var(--color-blue);
}

#mobile-menu li > ul > li > a {
	padding: 1em;
}

#drawer-flag:checked ~ #drawer-content #drawer-close2 {
	padding: 1em;
	display: block;
	position: relative;
	color: #fff;
	opacity: 0;
	text-decoration: none;
	border-bottom: 1px solid #fff;
}

#drawer-flag:checked ~ #drawer-content #drawer-close2 {
	opacity: 1;
}

@media (max-width: 1200px) {
	#drawer {
		height: var(--header-height-sp);
	}
	
	#drawer-toggle {
		height: var(--header-height-sp);
		width: var(--header-height-sp);
		background-color: transparent;
	}
	
	#drawer-content {
		padding: 0 1em 2em 1em;
	}
}

/* --------------------------
    footer
-------------------------- */
/* fixed-banner */
#fixed-banner {
	display: contents;
}

#fixed-banner > a {
	width: 2.75em;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--color-blue);
	border-radius: 0.25em 0 0 0.25em;
	border-right: none;
	writing-mode: vertical-rl;
	color: #fff;
	padding: 1em 0.5em;
	font-weight: 700;
	position: fixed;
	right: 0;
	z-index: 253;
	transform: translateY(-50%);
	top: 50%;
}

#fixed-banner > a > i {
	margin-bottom: 0.5em;
}

@media (max-width: 768px) {
	#fixed-banner > a {
		width: 100%;
/* 		width: calc(50% + 1em); */
		top: inherit;
		bottom: 0;
		right: 0;
		writing-mode: inherit;
		align-items: center;
		padding: 0.5em 1em;
		transform: none;
		border-radius: 0;
	}
	
	#fixed-banner > a > i {
        margin-right: 0.5em;
        font-size: 1.25em;
        margin-bottom: 0;
    }
}

/* fixed-pagetop */
#fixed-pagetop {
	display: contents;
}

#fixed-pagetop > a {
	width: 70px;
	display: flex;
	flex-flow: column;
	justify-content: center;
    align-items: center;
    background-color: var(--color-moss-green);
    border-radius: 0.25rem 0 0 0.25rem;
    border-right: none;
    color: #fff;
    padding: 1em 0.5em;
    font-weight: 700;
    position: fixed;
    right: 0;
    z-index: 253;
    bottom: 5.25rem;
    font-size: 10px;
}

#fixed-pagetop > a > i {
	margin-bottom: 0.25em;
    font-size: 1.25rem;
}

@media (max-width: 768px) {
	#fixed-pagetop > a {
	}
}

footer {
	font-size: 0.875em;
	background-color: ;
}

footer > div:first-of-type {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

footer #footer-menu {
	width: 100%;
	list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875em;
    padding: 1em;
    background-color: #fff;
    border-radius: 0.25em;
    box-shadow: 0 0 0.5em rgba(0, 0, 0, 0.1);
}

footer #footer-menu > li {
	margin-top: 0.5rem;
	margin-bottom: 0.5em;
}

footer #footer-menu > li:not(:last-of-type) {
	margin-right: 2em;
}

footer #footer-menu > li > a {
	display: flex;
	align-items: center;
}

footer #footer-menu > li > a:before {
	content: '';
	display: block;
    width: 0.5em;
    height: 0.5em;
    border-top: 2px solid var(--color-blue);
    border-right: 2px solid var(--color-blue);
    transform: rotate(45deg);
	margin-right: 0.75em;
}

@media (max-width: 768px) {
	footer #footer-menu {
		justify-content: space-between;
		padding: 1em 2em;
	}
	
	footer #footer-menu > li {
		width: calc(50% - 1em);
		margin-bottom: 0;
		margin-top: 0;
	}
	
	footer #footer-menu > li:nth-of-type(n+3) {
		margin-top: 0.5em;
	}
	
	footer #footer-menu > li:not(:last-of-type) {
		margin-right: 0;
	}
}

footer > div:nth-of-type(2) {
	display: flex;
	justify-content: space-between;
}

footer > div:nth-of-type(2) > div:first-of-type {
	width: calc(40% - 2em);
}

footer > div:nth-of-type(2) > div:last-of-type {
	width: calc(60% - 2em);
}

footer > div:nth-of-type(2) > div:last-of-type > h3 {
	display: flex;
	align-items: center;
	margin-bottom: 1em;
	padding-left: 0.25em;
}

footer > div:nth-of-type(2) > div:last-of-type > h3 > span {
	width: 1em;
	height: 1em;
	margin-right: 0.5em;
	display: flex;
	align-items: center;
}

footer > div:nth-of-type(2) > div:last-of-type > h3 > span > span:first-of-type {
	position: relative;
    display: block;
    aspect-ratio: 57.735 / 100;
    width: auto;
    height: 0.75em;
    background-color: var(--color-moss-green);
    transform: rotate(30deg);
}

footer > div:nth-of-type(2) > div:last-of-type > h3 > span > span:first-of-type:before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    transform: rotate(60deg);
}

footer > div:nth-of-type(2) > div:last-of-type > h3 > span > span:first-of-type:after {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    transform: rotate(-60deg);
}

footer > div:nth-of-type(2) > div:last-of-type > h3 > span > span:last-of-type {
	position: relative;
    display: block;
    aspect-ratio: 57.735 / 100;
    width: auto;
    height: 0.75em;
    background-color: var(--color-blue-light);
    transform: rotate(30deg);
	margin-left: -0.125em;
}

footer > div:nth-of-type(2) > div:last-of-type > h3 > span > span:last-of-type:before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    transform: rotate(60deg);
}

footer > div:nth-of-type(2) > div:last-of-type > h3 > span > span:last-of-type:after {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    transform: rotate(-60deg);
}

footer > div:nth-of-type(2) > div:last-of-type > dl {
	font-weight: 700;
}

footer > div:nth-of-type(2) > div:last-of-type > dl > dt {
	display: inline-block;
    background-color: var(--color-moss-green);
    padding: 0.5em 1em;
    color: #fff;
    margin-bottom: 1em;
}

footer > div:nth-of-type(2) > div:first-of-type > p {
	font-weight: 700;
}

@media (max-width: 768px) {
	footer > div:nth-of-type(2) {
		flex-flow: column;
	}
	
	footer > div:nth-of-type(2) > div:first-of-type {
		width: 100%;
		margin-bottom: 2em;
		text-align: center;
	}
	
	footer > div:nth-of-type(2) > div:last-of-type {
		width: 100%;
	}
}

#footer-logo {
	display: inline-block;
	margin-bottom: 1em;
}

#footer-logo > img {
	width: 120px;
    height: auto;
}

#copyright {
	display: flex;
	height: 3em;
	justify-content: center;
	align-items: center;
	background-color: var(--color-blue-light);
	color: #fff;
	font-weight: 600;
}

@media (max-width: 768px) {
	#copyright {
		padding: 1em 7em 4em 1em;
        height: auto;
	}
}
/* --------------------------
    archive
-------------------------- */
/* archive */
.archive-list {
    list-style-type: none;
}

.archive-list > li {
    padding: 1rem 0;
}

.archive-list > li:first-of-type {
    padding-top: 0;
}

.archive-list > li + li {
    border-top: 1px solid #ddd;
}

.archive-list > li > a {
    display: block;
}

.archive-list > li > a > article {
    display: flex;
    align-items: center;
}

.archive-list > li > a > article > .thumb {
    width: 30%;
    padding-top: 20%;
    background-color: #eee;
    margin-right: 2em;
    position: relative;
}

.archive-list > li > a > article > .thumb > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

.archive-list > li > a > article > .info {
    width: calc(70% - 2em);
}

.archive-list > li > a > article > .info > time {
    display: block;
    font-size: 1em;
    margin-bottom: 0.5em;
}

.archive-list > li > a > article > .info > .category {
    margin-bottom: 0.5em;
}

.archive-list > li > a > article > .info > .category > span {
    display: inline-block;
    font-size: 10px;
    padding: 0.25em 0.5em;
    margin: 0 0.5em 0.5em 0;
    background-color: var(--color);
    color: #fff;
}

.archive-list > li > a > article > .info > h3 {
    font-size: 1rem;
    margin-bottom: 0.5em;
}

.archive-list > li > a > article > .info > p {
    font-size: 0.75em;
    margin-top: 1em;
}

@media (max-width: 768px) {
    .archive-list > li > a > article {
        flex-flow: column;
    }
    
    .archive-list > li > a > article > .info {
        width: 100%;
    }
    
    .archive-list > li > a > article > .thumb {
        width: 100%;
        padding-top: calc(100% / 3 * 2);
        margin-right: 0;
        margin-bottom: 1em;
    }
}

/* archive pagination */
#pagination {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

#pagination > * {
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    letter-spacing: 0;
    width: 3em;
    height: 3em;
    background: #eee;
    color: var(--color);
    margin: 0 0.5em;
    transition: all 0.3s ease;
}

#pagination > span,
#pagination > a:hover {
    background: var(--color);
    color: #fff;
    transition: all 0.3s ease;
}


/* --------------------------
    single
-------------------------- */
/* single */
#single-date {
    display: block;
    font-size: 1em;
    font-weight: 700;
    margin-bottom: 2em;
}

.single-content h1:not(.plain),
.single-content h2:not(.plain) {
    margin-bottom: 1em;
}

.single-content h3:not(.plain) {
    margin-bottom: 1em;
	display: flex;
	align-items: center;
}

.single-content h3:not(.plain) > span {
	width: 1em;
	height: 1em;
	margin-right: 0.5em;
	display: flex;
	align-items: center;
}

.single-content h3:not(.plain) > span > span:first-of-type {
	position: relative;
    display: block;
    aspect-ratio: 57.735 / 100;
    width: auto;
    height: 0.75em;
    background-color: var(--color-moss-green);
    transform: rotate(30deg);
}

.single-content h3:not(.plain) > span > span:first-of-type:before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    transform: rotate(60deg);
}

.single-content h3:not(.plain) > span > span:first-of-type:after {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    transform: rotate(-60deg);
}

.single-content h3:not(.plain) > span > span:last-of-type {
	position: relative;
    display: block;
    aspect-ratio: 57.735 / 100;
    width: auto;
    height: 0.75em;
    background-color: var(--color-blue-light);
    transform: rotate(30deg);
	margin-left: -0.125em;
}

.single-content h3:not(.plain) > span > span:last-of-type:before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    transform: rotate(60deg);
}

.single-content h3:not(.plain) > span > span:last-of-type:after {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    transform: rotate(-60deg);
}

.single-content h4:not(.plain) {
    margin-bottom: 1em;
}

.single-content h5:not(.plain) {
    margin-bottom: 1em;
}

.single-content h6:not(.plain) {
    margin-bottom: 1em;
}

.single-content hr:not(.plain) {
    display: block;
    border: none;
    border-top: 2px solid #bbb;
    margin: 4em 0;
}

.single-content ul:not(.plain) {
    background-color: var(--color-blue-pale);
    padding: 2em 2em 2em 3em;
    margin-bottom: 2em;
}

.single-content ol:not(.plain) {
    background-color: var(--color-blue-pale);
    padding: 2em 2em 2em 3em;
    margin-bottom: 2em;
}

.single-content ul:not(.plain) > li + li,
.single-content ol:not(.plain) > li + li {
    margin-top: 0.5em;
}

.single-content blockquote:not(.plain) {
    background-color: var(--color-blue-pale);
    padding: 2em;
    margin-bottom: 2em;
}

.single-content p:not(.plain) {
    text-align: justify;
    margin-bottom: 1em;
}

.single-content dl:not(.plain) {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2em;
}

.single-content dl:not(.plain) > dt {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40%;
    background-color: var(--color-blue);
	color: #fff;
    padding: 1em 2em;
    font-weight: 700;
}

.single-content dl:not(.plain) > dd {
    width: 60%;
    background-color: var(--color-blue-pale);
    padding: 1em 2em;
}

.single-content dl:not(.plain) > dt:nth-of-type(n+2),
.single-content dl:not(.plain) > dd:nth-of-type(n+2) {
	margin-top: 2px;
}

.single-content img:not(.plain) {
    height: auto;
    margin-bottom: 2em;
}

.single-content img:not(.plain).alignleft {
    float: left;
    margin: 0 2em 2em 0;
}

.single-content img:not(.plain).alignright {
    float: right;
    margin: 0 0 2em 2em;
}

.single-content img:not(.plain).aligncenter {
    margin: 0 auto 2em auto;
}

.single-content a:not(.plain) {
    text-decoration: underline;
    transition: all 0.3s ease;
	color: var(--color-blue);
}

.single-content a:not(.plain):hover {
    opacity: 0.7;
    transition: all 0.3s ease;
}

.single-content small:not(.plain) {
    font-size: 0.875em;
}

.single-content sup:not(.plain) {
	font-size: 0.75em;
}

@media (max-width: 768px) {
	.single-content h1:not(.plain),
	.single-content h2:not(.plain) {
	}
	
	.single-content h3:not(.plain) {
	}
	
	.single-content hr:not(.plain) {
		margin: 2em 0;
	}

	.single-content ul:not(.plain) {
		padding: 1em 1em 1em 2em;
	}
	
	.single-content ol:not(.plain) {
		padding: 1em 1em 1em 3em;
	}
	
	.single-content blockquote:not(.plain) {
		padding: 1em;
	}
	
	.single-content dl:not(.plain) {
		flex-flow: column;
	}
	
	.single-content dl:not(.plain) > dt {
		width: 100%;
		padding: 1em;
	}
	
	.single-content dl:not(.plain) > dd {
		width: 100%;
		padding: 1em;
	}

	.single-content img.aligncenter:not(.plain),
	.single-content img.alignleft:not(.plain),
	.single-content img.alignright:not(.plain) {
		float: none;
		margin: 0 auto 2em auto;
	}
}

/* single pagination */
#single-pagination {
    list-style-type: none;
    display: flex;
    border-top: 2px solid #ddd;
    border-bottom: 2px solid #ddd;
    padding: 1rem 0;
    margin-top: 2rem;
}

#single-pagination > li {
    width: 50%;
}

#single-pagination > li + li {
    border-left: 2px solid #ddd;
}

#single-pagination > li > a {
    display: block;
    color: var(--main-color);
    padding: 1rem 3rem;
    position: relative;
}

#single-pagination > li:first-of-type > a:before {
    content: '';
    display: block;
    border-top: 0.3rem solid transparent;
    border-left: 0.3rem solid transparent;
    border-right: 0.3rem solid var(--color);
    border-bottom: 0.3rem solid transparent;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

#single-pagination > li:last-of-type > a:before {
    content: '';
    display: block;
    border-top: 0.3rem solid transparent;
    border-left: 0.3rem solid var(--color);
    border-right: 0.3rem solid transparent;
    border-bottom: 0.3rem solid transparent;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    #single-pagination {
        flex-flow: column;
        padding: 0;
    }

    #single-pagination > li {
        width: 100%;
    }

    #single-pagination > li + li {
        border-left: none;
    }

    #single-pagination > li:first-of-type:empty {
        border-top: 2px solid #ddd;
    }
}

/* --------------------------
    top
-------------------------- */
#top-main-banner {
	aspect-ratio: 2 / 1;
	background-color: #fcfcfc;
	position: relative;
}

#top-main-banner > div > .sp {
	display: none;
}

#top-main-outline {
	display: flex;
	flex-flow: column;
	position: absolute;
	width: 100%;
	padding: 4vw 5vw;
	top: 50%;
	transform: translateY(-50%);
	color: var(--color-blue);
	font-weight: 600;
	align-items: center;
	aspect-ratio: 2 / 1;
	justify-content: space-around;
}

#top-main-outline #theme-title {
	display: flex;
	flex-flow: column;
	align-items: center;
	margin-bottom: 4vh;
}

#top-main-outline #theme-title > .main {
	font-size: clamp(1.25em, 5vw, 3em);
}

#top-main-outline #theme-title > .sub {
	font-size: clamp(0.875rem, 2.5vw, 2rem);
}

#top-main-outline .main {
	font-size: clamp(1.125rem, 3vw, 2.25rem);
}

#top-main-outline .sub {
	font-size: clamp(0.875rem, 2vw, 1.5rem);
}

#top-main-outline .time {
	font-size: clamp(1.125rem, 3vw, 2.25rem);
	margin-bottom: 0.5rem;
}

#top-main-outline .venue {
	display: flex;
	flex-flow: column;
	margin-bottom: 0.5rem;
}

#top-main-outline .chairman {
	display: flex;
	flex-flow: column;
}

@media (max-width: 960px) {
	#top-main-banner {
		aspect-ratio: 1 / 1;
	}
	
	#top-main-banner > div > .sp {
		display: block;
	}
	
	#top-main-banner > div > .pc {
		display: none;
	}
	
	#top-main-outline {
		padding: 4vh 2vh;
		aspect-ratio: 1 / 1;
		justify-content: center;
	}
	
	#top-main-outline #theme-title {
		margin-bottom: 3vh;
	}

	#top-main-outline #theme-title > .main {
		font-size: clamp(1em, 3.75vw, 2em);
	}

	#top-main-outline #theme-title > .sub {
		font-size: clamp(0.875rem, 3.5vw, 2rem);
	}
	
	#top-main-outline .main {
		font-size: clamp(1em, 3.75vw, 2em);
	}
	
	#top-main-outline .sub {
		font-size: clamp(0.75rem, 3.25vw, 1.25rem);
	}
}

.support-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	list-style-type: none;
	font-size: 0.875em;
}

.support-list > li {
	margin: 0.5em 0.5em;
	padding: 0.25em 1em;
	background-color: var(--color-blue-pale);
}

.support-list > li > a {
	text-decoration: underline;
	color: var(--color-blue);
}

.support-list > li > a:after {
	content: '\f35d';
	font-size: 0.875em;
	font-family: var(--font-awesome);
	font-weight: 700;
	margin-left: 0.5em;
}

#top-link-list #anchor-list {
	width: 100%;
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	font-weight: 700;
	font-size: 0.875em;
	padding: 1em;
	background-color: #fff;
	border-radius: 0.25em;
	box-shadow: 0 0 0.5em rgba(0, 0, 0, 0.1);
}

#top-link-list #anchor-list > li {
	margin-top: 0.25em;
	margin-bottom: 0.25em;
}

#top-link-list #anchor-list > li:not(:last-of-type) {
	margin-right: 2em;
}

#top-link-list #anchor-list > li > a {
	display: flex;
	align-items: center;
}

#top-link-list #anchor-list > li > a:before {
	content: '';
	display: block;
    width: 0.5em;
    height: 0.5em;
    border-top: 2px solid var(--color-blue);
    border-right: 2px solid var(--color-blue);
    transform: rotate(45deg);
	margin-right: 0.75em;
}

@media (max-width: 768px) {
	#top-link-list #anchor-list {
		justify-content: space-between;
		padding: 1em 2em;
	}
	
	#top-link-list #anchor-list > li {
		width: calc(50% - 1em);
		margin-top: 0;
		margin-bottom: 0;
	}
	
	#top-link-list #anchor-list > li:nth-of-type(n+3) {
		margin-top: 0.5em;
	}
	
	#top-link-list #anchor-list > li:not(:last-of-type) {
		margin-right: 0;
	}
}

#top-gallery #gallery-list {
	display: flex;
	flex-wrap: wrap;
	list-style-type: none;
}

#top-gallery #gallery-list li {
	width: calc(100% / 3 - 0.5em);
}

#top-gallery #gallery-list li:not(:nth-of-type(3n)) {
	margin-right: calc(1.5em / 2);
}

#top-gallery #gallery-list li:nth-of-type(n + 4) {
	margin-top: 1em;
}

#top-gallery #gallery-list li a {
	aspect-ratio: 4 / 3;
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

#top-gallery #gallery-list li figcaption {
	margin-top: 0.5em;
    font-size: 0.875em;
	line-height: 1.5;
}

#top-gallery #gallery-list li figcaption > small {
	 font-size: clamp(10px, 1vw, 0.75rem);
}

#top-gallery #gallery-list li a > img {
	position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
	#top-gallery #gallery-list li {
		width: calc(50% - 0.5em);
	}
	
	#top-gallery #gallery-list li:not(:nth-of-type(3n)) {
		margin-right: 0;
	}
	
	#top-gallery #gallery-list li:nth-of-type(even) {
		margin-left: 1em;
	}
	
	#top-gallery #gallery-list li:nth-of-type(n + 4) {
		margin-top: 0;
	}
	
	#top-gallery #gallery-list li:nth-of-type(n + 3) {
		margin-top: 1em;
	}
}

#top-news .scroll-wrap {
	overflow-y: scroll;
	border: 2px solid #ddd;
	box-sizing: border-box;
	position: relative;
	background-color: #fff;
	max-height: 30em;
}

#top-news .scroll-wrap > ul {
	padding: 2em 3em;
	list-style-type: none;
	text-align: justify;
	background-color: #fff;
}

#top-news .scroll-wrap > ul > li {
	display: flex;
	align-items: center;
}

#top-news .scroll-wrap > ul > li + li {
	margin-top: 3em;
    position: relative;
}

#top-news .scroll-wrap > ul > li + li:before {
	content: '';
	display: block;
	width: 100%;
	border-top: 2px solid #ddd;
	position: absolute;
    top: -1.5em;
    transform: translate(0px, -50%);
}

#top-news .scroll-wrap > ul > li > time {
	color: var(--color-blue);
	font-weight: 600;
	min-width: 8rem;
}

#top-news .scroll-wrap > ul > li > p {
	font-weight: 600;
}

#top-news .scroll-wrap > ul > li a {
	word-break: break-all;
    text-decoration: underline;
	color: var(--color-blue);
    transition: all 0.3s ease;
}

#top-news .scroll-wrap > ul > li a[href$=".pdf"]:not(:has(img)):after {
	content: ' \f1c1';
	position: absolute;
	font-family: var(--font-awesome);
	font-weight: 700;
	top: 50%;
	right: 1.5rem;
	transform: translate(50%, -50%);
}

#top-news .scroll-wrap > ul > li a[target=_blank]:not([href$=".pdf"]):not([href$=".docx"]):not([href$=".xls"]):not([href$=".xlsx"]):not([href$=".xlsm"]):not(.plain):not(:has(img)):after {
	content: ' \f08e';
	font-family: var(--font-awesome);
	font-weight: 700;
	top: 50%;
	right: 1.5rem;
	transform: translate(50%, -50%);
}

#top-news .scroll-wrap > ul > li a:hover {
	opacity: 0.7;
    text-decoration: unset;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
	#top-news .scroll-wrap > ul {
		padding: 1em;
	}
	
	#top-news .scroll-wrap > ul > li {
		flex-flow: column;
		align-items: inherit;
	}
	
	#top-news .scroll-wrap > ul > li + li {
		margin-top: 2em;
	}
	
	#top-news .scroll-wrap > ul > li + li:before {
		top: -1em;
	}
	
	#top-news .scroll-wrap > ul > li > time {
		margin-bottom: 0.5em;
		width: 100%;
	}
}

#top-greeting #profile {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2em;
}

#top-greeting #profile > div {
	width: calc(65% - 2em);
	display: flex;
	flex-flow: column;
}

#top-greeting #profile > div > span.name {
	font-size: 1.125em;
	font-weight: 600;
}

#top-greeting #profile > figure {
	width: calc(35% - 2em);
}

@media (max-width: 768px) {
	#top-greeting #profile {
		flex-flow: column;
	}
	
	#top-greeting #profile > figure {
		max-width: 320px;
		width: 100%;
	}
	
	#top-greeting #profile > div {
		width: 100%;
		margin-top: 1em;
	}
	
	#top-greeting #profile > div > span {
		display: flex;
		justify-content: center;
	}
}

#top-outline dl {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2em;
}

#top-outline dl > dt {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40%;
	color: #fff;
    background-color: var(--color-blue);
    padding: 1em 2em;
	font-weight: 600;
	margin-top: 2px;
}

#top-outline dl > dd {
    width: 60%;
    background-color: var(--color-blue-pale);
    padding: 1em 2em;
	margin-top: 2px;
}

#top-outline dl > dd > span.highlight {
	font-size: 1.125em;
}

#top-outline dl > dd > small {
	display: block;
}

#top-outline dl > dd#entrance-fee {
	display: flex;
	flex-flow: column;
}

#top-outline dl > dd#entrance-fee > span {
	display: flex;
}

#top-outline dl > dd#entrance-fee > span + span {
	margin-top: 0.75em;
}

#top-outline dl > dd#entrance-fee > span > span {
	display: flex;
	justify-content: center;
	width: 6em;
	font-size: 0.875em;
	align-items: center;
	color: #fff;
	margin-right: 2em;
	font-weight: 600;
}

#top-outline dl > dd#entrance-fee > span:first-of-type > span {
	background-color: var(--color-moss-green);
}

#top-outline dl > dd#entrance-fee > span:nth-of-type(2) > span {
	background-color: var(--color-blue-light);
}

#top-outline dl > dd#entrance-fee > span:last-of-type > span {
	background-color: var(--color-blue);
}

@media (max-width: 768px) {
	#top-outline dl > dt {
		width: 100%;
		padding: 1em;
	}
	
	#top-outline dl > dd {
		width: 100%;
		padding: 1em;
	}
	
	#top-outline dl > dd > br {
		display: none;
	}
}

#top-registration dl {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 2em;
}

#top-registration dl.registration-fee > .dl-head {
	background-color: var(--color-blue);
	color: #fff;
	font-weight: 600;
}

#top-registration dl > dt {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40%;
	color: #fff;
	background-color: var(--color-blue);
	padding: 1em 2em;
	font-weight: 600;
	margin-top: 2px;
}

#top-registration dl > dd {
	width: 60%;
	background-color: var(--color-blue-pale);
	padding: 1em 2em;
	margin-top: 2px;
}

#top-registration dl.registration-fee > dd {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60%;
	background-color: var(--color-blue-pale);
	padding: 1em 2em;
	margin-top: 2px;
	border-left: 2px solid #fff;
}

@media (max-width: 768px) {
	#top-registration dl:not(.registration-fee) > dt {
		width: 100%;
	}
	
	#top-registration dl:not(.registration-fee) > dd {
		width: 100%;
	}
}

#top-subject dl {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2em;
}

#top-subject dl > dt {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40%;
	color: #fff;
    background-color: var(--color-blue);
    padding: 1em 2em;
	font-weight: 600;
	margin-top: 2px;
}

#top-subject dl > dd {
    width: 60%;
    background-color: #fff;
    padding: 1em 2em;
	margin-top: 2px;
}

#top-subject ul:not(.plain) {
	padding: 2em 2em 2em 4em;
	margin-bottom: 2em;
}

#top-subject ul:not(.plain) > li + li {
	margin-top: 1em;
}

#top-subject > div > img {
	box-shadow: -0.5em -0.5em 1em rgba(0, 0, 0, 0.1), 0.5em 0.5em 1em rgba(0, 0, 0, 0.1);
	margin-bottom: 2em;
	margin-top:3em;
}

@media (max-width: 768px) {
	#top-subject dl > dt {
		width: 100%;
		padding: 1em;
	}
	
	#top-subject dl > dd {
		width: 100%;
		padding: 1em;
	}
	
	#top-subject u:not(.plain)l {
		padding: 1em 1em 1em 2em;
	}
}

#top-young-project p + p {
	margin-top: 1em;
}

#top-information dl {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2em;
}

#top-information dl > dt {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40%;
	color: #fff;
    background-color: var(--color-blue);
    padding: 1em 2em;
	font-weight: 600;
	margin-top: 2px;
}

#top-information dl > dd {
    width: 60%;
/*     background-color: #fff; */
    padding: 1em 2em;
	margin-top: 2px;
	background-color: var(--color-blue-pale);
}

#top-information ol {
	padding: 2em 2em 2em 4em;
	margin-bottom: 2em;
	counter-reset: count;
}

#top-information ol > li + li {
	margin-top: 1em;
}

#top-information ol > li > p + p {
	margin-top: 0.5em;
}

@media (max-width: 768px) {
	#top-information ol {
		padding: 1em 1em 1em 3em;
	}
	
	#top-information dl > dt {
		width: 100%;
		padding: 1em;
	}
	
	#top-information dl > dd {
		width: 100%;
		padding: 1em;
	}
}

.sponsorship-list {
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
}

.sponsorship-list > li {
	width: calc(25% - 1em);
}

.sponsorship-list > li:not(:nth-of-type(4n)) {
	margin-right: calc(4em / 3);
}

.sponsorship-list > li:nth-of-type(n + 5) {
	margin-top: calc(4em / 3);
}

.sponsorship-list > li > a {
	display: block;
	aspect-ratio: 2 / 1;
	border: 1px solid #ccc;
	background-color: #fff;	
	position: relative;
	box-sizing: border-box;
}

.sponsorship-list > li > a > img {
	width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    position: absolute;
    top: 0;
	display: block;
}

@media (max-width: 768px) {
	.sponsorship-list > li {
		width: calc(50% - 0.5em);
	}
	
	.sponsorship-list > li:not(:nth-of-type(4n)) {
		margin-right: 0;
	}
	
	.sponsorship-list > li:not(:nth-of-type(even)) {
		margin-right: 1em;
	}
	
	.sponsorship-list > li:nth-of-type(n + 5) {
		margin-top: 0;
	}
	
	.sponsorship-list > li:nth-of-type(n + 3) {
		margin-top: 1em;
	}
}

#top-access > div > div {
	aspect-ratio: 3 / 1;
	display: flex;
}

#top-access > div > div > div:not(.gmap-wrap) {
	color: #fff;
	width: calc(100% / 3);
	display: flex;
	flex-flow: column;
	background-color: var(--color-blue);
	justify-content: center;
}

#top-access > div > div > div:not(.gmap-wrap) > div {
	padding: 1em 2em;
	text-align: center;
	margin: auto 0;
}

#top-access > div > div > div:not(.gmap-wrap) > div > div {
	font-size: clamp(0.875em, 1vw, 1em);
}

#top-access > div > div > div:not(.gmap-wrap) > img {
	height: 50%;
	width: 100%;
	object-fit: cover;
}

#top-access > div > div > div.gmap-wrap {
	display: flex;
	width: calc((100% / 3) * 2);
}

#top-access > div > div > div.gmap-wrap > iframe {
	width: 100%;
	height: 100%;
}

@media (max-width: 1000px) {
	#top-access > div > div {
		flex-flow: column;
		aspect-ratio: inherit;
	}
	
	#top-access > div > div > div:not(.gmap-wrap) {
		width: 100%;
	}
	
	#top-access > div > div > div:not(.gmap-wrap) > div {
		padding: 2em;
	}
	
	#top-access > div > div > div:not(.gmap-wrap) > img {
		
	}
	
	#top-access > div > div > div.gmap-wrap {
		width: 100%;
		aspect-ratio: 3 / 2;
	}
}

#top-secretariat dl {
	display: flex;
    flex-wrap: wrap;
	margin-bottom: 2em;
}

#top-secretariat dl > dt {
	display: flex;
    justify-content: center;
    align-items: center;
    width: 40%;
	color: #fff;
    background-color: var(--color-blue);
    padding: 1em 2em;
	font-weight: 600;
}

#top-secretariat dl > dd {
	width: 60%;
    background-color: #fff;
    padding: 1em 2em;
}

#top-secretariat dl > dt:nth-of-type(n+2),
#top-secretariat dl > dd:nth-of-type(n+2) {
	margin-top: 2px;
}

@media (max-width: 768px) {
	#top-secretariat dl > dt {
		width: 100%;
		padding: 1em;
	}
	
	#top-secretariat dl > dd {
		width: 100%;
		padding: 1em;
	}
	
	#top-secretariat dl > dd:nth-of-type(n+2) {
		margin-top: 0;
	}
}

/* --------------------------
    page
-------------------------- */
#page-header {
	min-height: 250px;
	background-color: var(--color-blue-pale2);
	position: relative;
}

#page-header > div {
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	min-height: 250px;
	padding: 2em 1em;
}

#page-header > div > h2 {
	font-size: clamp(1.5em, 3vw, 2em);
	color: var(--color-blue);
}

#breadcrumb {
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
	font-size: 0.875em;
	margin-top: 1em;
	font-weight: 600;
	color: var(--color-blue);
}

#breadcrumb > li {
	display: flex;
	align-items: center;
	
}

#breadcrumb > li + li:before {
	content: '';
	display: block;
	border-top: 4px solid transparent;
	border-left: 4px solid var(--color-blue);
	border-bottom: 4px solid transparent;
	margin: 0 1em;
}

@media (max-width: 768px) {
	#page-header {
		min-height: calc(150px + var(--header-height-sp));
	}

	#page-header > div {
		min-height: calc(150px + var(--header-height-sp));
	}
}

/* --------------------------
    contact
-------------------------- */
.contact-tel {
	display: flex;
	flex-flow: column;
	align-items: center;
}

.contact-tel > .tel {
	font-size: 2em;
    text-align: center;
    font-weight: 700;
    display: block;
}

.contact-tel > .tel:before {
	content: 'tel.';
    font-size: 0.75em;
}

.contact-fax {
	font-size: 2em;
    text-align: center;
    font-weight: 700;
    display: block;
}

.contact-fax:before {
	content: 'fax.';
    font-size: 0.75em;
}

.grecaptcha-badge {
	z-index: 254;
}

.contactform dl:not(.plain) {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin-bottom: 1rem;
}

.contactform > dl:not(.plain) > dt {
	padding: 1em 5em 1em 2em;
	position: relative;
	width: 20em;
	font-weight: 600;
	align-items: center;
	display: flex;
	justify-content: center;
	text-align: center;
	border: none;
	background-color: var(--color-blue-pale2)!important;
	color: var(--color-blue)!important;
}

.contactform > dl:not(.plain) > dd {
	padding: 1em 2em;
	width: calc(100% - 20em);
	display: flex;
	justify-content: center;
	flex-flow: column;
	border: none;
}

.contactform > dl:not(.plain) > dt.required:after {
	content: '必 須';
	display: block;
	font-size: 10px;
	line-height: 1;
	letter-spacing: 0;
	padding: 0.5em 1em;
	background: var(--color-blue);
	color: #fff;
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 3px;
}

.contactform > dl:not(.plain) > dt:not(.required):after {
	content: '任 意';
	display: block;
	font-size: 10px;
	line-height: 1;
	letter-spacing: 0;
	padding: 0.5em 1em;
	background-color: #fff;
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 3px;
}

.contactform > dl:not(.plain) > dd input[type=text],
.contactform > dl:not(.plain) > dd input[type=email],
.contactform > dl:not(.plain) > dd input[type=tel],
.contactform > dl:not(.plain) > dd textarea {
	display: block;
	width: 100%;
	border-radius: 3px;
	border: none;
	border: 1px solid #ccc;
	padding: 0.5em 1em;
}

.contactform > dl:not(.plain) > dd select {
	display: block;
	border-radius: 3px;
	border: none;
	border: 1px solid #ccc;
	padding: 0.5em 1em;
}

.contactform > dl:not(.plain) > dd input[type=date] {
	width: 30%;
	display: block;
	border-radius: 3px;
	border: none;
	background-color: #f9f9f9;
	border: 1px solid #ccc;
	padding: 0.5em 1em;
}

.contactform > dl:not(.plain) > dd select {
	padding: 0.5em 1em;
}

.contactform > dl:not(.plain) > dd input[type=number] {
	display: block;
	border-radius: 3px;
	border: none;
	border: 1px solid #ccc;
	padding: 0.5em 1em;
}

.contactform > dl:not(.plain) > dd input.inline {
	display: inline-block;
}

.contactform > dl:not(.plain) > dd input.readonly {
	background-color: transparent;
	border: none;
}

.contactform > dl:not(.plain) > dd input.readonly:focus {
	outline: none;
}

.contactform > dl:not(.plain) > dd .wpcf7-radio {
	display: flex;
	flex-flow: column;
	margin-left: 0;
}

.wpcf7-list-item {
	margin: 0!important;
}

.contactform > dl:not(.plain) > dd .classification-label {
	display: block;
	color: var(--color-blue);
	font-size: 0.875em;
	width: 100%;
    background-color: var(--color-blue-pale2);
    padding: 0.5em 1em;
    text-align: center;
    font-weight: 700;
    margin-top: 0.5em;
	margin-bottom: 0.5em;
}

.contactform > dl:not(.plain) > dd .classification-inner.wpcf7-radio {
	flex-flow: row;
}

.contactform > dl:not(.plain) > dd .classification-inner > span + span {
	margin-left: 1em!important;
}

.agreement-wrap {
	text-align: center;
	margin-bottom: 1rem;
}

.contactform input[name=agreement] {
	appearance: none;
	-webkit-appearance: none;
	border: none;
}

.contactform input[name=agreement] + span {
	display: flex;
	justify-content: center;
	align-items: center;
}

.contactform input[name=agreement] + span:hover {
	cursor: pointer;
}

.contactform input[name=agreement] + span:before {
	content: '';
	display: inline-block;
	width: 3rem;
	height: 3rem;
	border: 1px solid #aaa;
	border-radius: 3px;
	background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPHN2ZyB2ZXJzaW9uPSIxLjEiIGZvY3VzYWJsZT0iZmFsc2UiCgkgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCA1MTIgNTEyIgoJIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDUxMiA1MTI7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4KCS5zdDB7ZmlsbDojQUFBQUFBO30KPC9zdHlsZT4KPHBhdGggY2xhc3M9InN0MCIgZD0iTTE3My45LDQzOS40TDcuNSwyNzNjLTEwLTEwLTEwLTI2LjIsMC0zNi4ybDM2LjItMzYuMmMxMC0xMCwyNi4yLTEwLDM2LjIsMEwxOTIsMzEyLjdMNDMyLjEsNzIuNgoJYzEwLTEwLDI2LjItMTAsMzYuMiwwbDM2LjIsMzYuMmMxMCwxMCwxMCwyNi4yLDAsMzYuMkwyMTAuMSw0MzkuNEMyMDAuMSw0NDkuNCwxODMuOSw0NDkuNCwxNzMuOSw0MzkuNEwxNzMuOSw0MzkuNHoiLz4KPC9zdmc+Cg==);
	background-size: 50%;
	background-position: center;
	background-repeat: no-repeat;
	margin-right: 1rem;
	background-color: #fff;
}

.contactform input[name=agreement]:checked + span:before {
	content: '';
	display: inline-block;
	width: 3rem;
	height: 3rem;
	border: 1px solid #333;
	border-radius: 3px;
	background-image: url(data:image/svg+xml;base64,PHN2ZyBhcmlhLWhpZGRlbj0idHJ1ZSIgZm9jdXNhYmxlPSJmYWxzZSIgZGF0YS1wcmVmaXg9ImZhcyIgZGF0YS1pY29uPSJjaGVjayIgY2xhc3M9InN2Zy1pbmxpbmUtLWZhIGZhLWNoZWNrIGZhLXctMTYiIHJvbGU9ImltZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTEyIDUxMiI+PHBhdGggZmlsbD0iY3VycmVudENvbG9yIiBkPSJNMTczLjg5OCA0MzkuNDA0bC0xNjYuNC0xNjYuNGMtOS45OTctOS45OTctOS45OTctMjYuMjA2IDAtMzYuMjA0bDM2LjIwMy0zNi4yMDRjOS45OTctOS45OTggMjYuMjA3LTkuOTk4IDM2LjIwNCAwTDE5MiAzMTIuNjkgNDMyLjA5NSA3Mi41OTZjOS45OTctOS45OTcgMjYuMjA3LTkuOTk3IDM2LjIwNCAwbDM2LjIwMyAzNi4yMDRjOS45OTcgOS45OTcgOS45OTcgMjYuMjA2IDAgMzYuMjA0bC0yOTQuNCAyOTQuNDAxYy05Ljk5OCA5Ljk5Ny0yNi4yMDcgOS45OTctMzYuMjA0LS4wMDF6Ij48L3BhdGg+PC9zdmc+);
	background-size: 50%;
	background-position: center;
	background-repeat: no-repeat;
}

.contactform .submit-wrap {
	text-align: center;
}

.contactform .submit-wrap > input[type=submit] {
	width: 100%;
	max-width: 280px;
	border: none;
	color: #fff;
	background-color: var(--color-blue);
	padding: 1rem 2rem;
	cursor: pointer;
}

.contactform .submit-wrap > input[type=submit]:hover {
	opacity: 0.7;
}

.contactform .submit-wrap > input[type=submit]:disabled {
	background-color: #ddd;
	cursor: not-allowed;
}

.contactform > dl > dd >.zip-wrap > span {
    display: flex;
}

.contactform > dl > dd >.zip-wrap input[type=text] {
    width: 10em;
    margin: 0 .25em;
}

.contactform > dl > dd >.zip-wrap > span:before {
    content: "〒";
}

@media (max-width: 810px) {
	.contactform > dl:not(.plain) {
		flex-flow: column;
	}
	
	.contactform > dl:not(.plain) > dt {
		display: block;
		width: 100%;
	}
	
	.contactform > dl:not(.plain) > dd {
		display: block;
		width: 100%;
	}
}