/*
Theme Name: uedawjc's library child site Page Theme
Template:      uedawjc
*/

/* @ import url('/wp-content/themes/uedawjc/style.css'); */	/* Does not work with W3 Total Cache */
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;1,600;1,700&family=Zen+Old+Mincho:wght@400;500;600;900&display=swap');
/*
Description: Style common to PC & Smartphone for uedawjc.ac.jp
Note: CSS variable definitions are also included in this file
*/

/* =Reset default browser CSS. Based on work by Eric Meyer: http://meyerweb.com/eric/tools/css/reset/index.html
-------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-size: 100%;
	margin: 0;
	outline: 0;
	padding: 0;
	max-height: 999999px;	/* against Android Chrome Font Boosting */
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend {
	vertical-align: baseline;
}
table, caption, tfoot, thead {
	vertical-align: middle;
}
:focus {/* remember to define focus styles! */
	outline: 0;
}
caption, th, td {
	font-weight: normal;
	text-align: left;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}
img[usemap^="#"],	/* MTL KAZ: added for IE 9 or older */
a img {
	border: 0;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

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


/* Variables
----------------------------------------------- */
:root {
	/* Dimensions */
	--viewheight: 100vh;

	/* Colors */
	--ueda-pink: #FF508D;
	--ueda-bg-pink: #F778A5;
	--ueda-strong-pink: #ED1A53;
	--ueda-gray: #E6E6E6;
	--ueda-bg-gray: #F4F4F4;
	--ueda-medium-gray: #BEBEBE;	/* KAZ */
	--ueda-strong-gray: #808080;
	--ueda-strong-green: #1FC151;
	--ueda-rose-pink: #F95D6C;	/* 幼児教育学科の色: KAZ */
	--ueda-sky-blue: #31BDDD;	/* 総合文化学科の色: KAZ */
	--ueda-cat-green: #59910D;
	--ueda-cat-blue: #63819F;
	--ueda-cat-purple: #685AA3;
	--ueda-cat-pink: #D08891;
	--ueda-cat-orange: #D07C50;
	--ueda-cat-teal: #5E9B8D;	/* KAZ */
	--ueda-cat-magenta: #D58CB9;	/* KAZ */
}

@media print, screen and (min-width: 768px) {	/* PC */
	:root {
		/* Dimensions */
		--ueda-wall-width: 1030px;
		--ueda-wide-width: 1240px;
		--ueda-narrow-width: 820px;
		--ueda-min-width: 1260px;
		--ueda-initial-header-height: 130px;
		--ueda-floating-header-height: 90px;	/* フロート時 */
	}
}
@media screen and (max-width: 767px) {	/* SP */
	:root {
		/* Dimensions */
		--ueda-wall-width: 89.7436%;	/* 350 / 375 */
		--ueda-wide-width: 89.7436%;	/* 350 / 375 */
		--ueda-narrow-width: 89.7436%;
		--ueda-initial-header-height: 54px;
		--ueda-floating-header-height: 54px;
	}
	#my-top {
		--ueda-initial-header-height: 164px;	/* KAZ */
	}
}
@media screen and (min-width: 783px) {	/* WP Admin Bar */
	:root {
		/* Dimensions */
		--wp-admin-bar-height: 32px;
	}
}
@media screen and (max-width: 782px) {	/* WP Admin Bar */
	:root {
		/* Dimensions */
		--wp-admin-bar-height: 46px;
	}
}
@media print {	/* WP Admin Bar */
	:root {
		/* Dimensions */
		--wp-admin-bar-height: 0px;
	}
}


/* =Structure
----------------------------------------------- */
html {
	scroll-padding-top: var(--ueda-floating-header-height);
}
html:has(body.admin-bar) {	/* on Firefox, the layout.css.has-selector.enabled preference needs to be set true */
	scroll-padding-top: calc(var(--ueda-floating-header-height) + var(--wp-admin-bar-height));
}
body {
	padding: 0;
	font-size: 100%;
	-webkit-text-size-adjust: none;	/* KAZ: was 100% */
	text-size-adjust: none;	/* KAZ */
}
#breadcrumbs /*, #mainwall, #ft_links Aki c/o */ {
	width: var(--ueda-wide-width);
}
#page {
	background: #fff;
	overflow: hidden;	/* 2023.12 KAZ */
	width: 100%;	/* 2023.12 KAZ */
}
#primary {
	float: left;
	margin: 0;
	width: 684px;	/* Width of main area */
}
#primary.nosidebar {
	float: none;
	margin: 0 auto;
	width: 100%;
}
#content {
	margin: 0;
}
#secondary {
	float: right;
	width: 261px;	/* width of sidebar, if no margin between the sidebar and the main area, this can be commented out (MAT) */
}

/* Alignment */
.alignleft {
	float: left;
	margin-right: 1.625em;
	 /* display: inline; */
}
.alignright {
	float: right;
	margin-left: 1.625em;
	 /* display: inline; */
}
.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.wall {
	width: var(--ueda-wall-width);
	margin: 0 auto;
}

/* =Global
----------------------------------------------- */
body, input, textarea, select, button {	/* 2024.2 KAZ: added select and button */
	line-height: 2;	/* was 1.333 */
	color: #222222;	/* was #373737 */
	font-family: 游ゴシック体, "Yu Gothic", 游ゴシック, YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif; /* KAZ: c/o メイリオ, Meiryo  */
	font-weight: 500;	/* Medium; KAZ */
/*	font-feature-settings: "palt"; */	/* KAZ */
}
input, textarea, select {
	font-size: 100%;
}

/* Headings */
h1,h2,h3,h4,h5,h6 {
	clear: both;
}
hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
}

/* Text elements */
hr, p {
	margin-bottom: 16px;
}
strong, .strong  {
	font-weight: bold;
}
cite, em, i {
	font-style: italic;
}
blockquote {
	font-family: Georgia, "Bitstream Charter", serif;
	font-style: italic;
	font-weight: normal;
	margin: 0 3em;
}
blockquote em, blockquote i, blockquote cite {
	font-style: normal;
}
blockquote cite {
	color: #666;
	font: 12px "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 300;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}
pre {
	background: #f4f4f4;
	font: 13px "Courier 10 Pitch", Courier, monospace;
	line-height: 1.5;
	margin-bottom: 1.625em;
	overflow: auto;
	padding: 0.75em 1.625em;
}
code, kbd, samp, var {
	font: 13px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}
abbr, acronym, dfn {
	border-bottom: 1px dotted #666;
	cursor: help;
}
address {
	display: block;
	margin: 0 0 1.625em;
}
ins {
	background: #fff9c0;
	text-decoration: none;
}
sup,
sub {
	font-size: 10px;
	height: 0;
	line-height: 1;
	position: relative;
	vertical-align: baseline;
}
sup {
	bottom: 1ex;
}
sub {
	top: .5ex;
}
small {
	font-size: smaller;
}

/* Table */
table {/* tables still need 'cellspacing="0"' in the markup */
	border-collapse: collapse;
	border-spacing: 0;
	margin-bottom: 16px;
}
tbody {
	vertical-align: top;
}

/* List */
ul {
	list-style: none;
}
ul, ol {
	margin: 0 0 16px 22px;
}
ul {
	list-style: square;
}
ol {
	list-style-type: decimal;
}
ol ol {
	list-style: upper-alpha;
}
ol ol ol {
	list-style: lower-roman;
}
ol ol ol ol {
	list-style: lower-alpha;
}
ul ul, ol ol, ul ol, ol ul {
	margin-bottom: 0;
}

/* Data list */
dl {
	margin: 0 0 1.625em;
}
dt {
	font-weight: bold;
}
dd {
	margin-bottom: 1.625em;
}

/* Forms */
input[type=text],
input[type=password],
input[type=email],
input[type=url],
input[type=number],
textarea {
	background: white;
	box-shadow: none;
	border: 1px solid #ddd;
}
textarea {
	padding-left: 3px;
	width: 98%;
}
input[type=text],
input[type=password],
input[type=email],
input[type=url],
input[type=number] {
	padding: 3px;
}
input[type=submit],
input[type=image],
input[type=button],
button {
	cursor: pointer;
}
form :-ms-input-placeholder { color: #aaaaaa; }	/* IE 10+ */
form ::-webkit-input-placeholder { color: #aaaaaa; }	/* Google Chrome, Safari, Opera 15+, Android, iOS */
form :-moz-placeholder { color: #aaaaaa; opacity: 1; }	/* Firefox 18- */
form ::-moz-placeholder { color: #aaaaaa; opacity: 1; }	/* Firefox 19+ */
form :placeholder-shown { color: #aaaaaa; }

/* Links */
a {
	color: var(--ueda-strong-pink);	/* KAZ */
	text-decoration: none;
}
@media (any-hover: hover) {
	a:hover {
		text-decoration: underline;
	}
}
/* a:focus, a:active, */
a.current {
	text-decoration: underline;
}
@media (any-hover: hover) { 
	a:hover {
		text-decoration: underline;
	}
}

/* Assistive text */
.assistive-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
}
#access a.assistive-text:active,
#access a.assistive-text:focus {
	background: #eee;
	border-bottom: 1px solid #ddd;
	color: #1982d1;
	clip: auto !important;
	font-size: 12px;
	position: absolute;
	text-decoration: underline;
	top: 0;
	left: 7.6%;
}


/* =Header
----------------------------------------------- */
#branding,
#masthead {
	height: var(--ueda-initial-header-height);
}
#branding {
	position: relative;
	z-index: 9999;
}
#branding.floating,
#branding.floating #masthead {
	height: var(--ueda-floating-header-height);
}
#masthead {
	background-color: rgba(255,255,255,0.9);
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
}
#branding.floating #masthead {
	position: fixed;
}
:is(#my-top, #my-libhp) #branding:not(.floating) #masthead {
	position: relative;
}
.admin-bar #branding.floating #masthead {	/* :not(#my-top).admin-bar #branding:not(.floating) #masthead, #my-top.admin-bar #branding.floating #masthead */
	top: var(--wp-admin-bar-height);
}


/* =Menu
-------------------------------------------------------------- */
#headlogo {
	position: absolute;
	top: 0;
	left: 0;
	text-align: center;
	z-index: 1;	/* 2024.2 Aki gnaviがかぶるため */
}
div#headlogo a {
	display: block;
}
#branding.floating #headlogo img.initial,
#branding:not(.floating) #headlogo img.floating {
	display: none;
}
#headmenu {
}
#headmenu ul {
}
#headmenu ul li {
}
#headmenu ul a {
	color: inherit;
}
#headmenu ul#head_contact {
	display: flex;
}
#headmenu ul#head_contact li {
	position: relative;
	width: 94px;
	height: 94px;
	color: white;
	line-height: 1.3333;	/* 16px */
	font-size: 0.75rem;	/* 12px */
	font-weight: bold;
	text-align: center;
}
#headmenu ul#head_contact li::before,
#headmenu ul#head_contact li a {
	border-radius: 50%;
	width: 100%;
	height: 100%;
}
#headmenu ul#head_contact li::before {
	background-color: var(--ueda-pink);
	box-shadow: 0 3px 6px 0 rgba(0,0,0,0.16);
	position: absolute;
	top: 0;
	left: 0;
	content: '';
}
#headmenu ul#head_contact li a {
	display: block;
	position: relative;
}
#headmenu ul#head_contact li.request a {
	background: url(/images/icon_documents.svg) no-repeat center 22px;
	padding-top: 56px;
}
#headmenu ul#head_contact li.contact a {
	background: url(/images/icon_email.svg) no-repeat center 28px;
	padding-top: 53px;
}
#headmenu #gnavi {
}
#headmenu ul:is(#head_menu1, #head_menu2) {
	display: flex;
	align-items: center;
}
#headmenu ul#head_menu1 {
/*	gap: 0 10px; */	/* KAZ: c/o */
}
#headmenu ul#head_menu1 li {
}
#headmenu ul#head_menu1 li.contents .nolink,
#headmenu ul#head_menu1 li.access a {
	display: inline-block;
	position: relative;
/*	padding-left: 35px; */	/* KAZ: moved to PC */
	font-size: 0.875rem;	/* 14px */
}
#headmenu ul#head_menu1 li.contents .nolink {
	background: url(/images/icon_contents_pink.svg) no-repeat;	/* KAZ: position moved to PC */
}
#headmenu ul#head_menu1 li.access a {
	background: url(/images/icon_access_pink.svg) no-repeat;	/* KAZ: position moved to PC */
	color: inherit;
}
/*#headmenu ul#head_menu1 li.contents .nolink::after,
#headmenu ul#head_menu1 li.access a::after,
#headmenu ul#head_menu1 li.sns_icon a::after {
	content: "";
	display: block;
	width: 34px;
	height: 34px;
	background-color: var(--ueda-pink);
	border-radius: 50%;
	position: absolute;
}Aki moved to pc.css */
#headmenu ul:is(#head_menu1, #head_menu2) li .submenu_panel {
	display: none;
}
#headmenu ul#head_menu1 li .submenu_panel {
}
#headmenu ul#head_menu1 li .submenu_panel ul li a {
	display: block;
	font-size: 0.9375rem;	/* 15px */
}
#headmenu ul#head_menu1 li .submenu_panel ul li a::before {
	background-color: var(--ueda-pink);
	display: inline-block;
	width: 5px;
	height: 1px;
	margin-right: 9px;
	vertical-align: middle;
	content: '';
}
#headmenu ul#head_menu1 li.searchform #searchform {
	background-color: var(--ueda-bg-gray);
	border: solid 1px var(--ueda-gray);
	border-radius: 17px;
	height: 34px;
}
#searchform input, #searchform button {
	height: 32px;
}
#searchform input {
}
#searchform button {
	-webkit-appearance: none;
	appearance: none;
	width: 40px;
	text-align: center;
	line-height: 0;
	vertical-align: top;
}
#searchform button img {
	width: 15px;
	height: auto;
}
#searchform input, #searchform button {
	background-color: transparent;
	border: 0;
	box-shadow: none;
}
#headmenu ul#head_menu1 li.sns_icon a {
	background: url(/images/icon_line_gray.svg)no-repeat center var(--ueda-gray);
	border-radius: 50%;
	display: inline-block;
	width: 34px;
	height: 34px;
	line-height: 34px;
	text-align: center;
}
#headmenu ul#head_menu1 li.sns_icon.instagram a {
	background-image: url(/images/icon_instagram_gray.svg);
}
#headmenu ul#head_menu1 li.sns_icon a img {
	vertical-align: middle;
}
#headmenu ul#head_menu2 {
}
#headmenu ul#head_menu2 li {
}
#headmenu ul#head_menu2 > li .parent,
#headmenu ul#head_menu2 > li > a {
}
#headmenu ul#head_menu2 > li .parent .nolink,
#headmenu ul#head_menu2 > li > a,
#headmenu ul#head_menu2 li .submenu_panel a {
	display: block;
}
#headmenu ul#head_menu2 > li .parent .nolink {
}
/* #headmenu ul#head_menu2 > li .parent .nolink text, */	/* 2024.3 KAZ: c/o */
#headmenu ul#head_menu2 > li > a .text {
	display: inline-block;
}
#headmenu ul#head_menu2 > li > a {
}
#headmenu ul#head_menu2 li .submenu_panel {
}
#headmenu ul#head_menu2 li .submenu_panel .heading {
}
#headmenu ul#head_menu2 li .submenu_panel .heading .ttl {
}
#headmenu ul#head_menu2 li .submenu_panel .heading .ttl .en {
	color: var(--ueda-pink);
	line-height: 1;
}
#headmenu ul#head_menu2 li .submenu_panel .heading .ttl .ja {
	position: relative;
}
#headmenu ul#head_menu2 li .submenu_panel .heading .ttl .ja::after,
#headmenu ul#head_menu2 li .submenu_panel > ul > li > a::before,
#headmenu ul#head_menu2 li .submenu_panel > ul > li > a::after,
#headmenu ul#head_menu2 li .submenu_panel > ul > li .child a::before,
#headmenu ul#head_menu2 li .submenu_panel > ul > li .child a::after,
#headmenu ul#head_menu2 li .submenu_panel > ul > li > ul li a::before,
#headmenu ul#head_menu2 li .submenu_panel > ul > li > ul li a::after {
	background-color: var(--ueda-pink);
	display: block;
	position: absolute;
	height: 1px;
	right: 0;
	transition: all 0.2s 0s ease;
	content: "";
}
#headmenu ul#head_menu2 li .submenu_panel .heading .ttl .ja::after {
	width: 10px;
	bottom: -1px;
}
#headmenu ul#head_menu2 li .submenu_panel .heading .submenu_library {
}
#headmenu ul#head_menu2 li .submenu_panel .heading .submenu_library a {
	border-color: var(--ueda-pink);	/* KAZ */
	color: var(--ueda-strong-pink);	/* KAZ: was var(--ueda-pink) */
	font-weight: bold;	/* KAZ */
}
#headmenu ul#head_menu2 li .submenu_panel > ul {
}
#headmenu ul#head_menu2 li .submenu_panel > ul > li {
}
#headmenu ul#head_menu2 li .submenu_panel > ul > li > a,
#headmenu ul#head_menu2 li .submenu_panel > ul > li .child a {
	display: block;
	position: relative;
	color: var(--ueda-strong-pink);	/* KAZ: was var(--ueda-pink) */
}
#headmenu ul#head_menu2 li .submenu_panel > ul > li > a::before,
#headmenu ul#head_menu2 li .submenu_panel > ul > li > a::after,
#headmenu ul#head_menu2 li .submenu_panel > ul > li .child a::before,
#headmenu ul#head_menu2 li .submenu_panel > ul > li .child a::after,
#headmenu ul#head_menu2 li .submenu_panel > ul > li > ul li a::before,
#headmenu ul#head_menu2 li .submenu_panel > ul > li > ul li a::after {
	top: 50%;
}
#headmenu ul#head_menu2 li .submenu_panel > ul > li > a::before,
#headmenu ul#head_menu2 li .submenu_panel > ul > li .child a::before,
#headmenu ul#head_menu2 li .submenu_panel > ul > li > ul li a::before {
	background-color: var(--ueda-gray);
	width: 15px;
}
#headmenu ul#head_menu2 li .submenu_panel > ul > li > a::after,
#headmenu ul#head_menu2 li .submenu_panel > ul > li .child a::after,
#headmenu ul#head_menu2 li .submenu_panel > ul > li > ul li a::after {
	width: 5px;
}
#headmenu ul#head_menu2 li .submenu_panel > ul > li .child {
}
#headmenu ul#head_menu2 li .submenu_panel > ul > li .child a {
}
#headmenu ul#head_menu2 li .submenu_panel > ul > li > ul {
}
#headmenu ul#head_menu2 li .submenu_panel > ul > li > ul li {
}
#headmenu ul#head_menu2 li .submenu_panel > ul > li > ul li a {
	position: relative;
	display: block;
}


#breadcrumbs {
	font-size: 80%;		/* 16px * 94% * 80% = 12.03px */
	line-height: 1;
	margin: 12px auto 15px;
}


/* =Content
----------------------------------------------- */
#topmain, #main {
	clear: both;
	overflow: hidden;
	position: relative;
}
#topmain {
}
#main {
}
#mainwall {
		/* Mat c/o for slide show buttons like http://kobabo-s.com  overflow: hidden; */
	margin: 0 auto;
}
.page-header,
.entry-header {
	background-color: var(--ueda-bg-gray);
}
.page .entry-header.type-a {
	position: relative;
	margin-bottom: 35px;
}
#my-values .entry-header.type-values {	/* Special */
	background-color: transparent;
	position: absolute;
	left: 50%;
	z-index: 100;
	color: white;
	transform: translateX(-50%);
}
#my-voices .entry-header.type-a {	/* Special; 2024.3 KAZ: was #my-why-uwjc */
	margin-bottom: 0;
}
.page .entry-header .entry-image,
.page .entry-header .entry-image img {	/* .type-a and special */
	width: 100%;
}
.page .entry-header .entry-image {	/* .type-a and special */
	position: absolute;
	top: 0;
	left: 0;
}
.page .entry-header .entry-image img {	/* .type-a and special */
	height: 100%;
	object-fit: cover;
}
.page-title,
.entry-title,
.entry-header .catchline,	/* KAZ */
.entry-header .appendix {	/* KAZ */
	text-align: center;
}
.page-title,
.entry-title {
	clear: both;
}
.page-title,
body.page .entry-title {	/* 2024.3 KAZ: added body */
	position: relative;
	width: var(--ueda-wall-width);
	margin-inline: auto;
	line-height: 1.4667;	/* 44px */
	font-size: 1.875rem;	/* 30px */
}
.page-title,
.page .entry-header.type-b .entry-title,
.page .entry-header.type-c .entry-title {
	height: 100%;
}
.page .entry-header.type-a .entry-title {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	height: calc(100% + 35px);
	margin-bottom: -35px;
}
#my-interview .entry-header.type-interview .entry-title {	/* Special */
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}
.single-post .entry-title {
	font-weight: bold;
}
.page-title::after,
.page .entry-header.type-b .entry-title::after,
.page .entry-header.type-c .entry-title::after {
	background-color: var(--ueda-strong-pink);
	display: block;
	position: absolute;
	width: 1px;
	bottom: 0;
	left: 50%;
	content: '';
}
.parent-pageid-140 .entry-header.type-b .entry-title::after,
.parent-pageid-140 .entry-header.type-c .entry-title::after {
	background-color: var(--ueda-rose-pink);
}
.parent-pageid-142 .entry-header.type-b .entry-title::after,
.parent-pageid-142 .entry-header.type-c .entry-title::after {
	background-color: var(--ueda-sky-blue);
}
.page .entry-header.type-a .entry-title .inner {
	background-color: white;
}
#my-interview .entry-header.type-interview .entry-title .inner {	/* Special */
	background-color: var(--ueda-pink);
	position: relative;
	color: white;
	font-weight: bold;
}
#my-opencampus .entry-header.type-a .entry-title .inner {	/* Special */
	background-color: var(--ueda-strong-green);
	color: white;
}
#my-voices .entry-header.type-a .entry-title .inner {	/* Special; 2024.3 KAZ: was #my-why-uwjc */
	position: relative;
}
#my-opencampus .entry-header.type-a .entry-title .inner .catchline {	/* Special Aki */
	letter-spacing: 0.15em;
}
#my-opencampus .entry-header.type-a .entry-title .inner .catchline span.large {	/* Special Aki */
	letter-spacing: normal;
}
#my-voices .entry-header.type-a .entry-title .inner::after {	/* Special; 2024.3 KAZ: was #my-why-uwjc */
	border-top: white 26px solid;
	border-left: transparent 15px solid;
	border-right: transparent 15px solid;
	display: block;
	position: absolute;
	width: 30px;
	height: 26px;
	bottom: -26px;
	left: calc(50% - 15px);
	content: '';
}
#my-interview .entry-header.type-interview .entry-title .inner .catchline {	/* Special */
	background-color: white;
	border-radius: 20px;
	position: absolute;
	width: 274px;
	top: -24px;
	left: calc(50% - 137px);
	line-height: 51px;
	color: var(--ueda-pink);
	font-size: 1.125rem;	/* 18px */
}
#my-interview .entry-header.type-interview .entry-title .inner .catchline::after {	/* Special */
	border-top: white 11px solid;
	border-left: transparent 7px solid;
	border-right: transparent 7px solid;
	display: block;
	position: absolute;
	width: 14px;
	height: 11px;
	bottom: -11px;
	left: calc(50% - 7px);
	content: '';
}
#my-voices .entry-header.type-a .entry-title .inner .catchline,
#my-voices .entry-header.type-a .entry-title .inner .ja {	/* Special; 2024.3 KAZ: was #my-why-uwjc */
	font-weight: bold;
}
#my-voices .entry-header.type-a .entry-title .inner .catchline {	/* Special; 2024.3 KAZ: was #my-why-uwjc */
	line-height: 1.5882;	/* 27px */
	font-size: 1.0625rem;	/* 17px */
}
.page-title .inner .ja,
.page .entry-title .inner .ja {
	color: var(--ueda-pink);
	font-weight: normal;
}
#my-values .entry-header.type-values .entry-title .inner .ja,
#my-interview .entry-header.type-interview .entry-title .inner .ja,
#my-opencampus .entry-header.type-a .entry-title .inner .ja {	/* Special */
	color: inherit;
}
#my-values .entry-header.type-values .entry-title .inner .ja {	/* Special */
	margin-bottom: 34px;
}
#my-education .entry-header .entry-title .inner .ja,
.parent-pageid-140 .entry-header .entry-title .inner .ja {
	color: var(--ueda-rose-pink);
}
#my-culture .entry-header .entry-title .inner .ja,
.parent-pageid-142 .entry-header .entry-title .inner .ja {
	color: var(--ueda-sky-blue);
}
#my-interview .entry-header.type-interview .entry-title .inner .ja {	/* Special */
	margin-bottom: 2px;
	line-height: 1.3;	/* 52px */
	font-size: 2.5rem;	/* 40px */
	font-weight: inherit;
}
.page-title .inner .en,
.page .entry-title .inner .en {
	margin-right: -0.18em;	/* counter letter-spacing for centering */
	letter-spacing: 0.18em;
}
#my-interview .entry-header.type-interview .entry-title .inner .en {	/* Special */
	margin-bottom: 17px;
	margin-right: -0.18em;	/* counter letter-spacing for centering */
	line-height: 1.5;	/* 24px */
	font-size: 1rem;	/* 16px */
	letter-spacing: 0.18em;
}
#my-values .entry-header.type-values .entry-title .inner .appendix {	/* Special */
	line-height: 2.0833;	/* 50px @24px */
	font-weight: bold;
}
#my-interview .entry-header.type-interview .entry-title .inner .appendix {	/* Special */
	line-height: 1.7857;	/* 25px */
	font-size: 0.875rem;	/* 14px */
}
#my-opencampus .entry-header.type-a .entry-title .inner .appendix {	/* Special */
	line-height: 1.4706;	/* 25px */
	font-size: 1.0625rem;	/* 17px */
	font-weight: 600;	/* Aki */
}
#my-search article .entry-title br {
	display: none;	/* 2024.3 KAZ */
}
/*.page-title a {
 *	font-size: 12px;
 *	font-weight: bold;
 *	letter-spacing: 0;
 *	text-transform: none;
 *}
 */
.entry-title a {
	color: inherit;
	text-decoration: none;
}
@media (any-hover: hover) { 
	.entry-title a:hover {
		color: inherit;
		text-decoration: underline;
	}
}
.entry-title img {
	vertical-align: middle;
}
.hentry,
.no-results {
	position: relative;
}
.hentry:last-child,
.no-results {
	border-bottom: none;
}
.blog .sticky .entry-header .entry-meta {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
}
.entry-meta {
	color: #666;
	clear: both;
	font-size: 12px;
	line-height: 18px;
}
.entry-meta a {
	font-weight: bold;
}
.single-author .entry-meta .by-author {
	display: none;
}
.entry-content,
.entry-summary {
/*	margin-bottom: 20px; */
	font-size: 0.9375rem;	/* 15px; KAZ: default !!! */
}
.entry-content h1, .entry-content h2 {
	margin: 0 0 20px;
}
.entry-content h1 {
	line-height: 1.4667;	/* 44px */
	font-size: 1.875rem;	/* 30px */
	font-weight: normal;
}
.entry-content h2 {
	line-height: 1.4286;	/* 40px */
	font-size: 1.75rem;	/* 28px */
	font-weight: bold;
}
.entry-content h3 {
	line-height: 1.5;	/* 36px */
	font-size: 1.5rem;	/* 24px */
	font-weight: bold;
}
.entry-content h4 {
	line-height: 1.2941;	/* 22px */
	font-size: 1.0625rem;	/* 17px */
	font-weight: bold;
}
.entry-content #s {
	width: 75%;
}
.entry-content p, .entry-content li {	/* to avoid Android's bug, see wordpress\todo.txt in MTL */
	background-color: rgba(255,255,255,0.01);
}
.entry-content p.lowheight,
.entry-content ul,
.entry-content ol,
.entry-content table {
	line-height: 1.6667;	/* 25px */
}
 	/* -- Mat copied from the original twentyeleven .css after pointed out by Viex and talking with kaz 2021.1 */
.entry-content table {
	border-bottom: 1px solid #ddd;
	width: 100%;
}
.entry-content th,
.entry-content td {
	border-top: var(--ueda-medium-gray) 1px solid;
	/* padding is defined in media query */
}
.entry-content th {
	font-weight: bold;
}
.entry-content tbody th {
	background-color: var(--ueda-bg-gray);
}
.entry-content ul {
	margin-left: 0;	/* KAZ: default */
}
.entry-content ul:not(.nostyle) li {
	list-style-type: none;	/* KAZ: default */
	/* margin-bottom is defined in media query */
	padding-left: 20px;
}
.entry-content ul:not(.nostyle) li::before {
	background-color: var(--ueda-pink);
	border-radius: 50%;
	display: inline-block;
	float: left;
	width: 1em;
	height: 1em;
	margin-top: 0.3333em;	/* assumed line-height is 1.6667 */
	margin-left: -20px;
	margin-right: calc(20px - 1em);
	content: '';
}
.entry-content th p,
.entry-content td p,
.entry-content li p {
	/* margin-bottom is defined in media query */
}
.entry-content th p:last-child,
.entry-content td p:last-child,
.entry-content li p:last-child {
	margin-bottom: 0;
}
.entry-content a {
	text-decoration: underline;	/* KAZ: default !!! */
}
dl.gallery-item {
	margin: 0;
}
.page-link {
	clear: both;
	display: block;
	margin: 0 0 1.625em;
}
.page-link a {
	background: #eee;
	color: #373737;
	margin: 0;
	padding: 2px 3px;
	text-decoration: none;
}
@media (any-hover: hover) { 
	.page-link a:hover {
		background: #888;
		color: #fff;
		font-weight: bold;
	}
}
.page-link span {
	margin-right: 6px;
}
.entry-meta .edit-link a {
	background: #eee;
	-moz-border-radius: 3px;
	border-radius: 3px;
	color: #666;
/*	float: right; Aki c/o */
	font-size: 12px;
	line-height: 1.5em;
	font-weight: 300;
	text-decoration: none;
	padding: 0 8px;
	position: absolute;	/* Aki */
	right: 0;	/* Aki */
	bottom: 0;	/* Aki */
}
@media (any-hover: hover) { 
	.entry-meta .edit-link a:hover {
		background: #888;
		color: #fff;
	}
}
.entry-content .edit-link {
	clear: both;
	display: block;
}
#searchform .screen-reader-text {
	display: none;
}

/* Gutenberg blocks */
/* Counter-styles against /wp-includes/css/dist/block-library/style.min.css */
.entry-content figure {
	margin-bottom: 45px;
}
.entry-content .wp-block-image {
	line-height: 0;
}
.entry-content .wp-block-image .alignleft {
	margin-right: 40px;
}
.entry-content .wp-block-image .alignright {
	margin-left: 40px;
}
.entry-content .wp-block-image figcaption {
	line-height: 1.5;
	color: inherit;
	font-size: 100%;
}

/* Images */
.entry-content img {
	max-width: 100%;
	height: auto;
}
p img,
.wp-caption {
	margin-top: 0.4em;
}
.wp-caption {
	max-width: 100%;	/* KAZ: was 96% */
/*	background: #eee; */
/*	margin-bottom: 1em; */
/*	padding: 5px 0; */
}
.wp-caption img {
	display: block;
/*	margin: 0 auto; */
/*	max-width: 98%; */
}
.wp-caption img[class*='wp-image-'] {	/* MTL: added against img[class*='wp-image-'] */
	border: 0;
	padding: 0;
}
.wp-caption .wp-caption-text,
.gallery-caption {
/*	color: #666; */
	font-size: 0.8125rem;	/* 13px; KAZ: was 12px */
}
.wp-caption .wp-caption-text {
/*	background: transparent; */
	position: relative;
/*	margin-bottom: 1px; */
/*	padding: 2px 0 0 5px; */
	padding-top: 15px;	/* KAZ */
	line-height: 1.7692;	/* 23px; KAZ */
/*	text-align: center; */
}
#content .gallery {
	margin: 0 auto 1.625em;
}
#content .gallery a img {
	border: none;
}
img#wpstats {
	display: block;
	margin: 0 auto 1.625em;
}
#content .gallery-columns-4 .gallery-item {
	width: 23%;
	padding-right: 2%;
}
#content .gallery-columns-4 .gallery-item img {
	width: 100%;
	height: auto;
}

/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
	max-width: 100%;
}


/* =error404
----------------------------------------------- */
.error404 .entry-title {	/* MAY-2023 KAZ: added */
	padding: 200px 0;
	text-align: center;
}
.error404 #primary #searchform {
	background: #f9f9f9;
	border: 1px solid #ddd;
	overflow: hidden;
	margin: 0 0 25px;
}
.error404 #primary #s {
	width: 95%;
}
.error404 #primary .widget {
	clear: none;
	float: left;
	width: 45%;
}
.error404 #primary .widget_archive {
	clear: both;
}


/* =Navigation
-------------------------------------------------------------- */
#content nav {
	clear: both;
	overflow: hidden;
/*	padding: 0 0 1.625em; Aki c/o */
}
#content nav a {
	color: inherit;
}
#nav-above {
	padding: 0 0 1.625em;
}
#nav-above {
	display: none;
}
.paged #nav-above {
	display: block;
}
.nav-previous {
	float: left;
	width: 50%;
}
.nav-next {
	float: right;
	text-align: right;
	width: 50%;
}
#content nav .meta-nav {
	font-weight: normal;
}

/* Singular navigation */
#content #nav-single {
	width: 100%;
}

#content div.wp-pagenavi {
	clear: both;
	text-align: center;
}
#content div.wp-pagenavi a,
#content div.wp-pagenavi span {
	display: inline-block;
	border: 0;
	min-width: 34px;
	min-height: 34px;
	margin: 0 2px;
	padding: 0; /* Aki was 0 5px */
	line-height: 34px;
	border-radius: 50%;
	font-size: 0.8125rem;	/* 13px*/
	font-weight: 600;
	transition: 0.3s;
}
#content div.wp-pagenavi span.current {
/*	font-weight: inherit; Aki c/o */
	background-color: var(--ueda-pink);	/* Aki was #42210b */
	color: white;
}
#content div.wp-pagenavi a.page,
#content div.wp-pagenavi a.previouspostslink,
#content div.wp-pagenavi a.nextpostslink,
#content div.wp-pagenavi span.extend {
	color: inherit;
}
#content div.wp-pagenavi a.page {
	color: var(--ueda-strong-gray);
	background-color: white;	/* Aki was #d2caba */
}
#content div.wp-pagenavi a.previouspostslink,
#content div.wp-pagenavi a.nextpostslink {
	color: transparent;
	background-color: var(--ueda-bg-gray);
	position: relative;
}
#content div.wp-pagenavi a.previouspostslink::after,
#content div.wp-pagenavi a.nextpostslink::after {
	content: url(/images/icon_pagenavi.svg);
	display: block;
	position: absolute;
	top: 3px;
	left: 13px;
}
#content div.wp-pagenavi a.nextpostslink::after {
	transform: rotate(180deg);
	top: -3px;
}

@media (any-hover: hover) {
	#content div.wp-pagenavi a.page:hover,
	#content div.wp-pagenavi a.previouspostslink:hover,
	#content div.wp-pagenavi a.nextpostslink:hover{
		background-color: var(--ueda-pink);	/* Aki was #42210b */
		color: white;
	}
	#content div.wp-pagenavi a.page:hover {
		transition: 0.3s;
	}
	#content div.wp-pagenavi a.previouspostslink:hover,
	#content div.wp-pagenavi a.nextpostslink:hover {
		color: transparent;
	}
	#content div.wp-pagenavi a.previouspostslink:hover::after,
	#content div.wp-pagenavi a.nextpostslink:hover::after {
		content: url(/images/icon_pagenavi_on.svg);
	}
}


/* =Widgets
----------------------------------------------- */
.widget {
	word-wrap: break-word;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
	clear: both;
	margin: 0 0 10px;
}
.widget h3.widget-title {
}
.widget ul {
	margin: 0;
	list-style-type: none;
}
.widget ul ul {
	margin-left: 1.5em;
}


/* =Footer
----------------------------------------------- */
#colophon {
	clear: both;
	overflow: hidden;
	color: white;
	background-color: var(--ueda-bg-pink);
}
#colophon .left_wrap {
}
#ft_logo {
}
#ft_sns {
	display: flex;
	gap:0 8px;
}
#ft_sns .sns_icon {
	text-align: center;
	background-color: white;
	border-radius: 50%;
}
#ft_sns a {
	height: auto;
}
#ft_add p {
	font-size: 0.875rem;	/* 14px */
	line-height: 1.357;
}
#colophon .right_wrap {
}
#ft_links {
	overflow: hidden;
	margin: 0 auto;
}
#footlink {
}
#footlink a, ul#footmenu li a {
	color: white;
	font-size: 0.9375rem;	/* 15px */
	line-height: 1;
}
#footlink a.linkbtn {	/* 2024.5 KAZ: added .linkbtn */
	border-color: white;	/* KAZ: added */
	background-color: var(--ueda-bg-pink);	/* 2024.2 Aki */
	width: 300px;
	line-height: 67px;
}
#footlink a.linkbtn::after {
	background-color: white;
}
ul#footmenu {
	display: flex;
	text-align: center;
}
ul#footmenu li {
}
ul#footmenu li a {
	position: relative;
	padding: 0 15px;
}
ul#footmenu li a::after {
	content: "";
	display: block;
	width: calc(100% - 30px);
	height: 1px;
	background-color: white;
	position: absolute;
	bottom: 2px;
	left: 15px;
	right: 15px;
	transform: scale(0, 1);
	transform-origin: left top;
	transition:  transform .3s;
}
ul#footmenu li:not(:first-child) a::before {
	content: "";
	display: inline-block;
	width: 1px;
	height: 14px;
	background-color: white;
	position: absolute;
	top: 3px;
	left: 0;
}
@media (any-hover: hover) {
	ul#footmenu li a:hover {
		text-decoration: none;
	}
	ul#footmenu li a:hover::after {
		transform: scale(1, 1);
	}
}
#ft_copyright {
	line-height: 1.3077;	/* 17px; 2024.3 KAZ: was 1 */
	font-size: 0.8125rem;	/* 13px */
}


/* Common entries
-------------------------------------------------------------- */
.left {
	text-align: left;
	display: block;	/* Mat added these. If you use these for table, list, etc. and can't cover by the following td.right .., please override these invidually. */
}
.center {
	text-align: center;
	display: block;
}
.right {
	text-align: right;
	display: block;
}
td.right, th.right, td.center, th.center, td.left, th.left {
	display: table-cell;
}
li.right, li.right, li.center {
	display: list-item
}
.middle {
	vertical-align: middle;
}
.imgonly {
	line-height: 0;
}
.imgonly a,
a.imgonly {
	display: inline-block;
}
.bold {
	font-weight: bold;
}
.clear {
	clear: both;
}
a.current img {
	opacity: 0.75;
	filter: alpha(opacity=75);
}
@media (any-hover: hover) {
	.transbtn:hover, a:hover img {
		opacity: 0.75;
		filter: alpha(opacity=75);
	}
	.notransbtn:hover, a:hover img.notransbtn, #headlogo a:hover img, #ft_links a:hover img {
		opacity: 1;
		filter: none;
	}
}
/*.ios .transbtn:hover { */
/* iOS 8.4.1 で :hover に opacity が指定してあると 2 回タップしないとリンク先に飛ばない。script.js でユーザーエージェントを見て body に class="ios" を追加。 */
/*	opacity: 1;
 *	filter: none;
 *}
 */
.nomargin {
	margin: 0 !important;
}
.topbottommargin {
	margin: 20px auto !important;
}
.topmargin {
	margin-top: 60px !important;
}
.topmarginbig {
	margin-top: 80px !important;
}
.notopmargin {
	margin-top: 0 !important;
}
.bottommargin {
	margin-bottom: 20px !important;
}
.bottommarginbig {
	margin-bottom: 60px !important;
}
.nobottommargin {
	margin-bottom: 0 !important;
}
.onlymarginright{
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	margin-left: 0 !important;
}
.onlymarginleft{
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	margin-right: 0 !important;
}
.nopadding {
	padding: 0 !important;
}
.noborder {
	border: 0px !important;
}
.border {
	border: 1px solid gray;
}
.noclear {
	clear: none !important;
}
.nobackground {
	background: transparent none !important;
}
ul.nostyle {
	list-style: none;
	margin: 0;
}
.imgonly img {
	max-width: 100%;
	height: auto;
}
.mincho {
	font-family: 'Zen Old Mincho', serif;
	font-weight: normal;	/* KAZ */
}
.barlow {
	font-family: 'Barlow', sans-serif;
	font-style: italic;	/* KAZ */
	font-weight: 600;	/* Semibold; KAZ */
}
:is(h1, h2, h3).underlined {
	position: relative;
	padding-bottom: 21px;
	color: var(--ueda-pink);
	font-weight: normal;
	text-align: center;
}
:is(h1, h2, h3).underlined::before,
:is(h1, h2, h3).underlined::after {
	display: block;
	position: absolute;
	height: 1px;
	bottom: 0;
	content: '';
}
:is(h1, h2, h3).underlined::before {
	background-color: var(--ueda-gray);
	width: 100vw;
	left: calc(50% - 50vw);
}
:is(h1, h2, h3).underlined::after {
	background-color: var(--ueda-strong-pink);
	width: 30px;
	left: calc(50% - 15px);
}
:is(h2, h3).markonbottom {
	position: relative;
	padding-bottom: 13px;
	font-weight: bold;
}
:is(h2, h3).markonbottom::after {
	background-color: var(--ueda-strong-pink);
	display: block;
	position: absolute;
	width: 58px;
	height: 1px;
	bottom: 0;
	left: 0;
	content: '';
}
:is(h2, h3, h4).markonleft {	/* 2024.3 KAZ: added h4 */
	position: relative;	/* 2024.3 KAZ: merged from ito.css */
	margin-left: 13px;	/* 2024.3 KAZ: merged from ito.css; was padding-left */
	font-weight: bold;
}
:is(h2, h3, h4).markonleft::before {	/* 2024.3 KAZ: added h4 */
	border-left: var(--ueda-strong-pink) 1px solid;
	border-right: var(--ueda-strong-pink) 1px solid;
	display: inline-block;
	position: absolute;	/* 2024.3 KAZ: merged from ito.css */
	width: 3px;
	height: calc(100% - 13px) !important;	/* Aki was 20px from kashiyo */
	top: 50%;	/* 2024.3 KAZ: merged from ito.css */
	left: 0;	/* 2024.3 KAZ: merged from ito.css */
	margin-left: -13px;
	margin-right: 10px;
	transform: translateY(calc(-50% + 2px)) !important;	/* 2024.3 KAZ: merged from ito.css and revised */
/*	vertical-align: -2px; */
	content: '';
}
:is(h3, h4).pink {
	line-height: 1.5882;	/* 27px */
	color: var(--ueda-strong-pink);
	font-size: 1.0625rem;	/* 17px */
	font-weight: bold;
}
.entry-content .catchline {
	color: var(--ueda-strong-pink);
	font-weight: bold;
}
.leadline {
	font-weight: bold;
}
.twocolumns {
	margin-bottom: 16px;	/* KAZ: like p */
}
a.linktext {
	display: inline-block;
	position: relative;
	padding-left: 20px;
	color: inherit;
	font-size: 0.9375rem;	/* 15px 2024.2 Aki */
	font-weight: 600;	/* 2024.2 Aki */
	text-decoration: none;
}
a.linktext::before,
a.linktext::after {
	display: block;
	position: absolute;
	height: 1px;
	top: 50%;
	content: '';
}
a.linktext::before {
	background-color: var(--ueda-gray);
	width: 15px;
	left: 0;
}
a.linktext::after {
	background-color: var(--ueda-pink);
	width: 5px;
	left: 10px;
	transition: all 0.2s 0s ease;
}
a.linkbtn,
span.linkbtn.nolink,	/* 2024.3 KAZ */
button.linkbtn {
	font-size: 0.9375rem;	/* 15px 2024.2 Aki */
	border: var(--ueda-gray) 1px solid;	/* KAZ: added default border color */
	background-color: white;	/* 2024.2 Aki */
	display: inline-block;	/* KAZ: was block */
	position: relative;
	min-width: 195px;	/* 2024.2 Aki */
	padding-left: 20px;
	padding-right: 30px;	/* KAZ */
	line-height: 60px;
	color: inherit;		/* KAZ */
	text-decoration: none;	/* KAZ */
	text-align: left;	/* Aki */
}
a.linkbtn.pink,
span.linkbtn.nolink.pink,	/* 2024.3 KAZ */
button.linkbtn.pink,
a.linkbtn.gray,
span.linkbtn.nolink.gray,	/* 2024.3 KAZ */
button.linkbtn.gray {
	color: white;
	font-weight: bold;
}
a.linkbtn.pink,
span.linkbtn.nolink.pink,	/* 2024.3 KAZ */
button.linkbtn.pink {
	background-color: var(--ueda-strong-pink);
	border-color: var(--ueda-strong-pink);
}
a.linkbtn.gray,
span.linkbtn.nolink.gray,	/* 2024.3 KAZ */
button.linkbtn.gray {
	background-color: var(--ueda-medium-gray);
	border-color: var(--ueda-medium-gray);
}
a.linkbtn.black,
span.linkbtn.nolink.black,	/* 2024.3 KAZ */
button.linkbtn.black {
	width: 295px;	/* Aki */
	font-weight: 600;
	line-height: 81px;
}
.entry-content a.linkbtn {
	min-width: 204px;	/* KAZ: for template */
}
a.linkbtn::after,
span.linkbtn.nolink::after,	/* 2024.3 KAZ */
button.linkbtn::after {
	background-color: var(--ueda-pink);
	display: block;
	position: absolute;
	width: 10px;
	height: 1px;
	top: 50%;
	right: -1px;	/* KAZ: was 0 */
	transition: all 0.2s 0s ease;
	content: "";
}
a.linkbtn.pink::after,
span.linkbtn.nolink.pink::after,	/* 2024.3 KAZ */
button.linkbtn.pink::after,
a.linkbtn.gray::after,
span.linkbtn.nolink.gray::after,	/* 2024.3 KAZ */
button.linkbtn.gray::after {
	background-color: white;
}
a.linkbtn.black::after,
span.linkbtn.nolink.black::after,	/* 2024.3 KAZ */
button.linkbtn.black::after {
	background-color: #222222;
}
a.linkbtn.hasimage,
span.linkbtn.nolink.hasimage {	/* 2024.3 KAZ */
	display: flex;
	align-items: center;
}
a.linkbtn.hasimage .linkimage,
span.linkbtn.nolink.hasimage .linkimage {	/* 2024.3 KAZ */
	display: inline-block;
	overflow: hidden;
	vertical-align: middle;
	transition: all 0.3s 0s ease;
	margin-right: 15px;
}
a.linkbtn.hasimage .text,
span.linkbtn.nolink.hasimage .text {	/* 2024.3 KAZ */
	width: calc(100% - 125px);
	color: var(--ueda-pink);
	font-weight: 600;
	line-height: 1.5;
}
/* libhpのpc.cssよりコピー */
a.linkbtn.darkgray {
	position: relative;
	font-weight: 600;
	width: 295px;
	line-height: 81px;
}
a.linkbtn.darkgray.lines {
	height: 83px;
	line-height: 1.5;
	padding-top: 18px;
}
a.linkbtn.darkgray::before {
	content: "";
	display: block;
	width: 0;
	height: 81px;
	background: rgba(0,0,0,0.5);
	transition: all 0.3s 0s ease;
	z-index: -1;
	position: absolute;
	top: 0;
	left: 0;
}
a.linkbtn.darkgray::after {
	background-color: #222222;
}
@media (any-hover: hover) {
	a.linktext:hover::after,
	button.linktext:hover::after {
		width: 15px;
		left: 0;
	}
	a.linkbtn:hover,
	button.linkbtn:hover {
		text-decoration: none;
	}
	a.linkbtn:hover::after,
	button.linkbtn:hover::after {
		width: 20px;
/*		transition: all 0.3s 0s ease; */
	}
	a.linkbtn.darkgray:hover {	/* libhpのpc.cssよりコピー */
		color: white;
		background-color: transparent;
		z-index: 1;
	}
	a.linkbtn.darkgray:hover::before {	/* libhpのpc.cssよりコピー */
		width: 100%;
	}
	a.linkbtn.darkgray:hover::after {	/* libhpのpc.cssよりコピー */
		background-color: white;
	}
	a.linkbtn.hasimage:hover {
		border-color: var(--ueda-pink);
	}
	a.linkbtn.hasimage:hover .linkimage img{
		opacity: 1;
		transform: scale(1.1);
	}
	section h2 a:hover {
		text-decoration: none;
	}
}
.inquiry_banner {
	background-color: var(--ueda-bg-pink);
	margin-bottom: 20px;
	color: white;
}
.inquiry_banner a {
	color: inherit;
	text-decoration: none;
}
.inquiry_banner .descr {
	margin-bottom: 24px;
}
.inquiry_banner .phone {
}
.inquiry_banner .phone .heading {
	border-bottom: 1px solid;
	padding-bottom: 7px;
	line-height: 1.3333;	/* 20px */
	font-weight: bold;
}
.inquiry_banner .phone .name {
	line-height: 1.3333;	/* 20px */
	font-weight: bold;
}
.inquiry_banner .phone .number {
	letter-spacing: 0.09em;
}
.inquiry_banner .mailform {
}
.inquiry_banner .mailform a {
	background: url(/images/icon_email.svg) no-repeat 26px center;
	border: 1px solid;
	display: block;
	line-height: 78px;
	font-weight: bold;
}
.scroll-prompt {	/* inserted to some tables in script.js */
	display: none;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.scroll-prompt.show {
	display: block;
}

/* hover時 transition */
section a img {
	transition: all 0.3s 0s ease;
}

body.logged-in .nodisplay {	/* 2026.6 Aki added | ログイン時class"nodisplay"のついた要素は非表示 */
	display: none;
}


/* Blog Page Components
----------------------------------------------- */
/* 緊急欄  */
:is(#top_sticky, #my-blog) .sticky_wrap {
	width: var(--ueda-wall-width);
	background-color: white;
	border: solid 1px var(--ueda-pink);
	margin: 0 auto;
}
:is(#top_sticky, #my-blog) .sticky_wrap .inner{
}
:is(#top_sticky, #my-blog) .sticky_wrap p.sticky {
	display: inline-block;
	color: var(--ueda-pink);
	font-weight: 600;
	background: url(/images/sticky_off.svg)no-repeat center left;
	padding-left: 36px;
	margin-bottom: 0;
}
:is(#top_sticky, #my-blog) .sticky_wrap .date {
	padding-top: 0 !important;
}
:is(#top_sticky, #my-blog) .sticky_wrap  h2 {
	width: auto;
	text-align: left;
	font-size: 1rem;
	font-weight: 600;
	line-height: 32px;
	padding-bottom: 0;
}
:is(#top_sticky, #my-blog) .sticky_wrap h2 a {
}

#content nav:not(#nav-single) {
	padding-top: 40px;
}
#my-blog #content {
}
#content nav#nav-single {
	text-align: center;
}


/* Archive */
#my-blog.archive .page-title .inner,
#my-search .page-title .inner {	/* 2024.3 KAZ: added */
/*	padding-bottom: 0; */	/* 2024.3 KAZ: Problems_m: c/o */
}
#my-blog.archive .page-title .archive-title {
}
#news_categories {
	width: var(--ueda-wall-width);
	margin: 0 auto;
}
#news_categories ul {
}
#news_categories ul > li {
}
#news_categories ul > li a {
}
#news_categories ul > li a.information {
}
#news_categories ul > li a.opencampus {
}
#news_categories ul > li a.admission {	/* 2024.3 KAZ: was .entranceexam; KAZ: was .fiftieth */
}
#news_categories ul > li a.course {
}
#news_categories ul > li a.event {
}
#news_categories ul > li a.other {	/* KAZ */
}
#news_categories ul > li a.current {
	color: inherit;
	text-decoration: none;
}
#news_categories ul > li a.current.information {
}
#news_categories ul > li a.current.opencampus {
}
#news_categories ul > li a.current.admission {	/* 2024.3 KAZ: was .entranceexam; KAZ: was .fiftieth */
}
#news_categories ul > li a.current.course {
}
#news_categories ul > li a.current.event {
}
#news_categories ul > li a.current.other {	/* KAZ */
}


#my-blog article {
}
#my-blog:not(.single-post) article,
#my-search article {	/* 2024.3 KAZ: added */
	width: var(--ueda-wall-width);
	margin: 0 auto 5px;
}
#my-blog:not(.single-post) article .entry-header {
}
#my-blog:not(.single-post) article .entry-header .date {
}
#my-blog:not(.single-post) article .entry-header h2 ,
#my-search article .entry-header h2 {	/* 2024.3 KAZ: added */
	text-align: left;
}
#my-blog:not(.single-post) article .entry-header h2 a {
}


/* Single */
.single-post article {
}
.single-post .entry-header {
}
.single-post .entry-header .wall,
.single-post .entry-content {
	width: var(--ueda-narrow-width);
	margin: 0 auto;
}
.single-post .entry-header .parent-title {
	letter-spacing: 0.18em;
	margin-bottom: 0;
}
.single-post .entry-header .parent-title .inner{
}
.single-post .entry-header .parent-title::after {
	content: "";
	display: block;
	height: 1px;
	background-color: var(--ueda-pink);
}
.single-post .entry-header .date {
	display: block;
	text-align: right;
}
.single-post .entry-header .entry-title {
	text-align: left;
}
.single-post .entry-header .category {
	text-align: center;
	line-height: 35px;
	border: solid 1px var(--ueda-gray);
}
.single-post .entry-content {
}
.single-post .pseudosection {
}
.single-post .pseudosection .wall {
	background-color: var(--ueda-bg-gray);
	text-align: center;
}
.single-post .pseudosection.news-qrcode .wall {
	width: 100%;	/* 2024.4 KAZ: missing */
}
.single-post .pseudosection.news-qrcode a {
	display: inline-block;
}
.single-post .pseudosection.news-qrcode a img {
	width: 100%;
	object-fit: contain;
}
.single-post .pseudosection.news-pdf .wall {
	width: 100%;	/* Aki from chk HTML */
}
.single-post .pseudosection.news-pdf a {
	display: inline-block;
	color: inherit;
	font-size: 0.9375rem;	/* 15px */
	text-decoration: none;
}
.single-post .pseudosection.news-pdf a img {
	height: auto;
}
.single-post #news_links {
}
.single-post #news_links .wall {
}
@media (any-hover: hover) {
	.single-post .pseudosection.news-pdf a:hover {
		text-decoration: underline;
	}
}


/* Front Page Components
----------------------------------------------- */
:is(#my-top, #my-libhp, #my-admission, #my-admission2) section h2 {	/* 2026.5 Aki: added #my-admission2 / 2024.3 KAZ: added #my-admission */
	text-align: center;
}
:is(#my-top, #my-libhp, #my-admission, #my-admission2) section h2 .en {	/* 2026.5 Aki: added #my-admission2 / 2024.3 KAZ: added #my-admission */
	position: relative;
	display: block;
	color: var(--ueda-pink);
	font-size: 2.5rem;	/* 40px */
	line-height: 1;
	letter-spacing: 0.18em;	/* 2024.2 Aki was 0.2em */
	padding-bottom: 11px;
}
:is(#my-top, #my-admission, #my-admission2) section h2 .en::after {	/* 2026.5 Aki: added #my-admission2 / 2024.3 KAZ: added #my-admission */
	content: "";
	display: block;
	width: 30px;
	height: 1px;
	background-color: var(--ueda-pink);
	position:absolute;
	bottom: 0;
	left: 50%;
	transform: translatex(-50%);
}
:is(#my-top, #my-libhp, #my-admission, #my-admission2) section h2 .ja {	/* 2026.5 Aki: added #my-admission2 / 2024.3 KAZ: added #my-admission */
	font-size: 0.875rem;	/* 14px */
}

#top_mainvisual {
/*	height: calc(var(--viewheight) - var(--ueda-initial-header-height)); */	/* 2024.3 KAZ: moved to PC */
}
.admin-bar #top_mainvisual {
/*	height: calc(var(--viewheight) - var(--ueda-initial-header-height) - var(--wp-admin-bar-height)); */	/* 2024.3 KAZ: moved to PC */
}
#top_mainvisual .image,
#top_mainvisual .image .slick-list,	/* 2024.4 KAZ: added */
#top_mainvisual .image .slick-track,	/* 2024.4 KAZ: added */
#top_mainvisual .image .slick-slide,	/* 2024.4 KAZ: added */
#top_mainvisual .image .slick-slide > div,	/* 2024.4 KAZ: added */
#top_mainvisual .image picture,	/* 2024.4 KAZ: added */
#top_mainvisual .image img,
#top_mainvisual .movie,	/* 2024.4 KAZ: added */
#top_mainvisual .movie video {	/* 2024.4 KAZ: added */
	height: 100%;
}
#top_mainvisual .image img,
#top_mainvisual .movie video {	/* 2024.4 KAZ: added */
	width: 100%;
	object-fit: cover;
}
#top_opencampus_banner {
	position: fixed;	/* 2024.3 KAZ: moved from SP */
	bottom: 0;	/* 2024.3 KAZ: moved from SP and revised */
	left: 0;	/* 2024.3 KAZ: moved from SP */
	z-index: 100;	/* 2024.3 KAZ: moved from SP and revised */
}
#top_opencampus_banner a,
ul.event_list > li {
	background-color: white;
	border: solid 1px #cecece;
}
#top_opencampus_banner a {
	box-shadow: 0 3px 6px 0 rgba(0,0,0,0.2);
	display: block;
	color: inherit;
}
#top_opencampus_banner a .category,
ul.event_list > li .category {
	background-color: var(--ueda-strong-green);
	color: white;
	font-size: 1.125rem;	/* 18px */
	text-align: center;
}
#top_opencampus_banner a .category {
	position: relative;
}
#top_opencampus_banner a .category::after {
	display: block;
	position: absolute;
	content: '';
}
#top_opencampus_banner a .title,
ul.event_list > li .title,
#my-opencampus .opencampus_popup .heading .title {
	font-weight: bold;	/* KAZ: was 600 */
}
#top_opencampus_banner a .title {
}
#top_opencampus_banner a .datetime,
ul.event_list > li .datetime,
#my-opencampus .opencampus_popup .heading .datetime {
	line-height: 1;
}
#top_opencampus_banner a .datetime {
}
#top_opencampus_banner a .datetime .month {
}
#top_opencampus_banner a .datetime .slash,
ul.event_list > li .datetime .slash,
#my-opencampus .opencampus_popup .heading .datetime .slash {	/* KAZ */
	font-family: 游ゴシック体, "Yu Gothic", 游ゴシック, YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
	font-style: normal;
	font-weight: normal;
}
#top_opencampus_banner a .datetime .slash {
}
#top_opencampus_banner a .datetime .date {
}
#top_opencampus_banner a .datetime .day,
ul.event_list > li .datetime .day,
#my-opencampus .opencampus_popup .heading .datetime .day {
}
#top_opencampus_banner a .datetime .time,
ul.event_list > li .datetime .time,
#my-opencampus .opencampus_popup .heading .datetime .time {
}
@media (any-hover: hover) {
	#top_opencampus_banner a:hover {
		text-decoration: none;
	}
}

/* Pick Up */
:is(#top_pickup, #top_news) a {
	color: inherit;
	text-decoration: none;
}
#top_pickup {
}
#top_pickup ul.pickup_list{
	display: flex;
	gap: 20px;
}
#top_pickup ul.pickup_list > li{
	width: 400px;
}
#top_pickup ul.pickup_list > li a{
}
#top_pickup ul.pickup_list > li .entry-image{
	width: 400px;
	height: 300px;
}
#top_pickup ul.pickup_list > li .entry-image a {
	display: block;
}
#top_pickup ul.pickup_list > li .entry-image img {
	width: 100%;
	height: 100%;	/* KAZ: was auto */
	object-fit: cover;	/* KAZ */
	transition: all 0.3s 0s ease;
}
#top_pickup ul.pickup_list > li .text_wrap {
	position: relative;
	padding-top: 20px;
	padding-left: 30px;
}
#top_pickup ul.pickup_list > li .text_wrap::before {
	content: "";
	display: block;
	width: 1px;
	height: calc(100% + 5px);
	background-color: var(--ueda-pink);
	position: absolute;
	left: 15px;
	bottom: 8px;
	transition: all 0.3s 0s ease;
}
#top_pickup ul.pickup_list > li .title {
	display: block;
	font-size: 1.0625rem;	/* 17px */
	font-weight: 600;
	line-height: 1.294;
}
#top_pickup ul.pickup_list > li .date,
#top_news ul.news_list > li .date,
article .entry-header .date,
:is(#top_sticky, #my-blog) .sticky_wrap .date {
	color: var(--ueda-strong-gray);
	font-size: 0.875rem;	/* 14px */
	line-height: 1;
	padding-top: 10px;
}

/* News */
#top_news {
}
#top_news ul.news_list {
}
#top_news ul.news_list > li {
	background-color: var(--ueda-bg-gray);
}
#top_news ul.news_list > li:not(:last-child) {
	margin-bottom: 5px;
}
#top_news ul.news_list > li::after {
	content: "";
	display: block;
}
#top_news ul.news_list > li.opencampus::after {
}
#top_news ul.news_list > li.admission::after {	/* 2024.3 KAZ: was .entranceexam, KAZ: was .fiftieth */
}
#top_news ul.news_list > li.course::after {
}
#top_news ul.news_list > li.event::after {
}
#top_news ul.news_list > li.other::after {	/* KAZ */
}
#top_news ul.news_list > li .date,
article .entry-header .date {
	padding-top: 0;
}
#top_news ul.news_list > li .category,
article .entry-header .category,
article .entry-header .nocategory {	/* 2024.3 KAZ: added */
	display: inline-block;
	width: 144px;
	min-width: 144px;
	color: var(--ueda-cat-pink);
	background: white;
	font-size: 0.8125rem;	/* 13px */
	font-weight: 600;
}
#top_news ul.news_list > li .category.opencampus,
article .entry-header .category.opencampus {
	color: var(--ueda-cat-green);
}
#top_news ul.news_list > li .category.admission,
article .entry-header .category.admission {	/* 2024.3 KAZ: was .entranceexam, KAZ: was .fiftieth */
	color: var(--ueda-cat-purple);
}
#top_news ul.news_list > li .category.course,
article .entry-header .category.course {
	color: var(--ueda-cat-blue);
}
#top_news ul.news_list > li .category.event,
article .entry-header .category.event {
	color: var(--ueda-cat-orange);
}
#top_news ul.news_list > li .category.other,
article .entry-header .category.other,	/* KAZ */
article .entry-header .nocategory {	/* 2024.3 KAZ: added */
	color: var(--ueda-cat-teal);
}
#top_news ul.news_list > li .title {
	font-weight: 600;
}
#top_news .link {
	text-align: center;	/* KAZ */
}
#top_news .link a.linkbtn {
/*	border-color: var(--ueda-gray); */
/*	margin: 0 auto; */
}

/* Department */
#top_department {
}
:is(#top_department, #open_department) .wrapper {
}
:is(#top_department, #open_department) .wrapper .wrap {
	position: relative;
}
:is(#top_department, #open_department) .wrapper .wrap#department2 {
}
:is(#top_department, #open_department) .wrapper .wrap a::before, :is(#top_department, #open_department) .wrapper .wrap a::after, :is(#top_department, #open_department) .ttl .ja::after {
	content: "";
	display: block;
}
:is(#top_department, #open_department) .wrapper .wrap a {
	display: block;
	position: relative;
	height: 100%;
	color: white;
	text-decoration: none;
}
:is(#top_department, #open_department) .wrapper .wrap a::before, :is(#top_department, #open_department) .wrapper .wrap a::after, :is(#top_department, #open_department) .ttl .ja::after {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
:is(#top_department, #open_department) .wrapper .wrap a::after {
	background: rgba(0,0,0,0.3);
}
:is(#top_department, #open_department) .wrapper .wrap a::before {
	background: url(/images/img_department_education.jpg)no-repeat center/cover;
}
:is(#top_department, #open_department) .wrapper .wrap#department2 a::before {
	background-image: url(/images/img_department_culture.jpg);
}
:is(#top_department, #open_department) .wrapper .wrap a span {
	position: relative;
	z-index: 1;
}
:is(#top_department, #open_department) span:not(.ja) {
	display: block;
}
:is(#top_department, #open_department) .ttl {
}
:is(#top_department, #open_department) .ttl .en {
	font-size: 1.5625rem;	/* 25px */
}
:is(#top_department, #open_department) .ttl .ja {
	position: relative;
}
:is(#top_department, #open_department) .ttl .en,
:is(#top_department, #open_department) .ttl .ja {
	letter-spacing: 0.05em;
}
:is(#top_department, #open_department) .ttl .ja::after {
	content: url(/images/arrow_right_white_thin.svg);	/* 2024.4 KAZ: was arrow_white.svg */
	width: auto;
	height: auto;
	top: -20px;
	left: auto;
}
:is(#top_department, #open_department) .text {
	line-height: 2;
}

/* Campus Life */
#my-top section:is(#top_campuslife, #top_sns, #top_information) h2 .en::after {
	content: none;
}
#top_campuslife {
}
#my-top section#top_campuslife h2 {
	text-align: left;
	padding-bottom: 0;
}
#top_campuslife .imgonly {
}
#top_campuslife .wrap {
	background-color: var(--ueda-bg-gray);
}
#top_campuslife .wrap p {
}
#top_campuslife .wrap .link:last-of-type {	/* 2026.6 Aki added */
	margin-top: 5px;
}

/* sns */
#top_sns {
}
.sns_informationwrap h2 {
	color: var(--ueda-pink);
	font-size: 1.6875rem;	/* 27px */
	font-weight: normal;
	padding-bottom: 0 !important;
	margin-bottom: 0;
}
#top_sns .wall {
}
/*#top_sns .imgonly.visual {
 *	display: flex;
 *	flex-wrap: wrap;
 *}
 */
#top_sns .imgonly img {
	height: auto;
}
.sns_informationwrap {
	background-color: var(--ueda-bg-gray);
}
.sns_informationwrap p {
}
.sns_informationwrap .wrap_child {
}
.sns_wrap.darkgray {
	display: flex;
}
.sns_informationwrap .wrap_child .sns_wrap .sns_icon {
}
.sns_wrap.darkgray .sns_icon a {
	display: inline-block;
	position: relative;
	text-align: center;
	width: 50px;
	height: 50px;
	padding-top: 12px;
}
.sns_wrap.darkgray .sns_icon a img {
	position: relative;
}
.sns_wrap.darkgray .sns_icon a::before {
	content: "";
	display: inline-block;
	position: relative;
	background-color: #505050;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	position: absolute;
	top: 0;
	left: 0;
}
.sns_wrap.darkgray .sns_icon.youtube a {
	padding-top: 15px;
}
.sns_wrap.darkgray .sns_icon.twitter a {
/*	padding-top: 14px; 2024.2 Aki c/o */
}
.sns_informationwrap .wrap_child .sns_wrap .sns_icon a::after {
}
.sns_informationwrap .wrap_child.line {
}
.sns_informationwrap .wrap_child.line a {
	display: block;
	color: inherit;
	background-color: white;
	border: solid 1px var(--ueda-gray);
	text-decoration: none;
}
.sns_informationwrap .wrap_child.line span {
	display: block;
}
.sns_informationwrap .wrap_child.line .ttl {
	color: var(--ueda-strong-green);
	min-height: 61px;
	font-size: 1.25rem;	/* 20px */
	font-weight: 600;
	line-height: 61px;
	background: url(/images/line_off.svg) no-repeat center left;
	padding-left: 90px;
}
.sns_informationwrap .wrap_child.line .text {
	line-height: 1.666;
}

/* Information */
#top_information {
/*	background: url(/images/bg_information.webp) no-repeat center top / cover;
 *	background-attachment: fixed;
 */	/* 2024.3 KAZ: 'fixed' attachment does not work on iOS */
	position: relative;
/*	clip-path: inset(0); */	/* 2024.3 KAZ: moved for iPad Air 2 */
}
/*#top_information::before {
 *	background: url(/images/bg_information.webp) no-repeat center top / cover;
 *	position: fixed;
 *	width: 100vw;
 *	height: var(--viewheight);
 *	top: 0;
 *	left: 0;
 *	content: '';
 *}
 */	/* 2024.3 KAZ: revised for iPad Air 2 */
#top_information .bg_wrapper {	/* 2024.3 KAZ: revised for iPad Air 2 */
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	clip-path: inset(0);
}
#top_information .bg_wrapper .bg {	/* 2024.3 KAZ: revised for iPad Air 2 */
	background: url(/images/bg_information.webp) no-repeat center top / cover;
	position: fixed;
	width: 100vw;
	height: var(--viewheight);
	top: 0;
	left: 0;
	z-index: -1;
}
#my-top section#top_information h2 {
	margin-bottom: 0;
}
#my-top section#top_information h2 .en {
	color: white;
}
#top_information ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}
#top_information ul > li {
}
#top_information ul > li a {
	color: white;
	width: 100%;
	border-color: white;
	background: rgba(0,0,0,0.4);
}
#top_information ul > li a::after {
	background-color: white;
}
#top_information ul > li a span {
	display: block;
}
#top_information ul > li a .ttl {
	font-size: 1.25rem;	/* 20px */
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0.11em;
	padding-bottom: 20px;
}
#top_information ul > li a .text {
	font-size: 0.875rem;	/* 14px */
	line-height: 1.714;
}


/* Open Campus Page Components
----------------------------------------------- */
#my-opencampus h2 {
	text-align: center;
	color: white;
}
#my-opencampus h2 :is(.en, .ja) {
	display: block;
	line-height: 1;
	font-weight: 800;
}
#my-opencampus h2 .ja {
	font-size: 0.9375rem;	/* 15px */
}
#my-opencampus #top_news {
}
#my-opencampus #top_news h2 {
	color: var(--ueda-strong-green);
}
#my-opencampus #top_news a.linkbtn::after {
	background-color: var(--ueda-strong-green);
}

#my-opencampus h2.fukidashi {
	position: relative;
}
#my-opencampus h2.fukidashi .inner{
	display: inline-block;
	background-color: var(--ueda-strong-green);
}
#my-opencampus h2.fukidashi::after {
	content: "";
	display: block;
	width: 13px;
	height: 11px;
	background: url(/images/fukidashi_opencampus.svg)no-repeat center /cover;
	position: absolute;
	left: 50%;
	bottom: -11px;
}

#open_schedule {
}
:is(#open_schedule, #open_impressions, #open_about) .wall {
	width: var(--ueda-wide-width);
}
#open_schedule h2.fukidashi .inner {
}
#open_schedule h3 {
	border-bottom: solid 1px var(--ueda-strong-green);
	padding-bottom: 2px;
}
#open_schedule h3 .note {
	font-size: 0.9375rem;	/* 15px */
	font-weight: 400;
}
ul.event_list {
	display: flex;
	flex-wrap: wrap;
}
ul.event_list > li {
	/* See also above #top_opencampus_banner a */
	position: relative;
}
ul.event_list > li .category {
	/* See above #top_opencampus_banner a .category */
}
ul.event_list > li .title {
	/* See also above #top_opencampus_banner a .title */
	font-size: 1.25rem;	/* 20px */
	padding-top: 14px;
}
ul.event_list > li .datetime {
	/* See #top_opencampus_banner a .datetime */
}
ul.event_list > li .datetime .month {
}
ul.event_list > li .datetime .slash {	/* KAZ */
	/* See above #top_opencampus_banner a .datetime .slash */
}
ul.event_list > li .datetime .date {
	/* See above #top_opencampus_banner a .datetime .date */
}
ul.event_list > li .datetime .day {
}
ul.event_list > li .datetime .time {
	/* See above #top_opencampus_banner a .datetime .time */
}
ul.event_list > li .popup_link {
}
ul.event_list > li .popup_link a {
	display: block;
	position: relative;
	color: inherit;
	background-color: var(--ueda-bg-gray);
	line-height: 35px;
	text-decoration: none;
	padding-left: 17px;
	border-left: solid 2px var(--ueda-strong-green);
}
ul.event_list > li .popup_link a::after {
	content: ">";
	display: inline-block;
	color: var(--ueda-strong-green);
	font-size: 1.125rem;
	font-weight: 600;
	transform: scale(0.6,1);
	position: absolute;
	top: 0;
	right: 12px;
}
ul.event_list > li .ended_overlay {	/* KAZ */
	background-color: rgba(0,0,0,0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	color: white;
	font-size: 1.25rem;	/* 20px */
	font-weight: bold;
}
.opencampus_popup_wrapper {	/* KAZ */
	display: none;
}
#my-opencampus div.fancybox-bg {
	background-color: rgba(0,0,0,0.76);
}
#my-opencampus .fancybox-toolbar {
	opacity: 1;
	visibility: visible;
}
#my-opencampus .fancybox-toolbar .fancybox-button:not(.fancybox-button--close) {
	display: none;
}
#my-opencampus .fancybox-toolbar .fancybox-button--close {
	background-color: #222;
	height: 54px;
	width: 54px;
	padding: 17.8px;
}
#my-opencampus .opencampus_popup {
}
#my-opencampus .opencampus_popup .fancybox-close-small {
}
#my-opencampus .opencampus_popup .heading {
}
#my-opencampus .opencampus_popup .heading .title {
	/* See above #top_opencampus_banner a .title */
}
#my-opencampus .opencampus_popup .heading .datetime {
	/* See above #top_opencampus_banner a .datetime */
}
#my-opencampus .opencampus_popup .heading .datetime .month {
}
#my-opencampus .opencampus_popup .heading .datetime .slash {
	/* See above #top_opencampus_banner a .datetime .slash */
}
#my-opencampus .opencampus_popup .heading .datetime .date {
	/* See above #top_opencampus_banner a .datetime .date */
}
#my-opencampus .opencampus_popup .heading .datetime .day {
}
#my-opencampus .opencampus_popup .heading .datetime .time {
	/* See above #top_opencampus_banner a .datetime .time */
}
#my-opencampus .opencampus_popup .event_pdf {
}
#my-opencampus .opencampus_popup .event_pdf a {
	background-color: var(--ueda-bg-gray);
	display: block;
	position: relative;
}
#my-opencampus .opencampus_popup .event_pdf a::after {
	background: rgba(0,0,0,0.4) url(/images/icon_magnify.svg) no-repeat center;
	display: block;
	position: absolute;
	bottom: 0;
	right: 0;
	content: '';
}
#my-opencampus .opencampus_popup .event_pdf a img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
#my-opencampus .opencampus_popup .event_double_col {
}
#my-opencampus .opencampus_popup .event_double_col .left_col,
#my-opencampus .opencampus_popup .event_double_col .right_col,
#my-opencampus .opencampus_popup .event_single_col {
	display: flex;
	flex-direction: column;
	align-items: center;
}
#my-opencampus .opencampus_popup .event_double_col .left_col,
#my-opencampus .opencampus_popup .event_double_col .right_col {
}
#my-opencampus .opencampus_popup .event_single_col {
}
#my-opencampus .opencampus_popup .event_double_col .title,
#my-opencampus .opencampus_popup .event_single_col .title {
	background-color: var(--ueda-strong-green);
	position: relative;
	line-height: 1.2;	/* 18px */
	color: white;
	font-weight: bold;
}
#my-opencampus .opencampus_popup .event_double_col .title::after,
#my-opencampus .opencampus_popup .event_single_col .title::after {
	display: block;
	position: absolute;
	content: '';
}
#my-opencampus .opencampus_popup .event_double_col .details,
#my-opencampus .opencampus_popup .event_single_col .details {
	background-color: var(--ueda-bg-gray);
	width: 100%;
}
#my-opencampus .opencampus_popup .event_double_col .details h4.green,
#my-opencampus .opencampus_popup .event_single_col .details h4.green {
	color: var(--ueda-strong-green);
}
#my-opencampus .opencampus_popup .event_double_col .details ul.flex,
#my-opencampus .opencampus_popup .event_single_col .details ul.flex {	/* actually, not flex */
}
#my-opencampus .opencampus_popup .event_double_col .details ul.flex li,
#my-opencampus .opencampus_popup .event_single_col .details ul.flex li {
	display: inline;
}
#my-opencampus .opencampus_popup .event_double_col .details ul.flex li:not(:last-child),
#my-opencampus .opencampus_popup .event_single_col .details ul.flex li:not(:last-child) {
	margin-right: 0.6em;
}
#my-opencampus .opencampus_popup .event_double_col .details ul.green,
#my-opencampus .opencampus_popup .event_single_col .details ul.green {
	margin: 0;
}
#my-opencampus .opencampus_popup .event_double_col .details ul.green li,
#my-opencampus .opencampus_popup .event_single_col .details ul.green li {
	list-style-type: none;
	padding-left: 1em;
	font-weight: bold;
}
#my-opencampus .opencampus_popup .event_double_col .details ul.green li::before,
#my-opencampus .opencampus_popup .event_single_col .details ul.green li::before {
	width: 1em;
	margin-left: -1em;
	color: var(--ueda-strong-green);
	content: '●';
}
#my-opencampus .opencampus_popup .event_double_col .details p,
#my-opencampus .opencampus_popup .event_single_col .details p {
}
#my-opencampus .opencampus_popup .event_double_col .details p:last-child,
#my-opencampus .opencampus_popup .event_single_col .details p:last-child {
	margin-bottom: 0;
}
#my-opencampus .opencampus_popup .event_form_link {
}

#open_impressions {
	background-color: var(--ueda-bg-gray);
}
#open_impressions h2 {
	color: var(--ueda-strong-green);
}
#open_impressions .wrapper {
}
#open_impressions .wrapper .wrap {
	position: relative;
}
#open_impressions .wrapper .wrap p {
	position: relative;
	font-weight: 600;
	background-color: white;
	border-radius: 15px;
}
#open_impressions .wrapper .wrap p::after {
	content: "";
	display: block;
	width: 24px;
	height: 24px;
	background: url(/images/fukidashi_impressions.svg)no-repeat center / cover;
	position: absolute;
	left: 50%;
	bottom: -24px;
}
#open_impressions .wrapper .wrap#wrap2 p::after {
	transform: scale(-1,1);
}
#open_impressions .wrapper .wrap .imgonly {
	position: absolute;
}
#open_impressions .link_impressions {
	text-align: center;
}
#open_impressions .link_impressions a {
	color: inherit;
}
#open_impressions .event_form_link {
}
#my-opencampus .event_form_link a {	/* KAZ: was #open_impressions .link a */
	display: block;
	position: relative;
	color: white;
	background: url(/images/icon_opencampus_cpntact.svg)no-repeat center left 46px var(--ueda-strong-green);
	font-weight: 600;
	text-decoration: none;
	margin: 0 auto;
}
#my-opencampus .event_form_link a::after,	/* KAZ: was #open_impressions .link a::after */
#open_voice .linkwrap .banner .wrap a::after {
	color: white;
	content: ">";
	display: block;
	position: absolute;
	transform: scale(0.8,1.5);
	line-height: 1;
}

#open_contact {
	background-color: var(--ueda-strong-green);
}
#open_contact .wall{
}
#open_contact h2 {
}
#open_contact .tel {
	color: white;
}
#open_contact .tel h3 {
	font-size: 0.9375rem;	/* 15px */
	border-bottom: solid 1px;
	padding-bottom: 6px;
}
#open_contact .tel .telwrap,
#admission_contact .tel {	/* 2024.3 KAZ */
	line-height: 1;
}
#open_contact .tel .ttl {
	font-weight: 600;
}
#open_contact .tel .telnumber,
#admission_contact .tel .telnumber {	/* 2024.3 KAZ */
}
#open_contact .mail,
#admission_contact .mail {	/* 2024.3 KAZ */
	color: white;
}
#open_contact .mail a,
#admission_contact .mail a {	/* 2024.3 KAZ */
	display: block;
	color: white;
	text-decoration: none;
	font-weight: 600;
	background: url(/images/mail_white.svg) no-repeat center left 32px;
	border: solid 1px white;
}
#open_contact .line,
#admission_contact .line {	/* 2024.3 KAZ */
}
#open_contact .line a,
#admission_contact .line a {	/* 2024.3 KAZ */
	display: block;
	color: inherit;
	text-decoration: none;
	background: url(/images/mark_line.svg) no-repeat center left 23px white;
	border: solid 1px white;
}
#open_contact .line .ttl,
#admission_contact .line .ttl {	/* 2024.3 KAZ */
	color: var(--ueda-strong-green);
	font-weight: 600;
}
#open_contact .line .text,
#admission_contact .line .text {	/* 2024.3 KAZ */
}

#open_voice {
}
#open_voice h2.fukidashi .inner {
}
#open_voice .youtube {
}
#open_voice .linkwrap {
}
#open_voice .linkwrap .voice {
}
#open_voice .linkwrap .voice a {
}
#open_voice .linkwrap .banner {
}
#open_voice .linkwrap .banner .wrap {
}
#open_voice .linkwrap .banner .wrap a {
	display: block;
	position: relative;
	color: white;
	font-size: 1.25rem;	/* 20px */
	font-weight: 600;
	text-decoration: none;
	z-index: 1;
}
#open_voice .linkwrap .banner .wrap a::before {
	content: "";
	display: block;
	background: url(/images/banner_voice01.jpg)no-repeat center /cover;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
#open_voice .linkwrap .banner .wrap#banner2 {
	margin-top: 20px;
}
#open_voice .linkwrap .banner .wrap#banner2 a::before {
	background-image: url(/images/banner_voice02.jpg);
}
#open_voice .linkwrap .banner .wrap a::after {
	transform: scale(0.9,1.7);
}

#open_about {
}
#open_about .wall {
}
#open_about h2 {
	text-align: left;
	margin-bottom: 0;
}
#open_about h2 a {
	display: block;
	position: relative;
	color: white;
	text-decoration: none;
	width: 100%;
	z-index: 1;
}
#open_about h2 a :is(.en, .ja) {
	letter-spacing: 0.05em;
}
#open_about h2 a .en {
	font-size: 1.5625rem;	/* 25px */
	font-weight: 400;
}
#open_about h2 a .ja {
	display: inline-block;
	position: relative;
	font-weight: 400;
}
#open_about h2 a .text {
	display: block;
	font-size: 1rem;	/* 16px */
	font-weight: 500;
	line-height: 2;
}
#open_about h2 a::before {
	content: "";
	display: block;
	background: url(/images/bg_information.webp) no-repeat center top / cover;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
#open_about h2 a .ja::after {
	content: url(/images/arrow_right_white_thin.svg);	/* 2024.4 KAZ: was arrow_white.svg */
	display: block;
	position: absolute;
	top: -7px;
	right: -30px;
}


/* Fixed Page Components
----------------------------------------------- */
#footer_links .wall {
	width: var(--ueda-min-width);
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
}
#footer_links .footer_links_box {
}

/* 大学概要 - 教員紹介 */
ul.teacher_list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
}
ul.teacher_list > li {
}
ul.teacher_list > li a,
ul.teacher_list > li span.linkbtn.nolink {	/* 2024.3 KAZ */
	overflow: hidden;
}
ul.teacher_list > li a.linkbtn.hasimage,
ul.teacher_list > li span.linkbtn.nolink.hasimage {	/* 2024.3 KAZ */
	align-items: flex-start;
}
ul.teacher_list > li .detail_wrap {
}
ul.teacher_list > li .photo {
	float: left;
	margin-right: 18px;
}
ul.teacher_list > li :is(.position, .title, .major){
	line-height: 1.5;
	overflow: hidden;
}
ul.teacher_list > li .position {
/*	padding-top: 24px; Aki c/o */
}
ul.teacher_list > li .title {
	color: var(--ueda-strong-pink);
	font-size: 1.25rem;	/* 20px */
	font-weight: 600;
	padding-bottom: 18px;
}
ul.teacher_list > li .major {
}
#teacherlist_guest {
}
#teacher_table {
}
#teacher_table td {
	padding-right: 0;
}
#teacher_table td table {
	border-bottom: 0;
	margin-bottom: 0;
}
#teacher_table td table :is(th, td) {
	font-weight: 500;
	background-color: white;
	border: 0;
	padding: 0 0 5px;
}
#teacher_table td table th {
}
#teacher_table td table td{
}
#teacher_table td table thead th{
	font-weight: 600;
}
#teacher_table td h4 {
	font-size: 0.9375rem;	/* 15px */
	padding-bottom: 14px;
}
#teacher_table td p:not(:last-child) {
	margin-bottom: 18px;
}
#my-teachers #content {
}

/* 大学概要 - 歩み */
#history_message {
}
#history_message .imgonly {
	margin: 0 auto;
}
#history_message .catchline {
	color: var(--ueda-pink);
}
#history_message p:is(.text, .right){
	margin: 0 auto;
}
#history_message p.right {
	font-size: 1.0625rem;	/* 17px */
}
#history_message .wrap {
	background-color: var(--ueda-bg-gray);
	margin: 0 auto;
}
#history_message .wrap h3 {
	color: var(--ueda-pink);	/* 2024.3 KAZ: was var(--ueda-strong-pink); per request */
	font-size: 1.0625rem;	/* 17px */
	border-bottom: solid 1px var(--ueda-medium-gray);
	padding-bottom: 12px;
	margin-bottom: 25px;
}
#history_message .wrap p {
}
#history_ayumi {
}
/*#history_ayumi .slideshow,
 *#history_ayumi .slideshow ul {
 *	display: flex;
 *}
 *#history_ayumi .slideshow {
 *	align-items: center;
 *	overflow: hidden;
 *}
 *#history_ayumi .slideshow ul {
 *	animation: loop-slide 50s infinite linear 1s both;
 *}
 *@keyframes loop-slide {
 *	from {
 *		transform: translateX(0);
 *	}
 *	to {
 *		transform: translateX(-100%);
 *	}
 *}
 *#history_ayumi .slideshow ul > li {
 *}
 */	/* 2024.3 KAZ: c/o */
#about_gallery .slider_wrapper,
#history_ayumi .slider_wrapper,
#about_gallery .slider_wrapper .slick-list,
#history_ayumi .slider_wrapper .slick-list {	/* 2024.3 KAZ */
	overflow: visible;
}
#about_gallery .slider_wrapper .slide,
#history_ayumi .slider_wrapper .slide {	/* 2024.3 KAZ */
}
#about_gallery .slider_wrapper .slide img,
#history_ayumi .slider_wrapper .slide img {	/* 2024.3 KAZ */
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#history_ayumi dl {
	border-bottom: solid 1px var(--ueda-medium-gray);
}
#history_ayumi :is(dt, dd) {
	border-top: solid 1px var(--ueda-medium-gray);
	padding-top: 20px;
}
#history_ayumi dt {
	padding-left: 25px;
}
#history_ayumi dd {
	margin-bottom: 16px;
}
#history_ayumi h3 {
	font-size: 1.5rem;	/* 24px */
	margin-bottom: 63px;
}
#history_ayumi .youtube {
	aspect-ratio: 16 / 9;
	margin: 0 auto;
}
#history_ayumi .youtube iframe {
	width: 100%;
	height: 100%;
}

/* 大学概要 - 未来共創センター */
#center_message {
}
:is(#center_message, #guide_message) .wall {
	width: var(--ueda-narrow-width);
}
:is(#center_message, #guide_message) p {
	font-size: 1.0625rem;	/* 17px */
	font-weight: 600;
}
#center_about {
}
#center_about p {
	margin-bottom: 20px;
}
#center_about ol {
}
#center_about ol > li {
	font-weight: 600;
}
#center_region {
}
#center_region .wrap {
}
#center_region .wrap h3 {
}
#center_region .wrap p {
}
#center_region .wrap .link {
}
#center_region .wrap .link a .unit {
	font-weight: 500;
}
#center_sns {
}
#center_sns p.text {
}
#center_sns .sns_wrap {
}
#center_sns .sns_wrap p {
	margin-bottom: 0;
}
.fb_iframe_widget_fluid span {
	max-width: 100%;
}
#center_links {
	background-color: var(--ueda-bg-gray);
}
#center_links .link_wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
}

#guide_message {
}
#guide_team {
}
#guide_team p.right {
	padding-top: 10px;
}
#guide_youtube {
}
#guide_youtube p {
}
#guide_youtube p a {
	color: var(--ueda-pink);
	text-decoration: none;
}
#guide_youtube .wrap {
}
#guide_youtube .wrap h3 {
	text-align: center;
}
#guide_youtube .wrap .youtube {
	margin: 0 auto;
}
#guide_youtube .wrap .youtube iframe {
	width: 100%;
	height: 100%;
}
#guide_process {
}
#guide_process .imgonly {
	height: auto;
	margin: 0 auto;
}
#guide_process h3,
#guide_process .link_wrapper {
	margin: 0 auto;
} 
#guide_process .link_wrapper {
	border-top: solid 1px var(--ueda-medium-gray);
	border-bottom: solid 1px var(--ueda-medium-gray);
	padding: 23px 0 7px;
}
#guide_process .link_wrapper a span {
	display: inline-block;
	color: var(--ueda-pink);
	padding-left: 20px;
}


/* 入試情報; 2024.3 KAZ */
:is(#my-admission, #my-admission2) section h2 {	/* 2026.5 Aki: added #my-admission2 / */
	/* See above; :is(#my-top, #my-libhp) section h2 */
	line-height: inherit;	/* 2024.3 KAZ: Promblems_m */
	font-size: inherit;	/* 2024.3 KAZ: Promblems_m */
}
:is(#my-admission, #my-admission2) section h2 .en {	/* 2026.5 Aki: added #my-admission2 / */
	/* See above; :is(#my-top, #my-libhp) section h2 .en */
}
:is(#my-admission, #my-admission2) section h2 .en::after {	/* 2026.5 Aki: added #my-admission2 / */
	/* See above; #my-top section h2 .en::after */
}
:is(#my-admission, #my-admission2) section h2 .ja {	/* 2026.5 Aki: added #my-admission2 / */
	/* See above; :is(#my-top, #my-libhp) section h2 .ja */
}
#admission_outline {
}
#admission_outline .gray {
	background-color: var(--ueda-bg-gray);
}
#admission_outline > .gray h2,
#admission_outline .tab_wrapper .gray ul.tab_menu,
#admission_outline .tab_wrapper .tab_panel {
	width: var(--ueda-wall-width);
	margin-inline: auto;
}
#admission_outline > .gray h2 {
	margin-bottom: 0;
}
#admission_outline .tab_wrapper {
}
#admission_outline .tab_wrapper .gray {
}
#admission_outline .tab_wrapper .gray ul.tab_menu {
	display: flex;
	flex-wrap: wrap;
}
#admission_outline .tab_wrapper .gray ul.tab_menu li {
}
#admission_outline .tab_wrapper .gray ul.tab_menu li a {
	background: var(--ueda-pink) url(/images/arrow_down_white.svg) no-repeat right 28px center;
	border: var(--ueda-pink) 1px solid;
	display: block;
	color: white;
	font-weight: bold;
	text-decoration: none;
}
#admission_outline .tab_wrapper .gray ul.tab_menu li.ui-tabs-active a {
	background-color: white;
	background-image: url(/images/arrow_down_pink.svg);
	color: var(--ueda-pink);
}
@media (any-hover: hover) {
	#admission_outline .tab_wrapper .gray ul.tab_menu li.ui-state-hover a {
		background-color: white;
		background-image: url(/images/arrow_down_pink.svg);
		color: var(--ueda-pink);
	}
}
#admission_outline .tab_wrapper .tab_panel {
}
#admission_outline .tab_wrapper .tab_panel h3 {
}
#admission_outline .tab_wrapper .tab_panel h4 {
}
#admission_outline .tab_wrapper .tab_panel .table_wrapper {
	overflow-x: auto;
	position: relative;
}
#admission_outline .tab_wrapper .tab_panel table {
}
#admission_outline .tab_wrapper .tab_panel table caption {
}
#admission_outline .tab_wrapper .tab_panel table thead {
}
#admission_outline .tab_wrapper .tab_panel table tbody {
}
#admission_outline .tab_wrapper .tab_panel table tr {
}
#admission_outline .tab_wrapper .tab_panel table th,
#admission_outline .tab_wrapper .tab_panel table td {
}
#admission_outline .tab_wrapper .tab_panel table thead th {
	background-color: var(--ueda-medium-gray);
	color: white;
}
#admission_outline .tab_wrapper .tab_panel table thead th:not(:first-child) {
	border-left: white 1px solid;
}
#admission_outline .tab_wrapper .tab_panel table tbody td:not(.col2) {
	border-left: var(--ueda-medium-gray) 1px solid;
}
#admission_outline .tab_wrapper #capacity {
}
#admission_outline .tab_wrapper #capacity table tbody td,
#admission_outline .tab_wrapper #tuition table tbody td {
	color: #ED255B;	/* not var(--ueda-strong-pink) */
	font-weight: bold;
}
#admission_outline .tab_wrapper #schedule {
}
#admission_outline .tab_wrapper #schedule table tbody td[rowspan],
#admission_outline .tab_wrapper #scholarship table tbody td[rowspan] {
	vertical-align: middle;
}
#admission_outline .tab_wrapper #schedule table .col2 {
	width: 70px;	/* 79px in design */
}
#admission_outline .tab_wrapper #schedule table .col3 {
	width: 122px;
}
#admission_outline .tab_wrapper #schedule table .col4 {
	width: 166px;
	padding-left: 12px;
	padding-right: 2px;
}
#admission_outline .tab_wrapper #schedule table .col5 {
	width: 89px;
}
#admission_outline .tab_wrapper #schedule table .col6 {
	width: 100px;
}
#admission_outline .tab_wrapper #schedule table .col7 {
	width: 95px;
}
#admission_outline .tab_wrapper #schedule table .col8 {
	width: 112px;
}
#admission_outline .tab_wrapper #schedule table .col9 {
	width: 110px;
}
/* 2026.5 MTL Aki added for new table */
#admission_outline .tab_wrapper #schedule table.new_table :is(th, td) {
	padding: 5px;
	padding-inline: 10px !important;
}
#admission_outline .tab_wrapper #schedule table.new_table tbody th {
	white-space: nowrap;
	vertical-align: middle;
}
#admission_outline .tab_wrapper #schedule table.new_table .col1 {
}
#admission_outline .tab_wrapper #schedule table.new_table td.col1a {
	width: 87px;
	font-weight: 600;
	text-align: center;
	white-space: nowrap;
	background-color: var(--iti-hover-color);
}
#admission_outline .tab_wrapper #schedule table.new_table .col2 {
	width: 70px;
	vertical-align: middle;
}
#admission_outline .tab_wrapper #schedule table.new_table :is(.col6, .col7) {
	width: 93px;
}
#admission_outline .tab_wrapper #schedule table.new_table :is(.col8, .col9) {
	width: 100px;
	white-space: nowrap;
}

#admission_outline .tab_wrapper #tokutai {
}
#admission_outline .tab_wrapper #tokutai table .col2 {
	width: 107px;
}
#admission_outline .tab_wrapper #tokutai table .col3 {
	width: 165px;	/* 2026.5 Aki was 143px */
}
#admission_outline .tab_wrapper #tokutai table .col4 {
	width: 125px;	/* 2026.5 Aki was 95px */
}
#admission_outline .tab_wrapper #tokutai table .col5 {
	width: 127px;
}
#admission_outline .tab_wrapper #tokutai table .col6 {
	width: 189px;	/* 2026.5 Aki was 198px / 196px in design */
}
#admission_outline .tab_wrapper #tokutai table .col7 {
	width: 120px;	/* 2026.5 Aki was 163px */
}
#admission_outline .tab_wrapper #tokutai table .colx {
	background-color: var(--ueda-bg-gray);
	border: 0;
	padding: 11px 15px 9px;
}
#admission_outline .tab_wrapper #tuition {
}
#admission_outline .tab_wrapper #tuition .table_wrapper {
	margin-top: -23px;
}
#admission_outline .tab_wrapper #tuition table {
	margin-bottom: 28px;
}
#admission_outline .tab_wrapper #tuition table caption {
	padding-bottom: 18px;
	text-align: right;
}
#admission_outline .tab_wrapper #tuition table .col2,
#admission_outline .tab_wrapper #tuition table .col3,
#admission_outline .tab_wrapper #tuition table .col4,
#admission_outline .tab_wrapper #tuition table .col5 {
	width: 148px;
	padding-right: 15px;
}
#admission_outline .tab_wrapper #tuition table .col6 {
	width: 142px;
}
#admission_outline .tab_wrapper #tuition h4 {
}
#admission_outline .tab_wrapper #tuition .note {
}
#admission_outline .tab_wrapper #tuition p.descr {
}
#admission_outline .tab_wrapper #scholarship {
}
#admission_outline .tab_wrapper #scholarship p.descr {
	margin-bottom: 28px;
}
#admission_outline .tab_wrapper #scholarship table {
	margin-bottom: 28px;
}
#admission_outline .tab_wrapper #scholarship table .col2 {
	width: 118px;
}
#admission_outline .tab_wrapper #scholarship table .col3 {
	width: 97px;
	padding-right: 5px;
}
#admission_outline .tab_wrapper #scholarship table .col4 {
	width: 280px;
}
#admission_outline .tab_wrapper #scholarship table .col5 {
	width: 180px;
	padding-right: 5px;
}
#admission_outline .tab_wrapper #scholarship table .col6 {
	width: 163px;
}
#admission_outline .tab_wrapper #scholarship table td span.note {
	display: block;
	margin-bottom: -10px;
	font-size: 0.75rem;	/* 12px */
}
#admission_outline .tab_wrapper #download {
}
#admission_outline .tab_wrapper #download .note {
	margin-top: 50px;
}
#admission_contact {
	background-color: var(--ueda-pink);
	color: white;
}
#admission_contact a {
	color: inherit;
	text-decoration: none;
}
#my-admission #admission_contact h2 {
}
:is(#my-admission, #my-admission2) #admission_contact h2 .en {	/* 2026.5 Aki: added #my-admission2 / */
	color: inherit;
}
:is(#my-admission, #my-admission2) #admission_contact h2 .en::after {	/* 2026.5 Aki: added #my-admission2 / */
	background-color: white;
}
#admission_contact .contact {
}
#admission_contact .request {
}
#admission_contact h3 {
	border-bottom: white 1px solid;
	margin-bottom: 18px;
	padding-bottom: 7px;
	line-height: 1.3333;	/* 20px */
	font-size: inherit;
}
#admission_contact .descr {
	margin-bottom: 17px;
}
#admission_contact .tel {
	/* See also #open_contact .tel */
	font-weight: bold;
}
#admission_contact .tel .ttl,
#admission_contact .tel .hours_etc {
	font-size: 1.125rem;	/* 18px */
}
#admission_contact .tel .ttl {
	margin: 21px 0 11px;
}
#admission_contact .tel .telnumber {
}
#admission_contact .tel .hours_etc {
	line-height: 1.6667;	/* 30px */
}
#admission_contact .telemail {
}
#admission_contact .telemail a {
	background-color: white;
	display: block;
	text-align: center;
}
#admission_contact .mail {
	/* See also #open_contact .mail */
}
#admission_contact .request .mail a {
	background-image: url(/images/icon_documents.svg);
	background-size: 47px auto;
}
#admission_contact .line {
	/* See also #open_contact .line */
	color: #222222;
}
:is(#my-admission, #my-admission2) #related_link {	/* 2026.5 Aki: added #my-admission2 / */
	margin-top: 0;
}


/* 対象者別コンテンツ - 入学希望の方 */
#applicants_message {
}
#applicants_message p.message {
}
#applicants_recommend {
}
#applicants_recommend h2 {
	position: relative;
	color: white;
	background-color: var(--ueda-pink);
	font-size: 1.25rem;	/* 20px */
	text-align: center;
	border-radius: 20px;
	margin: 0 auto 18px;
}
#applicants_recommend h2::after {
	content: "";
	display: block;
	position: absolute;
	border-top: 18px solid var(--ueda-pink);
	border-left: transparent 10.5px solid;
	border-right: transparent 10.5px solid;
	width: 21px;
	height: 18px;
	bottom: -18px;
	left: 50%;
}
#applicants_recommend .wrap{
	background-color: var(--ueda-bg-gray);
	margin-bottom: 5px;
}
#applicants_recommend .wrap .imgonly {
}
#applicants_recommend .wrap .details {
}
#applicants_recommend .wrap .details h3{
	color: var(--ueda-pink);
	font-weight: 400;
	padding-bottom: 10px;
}
#applicants_recommend .wrap .details p {
}
#applicants_recommend .wrap .details .link {
}
#applicants_links {
	background-color: var(--ueda-bg-gray);
}
#applicants_links h3 {
	margin-top: 0;
}
#applicants_links .link_wrapper {
}
#pamphlet_link .wrapper .text h3 {	/* 2026.6 Aki added */
	border-bottom: solid 1px var(--ueda-bg-pink);
	padding: 0;
}


/*　学科紹介 - 分野 */
#field_pickup {
}
#field_pickup p.message {
	padding-bottom: 45px;
}
#field_pickup .wrap{
}
#field_pickup .wrap h3 {
	font-size: 1.25rem;	/* 20px */
	border-bottom: solid 2px var(--ueda-sky-blue);
	padding-bottom: 10px;
}
#field_pickup .detail {
}
#field_pickup .wrap .imgonly {
}
#field_pickup .wrap .imgonly img {
	width: 100%;
}
#field_pickup .wrap .right_wrap{
}
#field_pickup .wrap .right_wrap p{
	line-height: 1.666;
	margin-bottom: 18px;
}
#field_pickup .wrap .right_wrap .wrap_child{
	background-color: var(--ueda-bg-gray);
	padding: 20px 23px;
}
#field_pickup .wrap .right_wrap .wrap_child .ttl{
	font-size: 1.0625rem;
	font-weight: 600;
	padding-bottom: 9px;
}
#field_pickup .wrap .right_wrap .wrap_child ul {
	margin-bottom: 0;
}
#field_pickup .wrap .right_wrap .wrap_child ul > li {
	margin-bottom: 0;
}
#field_pickup .wrap .right_wrap .wrap_child ul > li:last-child {
}
#field_pickup .wrap .right_wrap .wrap_child li::before {
	background-color: #222222;
}
#field_pickup .wrap#wrap_business .detail {
}
#field_pickup .wrap#wrap_business .detail:not(.last) {
	border-bottom: solid 1px var(--ueda-medium-gray);
	padding-bottom: 39px;
	margin-bottom: 38px;
}
#field_pickup .detail .left_wrap {
}
#field_pickup .detail .left_wrap h4 {
	font-size: 1.25rem;	/* 20px */
	padding-bottom: 26px;
}
#field_pickup .detail .left_wrap p {
	line-height: 1.666;
	margin-bottom: 0;
}


/* Campus Life */
#my-campuslife section {
	position: relative;
}
#my-campuslife .slider_wrapper,
#my-campuslife .slider_nav {
	margin-inline: auto;
}
#my-campuslife .slider_wrapper {
/*	display: flex; */
}
#my-campuslife .slider_wrapper .slick-list {
}
#my-campuslife .slider_wrapper .slick-track {
}
#my-campuslife .slider_wrapper .slick-slide {
}
#my-campuslife .slider_wrapper .slick-slide > div,
#my-campuslife .slider_wrapper .slide {
/*	height: 100%; */
}
#my-campuslife .slider_wrapper .slide {
}
#my-campuslife .slider_wrapper .slide .imgonly {
}
#my-campuslife .slider_wrapper .slide .imgonly img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#my-campuslife .slider_wrapper .slide h4 {
}
#my-campuslife .slider_wrapper .slide p {
}
#my-campuslife .slider_nav {
	position: relative;
}
#my-campuslife .slider_nav .slick-arrow {
	background-color: rgba(237,26,83,0.75);
	border-radius: 50%;
	position: absolute;
	z-index: 1;
}
#my-campuslife .slider_nav .slick-arrow.slick-disabled {
	display: none !important;
}
#my-campuslife .slider_nav .slick-prev {
}
#my-campuslife .slider_nav .slick-next {
}
#my-campuslife .slider_nav .slick-arrow img {
}

#campus_intro {
}
#campus_intro p {
	font-weight: 600;
}
#campus_intro .youtube_wrap {
	height: auto;
	margin: 0 auto;
}

#campus_facility {
}
#campus_facility .library_wrap {
}
#campus_facility .library_wrap h3 {
	color: var(--ueda-pink);
	font-weight: 400;
}
#campus_facility .library_wrap p {
}
#campus_facility .library_wrap a.linkbtn {	/* Aki from chkHTML */
	width: 285px;
}

#campus_circle {
}
#campus_circle .circle_parent_wrapper {
	background-color: var(--ueda-bg-gray);
}
#campus_circle .circle_wrapper {
}
#campus_circle .circle_wrapper .wrap {
}
#campus_circle .circle_wrapper .wrap h3 {
	border-bottom: solid 1px var(--ueda-medium-gray);
	padding-bottom: 6px;
	margin-bottom: 16px;
}
#campus_circle .circle_wrapper .wrap ul {
}
#campus_circle .circle_wrapper .wrap ul > li{
	font-weight: 600;
}
#campus_circle p.mincho {
	color: var(--ueda-pink);
	font-weight: 700;
	text-align: center;
}

:is(#campus_festival, #campus_training) h3 {
	text-align: center;
}
#campus_festival {
}
#campus_training {
}
#campus_links {
	background-color: var(--ueda-bg-gray);
}

/* Campus Life - 上田女子短期大学通信 / 図書館講座&おやことしょかん&図書館報みすず一部 */
#newsletter_latest {
}
:is(#newsletter_latest, #biv_latest) .box.imgonly {
	text-align: center;
	background-color: var(--ueda-bg-gray);
}
:is(#newsletter_latest, #biv_latest) .box.imgonly a,
#lectures_future .lecture_pdf.imgonly a {
	position: relative;
}
:is(#newsletter_latest, #biv_latest) .box.imgonly a::after,
#lectures_future .lecture_pdf.imgonly a::after {
	content: "";
	display: block;
	background: url(/images/icon_searchplus.svg)no-repeat center rgba(0,0,0,0.4);
	width: 58px;
	height: 58px;
	position: absolute;
	right: 0;
	bottom: 0;
}
:is(#newsletter_latest, #biv_latest) .box.imgonly a img {
	height: auto;
}
#newsletter_backnumbers {
}
#newsletter_backnumbers p.note {
}
ul.newsletter_list {
	display: flex;
	flex-wrap: wrap;
	gap: 21px 180px;	/* 2024.3 KAZ: gap-y was 0 */
}


/* 校歌制作プロジェクト 2026.6 Aki */
#song_report ul {
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
}
#song_report ul.rest {
	margin-top: 50px;
}
#song_report ul li {
	width: calc((100% - 100px) / 3);
	text-align: left;
}
#song_report ul li a img {
	border: var(--ueda-strong-gray) 1px solid;	/* 2026.06 KAZ: ChkHTML */
}
#song_report details {
	text-align: center;
	margin-top: 50px;
}
#song_report details :is(summary, ul) {
	list-style-type: none;
}
#song_report details summary {
	position: relative;
	display: inline-block;
	cursor: pointer;
	border: solid 1px;
	border-radius: 50px;
	padding: 5px 50px 5px 30px;
}
#song_report details summary::after {
	content: ">";
	display: inline-block;
	position: absolute;
	top: 4px;
	right: 20px;
	transition: all 0.2s;
}
@media (any-hover: hover) {
	#song_report details summary:hover::after {
		right: 10px;
	}
}
#song_report details[open] summary {
	display: none;
}
#song_report details summary::-webkit-details-marker {
	display: none;
}
#song_files {
/*	margin-bottom: 130px; */	/* KAZ: c/o */
}
#song_files .links_box {
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
}
#song_files .links_box .audio .note {	/* KAZ */
	margin-top: 6px;
	font-size: 0.875rem;	/* 14px */
}



/* Contact Form */
.wpcf7-form {
	background-color: var(--ueda-bg-gray);
}
table.contactform,
table.contactform tbody,
table.contactform tr,
table.contactform th,
table.contactform td {
	display: block;	/* Destroy the table */
}
table.contactform {
	font-size: 1rem;	/* 16px 2024.2 Aki */
	border-bottom: 0;
}
table.contactform th,
table.contactform td {
	border-top: 0;
	padding: 0;
}
table.contactform th {
	background-color: transparent;
	margin-bottom: 13px;	/* 2024.2 Aki was 15px */
}
table.contactform th span.required {
	margin-left: 5px;
	color: var(--ueda-strong-pink);
	font-size: 0.8125rem;	/* 13px */
	font-weight: 500;
}
table.contactform td {
	margin-bottom: 10px;
}
table.contactform td span.note {
	display: block;
	margin-bottom: 15px;
	font-size: 0.8125rem;	/* 13px */
}
.wpcf7-list-item {	/* 2024.2 Aki */
	margin-left: 0 !important;
}
.wpcf7-list-item-label {	/* 18px 2024.2 Aki */
	font-size: 1.125rem;
	vertical-align: middle;
}
table.contactform input[type="text"],
table.contactform input[type="email"],
table.contactform input[type="checkbox"],
p.accept_line input[type="checkbox"],
table.contactform input[type="radio"],
table.contactform textarea,
table.contactform select {
	background-color: white;
	border: var(--ueda-medium-gray) 1px solid;
	box-shadow: none;
}
table.contactform input[type="text"],
table.contactform input[type="email"],
table.contactform input[type="checkbox"],
p.accept_line input[type="checkbox"],
table.contactform textarea,
table.contactform select {
	border-radius: 10px;
}
table.contactform input[type="text"],
table.contactform input[type="email"],
table.contactform textarea,
table.contactform select {
	margin-bottom: 15px;
}
table.contactform input[type="text"],
table.contactform input[type="email"],
table.contactform textarea {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	padding-left: 20px;	/* 2024.2 Aki */
}
table.contactform input[type="text"].wpcf7-not-valid,
table.contactform input[type="email"].wpcf7-not-valid,
table.contactform textarea.wpcf7-not-valid,
table.contactform select.wpcf7-not-valid {
	border-color: var(--ueda-strong-pink);
}
table.contactform input[type="checkbox"],
p.accept_line input[type="checkbox"],
table.contactform input[type="radio"] {
	width: 30px;
	height: 30px;
	margin: 0;
	vertical-align: middle;
}
table.contactform .wpcf7-form-control-wrap label {
	display: inline-block;
	margin-bottom: 15px;
}
table.contactform .wpcf7-not-valid-tip {
	margin-bottom: 15px;
	color: var(--ueda-strong-pink);
	font-size: 0.8125rem;	/* 13px */
	font-weight: 500;
}
table.contactform select {	/* 2024.2 Aki */
	padding-left: 20px;
}
.wpcf7-form p.accept_line,
.wpcf7-form p.submit-button {
	text-align: center;
}
.wpcf7-form p.accept_line .wpcf7-list-item-label {
	font-size: 0.875rem;	/* 14px */
}
.wpcf7-form p.accept_line .wpcf7-list-item {
	padding-left: 0;
}
.wpcf7-form p.accept_line .wpcf7-list-item-label {	/* 18px 2024.2 Aki */
	padding-left: 11px;
}
.wpcf7-form p.submit-button button.linkbtn {
	width: 270px;
	font-size: 1.25rem;	/* 20px */
	font-weight: bold;
	background-image: url(/images/icon_sent.svg);	/* 2024.2 Aki */
	background-repeat: no-repeat;	/* 2024.2 Aki */
	background-position: center left 21px;	/* 2024.2 Aki */
	text-align: left;	/* 2024.2 Aki */
	padding-left: 62px;	/* 2024.2 Aki */
}
table.contactform .wpcf7-radio label {	/* 2024.2 Aki */
	position: relative;
	padding-left: 43px;
}
table.contactform input[type="radio"] {	/* 2024.2 Aki */
	-webkit-appearance: none;
	appearance: none;
	content: "";
	display: block;
	background: white;
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: 0;
}
table.contactform input[type="radio"]:checked {	/* 2024.2 Aki */
	background: radial-gradient(var(--ueda-pink) 45%, #FFFFFF 50% 100%);
}
table.contactform input[type=checkbox] {
	appearance: none;
}
table.contactform input[type=checkbox] {
	background: ;
}
table.contactform input[type=checkbox]:checked {
	background: url(/images/icon_checked.svg)no-repeat center var(--ueda-pink);
}
.wpcf7 form.sent .wpcf7-response-output {	/* 2024.3 KAZ */
	display: none !important;
}

/* Contact and Request */
#contact_message {
	padding-bottom: 22px;
}
#contact_message .inquiry_banner {
	color: white;
	background-color: var(--ueda-bg-pink);
}
#contact_message .inquiry_banner p.message {
}
#contact_message .inquiry_banner .tel {
}
#contact_message .inquiry_banner .tel h3 {
	font-size: 0.9375rem;	/* 15px */
	border-bottom: solid 1px white;
	padding-bottom: 6px;
}
#contact_message .inquiry_banner .tel .telwrap {
}
#contact_message .inquiry_banner p.notice {
	padding-top: 9px;
	margin-bottom: 9px;
}
#contact_message .inquiry_banner p.ttl {
	font-weight: 600;
	line-height: 1.333;
}
#contact_message .inquiry_banner p.telnumber {
	font-size: 2.5rem;	/* 40px */
	line-height: 1;
	letter-spacing: 0.08em;
}
#contact_message .inquiry_banner .mail {
}
#contact_message .inquiry_banner .mail a {
	display: block;
	color: white;
	font-weight: 600;
	text-decoration: none;
	background: url(/images/icon_documents.svg) no-repeat center left 24px / 47px auto;
	border: solid 1px white;
}
#my-request #contact_message .inquiry_banner .mail a {
	background-image: url(/images/icon_email.svg);
	background-size: 31px auto;
}
#contact_form {
}
#contact_message .inquiry_banner .wrapper {	/* 2026.6 Aki added */
	display: flex;
	gap: 0 20px;
}
#contact_message .inquiry_banner .wrapper .wrap {	/* 2026.6 Aki added */
	width: 60%;
}
#contact_message .inquiry_banner .wrapper .wrap p a {	/* 2026.6 Aki added */
	font-size: 0.8125rem;
	text-decoration: underline;
}
#contact_message .inquiry_banner .wrapper .imgonly {	/* 2026.6 Aki added */
	width: 35%;
	max-width: 120px;
	flex-shrink: 0;
}

/*
Description: PC style for uedawjc.ac.jp
Note: Style for printing is also included in this file
*/


/* Responsive Structure
----------------------------------------------- */
/* General breakpoint for PC
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
	.sponly {
		display: none !important;
	}


	/* =Structure */
	body,
	#masthead {
		min-width: var(--ueda-min-width);
	}


	/* =Header */


	/* =Menu */
	#headlogo {
	}
	#branding:not(.floating) h1#headlogo {	/* Top */
		width: 216px;
		height: 372px;
		padding-top: 31px;
	}
	#branding:not(.floating) div#headlogo a {
		width: 338px;	/* 2024.4 KAZ: was 343px */
		height: 100%;
		padding-top: 32px;
	}
	#branding.floating h1#headlogo,
	#branding.floating div#headlogo a {
		width: 235px;	/* 2024.4 KAZ: was 254px */
		height: 100%;
		padding-top: 17px;
	}
	#headmenu ul#head_contact {
		flex-direction: column;
		position: fixed;
		width: 94px;
		top: 259px;
		right: -9px;
		gap: 8px 0;
	}
	@media (any-hover: hover) {
		#headmenu ul#head_contact li::before {
			transition: 0.3s all;
		}
		#headmenu ul#head_contact li:hover::before {
			transform: scale(1.0638);	/* 100 / 94 */
		}
		#headmenu ul#head_contact li:hover a {
			text-decoration: none;
		}
	}
	#headmenu #gnavi {
		display: block !important;	/* win over jQuery-inserted style */
	}
	#headmenu ul:is(#head_menu1, #head_menu2) {
		justify-content: flex-end;
	}
	#headmenu ul#head_menu1 {
/*		padding-top: 14px; */	/* KAZ: moved */
		padding-right: 21px;
	}
	#branding:not(.floating) #headmenu ul#head_menu1 {
		margin-bottom: 16px;
	}
	#headmenu ul#head_menu1 > li {
		position: relative;
		height: 55px;
		z-index: 1;
	}
	#headmenu ul#head_menu1 li.searchform,
	#headmenu ul#head_menu1 li.sns_icon {
		padding: 14px 5px 0;
	}
	#headmenu ul#head_menu1 li.contents .parent,
	#headmenu ul#head_menu1 li.contents .nolink,
	#headmenu ul#head_menu1 li.access a {
		height: 100%;
	}
	#headmenu ul#head_menu1 li.contents .parent {
		position: relative;
		z-index: 1;
	}
	#headmenu ul#head_menu1 li.contents .nolink,
	#headmenu ul#head_menu1 li.access a {
		padding: 14px 5px 0 52px;	/* 2024.2 Aki right padding was 17px */
		line-height: 34px;
	}
	#headmenu ul#head_menu1 li.contents .nolink {
		background-position: left 23px top 21px;	/* KAZ: was left 7px center */
		padding-right: 17px;	/* 2024.2 Aki */
	}
	#headmenu ul#head_menu1 li.access a {
		background-position: left 0 top 21px;	/* KAZ: was left 8px center / 2024.2 Aki left was 25px */
		padding-left: 25px;
	}
	#headmenu ul#head_menu1 li.contents .nolink::after,
	#headmenu ul#head_menu1 li.access a::after,
	#headmenu ul#head_menu1 li.sns_icon a::after {
		content: "";
		display: block;
		width: 34px;
		height: 34px;
		background-color: var(--ueda-pink);
		border-radius: 50%;
		position: absolute;
	}
	#headmenu ul#head_menu1 li.contents .nolink::after,
	#headmenu ul#head_menu1 li.access a::after,
	#headmenu ul#head_menu1 li.sns_icon a::after {
		top: 14px;	/* KAZ: was -3px */
		transform: scale(0,0);
		transition: 0.3s all;
		z-index: -1;
	}
	#headmenu ul#head_menu1 li.contents .nolink::after {
		left: 16px;	/* KAZ: was 0 */
	}
	#headmenu ul#head_menu1 li.access a::after {
		left: -8px;	/* KAZ: was 0 / 2024.2 Aki was 17px */
	}
	@media (any-hover: hover) {
		#headmenu ul#head_menu1 li.contents:hover .parent {
			background-color: var(--ueda-bg-gray);
			border-color: var(--ueda-gray);
			border-style: solid;
			border-width: 1px 1px 0;
		}
		#headmenu ul#head_menu1 li.contents:hover .nolink {
			background-image: url(/images/icon_contents_white.svg);
			padding: 13px 16px 0 51px;
		}
		#headmenu ul#head_menu1 li.access a:hover {
			background-image: url(/images/icon_access_white.svg);
			text-decoration: none;
		}
		#headmenu ul#head_menu1 li.contents:hover .nolink::after,
		#headmenu ul#head_menu1 li.access a:hover::after,
		#headmenu ul#head_menu1 li.sns_icon a:hover::after  {
			transform: scale(1,1);
		}
		#headmenu ul#head_menu1 li.sns_icon a:hover {
			background-color: transparent;
			background-image: url(/images/icon_line_white.svg);
			background-size: 21px auto;
		}
		#headmenu ul#head_menu1 li.sns_icon.instagram a:hover {
			background-image: url(/images/icon_instagram_white.svg);
		}
	}
	#headmenu ul#head_menu1 li .submenu_panel,
	#headmenu ul#head_menu2 li .submenu_panel {
		position: absolute;
		z-index: 1;
	}
	#headmenu ul#head_menu1 li .submenu_panel {
		background-color: var(--ueda-bg-gray);
		border-color: var(--ueda-gray);
		border-style: solid;
		border-width: 0 1px 1px;
		width: 100%;
		padding-bottom: 19px;
	}
	#headmenu ul#head_menu1 li .submenu_panel ul li {
	}
	#headmenu ul#head_menu1 li .submenu_panel ul li a {
		padding: 0 26px;
		line-height: 35px;
	}
	#headmenu ul#head_menu1 li .submenu_panel ul li a::before {
		transition: 0.3s all;
	}
	@media (any-hover: hover) {
		#headmenu ul#head_menu1 li .submenu_panel ul li a:hover {
			text-decoration: none;
		}
		#headmenu ul#head_menu1 li .submenu_panel ul li a:hover::before {
			width: 10px;
			margin-right: 4px;
		}
	}
	#searchform input {
		width: 195px;
	}
	#headmenu ul#head_menu1 li.sns_icon a {
	}
	#headmenu ul#head_menu2 {
		position: relative;
	}
	#headmenu ul#head_menu2 > li {
	}
	#headmenu ul#head_menu2 > li.campuslife {
/*		margin-right: 27px; 2024.2 Aki c/o */
	}
	#headmenu ul#head_menu2 > li.admission {	/* 2024.3 KAZ: was .entrance */
		margin-right: 7px;
	}
	#headmenu ul#head_menu2 > li.library {
		position: relative;
		padding-left: 8px;
		padding-right: 3px;
	}
	#headmenu ul#head_menu2 > li.library::before {
		background-color: #cecece;
		display: inline-block;
		position: absolute;
		width: 1px;
		height: 16px;
		top: 8px;
		left: 0;
		content: '';
	}
	#headmenu ul#head_menu2 > li .parent,
	#headmenu ul#head_menu2 > li > a {
		line-height: 32px;
	}
	#headmenu ul#head_menu2 > li .parent .nolink,
	#headmenu ul#head_menu2 > li > a {
	}
	#headmenu ul#head_menu2 > li .parent .nolink {	/* li.about, li.department, li.campuslife */
		padding-inline: 15px;
	}
	#headmenu ul#head_menu2 > li > a {	/* li.support, li.admission, li.library */
		padding-inline: 23px;
	}
	#headmenu ul#head_menu2 > li .parent .nolink .text,
	#headmenu ul#head_menu2 > li .parent a.link .text,	/* 2024.2 Aki */
	#headmenu ul#head_menu2 > li > a .text {
		display: inline-block;
		position: relative;
		padding-bottom: 3px;
	}
	@media (any-hover: hover) {
		#headmenu ul#head_menu2 a:hover {
			text-decoration: none;
		}
		#headmenu ul#head_menu2 > li:hover .parent .nolink .text,
		#headmenu ul#head_menu2 > li > a:hover .text {
		}
		#headmenu ul#head_menu2 > li .parent .nolink .text::after,
		#headmenu ul#head_menu2 > li .parent a.link .text::after,	/* 2024.2 Aki */
		#headmenu ul#head_menu2 > li > a .text::after {
			background-color: var(--ueda-pink);
			display: inline-block;
			position: absolute;
			width: 0;
			height: 1px;
			bottom: 0;
			left: 50%;
			z-index: 10;
			transform: translateX(-50%);
			transition: 0.3s all;
			content: '';
		}
		#headmenu ul#head_menu2 > li:hover .parent .nolink .text::after,
		#headmenu ul#head_menu2 > li .parent a.link:hover .text::after,	/* 2024.2 Aki */
		#headmenu ul#head_menu2 > li > a:hover .text::after {
			width: 100%;
		}
	}
	#headmenu ul#head_menu2 li .submenu_panel {
		background-color: white;
		border-top: var(--ueda-gray) 1px solid;
		box-shadow: 0 5px 10px 0 rgba(0,0,0,0.16);
		width: 100vw;
		min-width: var(--ueda-min-width);
		top: 34px;
		left: 0;
		padding: 65px calc(50% - 495px) 100px;	/* Aki top was 60px */
	}
	#headmenu ul#head_menu2 li .submenu_panel .heading {
		float: left;
		width: 230px;
		margin-right: 150px;
	}
	#headmenu ul#head_menu2 li .submenu_panel .heading .ttl {
		padding-bottom: 40px;
	}
	#headmenu ul#head_menu2 li .submenu_panel .heading .ttl .en {
		display: block;
		font-size: 2.1875rem;	/* 35px */
	}
	#headmenu ul#head_menu2 li .submenu_panel .heading .ttl .ja {
		display: block;
		width: 230px;
		font-size: 0.875rem;	/* 14px */
		border-bottom: solid 1px var(--ueda-gray);
		padding-top: 10px;
	}
	@media (any-hover: hover) {
		#headmenu ul#head_menu2 li .submenu_panel .heading .ttl a:hover .ja::after  {
			width: 20px;
		}
		#headmenu ul#head_menu2 li .submenu_panel > ul > li > a:hover::after,
		#headmenu ul#head_menu2 li .submenu_panel > ul > li .child a:hover::after,
		#headmenu ul#head_menu2 li .submenu_panel > ul > li > ul li a:hover::after {
			width: 15px;
		}
	}
	#headmenu ul#head_menu2 li .submenu_panel .heading .submenu_library {
	}
	#headmenu ul#head_menu2 li .submenu_panel .heading .submenu_library a {
		font-size: 1.0625rem;	/* 17px */
		background: url(/images/icon_blank.svg)no-repeat center left 23px;
		padding-left: 46px;
	}
	#headmenu ul#head_menu2 li .submenu_panel > ul {
		width: 610px;
		line-height: 26px;
		font-size: 1.125rem;	/* 18px */
	}
	#headmenu ul#head_menu2 li:not(.department) .submenu_panel > ul {
		columns: 2 230px;
		gap: 0 150px;
		padding-top: 5px;
	}
	#headmenu ul#head_menu2 li.department .submenu_panel > ul {
		overflow: hidden;
		padding-top: 8px;
	}
	#headmenu ul#head_menu2 li .submenu_panel > ul > li {
		width: 230px;
	}
	#headmenu ul#head_menu2 li:not(.department) .submenu_panel > ul > li {
		break-inside: avoid-column;	/* 2024.3 KAZ: ChkHTML: for Mac Safari problem */
		padding-bottom: 25px;	/* 2024.3 KAZ: ChkHTML: was margin-bottom; for Mac Safari problem */
	}
	#headmenu ul#head_menu2 li.department .submenu_panel > ul > li.nursing {	/* 2024.3 KAZ: was li:first-child */
		float: left;
	}
	#headmenu ul#head_menu2 li.department .submenu_panel > ul > li.culture {	/* 2024.3 KAZ: was li:last-child */
		margin-left: 380px;
	}
	#headmenu ul#head_menu2 li .submenu_panel > ul > li > a {
	}
	#headmenu ul#head_menu2 li .submenu_panel > ul > li .child {
		margin-bottom: 25px;
	}
	#headmenu ul#head_menu2 li .submenu_panel > ul > li .child a {
	}
	#headmenu ul#head_menu2 li .submenu_panel > ul > li > ul {
		line-height: 1;
		font-size: 0.9375rem;	/* 15px */
	}
	#headmenu ul#head_menu2 li .submenu_panel > ul > li > ul li:not(:last-child) {
		margin-bottom: 25px;
	}
	#headmenu ul#head_menu2 li .submenu_panel > ul > li > ul li a {
	}



	/* =Content */
	.page-header,
	.page .entry-header.type-b {
		height: 240px;
		margin-bottom: 100px;	/* 2024.2 Aki */
	}
	.page .entry-header.type-a,
	.page .entry-header.type-a .entry-image {
		height: 487px;
	}
	.page .entry-header.type-c {
		height: 205px;
	}
	.single-post .entry-header {
/*		min-height: 296px; */	/* 2024.3 KAZ: c/o; see below */
	}
	#my-values .entry-header.type-values {	/* Special */
		top: 288px;
	}
	#my-interview .entry-header.type-interview,
	#my-interview .entry-header.type-interview .entry-image {	/* Special */
		height: 770px;
	}
	#my-opencampus .entry-header.type-a,
	#my-opencampus .entry-header.type-a .entry-image {	/* Special */
		height: 475px;
	}
	#my-opencampus .entry-header.type-a {	/* Special */
		margin-bottom: 167px;
	}
	#my-voices .entry-header.type-a {	/* Special; 2024.3 KAZ: was #my-why-uwjc */
	}
	.page-title,
	.page .entry-title {
	}
	.single-post .entry-title {
		line-height: 1.8333;	/* 44px */
		font-size: 1.5rem;	/* 24px */
	}
	#my-opencampus .entry-header.type-a .entry-title {	/* Special */
		height: calc(100% + 167px);
		margin-bottom: -167px;
	}
	#my-voices .entry-header.type-a .entry-title {	/* Special; 2024.3 KAZ: was #my-why-uwjc */
		height: calc(100% + 126px);
		margin-bottom: -126px;
	}
	.page-title::after,
	.page .entry-header.type-b .entry-title::after,
	.page .entry-header.type-c .entry-title::after {
		height: 30px;
	}
	.page-title .inner,
	.page .entry-header.type-b .entry-title .inner,
	.page .entry-header.type-c .entry-title .inner {
		padding-top: 95px;
		padding-bottom: 40px;	/* 30px + alpha */
	}
	.page .entry-header.type-a .entry-title .inner {
		min-height: 146px;
		padding: 50px 100px 0;
		line-height: 1.4571;	/* 51px */
		font-size: 2.1875rem;	/* 35px */
	}
	#my-interview .entry-header.type-interview .entry-title .inner {	/* Special */
		padding: 55px 52px 27px;
	}
	#my-opencampus .entry-header.type-a .entry-title .inner {	/* Special */
		padding: 21px 72px 33px;
	}
	#my-voices .entry-header.type-a .entry-title .inner {	/* Special; 2024.3 KAZ: was #my-why-uwjc */
		padding: 60px 63px 57px;
	}
	#my-opencampus .entry-header.type-a .entry-title .inner .catchline {	/* Special */
		margin-bottom: 9px;
		line-height: 1.2;	/* 30px */
		font-size: 1.5625rem;	/* 25px */
	}
	#my-opencampus .entry-header.type-a .entry-title .inner .catchline span.large {	/* Special */
		font-size: 3.125rem;	/* 50px */
	}
	#my-voices .entry-header.type-a .entry-title .inner .catchline {	/* Special; 2024.3 KAZ: was #my-why-uwjc */
		margin-bottom: 18px;
	}
	.page-title .inner .ja,
	.page .entry-title .inner .ja {
		margin-right: -0.18em;	/* counter letter-spacing for centering */
		letter-spacing: 0.18em;
	}
	.page .entry-header.type-a .entry-title .inner .ja {
		margin-bottom: 16px;
	}
	.page-title .inner .ja,
	.page .entry-header.type-b .entry-title .inner .ja {
		margin-bottom: 14px;
	}
	#my-values .entry-header.type-values .entry-title .inner .ja,
	#my-interview .entry-header.type-interview .entry-title .inner .ja,
	#my-opencampus .entry-header.type-a .entry-title .inner .ja {	/* Special */
		margin-right: 0;
		letter-spacing: 0;
	}
	#my-values .entry-header.type-values .entry-title .inner .ja {	/* Special */
		font-size: 2.8125rem;	/* 45px */
	}
	#my-opencampus .entry-header.type-a .entry-title .inner .ja {	/* Special */
		margin-bottom: 14px;
		line-height: 1.1667;	/* 70px */
		font-size: 3.75rem;	/* 60px */
	}
	#my-voices .entry-header.type-a .entry-title .inner .ja {	/* Special; 2024.3 KAZ: was #my-why-uwjc */
		line-height: 1.625;	/* 65px */
		font-size: 2.5rem;	/* 40px */
	}
	.page-title .inner .en,
	.page .entry-title .inner .en {
	}
	.page .entry-header.type-a .entry-title .inner .en {
		line-height: 1.45;	/* 29px */
		font-size: 1.25rem;	/* 20px */
	}
	.page-title .inner .en,
	.page .entry-header.type-b .entry-title .inner .en {
		line-height: 1.4;	/* 21px */
		font-size: 0.9375rem;	/* 15px */
	}
	#my-values .entry-header.type-values .entry-title .inner .appendix {	/* Special */
		font-size: 1.875rem;	/* 30px */
	}
	.page #main .entry-content {
		padding-top: 100px;
	}
	.entry-content th,
	.entry-content td {
		padding: 25px 25px 20px;
	}
	.entry-content tbody th {
		width: 278px;	/* KAZ: default */
	}
	.entry-content ul:not(.nostyle) li {
		margin-bottom: 20px;
	}
	.entry-content th p,
	.entry-content td p,
	.entry-content li p {
		margin-bottom: 10px;
	}




	/* =Footer */
	#ft_nav_top {
	}
	#ft_nav_top a {
	}
	#ft_nav_top a img {
	}
	#colophon {
		padding: 103px 0 93px;	/* 2024.3 KAZ: bottom was 75px */
	}
	#colophon .wall {
		display: flex;
/*		gap: 0 122px; 2024.2 Aki c/o */
		justify-content: space-between;	/* 2024.2 Aki */
	}
	#colophon .left_wrap {
	}
	#ft_logo {
	}
	#ft_sns {
		padding: 25px 0 20px;
	}
	#ft_sns .sns_icon {
		width: 32px;
		height: 32px;
		padding: 4px;
	}
	#ft_sns .sns_icon.youtube {
		padding: 1px;
	}
	#ft_sns .sns_icon.twitter {
		padding: 3px;
	}
	#ft_sns a{
		width: 18px;
	}
	#ft_sns .fb a {
		width: 9px;
	}
	#ft_add p {
	}
	#colophon .right_wrap {
	}
	#ft_links {
	}
	#footlink {
		display: flex;
		flex-wrap: wrap;	/* 2024.5 KAZ */
		align-items: center;	/* 2024.5 KAZ */
		justify-content: space-between;	/* 2024.5 KAZ */
		gap: 20px 0;	/* 2024.5 KAZ: was 0 20px */
		width: 610px;	/* 2024.5 KAZ */
	}
	#footlink a.linkbtn {	/* 2024.5 KAZ: added .linkbtn */
		width: 295px;
	}
	#footlink a.linkbtn::after {
	}
	ul#footmenu {
		justify-content: flex-end;
/*		padding-top: 37px; */	/* 2024.5 KAZ: c/o; 2024.3 KAZ: was 50px */
	}
	ul#footmenu li {
	}
	ul#footmenu li a {
	}
	#ft_copyright {
		text-align: right;
		padding-top: 96px;	/* 2024.5 KAZ: was 116px; 2024.3 KAZ: was 125px */
	}



	/* Common entries */
	:is(h1, h2, h3).underlined {
		margin-bottom: 80px;
		line-height: 1.4286;	/* 40px */
		font-size: 1.75rem;	/* 28px */
	}
	:is(h1, h2, h3).underlined:not(:first-child),
	.entry-content section:not(:first-child) .wall > :is(h1, h2, h3).underlined:first-child {
		margin-top: 100px;
	}
	:is(h2, h3).markonbottom {
		margin-bottom: 40px;
		line-height: 1.5;	/* 36px */
		font-size: 1.5rem;	/* 24px */
	}
	:is(h2, h3).markonbottom:not(:first-child),
	.entry-content section:not(:first-child) .wall > :is(h2, h3).markonbottom:first-child {
		margin-top: 90px;
	}
	:is(h2, h3, h4).markonleft {	/* 2024.3 KAZ: added h4 */
		margin-bottom: 30px;
		line-height: 1.4545;	/* 32px */
		font-size: 1.375rem;	/* 22px */
	}
	:is(h2, h3, h4).markonleft:not(:first-child),	/* 2024.3 KAZ: added h4 */
	.entry-content section:not(:first-child) .wall > :is(h2, h3, h4).markonleft:first-child {	/* 2024.3 KAZ: added h4 */
		margin-top: 50px;
	}
	:is(h3, h4).pink {
		margin-bottom: 27px;
	}
	:is(h3, h4).pink:not(:first-child),
	.entry-content section:not(:first-child) .wall > :is(h3, h4).pink:first-child {
		margin-top: 48px;
	}
	.entry-content .catchline {
		margin-bottom: 50px;
		line-height: 1.8333;	/* 44px */
		font-size: 1.5rem;	/* 24px */
		text-align: center;
	}
	.leadline {
		width: 820px;
		margin-inline: auto;
		font-size: 1.0625rem;	/* 17px */
	}
	.twocolumns {
		display: flex;
		justify-content: space-between;
	}
	.twocolumns:not(:first-child) {
		margin-top: 40px;
	}
	.twocolumns:not(:first-child):has(:is(h2, h3, h4).markonleft:first-child),	/* 2024.3 KAZ: added h4 */
	.twocolumns:not(:first-child):has(:is(h3, h4).pink:first-child) {	/* Do not combine this rule with another; firefox does not support :has() */
		margin-top: 50px;
	}
	.twocolumns .column {
		width: 495px;
	}
	.inquiry_banner {
		padding: 35px 75px 40px;
	}
	.inquiry_banner .descr {
	}
	.inquiry_banner .phone {
		float: left;
		width: 428px;
	}
	.inquiry_banner .phone .heading {
	}
	.inquiry_banner .phone .name {
		float: left;
		width: 127px;
		padding-top: 15px;
	}
	.inquiry_banner .phone .number {
		margin-left: 127px;
		margin-right: -0.1em;	/* does not fit */
		line-height: 1.4;	/* 56px */
		font-size: 2.5rem;	/* 40px */
	}
	.inquiry_banner .mailform {
		margin-left: 452px;
	}
	.inquiry_banner .mailform a {
		padding-left: 71px;
		font-size: 1.125rem;	/* 18px */
	}
	a.linkbtn.hasimage,
	span.linkbtn.nolink.hasimage {	/* 2024.3 KAZ */
		min-width: 505px;
		min-height: 150px;
		padding-top: 10px;
		padding-left: 10px;
		padding-bottom: 10px;
	}
	a.linkbtn.hasimage .linkimage,
	span.linkbtn.nolink.hasimage .linkimage {	/* 2024.3 KAZ */
		width: 130px;
		height: 130px;
		margin-right: 23px;
	}
	a.linkbtn.hasimage .text,
	span.linkbtn.nolink.hasimage .text {	/* 2024.3 KAZ */
/*		padding-left: 23px; Aki c/o */
	}


	/* Blog Page Components */
	/* 緊急欄  */
	:is(#top_sticky, #my-blog) .sticky_wrap {
		border-radius: 40px;
		margin-bottom: 80px;
	}
	:is(#top_sticky, #my-blog) .sticky_wrap .inner{
		display: flex;
		align-items: center;
		border-radius: 40px;
		padding: 17px 29px 13px;
	}
	:is(#top_sticky, #my-blog) .sticky_wrap p.sticky {
	}
	:is(#top_sticky, #my-blog) .sticky_wrap .date {
		padding-left: 33px;
		padding-right: 0;
	}
	:is(#top_sticky, #my-blog) .sticky_wrap h2 {
		padding-left: 16px;
	}
	:is(#top_sticky, #my-blog) .sticky_wrap h2 a {
	}
	@media (any-hover: hover) {
		:is(#top_sticky, #my-blog) .sticky_wrap a:hover {
			background-color: var(--ueda-strong-pink);
		}
		:is(#top_sticky, #my-blog) .sticky_wrap:hover :is(p, .date, h2) {
			color: white;
		}
		:is(#top_sticky, #my-blog) .sticky_wrap:hover p.sticky {
			background-image: url(/images/sticky_on.svg);
		}
		:is(#top_sticky, #my-blog) .sticky_wrap h2 a:hover {
			color: white;
			text-decoration: none;
		}
	}

	#content nav:not(#nav-single) {
	}
	#my-blog #content,
	#my-search #content {	/* 2024.3 KAZ: added */
		padding-bottom: 120px;
	}
	#content nav#nav-single {
		padding-top: 75px;
/*		padding-bottom: 117px; Aki c/o */
	}

	/* Archive */
	#my-blog.archive .page-title .inner {
	}
	#my-blog.archive .page-title .archive-title {
		font-size: 1.125rem;
		padding-top: 5px;
	}
	#news_categories {
		margin-bottom: 40px;
	}
	#news_categories ul {
		display: flex;
		gap: 0 30px;
		border-bottom: solid 1px var(--ueda-gray);
	}
	#news_categories ul > li {
	}
	#news_categories ul > li a {
		display: block;
		color: var(--ueda-strong-gray);
		font-size: 0.875rem;	/* 14px */
		font-weight: 600;
		padding: 0 10px 10px;
	}
	#news_categories ul > li a.information {
	}
	#news_categories ul > li a.opencampus {
	}
	#news_categories ul > li a.admission {	/* 2024.3 KAZ: was .entranceexam, KAZ: was .fiftieth */
	}
	#news_categories ul > li a.course {
	}
	#news_categories ul > li a.event {
	}
	#news_categories ul > li a.other {	/* KAZ */
	}
	#news_categories ul > li a.current {
		border-bottom: solid 2px var(--ueda-strong-pink);
	}
	#news_categories ul > li a.current.information {
		border-bottom-color: var(--ueda-cat-pink);
	}
	#news_categories ul > li a.current.opencampus {
		border-bottom-color: var(--ueda-cat-green);
	}
	#news_categories ul > li a.current.admission {	/* 2024.3 KAZ: was .entranceexam, KAZ: was .fiftieth */
		border-bottom-color: var(--ueda-cat-purple);
	}
	#news_categories ul > li a.current.course {
		border-bottom-color: var(--ueda-cat-blue);
	}
	#news_categories ul > li a.current.event {
		border-bottom-color: var(--ueda-cat-orange);
	}
	#news_categories ul > li a.current.other {	/* KAZ */
		border-bottom-color: var(--ueda-cat-teal);
	}
	@media (any-hover: hover) {
		#news_categories ul > li a:hover {
			color: inherit;
			text-decoration: none;
			border-bottom: solid 2px var(--ueda-strong-pink);
		}
		#news_categories ul > li a.information:hover {
			border-bottom-color: var(--ueda-cat-pink);
		}
		#news_categories ul > li a.opencampus:hover {
			border-bottom-color: var(--ueda-cat-green);
		}
		#news_categories ul > li a.admission:hover {	/* 2024.3 KAZ: was .entranceexam, KAZ: was .fiftieth */
			border-bottom-color: var(--ueda-cat-purple);
		}
		#news_categories ul > li a.course:hover {
			border-bottom-color: var(--ueda-cat-blue);
		}
		#news_categories ul > li a.event:hover {
			border-bottom-color: var(--ueda-cat-orange);
		}
		#news_categories ul > li a.other:hover {	/* KAZ */
			border-bottom-color: var(--ueda-cat-teal);
		}
	}

	#my-blog article {
	}
	#my-blog:not(.single-post) article {
	}
	#my-blog:not(.single-post) article .entry-header,
	#my-search article .entry-header {	/* 2024.3 KAZ: added */
		padding: 24px 25px 19px;
	}
	#my-blog:not(.single-post) article .entry-header .date,
	#my-search article .entry-header .date {	/* 2024.3 KAZ: added */
		padding-right: 21px;
	}
	#my-blog:not(.single-post) article .entry-header h2,
	#my-search article .entry-header h2 {	/* 2024.3 KAZ: added */
		display: inline-block;
		max-width: 710px;
		vertical-align: top;
		padding-left: 22px;
	}
	#my-blog:not(.single-post) article .entry-header h2 a,
	#my-search article .entry-header h2 a {
		display: inline-block;
		line-height: 1.5;
		padding-top: 7px;
	}


	/* Single */
	.single-post article {
	}
	.single-post .entry-header {
		padding-top: 45px;
		padding-bottom: 40px;	/* 2024.3 KAZ */
	}
	.single-post .entry-header .wall {
	}
	.single-post .entry-header .parent-title {
		font-size: 1.25rem;	/* 20px */
	}
	.single-post .entry-header .parent-title .inner {
	}
	.single-post .entry-header .parent-title::after {
		width: 30px;
		margin-top: 3px;
	}
	.single-post .entry-header .date {
		margin-top: -15px;
	}
	.single-post .entry-header .entry-title {
		padding: 25px 0 20px;
	}
	.single-post .entry-header .category {
	}
	.single-post .entry-content {
		padding-top: 60px;
	}
	.single-post .pseudosection {
		margin-top: 60px;
	}
	.single-post .pseudosection .wall {
	}
	.single-post .pseudosection.news-qrcode .wall {
		padding-block: 50px;
	}
	.single-post .pseudosection.news-qrcode a {
		width: 200px;
	}
	.single-post .pseudosection.news-qrcode a img {
		height: 200px;
	}
	.single-post .pseudosection.news-pdf .wall {
		padding-block: 50px;
	}
	.single-post .pseudosection.news-pdf a {
	}
	.single-post .pseudosection.news-pdf a img {
		width: 340px;
	}
	.single-post #news_links {
		margin-top: 55px;
	}
	.single-post #news_links .wall {
	}




	/* Front Page Components */
	#my-top section:not(#top_sticky):not(#top_pickup):not(#top_information) {
		padding-bottom: 120px;
	}
	:is(#my-top, #my-libhp) section h2 {
		padding-bottom: 50px;
	}
	:is(#my-top, #my-libhp) section h2 .en {
	}
	:is(#my-top, #my-libhp) section h2 .ja {
	}

	#top_mainvisual {
		height: calc(var(--viewheight) - var(--ueda-initial-header-height));	/* 2024.3 KAZ: moved from common */
	}
	.admin-bar #top_mainvisual {
		height: calc(var(--viewheight) - var(--ueda-initial-header-height) - var(--wp-admin-bar-height));	/* 2024.3 KAZ: moved from common */
	}
	#top_mainvisual .image,
	#top_mainvisual .movie {	/* 2024.4 KAZ: added */
		margin-left: 216px;
	}
	#top_mainvisual .image img {
/*		object-position: right center; */	/* 2024.4 KAZ: c/o */
	}
	#top_opencampus_banner {
/*		position: relative; */	/* 2024.3 KAZ: c/o */
		width: 375px;
/*		margin-top: -145px; */	/* 2024.3 KAZ: c/o */
	}
	#top_opencampus_banner a {
		padding: 0 29px 23px;
	}
	#top_opencampus_banner a .category,
	ul.event_list > li .category {
		line-height: 42px;
	}
	#top_opencampus_banner a .category {
		margin-top: -20px;
		margin-bottom: 19px;
	}
	#top_opencampus_banner a .category::after {
		border-top: var(--ueda-strong-green) 11px solid;
		border-left: transparent 6.5px solid;
		border-right: transparent 6.5px solid;
		width: 13px;
		height: 11px;
		bottom: -11px;
		left: 151px;
	}
	#top_opencampus_banner a .title {
		line-height: 1.0588;	/* 18px */
		font-size: 1.0625rem;	/* 17px */
	}
	#top_opencampus_banner a .datetime {
		font-size: 1.875rem;	/* 30px */
	}
	#top_opencampus_banner a .datetime .month {
		font-size: 2.5rem;	/* 40px */
		vertical-align: 15px;
	}
	#top_opencampus_banner a .datetime .slash {
		font-size: 2.9375rem;	/* 47px */
		vertical-align: 4px;
	}
	#top_opencampus_banner a .datetime .date,
	ul.event_list > li .datetime .date {
		margin-right: 2px;	/* KAZ */
	}
	#top_opencampus_banner a .datetime .date {
		font-size: 3.75rem;	/* 60px */
	}
	#top_opencampus_banner a .datetime .day {
	}
	#top_opencampus_banner a .datetime .time,
	ul.event_list > li .datetime .time {
		margin-left: 9px;	/* KAZ */
/*		padding-left: 10px; */
	}

	/* Sticky */
	#top_sticky {
		padding-top: 80px;
	}

	/* Pick Up */
	:is(#top_pickup, #top_news) a {
	}
	#top_pickup {
		padding-bottom: 130px;
		margin-top: 80px;
	}
	#top_pickup .wall {
		width: var(--ueda-wide-width);
	}
	#top_pickup ul.pickup_list{
		flex-wrap: wrap;
	}
	#top_pickup ul.pickup_list > li{
	}
	#top_pickup ul.pickup_list > li a{
	}
	#top_pickup ul.pickup_list > li .entry-image{
		overflow: hidden;
	}
	#top_pickup ul.pickup_list > li .text_wrap {
	}
	#top_pickup ul.pickup_list > li .text_wrap::before {
	}
	@media (any-hover: hover) {
		#top_pickup ul.pickup_list > li:hover .entry-image img {
			height: 100%;
			object-fit: cover;
			transform: scale(1.12);
			opacity: 1;
		}
		#top_pickup ul.pickup_list > li:hover .text_wrap::before {
			height: calc(100% + 35px);
		}
		#top_pickup ul.pickup_list > li:hover a {
			text-decoration: none;
		}
	}
	#top_pickup ul.pickup_list > li .title {
	}
	#top_pickup ul.pickup_list > li .date {
	}

	/* News */
	#top_news {
	}
	#top_news ul.news_list {
		margin-bottom: 38px;
	}
	#top_news ul.news_list > li {
		position: relative;
		display: flex;
		align-items: center;
		gap: 0 22px;
		padding: 20px 0 16px 25px;
	}
	#top_news ul.news_list > li::after,
	#my-blog:not(.single-post) article::after,
	#my-search article::after {	/* 2024.3 KAZ: added */
		content: "";
		display: block;
		width: 15px;
		height: 1px;
		background-color: var(--ueda-cat-pink);
		position: absolute;
		right: 0;
		top: 50%;
		transition: all 0.3s 0s ease;
	}
	#my-search article::after {	/* 2024.3 KAZ: added */
		background-color: var(--ueda-cat-teal);
	}
	#top_news ul.news_list > li.opencampus::after,
	#my-blog article.category-opencampus::after,
	#my-search article.category-opencampus::after {	/* 2024.3 KAZ: added */
		background-color: var(--ueda-cat-green);
	}
	#top_news ul.news_list > li.admission::after,	/* 2024.3 KAZ: was .entranceexam */
	#my-blog article.category-admission::after,	/* 2024.3 KAZ: was .category-entranceexam, KAZ: was .category-fiftieth */
	#my-search article.category-admission::after {	/* 2024.3 KAZ: was .category-entranceexam, 2024.3 KAZ: added */
		background-color: var(--ueda-cat-purple);
	}
	#top_news ul.news_list > li.course::after,
	#my-blog article.category-course::after,
	#my-search article.category-course::after {	/* 2024.3 KAZ: added */
		background-color: var(--ueda-cat-blue);
	}
	#top_news ul.news_list > li.event::after,
	#my-blog article.category-event::after,
	#my-search article.category-event::after {	/* 2024.3 KAZ: added */
		background-color: var(--ueda-cat-orange);
	}
	#top_news ul.news_list > li.other::after,
	#my-blog article.category-other::after,	/* KAZ */
	#my-search article.category-other::after {	/* 2024.3 KAZ: added */
		background-color: var(--ueda-cat-teal);
	}
	#top_news ul.news_list > li .date {
	}
	#top_news ul.news_list > li .category,
	article .entry-header a.category,
	article .entry-header span.nocategory {	/* 2024.3 KAZ: added */
		position: relative;
		line-height: 35px;
		border: solid 1px var(--ueda-gray);
		border-left: solid 1px var(--ueda-cat-pink);
		padding-left: 11px;
	}
	#top_news ul.news_list > li .category.opencampus,
	article .entry-header a.category.opencampus {
		border-left: solid 1px var(--ueda-cat-green);
	}
	#top_news ul.news_list > li .category.admission,
	article .entry-header a.category.admission {	/* 2024.3 KAZ: was .entranceexam, KAZ: was .fiftieth */
		border-left: solid 1px var(--ueda-cat-purple);
	}
	#top_news ul.news_list > li .category.course,
	article .entry-header a.category.course {
		border-left: solid 1px var(--ueda-cat-blue);
	}
	#top_news ul.news_list > li .category.event,
	article .entry-header a.category.event {
		border-left: solid 1px var(--ueda-cat-orange);
	}
	#top_news ul.news_list > li .category.other,
	article .entry-header a.category.other,	/* KAZ */
	article .entry-header span.nocategory {	/* 2024.3 KAZ: added */
		border-left: solid 1px var(--ueda-cat-teal);
	}
	#top_news ul.news_list > li .category::before,
	article .entry-header a.category::before,
	ul.event_list > li .popup_link a::before  {
		content: "";
		display: block;
		width: 0;
		height: 35px;
		background-color: var(--ueda-cat-pink);
		position: absolute;
		top: 0;
		left: 0;
		transition: all 0.3s 0s ease;
		z-index: -1;
	}
	#top_news ul.news_list > li .category.opencampus::before,
	article .entry-header a.category.opencampus::before {
		background-color: var(--ueda-cat-green);
	}
	#top_news ul.news_list > li .category.admission::before,
	article .entry-header a.category.admission::before {	/* 2024.3 KAZ: was .entranceexam, KAZ: was .fiftieth */
		background-color: var(--ueda-cat-purple);
	}
	#top_news ul.news_list > li .category.course::before,
	article .entry-header a.category.course::before {
		background-color: var(--ueda-cat-blue);
	}
	#top_news ul.news_list > li .category.event::before,
	article .entry-header a.category.event::before {
		background-color: var(--ueda-cat-orange);
	}
	#top_news ul.news_list > li .category.other::before,
	article .entry-header a.category.other::before {	/* KAZ */
		background-color: var(--ueda-cat-teal);
	}
	#top_news ul.news_list > li .title {
		width: 700px;
	}
	@media (any-hover: hover) {
			#top_news ul.news_list > li:hover::after,
			#my-blog article:hover::after,
			#my-search article:hover::after {	/* 2024.3 KAZ: added */
				width: 25px;
			}
			#top_news ul.news_list > li a:hover,
			article .entry-header a:hover {
				text-decoration: none;
			}
			#top_news ul.news_list > li .category:hover,
			article .entry-header a.category:hover {
				color: white;
				z-index: 1;
			}
			#top_news ul.news_list > li .category:hover::before,
			article .entry-header a.category:hover::before,
			ul.event_list > li .popup_link a:hover::before {
				width: 100%;
			}
	}
	#top_news .link a.linkbtn {
		width: 195px;
	}

	/* Department */
	#top_department {
	}
	:is(#top_department, #open_department) .wrapper {
		display: flex;
	}
	:is(#top_department, #open_department) .wrapper .wrap {
		width: 50%;
		min-height: 640px;
	}
	:is(#top_department, #open_department) .wrapper .wrap a {
		overflow: hidden;
		padding: 236px 0 0 100px;
	}
	:is(#top_department, #open_department) .wrapper .wrap a::before {
		transition: all 0.3s 0s ease;
	}
	:is(#top_department, #open_department) .wrapper .wrap a::after {
		min-height: 640px;
	}
	:is(#top_department, #open_department) .ttl {
	}
	:is(#top_department, #open_department) .ttl .en {
	}
	:is(#top_department, #open_department) .ttl .ja {
		font-size: 3.125rem;	/* 50px */
	}
	:is(#top_department, #open_department) .ttl .ja::after {
		right: -28px;
		transition: all 0.3s 0s ease;
	}
	:is(#top_department, #open_department) .text {
	}
	@media (any-hover: hover) {
		:is(#top_department, #open_department) .wrapper .wrap a:hover::before {
			transform: scale(1.05);
		}
		:is(#top_department, #open_department) a:hover .ttl .ja::after {
			right: -48px;
		}
	}

	/* Campus Life */
	#top_campuslife {
	}
	#top_campuslife .wall {
		display: flex;
	}
	#my-top section#top_campuslife h2 {
		margin-bottom: 0;	/* 2026.6 Aki was 16px */
	}
	#my-top section#top_campuslife h2 .en {
		line-height: 1.45;
	}
	#top_campuslife .imgonly {
		width: 688px;
	}
	#top_campuslife .wrap {
		width: calc(100% - 688px);
		padding: 10px 40px 0;	/* 2026.6 Aki top was 23px リンクボタン追加につき狭めた */
	}
	#top_campuslife .wrap p{
	}

	/* sns */
	#top_sns {
	}
	.sns_informationwrap h2 {
		padding-right: 26px;
	}
	#top_sns .wall {
	}
/*	#top_sns .imgonly.visual {
 *	}
 *	#top_sns .imgonly.visual img {
 *		width: 25%;
 *	}
 */
	.sns_informationwrap {
		padding: 37px 57px 61px;
	}
	.sns_informationwrap p {
		padding-right: 49px;
		margin-bottom: 0;
	}
	.sns_informationwrap .wrap_child {
		display: flex;
		align-items: center;
	}
	.sns_informationwrap .wrap_child .sns_wrap {
		gap: 0 13px;
	}
	.sns_wrap.darkgray .sns_icon {
	}
	.wrap_child .sns_wrap.darkgray .sns_icon a {
	}
	@media (any-hover: hover) {
		.sns_wrap.darkgray .sns_icon a:hover img {
			position: relative;
			opacity: 1;
			z-index: 1;
		}
		.sns_wrap.darkgray .sns_icon a:hover::before {
		background-color: var(--ueda-pink);
		border-radius: 50%;
		transform: scale(1.12);
		transition: 0.2s all;
		}
	}
	.sns_informationwrap .wrap_child.line {
		padding-top: 31px;
	}
	.sns_informationwrap .wrap_child.line a {
		display: flex;
		align-items: center;
		padding: 17px 34px 17px 23px;
	}
	.sns_informationwrap .wrap_child.line .ttl {
		min-width: 355px;
	}
	.sns_informationwrap .wrap_child.line .text {
	}
	@media (any-hover: hover) {
		.sns_informationwrap .wrap_child.line a:hover {
			color: white;
			background-color: var(--ueda-strong-green);
			border-color: var(--ueda-strong-green);
		}
		.sns_informationwrap .wrap_child.line a:hover .ttl {
			color: white;
			background-image: url(/images/line_on.svg);
		}
	}

	/* Information */
	#top_information {
		min-height: 1009px;
		padding-top: 558px;
	}
	#my-top section#top_information h2 {
	}
	#my-top section#top_information h2 .en {
	}
	#top_information ul {
	}
	#top_information ul > li {
		width: 400px;
	}
	#top_information ul > li a {
		transition: all 0.3s 0s ease;
		padding: 27px 60px 27px 28px;
	}
	@media (any-hover: hover) {
		#top_information ul > li a:hover {
			background: rgba(0,0,0,0.6);
		}
		#top_information ul > li a:hover::after {
		}
	}
	#top_information ul > li a .ttl {
	}
	#top_information ul > li a .text {
	}


	/* Open Campus Page Components */
	.page#my-opencampus #main .entry-content {
		padding-top: 0;
	}
	#my-opencampus h2 .en {
		font-size: 3.125rem;	/* 50px */
		padding-bottom: 12px;
	}
	#my-opencampus #top_news {
		padding: 85px 0;
	}
	#my-opencampus #top_news h2 {
		padding-bottom: 55px;
	}
	#my-opencampus #top_news h2 .en {
	}
	#my-opencampus #top_news h2 .ja {
	}
	#my-opencampus #top_news a.linkbtn::after {
	}

	#my-opencampus h2.fukidashi {
		margin-bottom: 20px;
	}
	#my-opencampus h2.fukidashi .inner{
		height: 118px;
	}

	#open_schedule {
		background: linear-gradient(to bottom, white 0 65px, var(--ueda-bg-gray) 65px 100%);
	}
	#open_schedule .wall {
		padding: 100px 0 30px;	/* Aki bottom was 45px */
	}
	#open_schedule h2.fukidashi .inner {
		padding: 20px 94px 0;
	}
	#open_schedule h3 {
		margin-bottom: 40px;
	}
	#open_schedule h3 .note {
		padding-left: 21px;
	}
	ul.event_list {
		gap: 31px 20px;
		margin-bottom: 48px;	/* Aki was 30px */
	}
	ul.event_list > li {
		width: 400px;
		padding: 0 35px 35px;
	}
	ul.event_list > li .category {
	}
	ul.event_list > li .title {
	}
	ul.event_list > li .datetime {
		font-size: 1.6875rem;	/* 27px */
		padding-bottom: 15px;
	}
	ul.event_list > li .datetime .month {
		font-size: 2.3125rem;	/* 37px */
		vertical-align: 14px;	/* KAZ: was super */
	}
	ul.event_list > li .datetime .slash {	/* KAZ */
		font-size: 2.75rem;	/* 44px */
		vertical-align: 3px;
	}
	ul.event_list > li .datetime .date {
		font-size: 3.5rem;	/* 56px */
	}
	ul.event_list > li .datetime .day {
	}
	ul.event_list > li .datetime .time {
	}
	ul.event_list > li .popup_link {
	}
	ul.event_list > li .popup_link a {
	}
	ul.event_list > li .popup_link a::before {
		background-color: var(--ueda-strong-green);
	}
	#my-opencampus .fancybox-slide--html {
		padding: 80px 10px;
	}
	#my-opencampus .opencampus_popup {
		width: 1240px;
		padding: 80px 105px;
	}
	#my-opencampus .opencampus_popup .heading,	/* 2024.3 KAZ: added */
	#my-opencampus .opencampus_popup .event_pdf {
		margin-bottom: 74px;
	}
	#my-opencampus .opencampus_popup .heading {
		float: left;
		max-width: 650px;
		padding-top: 115px;
	}
	#my-opencampus .opencampus_popup .heading .title {
		font-size: 1.75rem;	/* 28px */
	}
	#my-opencampus .opencampus_popup .heading .datetime {
		font-size: 2.375rem;	/* 38px */
	}
	#my-opencampus .opencampus_popup .heading .datetime .month {
		font-size: 3.25rem;	/* 52px */
		vertical-align: 23px;
	}
	#my-opencampus .opencampus_popup .heading .datetime .slash {
		font-size: 4.125rem;	/* 67px */
		vertical-align: 3px;
	}
	#my-opencampus .opencampus_popup .heading .datetime .date {
		margin-right: 3px;
		font-size: 5rem;	/* 80px */
	}
	#my-opencampus .opencampus_popup .heading .datetime .day {
	}
	#my-opencampus .opencampus_popup .heading .datetime .time {
		margin-left: 15px;
	}
	#my-opencampus .opencampus_popup .event_pdf {
		margin-left: 670px;
	}
	#my-opencampus .opencampus_popup .event_pdf a {
		height: 360px;
		padding: 8px;
	}
	#my-opencampus .opencampus_popup .event_pdf a::after {
		width: 58px;
		height: 58px;
	}
	#my-opencampus .opencampus_popup .event_pdf a img {
	}
	#my-opencampus .opencampus_popup .event_double_col,
	#my-opencampus .opencampus_popup .event_single_col {
		clear: left;	/* 2024.3 KAZ: missing */
	}
	#my-opencampus .opencampus_popup .event_double_col {
		display: flex;
		gap: 0 40px;
	}
	#my-opencampus .opencampus_popup .event_double_col .left_col,
	#my-opencampus .opencampus_popup .event_double_col .right_col,
	#my-opencampus .opencampus_popup .event_single_col {
		margin-bottom: 37px;
	}
	#my-opencampus .opencampus_popup .event_double_col .left_col,
	#my-opencampus .opencampus_popup .event_double_col .right_col {
		width: calc(50% - 20px);
	}
	#my-opencampus .opencampus_popup .event_single_col {
	}
	#my-opencampus .opencampus_popup .event_double_col .title,
	#my-opencampus .opencampus_popup .event_single_col .title {
		padding: 19px 40px 18px;
	}
	#my-opencampus .opencampus_popup .event_double_col .title::after,
	#my-opencampus .opencampus_popup .event_single_col .title::after {
		border-top: var(--ueda-strong-green) 7px solid;
		border-left: transparent 4px solid;
		border-right: transparent 4px solid;
		width: 8px;
		height: 7px;
		bottom: -7px;
		left: calc(50% - 4px);
	}
	#my-opencampus .opencampus_popup .event_double_col .details,
	#my-opencampus .opencampus_popup .event_single_col .details {
		height: calc(100% - 23px);
		margin-top: -32px;
		padding: 68px 30px 28px;
	}
	#my-opencampus .opencampus_popup .event_double_col .details h4.green,
	#my-opencampus .opencampus_popup .event_single_col .details h4.green {
		margin-bottom: 12px;
		line-height: 1.5;	/* 30px */
		font-size: 1.25rem;	/* 20px */
	}
	#my-opencampus .opencampus_popup .event_double_col .details ul.flex,
	#my-opencampus .opencampus_popup .event_single_col .details ul.flex {
		text-align: center;
	}
	#my-opencampus .opencampus_popup .event_double_col .details ul.green,
	#my-opencampus .opencampus_popup .event_single_col .details ul.green {
	}
	#my-opencampus .opencampus_popup .event_double_col .details ul:not(:last-child),
	#my-opencampus .opencampus_popup .event_single_col .details ul:not(:last-child) {
		margin-bottom: 12px;
	}
	#my-opencampus .opencampus_popup .event_double_col .details ul.green li,
	#my-opencampus .opencampus_popup .event_single_col .details ul.green li {
		line-height: 2;		/* 40px */
		font-size: 1.25rem;	/* 20px */
	}
	#my-opencampus .opencampus_popup .event_double_col .details p,
	#my-opencampus .opencampus_popup .event_single_col .details p {
		line-height: 1.5882;	/* 27px */
		font-size: 1.0625rem;	/* 17px */
	}
	#my-opencampus .opencampus_popup .event_form_link {
		margin-top: 74px;
	}
	@media (any-hover: hover) {
		ul.event_list > li .popup_link a:hover {
			color: white;
			z-index: 1;
		}
		ul.event_list > li .popup_link a:hover::before {
		}
		ul.event_list > li .popup_link a:hover::after {
			color: white;
		}
	}

	#open_impressions {
	}
	#open_impressions .wall {
		padding-bottom: 85px;
	}
	#open_impressions h2 {
		font-size: 1.875rem;	/* 30px */
		margin-bottom: 70px;
	}
	#open_impressions .wrapper {
		display: flex;
		justify-content: center;
		gap: 0 46px;
	}
	#open_impressions .wrapper .wrap {
	}
	#open_impressions .wrapper .wrap p {
		width: 553px;
		height: 177px;
		font-size: 1.5625rem;	/* 25px */
		padding: 45px 90px 0;
	}
	#open_impressions .wrapper .wrap p::after {
	}
	#open_impressions .wrapper .wrap#wrap2 p::after {
	}
	#open_impressions .wrapper .wrap .imgonly {
		width: 217px;
		height: auto;
		left: -46px;
		bottom: -164px;
	}
	#open_impressions .wrapper .wrap#wrap2 .imgonly {
		left: auto;
		right: -46px;
	}
	#open_impressions .link_impressions {
		padding-top: 64px;
		padding-bottom: 70px;
	}
	#open_impressions .link_impressions a {
	}
	#open_impressions .event_form_link {
	}
	#my-opencampus .event_form_link a {	/* KAZ: was #open_impressions .link a */
		width: 610px;
		font-size: 1.5rem;	/* 24px */
		line-height: 128px;
		padding-left: 113px;
	}
	#my-opencampus .event_form_link a::after,	/* KAZ: was #open_impressions .link a::after */
	#open_voice .linkwrap .banner .wrap a::after,
	#open_about h2 a::before,
	#open_about h2 a .ja::after {
		transition: all 0.3s 0s ease;
	}
	#my-opencampus .event_form_link a::after {	/* KAZ: was #open_impressions .link a::after */
		top: 51px;
		right: 27px;
	}
	@media (any-hover: hover) {
		#my-opencampus .event_form_link a:hover::after {	/* KAZ: was #open_impressions .link a:hover::after */
			right: 17px;
		}
	}

	#open_contact {
		padding: 105px 0 100px;
	}
	#open_contact .wall{
	}
	#open_contact h2 {
		margin-bottom: 61px;
	}
	#open_contact .tel {
		float: left;
		width: 495px;
	}
	#open_contact .tel h3 {
	}
	#open_contact .tel .telwrap {
		display: flex;
		padding: 15px 0;
	}
	#open_contact .tel .ttl {
		font-size: 1.125rem;	/* 18px */
		line-height: 1.444;
	}
	#open_contact .tel .telnumber,
	#admission_contact .tel .telnumber {	/* 2024.3 KAZ */
	}
	#open_contact .tel .telnumber {
		font-size: 3.625rem;	/* 58px */
		padding-left: 15px;
	}
	#open_contact .mail,
	#admission_contact .mail {	/* 2024.3 KAZ */
	}
	#open_contact .mail a,
	#admission_contact .mail a {	/* 2024.3 KAZ */
		font-size: 1.125rem;	/* 18px */
		line-height: 100px;
		padding-left: 108px;
	}
	#open_contact .mail a {
		margin-left: 535px;
	}
	#open_contact .line,
	#admission_contact .line {	/* 2024.3 KAZ */
		clear: both;
		margin-top: 48px;
	}
	#open_contact .line a,
	#admission_contact .line a {	/* 2024.3 KAZ */
		height: 96px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding-left: 112px;
		padding-right: 34px;
	}
	#open_contact .line .ttl,
	#admission_contact .line .ttl {	/* 2024.3 KAZ */
		font-size: 1.25rem;	/* 20px */
	}
	#open_contact .line .text,
	#admission_contact .line .text {	/* 2024.3 KAZ */
		width: 621px;
	}
	@media (any-hover: hover) {
		#open_contact .mail a:hover {
			color: var(--ueda-strong-green);
			background: url(/images/mail_green.svg) no-repeat center left 32px white;
		}
		#open_contact .line a:hover,
		#admission_contact .line a:hover {	/* 2024.3 KAZ */
			color: white;
			background: url(/images/mark_line_white.svg) no-repeat center left 23px var(--ueda-strong-green);
		}
		#open_contact .line a:hover .ttl,
		#admission_contact .line a:hover .ttl {	/* 2024.3 KAZ */
			color: white;
		}
	}

	#open_voice {
		padding: 96px 0 100px;
	}
	#my-opencampus #open_voice h2.fukidashi {
		margin-bottom: 93px;
	}
	#open_voice h2.fukidashi .inner {
		padding: 42px 62px 0;
	}
	#open_voice h2.fukidashi .ja {
		font-size: 1.5625rem;	/* 25px */
	}
	#open_voice .youtube {
	}
	#open_voice .linkwrap {
		display: flex;
		gap: 0 20px;
		padding-top: 75px;
	}
	#open_voice .linkwrap .voice {
		width: 610px;
	}
	#open_voice .linkwrap .voice,
	#open_voice .linkwrap .banner .wrap a {
		width: 100%;
		height: 100%;
		overflow: hidden;
	}
	#open_voice .linkwrap .voice a {
		transition: all 0.3s 0s ease;
	}
	#open_voice .linkwrap .banner {
	}
	#open_voice .linkwrap .banner .wrap {
	}
	#open_voice .linkwrap .banner .wrap a {
		width: 400px;
		height: 150px;
		padding: 63px 0 0 31px;
	}
	#open_voice .linkwrap .banner .wrap a::before {
		width: 400px;
		height: 150px;
		transition: all 0.3s 0s ease;
	}
	#open_voice .linkwrap .bannr .wrap#banner2 a::before {
	}
	#open_voice .linkwrap .banner .wrap a::after {
		top: 63px;
		right: 19px;
	}
	@media (any-hover: hover) {
		#open_voice .linkwrap .voice a:hover,
		#open_voice .linkwrap .banner .wrap a:hover::before {
			transform: scale(1.1);
		}
		#open_voice .linkwrap .voice a:hover img {
			opacity: 1;
		}
	}
	#open_about {
		padding: 100px 0;
	}
	#open_about .wall {
	}
	#open_about h2 {
	}
	#open_about h2 a {
		height: 340px;
		overflow: hidden;
		padding: 90px 0 0 105px;
	}
	#open_about h2 a .en {
	}
	#open_about h2 a .ja {
		font-size: 3.125rem;	/* 50px */
	}
	#open_about h2 a .text {
		padding-top: 20px;
	}
	#open_about h2 a::before {
		width: 1240px;
		height: 340px;
		background-position: top -115px center;
	}
	#open_about h2 a .ja::after {
	}
	@media (any-hover: hover) {
		#open_about h2 a:hover {
			text-decoration: none;
		}
		#open_about h2 a:hover::before {
			transform: scale(1.1);
		}
		#open_about h2 a:hover .ja::after {
			right: -45px;
		}
	}


	/* Fixed Page Components */
	#footer_links {
	}
	#footer_links .wall {
		width: calc(var(--ueda-min-width) - 20px);
		padding: 120px 0;
	}
	#footer_links .footer_links_box {
	}

	/* 大学概要 - 教員紹介 */
	ul.teacher_list {
	}
	ul.teacher_list > li {
	}
	ul.teacher_list > li a,
	ul.teacher_list > li span.linkbtn.nolink {	/* 2024.3 KAZ */
	}
	ul.teacher_list > li a.linkbtn.hasimage,
	ul.teacher_list > li span.linkbtn.nolink.hasimage {	/* 2024.3 KAZ */
	}
	ul.teacher_list > li .detail_wrap {
		width: calc(100% - 153px);
		padding-top: 20px;
	}
	ul.teacher_list > li .photo {
	}
	ul.teacher_list > li :is(.position, .title, .major){
	}
	ul.teacher_list > li .position {
	}
	ul.teacher_list > li .title {
	}
	ul.teacher_list > li .major {
	}
	#teacherlist_guest {
		padding-bottom: 149px;
	}
	#teacher_table {
	}
	#teacher_table td table {
	}
	#teacher_table td table th {
		width: 125px;
	}
	#teacher_table td table td{
		width: calc(100% - 125px);
	}
	#teacher_table td table thead th{
		width: calc(100% - 125px);
	}
	#teacher_table td h4 {
	}
	#teacher_table td p {
	}
	#my-teachers #content nav#nav-single {
		padding-bottom: 120px;
	}

	/* 大学概要 - 歩み */
	#history_message {
		padding-bottom: 98px;
	}
	#history_message .imgonly {
		width: 720px;
		height: auto;
		padding-bottom: 80px;
	}
	#history_message .catchline {
	}
	#history_message p:is(.text, .right) {
		width: var(--ueda-narrow-width);
		margin-bottom: 30px;
	}
	#history_message p.right {
		margin-bottom: 69px;
	}
	#history_message .wrap {
		width: var(--ueda-narrow-width);
		padding: 41px 50px 9px;
	}
	#history_message .wrap h3 {
	}
	#history_message .wrap p {
	}
	#history_ayumi {
		padding-bottom: 120px;
	}
/*	#history_ayumi .slideshow,
 *	#history_ayumi .slideshow ul {
 *	}
 *	#history_ayumi .slideshow {
 *		height: 420px;
 *	}
 *	#history_ayumi .slideshow ul {
 *	}
 *	@media (any-hover: hover) {
 *		#history_ayumi .slideshow:hover ul {
 *			animation-play-state: paused;
 *		}
 *	}
 *	#history_ayumi .slideshow ul > li {
 *		width: 420px;
 *		height: 420px;
 *	}
 */	/* 2024.3 KAZ: c/o */
	#about_gallery .slider_wrapper,
	#history_ayumi .slider_wrapper {	/* 2024.3 KAZ */
		width: 560px;	/* 420px in design */
		margin: 0 50% 0 auto;
	}
	#about_gallery .slider_wrapper .slide,
	#history_ayumi .slider_wrapper .slide {	/* 2024.3 KAZ */
	}
	#history_ayumi dl {
		width: var(--ueda-narrow-width);
		padding-top: 26px;
		margin: 0 auto 130px;
	}
	#history_ayumi dt {
		float: left;
		width: 145px;
	}
	#history_ayumi dd {
	}
	#history_ayumi h3 {
	}
	#history_ayumi .youtube {
		width: 832px;
	}
	#history_ayumi .youtube iframe {
	}

	/* 大学概要 - 未来共創センター */
	:is(#center_message, #guide_message) {
		padding-bottom: 10px;
	}
	#center_message p {
	}
	#center_about {
	}
	#center_about p {
	}
	#center_about ol {
	}
	#center_about ol > li {
	}
	#center_region {
	}
	#center_region .wrap {
		padding-bottom: 38px;
	}
	#center_region .wrap h3 {
	}
	#center_region .wrap p {
		margin-bottom: 25px;
	}
	#center_region .wrap .link {
	}
	#center_sns {
		padding-bottom: 146px;
	}
	#center_sns p.text {
		margin-bottom: 60px;
	}
	#center_sns .sns_wrap {
		display: flex;
		gap: 0 120px;	/* 2024.3 KAZ: was 90px; 97px in design */
	}
	#center_sns .sns_wrap .fb_wrap {
		width: 500px;	/* 2024.3 KAZ: ChkHTML; 536px in design but this is max */
	}
	#center_links {
		padding: 120px 0;
	}
	#center_links .link_wrapper {
	}

	#guide_message {
	}
	#guide_team {
	}
	#guide_team p.right {
	}
	#guide_youtube {
		padding-bottom: 17px;
	}
	#guide_youtube p {
		padding-bottom: 60px;
	}
	#guide_youtube .wrap:not(.last_wrap) {
		padding-bottom: 85px;
	}
	#guide_youtube .wrap h3 {
		font-size: 1.25rem;	/* 20px */
		margin-bottom: 63px;
	}
	#guide_youtube .wrap .youtube {
		width: 836px;
		height: 468px;
	}
	#guide_process {
		padding-bottom: 139px;
	}
	#guide_process .imgonly {
		width: 524px;
		padding-bottom: 135px;
	}
	#guide_process h3,
	#guide_process .link_wrapper {
		width: var(--ueda-narrow-width);
	}
	#guide_process h3 {
		margin-bottom: 26px;
	}
	#guide_process .link_wrapper {
	}
	#guide_process .link_wrapper a span {
	}


	/* 入試情報; 2024.3 KAZ */
	:is(#my-admission, #my-admission2) .entry-content {	/* 2026.5 Aki added #my-admission2 */
		padding-top: 120px;
	}
	:is(#my-admission, #my-admission2) #top_news .wall {	/* 2026.5 Aki added #my-admission2 */
		padding-bottom: 71px;
	}
	:is(#my-admission, #my-admission2) #top_news h2 {	/* 2026.5 Aki added #my-admission2 */
		margin-bottom: 50px;	/* 2024.3 KAZ: Promblems_m: was 55px */
	}
	#admission_outline > .gray {
		padding: 78px 0 55px;
	}
	#admission_outline > .gray h2 {
	}
	#admission_outline .tab_wrapper .gray {
		padding-bottom: 113px;
	}
	#admission_outline .tab_wrapper .gray ul.tab_menu {
		gap: 15px 18px;
	}
	#admission_outline .tab_wrapper .gray ul.tab_menu li {
	}
	#admission_outline .tab_wrapper .gray ul.tab_menu li a {
		width: 506px;
		height: 71px;
		line-height: 69px;	/* 2024.3 KAZ: Promblems_m: was 61px */
		padding: 0 45px;	/* 2024.3 KAZ: Promblems_m: top was 8px */
		font-size: 1.5rem;	/* 24px */
	}
	#admission_outline .tab_wrapper .tab_panel {
		padding: 128px 0;
	}
	#admission_outline .tab_wrapper .tab_panel h3 {
	}
	#admission_outline .tab_wrapper .tab_panel h4 {
	}
	#admission_outline .tab_wrapper .tab_panel table {
	}
	#admission_outline .tab_wrapper .tab_panel table caption {
	}
	#admission_outline .tab_wrapper .tab_panel table thead {
	}
	#admission_outline .tab_wrapper .tab_panel table tbody {
	}
	#admission_outline .tab_wrapper .tab_panel table tr {
	}
	#admission_outline .tab_wrapper .tab_panel table th,
	#admission_outline .tab_wrapper .tab_panel table td {
	}
	#admission_outline .tab_wrapper .tab_panel table thead th {
		padding: 11px 25px 9px;
	}
	#admission_outline .tab_wrapper #capacity {
	}
	#admission_outline .tab_wrapper #capacity .department {
		margin-bottom: 70px;
	}
	#admission_outline .tab_wrapper #capacity table tbody th {
		width: 738px;
	}
	#admission_outline .tab_wrapper #capacity table tbody td {
		width: 146px;
	}
	#admission_outline .tab_wrapper #schedule {
	}
	#admission_outline .tab_wrapper #schedule table thead th:not(:first-child),
	#admission_outline .tab_wrapper #schedule table tbody td,
	#admission_outline .tab_wrapper #tokutai table thead th:not(:first-child),
	#admission_outline .tab_wrapper #tokutai table tbody td,
	#admission_outline .tab_wrapper #scholarship table thead th:not(:first-child),
	#admission_outline .tab_wrapper #scholarship table tbody td {
		padding-inline: 15px;
	}
	#admission_outline .tab_wrapper #schedule table .col1 {
		width: 157px;	/* 150px in design */
	}
	#admission_outline .tab_wrapper #tokutai {
	}
	#admission_outline .tab_wrapper #tokutai table .col1 {
		width: 191px;
	}
	#admission_outline .tab_wrapper #tuition {
	}
	#admission_outline .tab_wrapper #tuition table .col1 {
		width: 292px;
	}
	#admission_outline .tab_wrapper #scholarship {
	}
	#admission_outline .tab_wrapper #scholarship table .col1 {
		width: 191px;
	}
	#admission_outline .tab_wrapper #download {
	}
	#admission_contact {
	}
	#admission_contact .wall {
		padding: 72px 0 100px;
	}
	:is(#my-admission, #my-admission2) #admission_contact h2 {	/* 2026.5 Aki added #my-admission2 */
		margin-bottom: 34px;
	}
	#admission_contact .contact,
	#admission_contact .request {
		margin-bottom: 38px;
	}
	#admission_contact .contact {
		float: left;
		width: 495px;
	}
	#admission_contact .request {
		margin-left: 535px;
	}
	#admission_contact h3 {
		clear: none;
	}
	#admission_contact .tel {
		/* See also #open_contact .tel */
	}
	#admission_contact .tel .telnumber {
		margin-bottom: 34px;
		font-size: 3.75rem;	/* 60px */
	}
	#admission_contact .telemail {
		margin-bottom: 27px;
	}
	#admission_contact .telemail a {
		padding: 20px 0 19px;
	}
	#admission_contact .mail {
		/* See also #open_contact .mail */
	}
	#admission_contact .line {
		/* See also #open_contact .line */
		clear: left;
	}
	@media (any-hover: hover) {
		#admission_contact .mail a:hover {
			color: var(--ueda-pink);
		}
		#admission_contact .contact .mail a:hover {
			background: white url(/images/mail_pink.svg) no-repeat center left 32px;
		}
		#admission_contact .request .mail a:hover {
			background: white url(/images/icon_documents_pink.svg) no-repeat center left 32px / 47px auto;
		}
	}


	/* 対象者別コンテンツ - 入学希望の方 */
	#applicants_message {
		padding-bottom: 91px;
	}
	#applicants_message p.message {
		padding-bottom: 55px;
	}
	#applicants_recommend {
		padding-bottom: 132px;
	}
	#applicants_recommend h2 {
		width: 416px;
		line-height: 86px;
		margin-bottom: 61px;
	}
	#applicants_recommend h2::after {
	}
	#applicants_recommend .wrap{
		display: flex;
		align-items: center;
		gap: 0 44px;
		padding: 50px;
	}
	#applicants_recommend .wrap .imgonly,
	#recommend_content .wrap .imgonly {	/* 2024.3 KAZ: added */
		width: 390px;
	}
	#applicants_recommend .wrap .details {
	}
	#applicants_recommend .wrap .details h3,
	#recommend_content .wrap .details h3 {	/* 2024.3 KAZ: added */
		font-size: 1.875rem;	/* 30px */
	}
	#applicants_recommend .wrap .details p,
	#recommend_content .wrap .details p {	/* 2024.3 KAZ: added */
		margin-bottom: 23px;
	}
	#applicants_recommend .wrap .details .link {
	}
	#applicants_links {
		padding: 105px 0 123px;
	}
	#applicants_links .link_wrapper {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 10px 20px;
	}
	#pamphlet_link .wrapper {	/* 2026.6 Aki added */
		display: flex;
		justify-content: center;
		gap: 0 30px;
	}
	#pamphlet_link .wrapper .imgonly {	/* 2026.6 Aki added */
		width: 300px;
	}
	#pamphlet_link .wrapper .text {	/* 2026.6 Aki added */
		text-align: left;
	}
	#pamphlet_link .wrapper .text h3 {	/* 2026.6 Aki added */
		margin-left: 0;
	}


	/*　学科紹介 - 分野 */
	#field_pickup {
		padding-bottom: 60px;
	}
	#field_pickup p.message {
	}
	#field_pickup .wrap{
		width: 971px;
		padding-bottom: 64px;
	}
	#field_pickup .wrap h3 {
		margin-bottom: 39px;
	}
	#field_pickup .detail {
		display: flex;
		gap: 0 75px;
		padding: 0 15px 0 10px;
	}
	#field_pickup .wrap .imgonly {
		width: 438px;
	}
	#field_pickup .wrap .right_wrap{
		width: calc(100% - 513px);
	}
	#field_pickup .wrap .right_wrap p{
	}
	#field_pickup .wrap .right_wrap .wrap_child{
	}
	#field_pickup .wrap .right_wrap .wrap_child .ttl{
	}
	#field_pickup .wrap .right_wrap .wrap_child ul {
	}
	#field_pickup .wrap .right_wrap .wrap_child ul > li {
	}
	#field_pickup .wrap .right_wrap .wrap_child li::before {
	}
	#field_pickup .wrap#wrap_business .detail  {
	}
	#field_pickup .wrap#wrap_business .detail:not(.last) {
	}
	#field_pickup .detail .left_wrap {
		width: 442px;
	}
	#field_pickup .detail .left_wrap h4 {
	}
	#field_pickup .detail .left_wrap p {
	}


	/* Campus Life */
	#my-campuslife .slider_wrapper,
	#my-campuslife .slider_nav {
		width: 660px;
	}
	#my-campuslife .slider_wrapper {
/*		gap: 0 60px; */
		padding-top: 80px;
		padding-bottom: 58px;
	}
	#my-campuslife .slider_wrapper .slick-list {
		overflow: visible;
	}
	#my-campuslife .slider_wrapper .slick-track {
	}
	#my-campuslife .slider_wrapper .slick-slide {
	}
	#my-campuslife .slider_wrapper .slide {
		padding: 0 60px;
	}
	#my-campuslife .slider_wrapper .slide .imgonly {
		height: 360px;
		margin-bottom: 28px;
		transform-origin: center bottom;
		transition: transform 0.5s;
	}
	#my-campuslife .slider_wrapper .slick-active .slide .imgonly {
		transform: scale( 1.2222 );
	}
	#my-campuslife .slider_wrapper .slide .imgonly img {
	}
	#my-campuslife .slider_wrapper .slide h4,
	#my-campuslife .slider_wrapper .slide p {
		visibility: hidden;
	}
	#my-campuslife .slider_wrapper .slick-active .slide h4,
	#my-campuslife .slider_wrapper .slick-active .slide p {
		visibility: visible;
	}
	#my-campuslife .slider_wrapper .slide h4 {
/*		padding: 28px 0 10px; */
		font-size: 1.25rem;	/* 20px */
	}
	#my-campuslife .slider_wrapper .slide p {
		margin-top: 10px;
	}
	#my-campuslife .slider_nav {
	}
	#my-campuslife .slider_nav .slick-arrow {
		width: 118px;
		height: 118px;
		top: 203px;
		padding-block: 44px;
	}
	#my-campuslife .slider_nav .slick-prev {
		left: -148px;
		padding-left: 48px;
	}
	#my-campuslife .slider_nav .slick-next {
		right: -148px;
		padding-left: 55px;
	}
	#my-campuslife .slider_nav .slick-arrow img {
		width: 15px;
		height: 30px;
	}

	#campus_intro {
		padding-bottom: 90px;
	}
	#campus_intro p {
		font-size: 1.25rem;	/* 18px */
		text-align: center;
		line-height: 2.2;
		margin-bottom: 52px;
	}
	#campus_intro .youtube_wrap {
		width: 832px;
	}

	#campus_facility {
		padding-bottom: 100px;
	}
	#campus_facility .library_wrap {
		min-height: 360px;
		background: url(/images/img_library.jpg)no-repeat center left 50px / 390px auto var(--ueda-bg-gray);
		padding: 90px 50px 50px 484px;
	}
	#campus_facility .library_wrap h3 {
		font-size: 1.875rem;	/* 30px */
		padding-bottom: 10px;
	}
	#campus_facility .library_wrap p {
		margin-bottom: 25px;
	}

	#campus_circle {
		padding-bottom: 100px;
	}
	#campus_circle .circle_parent_wrapper {
		padding: 48px 50px 28px;
	}
	#campus_circle .circle_wrapper {
		display: flex;
		gap: 0 50px;
	}
	#campus_circle .circle_wrapper .wrap {
	}
	#campus_circle .circle_wrapper .wrap#circle_sports {
		width: 300px;
	}
	#campus_circle .circle_wrapper .wrap#circle_culture {
		width: calc(100% - 350px);
	}
	#campus_circle .circle_wrapper .wrap h3 {
	}
	#campus_circle .circle_wrapper .wrap ul {
		height: 235px;
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
		margin-bottom: 0;
	}
	#campus_circle .circle_wrapper .wrap ul > li{
	}
	#campus_circle p.mincho {
		font-size: 1.25rem;	/* 20px */
	}

	:is(#campus_festival, #campus_training) h3 {
		font-size: 1.0625rem;	/* 17px */
		padding-bottom: 45px;
	}
	#campus_festival {
	}
	#campus_training {
	}
	#campus_links {
		padding: 120px 0;
	}
	#campus_links .link_wrapper{
		display: flex;
		justify-content: center;
		gap: 0 20px;
	}

	/* Campus Life - 上田女子短期大学通信 */
	#newsletter_latest {
	}
	#newsletter_latest .box.imgonly {
		padding: 50px 0;
	}
	#newsletter_latest .box.imgonly a {
	}
	#newsletter_latest .box.imgonly a img {
		width: 340px;
	}
	#newsletter_backnumbers {
		padding-bottom: 140px;
	}
	#newsletter_backnumbers p.note {
		margin-bottom: 45px;
	}
	ul.newsletter_list {
	}

	/* 校歌制作プロジェクト 2026.06 KAZ */
	#my-newsong #main .entry-content {
		padding-top: 30px;
		padding-bottom: 130px;
	}

	/* Contact Form */
	.wpcf7-form {
		padding: 60px 105px;
	}
	table.contactform {
	}
	table.contactform th {
	}
	table.contactform td {
	}
	table.contactform input[type="text"],
	table.contactform input[type="email"] {
		height: 45px;
	}
	table.contactform select {
		width: 391px;
		height: 49px;
	}
	table.contactform tr.your-zip input[type="text"] {
		width: 246px;
		height: 49px;
	}
	.wpcf7-list-item:not(.first) {	/* 2024.2 Aki */
		padding-left: 40px;
	}
	.wpcf7-form p.accept_line {
		padding: 10px 0 30px;
	}

	/* Contact and Request */
	#contact_message {
	}
	#contact_message .inquiry_banner {
		overflow: hidden;
		padding: 33px 75px 22px;
	}
	#contact_message .inquiry_banner p.message {
	}
	#contact_message .inquiry_banner .tel {
		float: left;
		width: 428px;
	}
	#contact_message .inquiry_banner .tel h3 {
	}
	#contact_message .inquiry_banner .tel .telwrap {
		display: flex;
		gap: 0 7px;
	}
	#contact_message .inquiry_banner p.notice {
	}
	#contact_message .inquiry_banner p.ttl {
	}
	#contact_message .inquiry_banner p.telnumber {
		margin-top: -5px;
	}
	#contact_message .inquiry_banner .mail {
	}
	#contact_message .inquiry_banner .mail a {
		font-size: 1.125rem;	/* 18px */
		line-height: 80px;
		padding-left: 90px;
		margin-left: 452px;
		margin-top: 45px;
	}
	#contact_form {
		padding-bottom: 149px;
	}
	#contact_message .inquiry_banner .wrapper .wrap p a {	/* 2026.6 Aki added */
		white-space: nowrap;
	}
	#contact_message .inquiry_banner .wrapper .imgonly {	/* 2026.6 Aki added */
/*		margin-top: -70px; Aki c/o */
	}

}




/* =Print
----------------------------------------------- */
@media print {
	body {
		width: var(--ueda-min-width);
	}
	.entry-meta .edit-link a {
		display: none;
	}
}

/*
Description: Smartphone style for uedawjc.ac.jp
*/


/* Responsive Structure
----------------------------------------------- */
/* General breakpoint for Tablet/SP
----------------------------------------------- */
@media screen and (max-width: 767px) {
	a.current img, .transbtn:hover, a:hover img {
		opacity: 1;
		filter: none;
	}
	.pconly {
		display: none !important;
	}



	/* =Structure */



	/* =Header */
	#branding.gnavi_opened #masthead,
	:is(#my-top, #my-libhp) #branding.gnavi_opened #masthead {
		background-color: white;
		position: fixed;
	}
	:not(#my-top).admin-bar #branding.gnavi_opened #masthead,
	#my-top.admin-bar #branding.gnavi_opened #masthead {
		top: var(--wp-admin-bar-height);
	}


	/* Menu */
	#headmenu {
	}
	#headlogo,
	div#headlogo a {
		height: 100%;
	}
	#branding:not(.floating):not(.gnavi_opened) h1#headlogo {	/* Top */
		width: 236px;	/* 2024.4 KAZ: was 237px */
		padding-top: 20px;
/*		padding-left: 13px; */
	}
	#branding.floating h1#headlogo,
	#branding.gnavi_opened h1#headlogo,
	div#headlogo a {
		width: 217px;	/* 2024.4 KAZ: was 236px */
		padding-top: 3px;
	}
	#branding.gnavi_opened h1#headlogo {
		height: var(--ueda-floating-header-height);	/* 2024.7 KAZ: missing */
	}
	#branding.gnavi_opened #headlogo img.initial {
		display: none;
	}
	#branding.gnavi_opened #headlogo img.floating {
		display: inline-block;
	}
	#menu_open_btn,
	#menu_close_btn {
		position: absolute;
		top: 0;
		right: 0;
		width: 54px;
		height: 54px;
		text-align: center;
		background-color: var(--ueda-pink);
		z-index: 2;	/* 2024.3 Aki */
	}
	#menu_open_btn a,
	#menu_close_btn a {
		display: block;
		height: 100%;	/* KAZ */
	}
	#menu_open_btn a {
		padding-top: 19px;
	}
	#menu_open_btn img, #menu_close_btn img {
		width: 24px;
		height: auto;
	}
	#menu_overlay,
	#menu_close_btn,
	#headmenu #gnavi {
		display: none;
	}
	#menu_overlay {
		background-color: rgba(0,0,0,0.3);
		position: fixed;
		width: 100%;
		height: 100vh;
		top: 140px;
		left: 0;
		z-index: -1;
	}
	#menu_close_btn {
		position: absolute;
		z-index: 10;
	}
	#menu_close_btn a {
		padding-top: 15px;
	}
	#headmenu #gnavi {
		background-color: white;
		position: relative;
		overflow: auto;
		max-height: calc(var(--viewheight) - var(--ueda-floating-header-height));
		top: var(--ueda-floating-header-height);
		left: 0;
		padding-top: 46px;	/* Aki */
		padding-bottom: 35px;	/* Aki */
	}
	.admin-bar #headmenu #gnavi {
		max-height: calc(var(--viewheight) - var(--ueda-floating-header-height) - var(--wp-admin-bar-height));
	}
	#headmenu ul li {
	}
	#headmenu ul li a {
	}
	#headmenu ul:is(#head_menu1, #head_menu2) {
		justify-content: center;
		flex-wrap: wrap;
	}
	#headmenu ul#head_menu1 {
		position: relative;
		padding-top: 30px;
	}
	#headmenu ul#head_menu1 > li {
	}
	#headmenu ul#head_menu1 li.searchform {
		order: 0;
		width: 79.23%;	/* 309 / 390 */
		margin-bottom: 20px;
	}
	#headmenu ul#head_menu1 li.searchform #searchform {
	}
	#searchform input {
		width: calc(100% - 40px);
	}
	#headmenu ul#head_menu1 li.contents,
	#headmenu ul#head_menu1 li.access {
		margin-bottom: 0px;
		transition: 0.3s margin-bottom;
	}
	#headmenu ul#head_menu1 li.contents {
		order: 1;
	}
	#headmenu ul#head_menu1 li.contents.expanded,
	#headmenu ul#head_menu1 li.contents.expanded + li.access {
		margin-bottom: 167px;	/* Aki was 155px : .submenu_panelの高さと合わせる */
	}
	#headmenu ul#head_menu1 li.access {
		order: 2;
	}
	#headmenu ul#head_menu1 li.contents .parent,
	#headmenu ul#head_menu1 li.access a {
	}
	#headmenu ul#head_menu1 li.contents .nolink,
	#headmenu ul#head_menu1 li.access a {
		padding: 0 20px 0 54px;
		line-height: 40px;
	}
	#headmenu ul#head_menu1 li.contents .nolink {
		background-position: left 25px top 11px;
		position: relative;
		padding-right: 0;	/* Aki */
	}
	#headmenu ul#head_menu1 li.contents .nolink::after {
		background-color: var(--ueda-pink);
		display: inline-block;
		position: absolute;
		width: 0;
		height: 1px;
		bottom: -1px;
		left: 50%;
		z-index: 1;
		transform: translateX(-50%);
		transition: 0.3s all;
		content: '';
	}
	#headmenu ul#head_menu1 li.contents.expanded .nolink::after {
		width: calc(100% - 25px);	/* Aki was 100% / was calc(100% - 50px)  */
		left: auto;
		right: 0;
		transform: none;
	}
	#headmenu ul#head_menu1 li.access a {
		background-position: left 18px top 10px;	/* Aki left was 27px */
		padding-left: 45px;	/* Aki */
	}
	#headmenu ul#head_menu1 li .submenu_panel {
		background-color: var(--ueda-bg-gray);
		display: none !important;	/* win over jQuery-inserted style */
		position: absolute;
		width: 100vw;
		height: 0px;
		left: 0;
		padding-top: 21px;
		transition: 0.3s height;
	}
	#headmenu ul#head_menu1 li.expanded .submenu_panel {
		display: block !important;	/* win over jQuery-inserted style */
		height: 167px;	/* Aki was 155px */
	}
	#headmenu ul#head_menu1 li .submenu_panel ul {
		display: flex;
		flex-wrap: wrap;
		gap: 12px 43px;	/* Aki gap was 8px */
		width: 266px;
		margin: 0 auto;
		padding-left: 15px;
	}
	#headmenu ul#head_menu1 li .submenu_panel ul li {
	}
	#headmenu ul#head_menu1 li .submenu_panel ul li a {
		width: 104px;
		line-height: 32px;
	}
	#headmenu ul#head_menu1 li .submenu_panel ul li a::before {	/* Aki from chk hTML */
		vertical-align: 5px;
	}
	#headmenu ul#head_menu2 {
		padding-top: 10px;
	}
	#headmenu ul#head_menu2 li {
	}
	#headmenu ul#head_menu2 > li {
		width: 81.54%;	/* 318 / 390 */
	}
	#headmenu ul#head_menu2 > li .parent .nolink,
	#headmenu ul#head_menu2 > li .parent a.link,	/* 2024.3 KAZ: for 図書館 */
	#headmenu ul#head_menu2 > li .parent > a.expand_btn,	/* 2024.3 KAZ: for 図書館 */
	#headmenu ul#head_menu2 > li > a {
		border-bottom: solid 1px var(--ueda-gray);
		padding: 4px 0;
		font-size: 1.25rem;	/* 20px */
	}
	#headmenu ul#head_menu2 > li .parent .nolink,
	#headmenu ul#head_menu2 > li .parent a.link,	/* 2024.3 KAZ: for 図書館 */
	#headmenu ul#head_menu2 > li > a {
		color: var(--ueda-strong-pink);
		font-family: 'Zen Old Mincho', serif;
		font-weight: normal;
		letter-spacing: 0.05em;
	}
	#headmenu ul#head_menu2 > li .parent .nolink {
	}
	#headmenu ul#head_menu2 > li .parent .nolink a.expand_btn,
	#headmenu ul#head_menu2 > li .parent > a.expand_btn {	/* 2024.3 KAZ: for 図書館 */
		display: inline-block;
		float: right;
	}
	#headmenu ul#head_menu2 > li .parent a.link {	/* 2024.3 KAZ: for 図書館 */
		display: inline-block;
		width: calc(100% - 15px);
	}
	#headmenu ul#head_menu2 > li .parent a.link .text {	/* 2024.3 KAZ: for 図書館 */
		display: block;
	}
	#headmenu ul#head_menu2 > li > a {	/* Aki */
		position: relative;
	}
	#headmenu ul#head_menu2 > li > a::before, #headmenu ul#head_menu2 > li > a::after {	/* Aki */
		display: block;
		background-color: var(--ueda-pink);
		position: absolute;
		width: 5px;
		height: 1px;
		top: 50%;
		right: 0;
		content: "";
	}
	#headmenu ul#head_menu2 > li > a::before {	/* Aki */
		width: 15px;
		background-color: var(--ueda-gray);
	}
	#headmenu ul#head_menu2 li .submenu_panel {
		opacity: 1 !important;	/* 2024.3 KAZ: win over jQuery-inserted style */
	}
	#headmenu ul#head_menu2 li .submenu_panel .ttl {
	}
	#headmenu ul#head_menu2 li .submenu_panel .ttl .en {
	}
	#headmenu ul#head_menu2 li .submenu_panel .ttl .ja {
	}
	#headmenu ul#head_menu2 li .submenu_panel ul li a {
		font-size: 0.9375rem;	/* 15px */
		border-bottom: solid 1px var(--ueda-gray);
		padding: 8px 0;
	}
	#headmenu ul#head_menu2 li .submenu_panel > ul > li > a,
	#headmenu ul#head_menu2 li .submenu_panel > ul > li > .child a {
		padding-left: 20px;	/* 2024.3 KAZ: missing */
	}
	#headmenu ul#head_menu2 li .submenu_panel > ul > li > ul li a {
		padding-left: 40px;	/* 2024.3 KAZ: missing */
	}
	#headmenu ul#head_menu1 li.contents .nolink,
	#headmenu ul#head_menu1 li.access a,
	#headmenu ul#head_menu2 li .submenu_panel > ul > li > ul li a,
	#headmenu ul#head_menu_sp_extra > li a {	/* Aki chk HTML */
		color: #3c3c3c;
	}
	#headmenu ul#head_contact {
		justify-content: center;
		gap: 0 21px;
	}
	#headmenu #gnavi .buttons {	/* Aki */
		text-align: center;
		padding: 27px 0 20px;
	}
	#headmenu #gnavi .buttons a.linkbtn {	/* Aki */
		border-color: var(--ueda-strong-pink);
		min-width: 240px;
		margin-bottom: 10px;
		padding-left: 17px;	/* 2024.5 KAZ */
		padding-right: 26px;	/* 2024.5 KAZ */
		color: var(--ueda-strong-pink);
		font-weight: 600;
	}
	#head_menu_sp_sns .sns_wrap.darkgray {
		justify-content: center;
		gap: 0 13px;
	}
	#headmenu  ul#head_menu_sp_extra {
		text-align: center;
		padding-top: 25px;
	}
	#headmenu  ul#head_menu_sp_extra > li {
	}
	#headmenu  ul#head_menu_sp_extra > li a {
		display: block;
		font-size: 0.9375rem;	/* 15px */
		padding-bottom: 8px;
	}



	/* =Content */
	.page-header,
	.page .entry-header.type-b {
		min-height: 170px;	/* 2024.3 KAZ: Problems_m: was height */
		margin-bottom: 60px;	/* Aki */
	}
	.page .entry-header.type-a,
	.page .entry-header.type-a .entry-image {
		height: 420px;
	}
	.page .entry-header.type-c {
		min-height: 138px;	/* 2024.3 KAZ: Problems_m: was height */
	}
	.single-post .entry-header {
/*		min-height: 295px; */	/* 2024.3 KAZ: c/o */
		padding-top: 40px;
		padding-bottom: 35px;	/* 2024.3 KAZ */
	}
	#my-values .entry-header.type-values {	/* Special */
		width: 100%;	/* 2024.3 KAZ: missing */
		top: 255px;
	}
	#my-interview .entry-header.type-interview,
	#my-interview .entry-header.type-interview .entry-image {	/* Special */
		height: 675px;
	}
	#my-opencampus .entry-header.type-a,
	#my-opencampus .entry-header.type-a .entry-image {	/* Special */
		height: 300px;
	}
	#my-opencampus .entry-header.type-a {	/* Special */
		margin-bottom: 239px;
	}
	#my-voices .entry-header.type-a,
	#my-voices .entry-header.type-a .entry-image {	/* Special; 2024.3 KAZ: was #my-why-uwjc */
		height: 480px;
	}
	#my-voices .entry-header.type-a {	/* Special; 2024.3 KAZ: was #my-why-uwjc */
	}
	.page-title,
	.page .entry-title {
	}
	.single-post .entry-title {
		line-height: 1.7;	/* 34px */
		font-size: 1.25rem;	/* 20px */
	}
	#my-opencampus .entry-header.type-a .entry-title {	/* Special */
		height: calc(100% + 239px);
		margin-bottom: -239px;
	}
	#my-voices .entry-header.type-a .entry-title {	/* Special; 2024.3 KAZ: was #my-why-uwjc */
		height: calc(100% + 158px);
		margin-bottom: -158px;
	}
	#my-interview .entry-header.type-interview .entry-title,
	#my-interview .entry-header.type-interview .entry-title .inner {	/* Special */
		width: 100%;
	}
	#my-message .entry-title,
	#my-history .entry-title,
	#my-volunteer .entry-title {	/* 2024.3 KAZ: Problems_m */
		line-height: 44px;	/* FIXED */
		font-size: min(1.875rem, 8vw);	/* 30 / 375 */
	}
	.page-title::after,
	.page .entry-header.type-b .entry-title::after,
	.page .entry-header.type-c .entry-title::after {
		height: 22px;
	}
	.page-title .inner,
	.page .entry-header.type-b .entry-title .inner,
	.page .entry-header.type-c .entry-title .inner {
		padding-top: 50px;
	}
	.page-title .inner,
	.page .entry-header.type-b .entry-title .inner {
		padding-bottom: 44px;	/* 2024.3 KAZ: Problems_m: was 30px; 22px + alpha */
	}
	.page .entry-header.type-a .entry-title .inner {
		min-height: 101px;
		padding: 25px 20px 0;	/* 2024.3 Aki was 25px 43px 0 */
		line-height: 1.4571;	/* 51px */
		font-size: 1.875rem;	/* 30px Aki was 2.1875rem=35px */
		min-width: 83.589%;	/* Aki from chk HTML */
	}
	.page .entry-header.type-c .entry-title .inner {
		padding-bottom: 36px;	/* 2024.3 KAZ: Problems_m: was 30px; 22px + alpha */
	}
	#my-interview .entry-header.type-interview .entry-title .inner {	/* Special */
		padding: 55px 0 27px;
	}
	#my-opencampus .entry-header.type-a .entry-title .inner {	/* Special */
		padding: 20px 20px 19px;
	}
	#my-voices .entry-header.type-a .entry-title .inner {	/* Special; 2024.3 KAZ: was #my-why-uwjc */
		padding: 37px calc(50% - 135px);
	}
	#my-opencampus .entry-header.type-a .entry-title .inner .catchline {	/* Special */
		margin-bottom: 9px;
		line-height: 1.2222;	/* 22px */
		font-size: 1.125rem;	/* 18px */
	}
	#my-opencampus .entry-header.type-a .entry-title .inner .catchline span.large {	/* Special */
		line-height: 1.2;	/* 48px */
		font-size: 2.5rem;	/* 40px */
	}
	#my-voices .entry-header.type-a .entry-title .inner .catchline {	/* Special; 2024.3 KAZ: was #my-why-uwjc */
		margin-bottom: 12px;
	}
	.page-title .inner .ja,
	.page .entry-title .inner .ja {
		margin-bottom: 8px;
	}
	#my-values .entry-header.type-values .entry-title .inner .ja {	/* Special */
		font-size: 2.5rem;	/* 40px */
	}
	#my-opencampus .entry-header.type-a .entry-title .inner .ja {	/* Special */
		margin-bottom: 13px;
		line-height: 1.2;	/* 54px */
		font-size: 2.8125rem;	/* 45px */
	}
	#my-voices .entry-header.type-a .entry-title .inner .ja {	/* Special; 2024.3 KAZ: was #my-why-uwjc */
		line-height: 1.5;	/* 45px */
		font-size: 1.875rem;	/* 30px */
	}
	.page-title .inner .en,
	.page .entry-title .inner .en {
		line-height: 1.5;	/* 24px */
		font-size: 1rem;	/* 16px */
	}
	#my-values .entry-header.type-values .entry-title .inner .appendix {	/* Special */
		font-size: 1.25rem;	/* 24px */
	}
	.page #main .entry-content {
		padding-top: 50px;
	}
	.entry-content table,
	.entry-content table caption,
	.entry-content table thead,
	.entry-content table tbody,
	.entry-content table tfoot,
	.entry-content table tr,
	.entry-content tbody th,
	.entry-content tbody td {
		display: block;		/* KAZ: default */
	}
	.entry-content th,
	.entry-content td {
		padding: 15px 3.8462vw;	/* 15 / 390 */
	}
	.entry-content td:first-of-type {
		border-top: 0;	/* 2024.3 KAZ: Problems_m */
	}
	.entry-content ul:not(.nostyle) li {
		margin-bottom: 15px;
	}
	.entry-content th p,
	.entry-content td p,
	.entry-content li p {
		margin-bottom: 5px;
	}



	/* =Footer */
	#ft_nav_top {
	}
	#ft_nav_top a {
	}
	#ft_nav_top a img {
	}
	#colophon {
		padding: 67px 0 100px;
	}
	#colophon .wall {
		width: 100%;
	}
	#colophon .left_wrap {
		margin-bottom: 27px;	/* 2024.3 KAZ */
	}
	#ft_logo {
		text-align: center;
		padding-bottom: 28px;
	}
	#ft_sns {
		justify-content: center;
		gap: 0 15px;
		padding-bottom: 25px;
	}
	#ft_sns .sns_icon {
		width: 39px;
		height: 39px;
	}
	#ft_sns .sns_icon a{
		padding-top: 9px;
	}
	#ft_sns .sns_icon:is(.twitter, .youtube) a {
		padding-top: 12px;
	}
	#ft_add {
	}
	#ft_add p {
		text-align: center;
		line-height: 1.571;
	}
	#ft_add a {
		color: white;
	}
	#colophon .right_wrap {
		text-align: center;
	}
	#ft_links {
	}
	#footlink {
	}
	#footlink .link a {
		margin-bottom: 10px;
	}
	ul#footmenu {
		justify-content: center;
		padding: 17px 0 69px;	/* 2024.3 KAZ: was 18px 0 70px */
	}
	ul#footmenu li {
	}
	ul#footmenu li a {
		display: block;
		padding: 8px 10px;	/* 2024.3 KAZ: was 0 10px */
	}
	ul#footmenu li:not(:first-child) a::before {
		top: 8px;	/* 2024.3 KAZ: was 1px */
	}
	ul#footmenu li a::after {
		content: none;
	}
	#ft_copyright {
	}




	/* Common entries */
	:is(h1, h2, h3).underlined {
		margin-bottom: 40px;
		line-height: 1.4583;	/* 35px */
		font-size: 1.5rem;	/* 24px */
	}
	:is(h1, h2, h3).underlined:not(:first-child),
	.entry-content section:not(:first-child) .wall > :is(h1, h2, h3).underlined:first-child {
		margin-top: 62px;
	}
	:is(h2, h3).markonbottom,
	:is(h2, h3, h4).markonleft {	/* 2024.3 KAZ: added h4 */
		margin-bottom: 30px;
	}
	:is(h2, h3).markonbottom {
		line-height: 1.4545;	/* 32px */
		font-size: 1.375rem;	/* 22px */
	}
	:is(h2, h3, h4).markonleft {	/* 2024.3 KAZ: added h4 */
		line-height: 1.5263;	/* 29px */
		font-size: 1.1875rem;	/* 19px */
	}
	:is(h2, h3).markonbottom:not(:first-child),
	.entry-content section:not(:first-child) .wall > :is(h2, h3).markonbottom:first-child,
	:is(h2, h3, h4).markonleft:not(:first-child),	/* 2024.3 KAZ: added h4 */
	.entry-content section:not(:first-child) .wall > :is(h2, h3, h4).markonleft:first-child {	/* 2024.3 KAZ: added h4 */
		margin-top: 50px;
	}
	:is(h3, h4).pink {
		margin-bottom: 25px;
	}
	:is(h3, h4).pink:not(:first-child),
	.entry-content section:not(:first-child) .wall > :is(h3, h4).pink:first-child {
		margin-top: 40px;
	}
	.entry-content .catchline {
		margin-bottom: 18px;
		font-size: 1.25rem;	/* 20px */
	}
	.twocolumns:not(:first-child) {
		margin-top: 40px;
	}
	.twocolumns:not(:first-child):has(:is(h2, h3, h4).markonleft:first-child) {	/* Do not combine this rule with another; firefox does not support :has() */
		margin-top: 50px;
	}
	.twocolumns .column:not(:first-child) {
		margin-top: 30px;
	}
	.twocolumns .column:not(:first-child):has(:is(h3, h4).pink:first-child) {
		margin-top: 40px;
	}
	.inquiry_banner {
		padding: 25px 3.8462vw 30px;	/* 15 / 390 */
	}
	.inquiry_banner .descr {
	}
	.inquiry_banner .phone {
		margin-bottom: 15px;
	}
	.inquiry_banner .phone .heading {
		margin-bottom: 16px;
	}
	.inquiry_banner .phone .name {
		font-size: 0.875rem;	/* 14px */
	}
	.inquiry_banner .phone .number {
		line-height: 1.25;	/* 50px */
		font-size: min(10.6667vw, 2.5rem);	/* 40 / 375, 40px */
	}
	.inquiry_banner .mailform {
	}
	.inquiry_banner .mailform a {
		background-position-x: 3.3333vw;	/* 13 / 390 */
		padding-right: 4.359vw;	/* 17 / 390 */
		font-size: min(4.2667vw, 1rem);	/* 16 / 375, 16px */
		text-align: right;
	}
	a.linkbtn.darkgray {
		line-height: 51px;
	}
	a.linkbtn.darkgray.lines {
		height: 51px;
		padding-top: 5px;
	}
	a.linkbtn.black,
	button.linkbtn.black {
/*		width: 100%; Aki c/o */
	}
	a.linkbtn.hasimage,
	span.linkbtn.nolink.hasimage {	/* 2024.3 KAZ */
		width: 100%;
		padding-left: 7px;
		padding-top: 10px;
		padding-bottom: 10px;
		margin-bottom: 10px;
	}
	a.linkbtn.hasimage .linkimage,
	span.linkbtn.nolink.hasimage .linkimage {	/* 2024.3 KAZ */
		width: 110px;
		height: 110px;
	}
	a.linkbtn.hasimage .text,
	span.linkbtn.nolink.hasimage .text {	/* 2024.3 KAZ */
/*		padding-left: 15px; */
	}

	/* Blog Page Components */
	/* 緊急欄  */
	:is(#top_sticky, #my-blog) .sticky_wrap {
		border-radius: 15px;
	}
	:is(#top_sticky, #my-blog) .sticky_wrap .inner{
		display: block;
		border-radius: 15px;
		padding: 10px 15px;
	}
	:is(#top_sticky, #my-blog) .sticky_wrap p.sticky {
	}
	:is(#top_sticky, #my-blog) .sticky_wrap .date {
		display: inline-block;
		float: right;
		margin-top: 8px;
	}
	:is(#top_sticky, #my-blog) .sticky_wrap a h2  {
		color: initial;
		line-height: 1.625;
		padding-top: 5px;
	}

	#content nav:not(#nav-single) {
	}
	#my-blog #content,
	#my-search #content {	/* 2024.3 KAZ: added */
		padding-bottom: 100px;
	}
	#content nav#nav-single {
		padding-top: 22px;
/*		padding-bottom: 50px;	Aki c/o */
	}

	/* Archive */
	#my-blog.archive .page-title .inner {
	}
	#my-blog.archive .page-title .archive-title,
	#my-search .page-title .archive-title {	/* 2024.3 KAZ: added */
		font-size: 1rem;
	}
	#news_categories {
		width: 69.23%;
		font-size: 0.875rem;	/* 14px */
		background-color: var(--ueda-bg-gray);
		border-radius: 10px;
		padding: 4px 14px;
		margin: 40px auto;
	}
	#news_categories .all a, #news_categories ul > li a {
		color: inherit;
	}
	#news_categories .all a {
		display: block;
		background: url(/images/arrow_categories.svg)no-repeat center right 10px;
	}
	#news_categories ul {
		display: none;
	}
	#news_categories.expanded  ul {
		display: block;
	}
	#news_categories ul > li {
	}
	#news_categories ul > li a {
	}
	#news_categories ul > li a.information {
	}
	#news_categories ul > li a.opencampus {
	}
	#news_categories ul > li a.admission {	/* 2024.3 KAZ: was .entranceexam, KAZ: was .fiftieth */
	}
	#news_categories ul > li a.course {
	}
	#news_categories ul > li a.event {
	}
	#news_categories ul > li a.other {	/* KAZ */
	}
	#news_categories ul > li a.current {
	}
	#news_categories ul > li a.current.information {
	}
	#news_categories ul > li a.current.opencampus {
	}
	#news_categories ul > li a.current.admission {	/* 2024.3 KAZ: was .entranceexam, KAZ: was .fiftieth */
	}
	#news_categories ul > li a.current.course {
	}
	#news_categories ul > li a.current.event {
	}
	#news_categories ul > li a.current.other {	/* KAZ */
	}

	#my-blog article {
	}
	#my-blog:not(.single-post) article {
	}
	#my-blog:not(.single-post) article .entry-header,
	#my-search article .entry-header {	/* 2024.3 KAZ: added */
		padding: 0 17px 12px;	/* 2024.3 KAZ: Problems_m: bottom was 5px */
	}
	#my-blog:not(.single-post) article .entry-header .date {
	}
	#my-blog:not(.single-post) article .entry-header h2,
	#my-search article .entry-header h2 {	/* 2024.3 KAZ: added */
		line-height: 1.6667;	/* 2024.3 KAZ: Problems_m */
	}
	#my-blog:not(.single-post) article .entry-header h2 a {
	}


	/* Single */
	.single-post article {
	}
	.single-post .entry-header .wall {
	}
	.single-post .entry-header .parent-title {
		font-size: 1.125rem;	/* 18px */
	}
	.single-post .entry-header .parent-title .inner{
	}
	.single-post .entry-header .parent-title::after {
		width: 26px;
	}
	.single-post .entry-header .date {
		margin-top: -27px;
	}
	.single-post .entry-header .entry-title {
		padding-top: 25px;
		padding-bottom: 18px;
	}
	.single-post .entry-header .category {
	}
	.single-post .entry-content {
		padding-top: 30px;
	}
	.single-post .pseudosection {
		margin-top: 40px;
	}
	.single-post .pseudosection .wall {
	}
	.single-post .pseudosection.news-qrcode .wall {
		padding-block: 30px;
	}
	.single-post .pseudosection.news-qrcode a {
		width: 150px;
	}
	.single-post .pseudosection.news-qrcode a img {
		height: 150px;
	}
	.single-post .pseudosection.news-pdf .wall {
		padding-block: 27px;
	}
	.single-post .pseudosection.news-pdf a {
	}
	.single-post .pseudosection.news-pdf a img {
		width: 254px;
	}
	.single-post #news_links {
		margin-top: 35px;
	}
	.single-post #news_links .wall {
	}



	/* Front Page Components */
	#my-top section h2 {	/* 2024.3 KAZ: Promblems_m: was :is(#my-top, #my-libhp) section h2 */
		padding-bottom: 38px;
	}

	#top_mainvisual {
/*		height: auto; */
	}
	#top_mainvisual .image,
	#top_mainvisual .movie {	/* 2024.4 KAZ: added */
		width: 89.743%;
		height: auto;	/* 2024.3 KAZ */
		margin-left: auto;
	}
	#top_mainvisual .image img {
	}
	#top_opencampus_banner {
/*		position: fixed; */	/* 2024.3 KAZ: moved to common */
/*		bottom: 50px; */	/* 2024.3 KAZ: moved to common and revised */
/*		left: 0; */	/* 2024.3 KAZ: moved to common */
/*		z-index: 9999; */	/* 2024.3 KAZ: moved to common and revised */
	}
	#top_opencampus_banner a {
		display: inline-block;
		padding: 13px 30px 13px 0;
	}
	#top_opencampus_banner a .category,
	ul.event_list > li .category {
		line-height: 38px;
	}
	#top_opencampus_banner a .category {
		float: left;
		width: 67px;
		line-height: 57px;
	}
	#top_opencampus_banner a .category::after {
		border-top: transparent 3.5px solid;
		border-left: var(--ueda-strong-green) 6px solid;
		border-right: transparent 3.5px solid;
		border-bottom: transparent 3.5px solid;
		width: 7px;
		height: 6px;
		top: 50%;
		left: 67px;
	}
	#top_opencampus_banner a .title,
	#top_opencampus_banner a .datetime {
		margin-left: 83px;
	}
	#top_opencampus_banner a .title {
		font-size: 0.9375rem;	/* 15px */
		line-height: 1;
		padding-bottom: 4px;
	}
	#top_opencampus_banner a .datetime {
		font-size: 1.0625rem;	/* 17px */
	}
	#top_opencampus_banner a .datetime .month {
		font-size: 1.4375rem;	/* 23px */
	}
	#top_opencampus_banner a .datetime .slash {
		font-size: 1.875rem;	/* 30px */
	}
	#top_opencampus_banner a .datetime .date {
		font-size: 2.1875rem;	/* 35px */
	}
	#top_opencampus_banner a .datetime .day {
		margin-left: 3px;
	}
	#top_opencampus_banner a .datetime .time {
		margin-left: 6px;
	}
	/* Sticky */
	#top_sticky {
		padding-top: 50px;
	}
	#top_sticky .sticky_wrap {	/* 2024.3 Aki */
		margin-bottom: 50px;
	}

	/* Pick Up */
	:is(#top_pickup, #top_news) a {
	}
	#top_pickup {
		padding-bottom: 20px;
/*		margin-top: 70px; Aki from chk HTML */
	}
	#top_pickup .wall {
		width: 100%;	/* 2024.3 KAZ */
	}
	#top_pickup ul.pickup_list{
/*		justify-content: center; */
		overflow-y: hidden;
		overflow-x: auto;
		padding-inline: calc(50% - 160px);	/* 2024.3 KAZ */
		padding-bottom: 30px;	/* 2024.3 Aki from chk HTML */
	}
	#top_pickup ul.pickup_list > li{
		width: 320px;
	}
	#top_pickup ul.pickup_list > li a{
	}
	#top_pickup ul.pickup_list > li .entry-image{
		width: 320px;
		height: 240px;
	}
	#top_pickup ul.pickup_list > li .text_wrap {
		padding-top: 15px;
		padding-left: 20px;
	}
	#top_pickup ul.pickup_list > li .text_wrap::before {
		height: calc(100% + 10px);
		left: 10px;
	}
	#top_pickup ul.pickup_list > li .title {
		font-size: 1rem;	/* 16px */ 
	}
	#top_pickup ul.pickup_list > li .date {
		padding-top: 15px;
	}


	/* News */
	#top_news {
		padding-bottom: 80px;
	}
	#top_news ul.news_list {
	}
	#top_news ul.news_list > li {
		padding: 0 17px 8px;
	}
	#top_news ul.news_list > li::after {
	}
	#top_news ul.news_list > li.opencampus::after {
	}
	#top_news ul.news_list > li.admission::after {	/* 2024.3 KAZ: was .entranceexam, KAZ: was .fiftieth */
	}
	#top_news ul.news_list > li.course::after {
	}
	#top_news ul.news_list > li.event::after {
	}
	#top_news ul.news_list > li.other::after {	/* KAZ */
	}
	#top_news ul.news_list > li .date, 
	article .entry-header .date {
		display: inline-block;
		padding-top: 15px;
	}
	#top_news ul.news_list > li .date {
	}
	#top_news ul.news_list > li .category,
	article .entry-header a.category,
	article .entry-header span.nocategory {	/* 2024.3 KAZ: added */
		float: right;
		text-align: center;
		line-height: 30px;
		border-bottom: solid 1px var(--ueda-cat-pink);	/* 2024.3 KAZ: was var(--ueda-cat-blue) */
	}
	#top_news ul.news_list > li .category.opencampus,
	article .entry-header a.category.opencampus {
		border-bottom: solid 1px var(--ueda-cat-green);
	}
	#top_news ul.news_list > li .category.admission,
	article .entry-header a.category.admission {	/* 2024.3 KAZ: was .entranceexam, KAZ: was .fiftieth */
		border-bottom: solid 1px var(--ueda-cat-purple);
	}
	#top_news ul.news_list > li .category.course,
	article .entry-header a.category.course {
		border-bottom: solid 1px var(--ueda-cat-blue);
	}
	#top_news ul.news_list > li .category.event,
	article .entry-header a.category.event {
		border-bottom: solid 1px var(--ueda-cat-orange);
	}
/*	#top_news ul.news_list > li .category.information,
 *	article .entry-header a.category.information {
 *		border-bottom: solid 1px var(--ueda-cat-pink);
 *	}
 */	/* 2024.3 KAZ: c/o default */
	#top_news ul.news_list > li .category.other,
	article .entry-header a.category.other,	/* KAZ */
	article .entry-header span.nocategory {	/* 2024.3 KAZ: added */
		border-bottom: solid 1px var(--ueda-cat-teal);
	}
	#top_news ul.news_list > li .title {
		display: block;
		font-size: 0.9375rem;	/* 15px */
		line-height: 1.666;
	}
	#top_news .link {
		margin-top: 32px;	/* 2024.3 Ak was 10px from kashiyo */
	}
	#top_news a.linkbtn {
		width: 240px;
	}

	/* Department */
	#top_department {
		padding-bottom: 80px;
	}
	:is(#top_department, #open_department) .wrapper {
	}
	:is(#top_department, #open_department) .wrapper .wrap {
		height: 530px;
	}
	:is(#top_department, #open_department) .wrapper .wrap a {
		padding: 173px 0 0 20px;
	}
	:is(#top_department, #open_department) .wrapper .wrap a::before {
	}
	:is(#top_department, #open_department) .wrapper .wrap#department1 a::before {
		background-position: left calc(50% - 40px) center;
	}
	:is(#top_department, #open_department) .wrapper .wrap a::after {
	}
	:is(#top_department, #open_department) .ttl {
	}
	:is(#top_department, #open_department) .ttl .en {
	}
	:is(#top_department, #open_department) .ttl .ja {
		display: inline-block;
		font-size: 2.8125rem;	/* 45px */
		margin-top: -20px;
	}
	:is(#top_department, #open_department) .ttl .ja::after {
		top: -8px;
		right: -25px;
	}
	:is(#top_department, #open_department) .text {
	}

	/* Campus Life */
	#top_campuslife {
		padding-bottom: 36px;
	}
	#my-top section#top_campuslife h2 {
	}
	#my-top section#top_campuslife h2 .en {
		font-size: 2.1875rem;	/* 35px */
	}
	#top_campuslife .imgonly {
	}
	#top_campuslife .wrap {
		padding: 25px 20px 30px;
	}
	#top_campuslife .wrap p{
		margin-bottom: 24px;
	}
	#top_campuslife .wrap .link {
		text-align: center;
	}

	/* sns */
	#top_sns {
		padding-bottom: 56px;
	}
	.sns_informationwrap h2 {
		text-align: left !important;
		margin-bottom: 10px;
	}
	#top_sns .wall {
	}
/*	#top_sns .imgonly.visual {
 *	}
 *	#top_sns .imgonly.visual img {
 *		width: 50%;
 *	}
 */
	.sns_informationwrap {
		padding: 20px 15px 30px;
	}
	.sns_informationwrap p {
		line-height: 1.5;
		margin-bottom: 30px;
	}
	.sns_informationwrap .wrap_child {
		padding: 5px 15px;
	}
	.sns_informationwrap .wrap_child .sns_wrap {
		justify-content: center;
		gap: 0 10px;
		padding-bottom: 36px;
	}
	.sns_wrap.darkgray .sns_icon {
	}
	.sns_wrap.darkgray .sns_icon a {
	}
	.sns_wrap.darkgray .sns_icon a::after {
	}
	.sns_informationwrap .wrap_child.line {
	}
	.sns_informationwrap .wrap_child.line a {
		padding: 15px 10px 15px 15px;
	}
	.sns_informationwrap .wrap_child.line .ttlwrap {
		display: flex;
		align-items: center;
		gap: 0 10px;
		padding-bottom: 13px;
	}
	.sns_informationwrap .wrap_child.line .ttl {
		min-height: auto;
		line-height: 1.5;
		background: none;
		padding-left: 0;
	}
	.sns_informationwrap .wrap_child.line .text {
	}

	/* Information */
	.page#my-opencampus #main .entry-content {
	}
	#top_information {
		padding-top: 535px;
		padding-bottom: 44px;
	}
	#top_information::before {
		background-size: 1600px auto;
	}
	#my-top section#top_information h2 {
	}
	#my-top section#top_information h2 .en {
	}
	#top_information ul {
		gap: 10px;
	}
	#top_information ul > li {
		width: 100%;
	}
	#top_information ul > li a {
		padding-top: 20px;
		padding-bottom: 13px;
	}
	#top_information ul > li a .ttl {
		padding-bottom: 15px;
	}
	#top_information ul > li a .text {
	}


	/* Open Campus Page Components */
	#my-opencampus {
	}
	#my-opencampus h2 {
	}
	#my-opencampus h2 .en {
		font-size: 2.5rem;	/* 40px */
		padding-bottom: 8px;
	}
	#my-opencampus h2 .ja {
	}
	#my-opencampus #top_news {
		padding-bottom: 16px;
	}
	#my-opencampus #top_news h2 {
		margin-bottom: 43px;
	}
	#my-opencampus #top_news h2 .en {
		padding-bottom: 12px;
	}
	#my-opencampus #top_news h2 .ja {
	}
	#my-opencampus #top_news ul.news_list {
		margin-bottom: 27px;
	}
	#my-opencampus #top_news a.linkbtn::after {
	}

	#my-opencampus h2.fukidashi {
	}
	#my-opencampus h2.fukidashi .inner{
		padding: 20px 30px 24px;
	}

	#open_schedule {
		background: linear-gradient(to bottom, white 0 60px, var(--ueda-bg-gray) 60px 100%);
		padding-top: 30px;
		padding-bottom: 5px;
	}
	#open_schedule .wall {
	}
	#open_schedule h2.fukidashi .inner {
	}
	#open_schedule h3 {
		font-size: 1.25rem;	/* 20px */
		white-space: nowrap;
		margin-bottom: 23px;
	}
	#open_schedule h3 .note {
		display: block;
		white-space: break-spaces;
		padding-top: 12px;
	}
	ul.event_list {
		justify-content: center;
		gap: 10px 0;
		padding-bottom: 35px;
	}
	ul.event_list > li {
		width: 100%;
		padding: 0 15px 15px;
	}
	ul.event_list > li .category {
	}
	ul.event_list > li .title,
	#my-opencampus .opencampus_popup .heading .title {
		font-size: 1.25rem;	/* 20px */
		padding-top: 10px;
	}
	ul.event_list > li .datetime,
	#my-opencampus .opencampus_popup .heading .datetime {
		font-size: 1.4375rem;	/* 23px */
		padding-bottom: 14px;
	}
	ul.event_list > li .datetime .month,
	#my-opencampus .opencampus_popup .heading .datetime .month {
		font-size: 1.875rem;	/* 30px */
		vertical-align: 10px;
	}
	ul.event_list > li .datetime .slash,
	#my-opencampus .opencampus_popup .heading .datetime .slash {	/* KAZ */
		font-size: 2.1875rem;	/* 35px */
		vertical-align: 3px;
	}
	ul.event_list > li .datetime .date,
	#my-opencampus .opencampus_popup .heading .datetime .date {
		margin-right: 2px;
		font-size: 2.8125rem;	/* 45px */
	}
	ul.event_list > li .datetime .day {
	}
	ul.event_list > li .datetime .time,
	#my-opencampus .opencampus_popup .heading .datetime .time {
		margin-left: 9px;
	}
	ul.event_list > li .popup_link {
	}
	ul.event_list > li .popup_link a {
	}
	#my-opencampus .fancybox-slide--html {
		padding: 100px 10px 48px;
	}
	#my-opencampus .fancybox-toolbar.compensate-for-scrollbar {
		margin-right: 0;
	}
	#my-opencampus .opencampus_popup {
		padding: 25px 20px 45px;	/* 2024.3 Aki was 45px 20px */
	}
	#my-opencampus .opencampus_popup .heading,	/* 2024.3 KAZ: added */
	#my-opencampus .opencampus_popup .event_pdf {
		margin-bottom: 43px;
	}
	#my-opencampus .opencampus_popup .heading {
	}
	#my-opencampus .opencampus_popup .heading .title {
		/* See above ul.event_list > li .title */
	}
	#my-opencampus .opencampus_popup .heading .datetime {
		/* See above ul.event_list > li .datetime */
	}
	#my-opencampus .opencampus_popup .heading .datetime .month {
		/* See above ul.event_list > li .datetime .month */
	}
	#my-opencampus .opencampus_popup .heading .datetime .slash {
		/* See above ul.event_list > li .datetime .slash */
	}
	#my-opencampus .opencampus_popup .heading .datetime .date {
		/* See above ul.event_list > li .datetime .date */
	}
	#my-opencampus .opencampus_popup .heading .datetime .day {
	}
	#my-opencampus .opencampus_popup .heading .datetime .time {
		/* See above ul.event_list > li .datetime .time */
	}
	#my-opencampus .opencampus_popup .event_pdf {
	}
	#my-opencampus .opencampus_popup .event_pdf a {
	}
	#my-opencampus .opencampus_popup .event_pdf a::after {
		background-size: 26.32px auto;
		width: 45px;
		height: 45px;
	}
	#my-opencampus .opencampus_popup .event_pdf a img {
	}
	#my-opencampus .opencampus_popup .event_double_col {
	}
	#my-opencampus .opencampus_popup .event_double_col .left_col,
	#my-opencampus .opencampus_popup .event_double_col .right_col,
	#my-opencampus .opencampus_popup .event_single_col {
		margin-bottom: 23px;
	}
	#my-opencampus .opencampus_popup .event_double_col .left_col,
	#my-opencampus .opencampus_popup .event_double_col .right_col {
	}
	#my-opencampus .opencampus_popup .event_single_col {
	}
	#my-opencampus .opencampus_popup .event_double_col .title,
	#my-opencampus .opencampus_popup .event_single_col .title {
		padding: 14px 36px 13px;
	}
	#my-opencampus .opencampus_popup .event_double_col .title::after,
	#my-opencampus .opencampus_popup .event_single_col .title::after {
		border-top: var(--ueda-strong-green) 11px solid;
		border-left: transparent 7px solid;
		border-right: transparent 7px solid;
		width: 14px;
		height: 11px;
		bottom: -11px;
		left: calc(50% - 7px);
	}
	#my-opencampus .opencampus_popup .event_double_col .details,
	#my-opencampus .opencampus_popup .event_single_col .details {
		margin-top: -22px;
		padding: 54px 15px 22px;
	}
	#my-opencampus .opencampus_popup .event_double_col .details h4.green,
	#my-opencampus .opencampus_popup .event_single_col .details h4.green {
		margin-bottom: 14px;
		line-height: 1.6667;	/* 30px */
		font-size: 1.125rem;	/* 18px */
	}
	#my-opencampus .opencampus_popup .event_double_col .details ul.flex,
	#my-opencampus .opencampus_popup .event_single_col .details ul.flex {
	}
	#my-opencampus .opencampus_popup .event_double_col .details ul.green,
	#my-opencampus .opencampus_popup .event_single_col .details ul.green {
	}
	#my-opencampus .opencampus_popup .event_double_col .details ul:not(:last-child),
	#my-opencampus .opencampus_popup .event_single_col .details ul:not(:last-child) {
		margin-bottom: 11px;
	}
	#my-opencampus .opencampus_popup .event_double_col .details ul.green li,
	#my-opencampus .opencampus_popup .event_single_col .details ul.green li {
		line-height: 2;		/* 36px */
		font-size: 1.125rem;	/* 18px */
	}
	#my-opencampus .opencampus_popup .event_double_col .details p,
	#my-opencampus .opencampus_popup .event_single_col .details p {
		line-height: 1.6667;	/* 25px */
	}
	#my-opencampus .opencampus_popup .event_form_link {
		margin-top: 40px;
	}

	#open_impressions {
		padding-bottom: 17px;
	}
	#open_impressions .wall {
	}
	#open_impressions h2 {
		font-size: 1.5625rem;	/* 25px */
		margin-bottom: 40px;
	}
	#open_impressions .wrapper {
	}
	#open_impressions .wrapper .wrap {
		padding-bottom: 113px;
	}
	#open_impressions .wrapper .wrap p {
		font-size: 1.25rem;	/* 20px */
		line-height: 1.75;
		padding: 30px 40px;
	}
	#open_impressions .wrapper .wrap p::after {
	}
	#open_impressions .wrapper .wrap#wrap2 p::after {
	}
	#open_impressions .wrapper .wrap .imgonly {
		width: 135px;
		height: auto;
		bottom: 27px;
		left: 0;
	}
	#open_impressions .wrapper .wrap#wrap2 .imgonly {
		left: auto;
		right: 0;
	}
	#open_impressions .link_impressions {
		padding-bottom: 35px;
	}
	#open_impressions .link_impressions a {
	}
	#open_impressions .event_form_link {
	}
	#my-opencampus .event_form_link a {
		line-height: 80px;
		background-size: 27px auto;
		background-position-x: 16px;
		padding-left: 60px;
	}
	#my-opencampus .event_form_link a::after {
		top: 32px;
		right: 15px;
	}

	#open_contact {
		padding: 65px 0 60px;
	}
	#open_contact .wall{
	}
	#open_contact h2 {
	}
	#open_contact .tel {
		padding-top: 43px;
		padding-bottom: 10px;
	}
	#open_contact .tel h3 {
		text-align: center;
	}
	#open_contact .tel .telwrap {
		text-align: center;
		padding-top: 20px;
	}
	#open_contact .tel .ttl {
		margin-bottom: 5px;
	}
	#open_contact .tel .telnumber a,
	#admission_contact .tel .telnumber a {	/* 2024.3 KAZ */
		color: white;
		text-decoration: none;
		font-size: 2.8125rem;	/* 45px */
	}
	#open_contact .mail,
	#admission_contact .mail {	/* 2024.3 KAZ */
	}
	#open_contact .mail a,
	#admission_contact .mail a {	/* 2024.3 KAZ */
		line-height: 80px;
		background-size: 33px auto;
		background-position-x: 20px;
		padding-left: 69px;
	}
	#open_contact .line {
		padding-top: 25px;
	}
	#open_contact .line a,
	#admission_contact .line a {	/* 2024.3 KAZ */
		background-size: 52px auto;
		background-position: top 15px left 15px;
		padding: 15px;
	}
	#open_contact .line :is(.ttl, .text),
	#admission_contact .line :is(.ttl, .text) {	/* 2024.3 KAZ */
		display: block;
	}
	#open_contact .line .ttl,
	#admission_contact .line .ttl {	/* 2024.3 KAZ */
		font-size: 1.125rem;	/* 18px */
		padding-left: 65px;
		padding-top: 10px;
	}
	#open_contact .line .text,
	#admission_contact .line .text {	/* 2024.3 KAZ */
		font-size: 0.875rem;	/* 14px */
		line-height: 1.428;
		padding-top: 18px;
	}

	#open_voice {
		padding-top: 50px;
		padding-bottom: 60px;
	}
	#my-opencampus #open_voice h2.fukidashi {
		margin-bottom: 50px;
	}
	#my-opencampus #open_voice h2.fukidashi .inner {
		padding-bottom: 17px;
	}
	#open_voice h2.fukidashi .inner .ja {
		font-size: 1.125rem;	/* 18px */
		line-height: 1.333;
	}
	#open_voice .youtube {
	}
	#open_voice .linkwrap {
		padding-top: 20px;
	}
	#open_voice .linkwrap .voice {
		padding-bottom: 20px;
	}
	#open_voice .linkwrap .voice a {
	}
	#open_voice .linkwrap .banner {
	}
	#open_voice .linkwrap .banner .wrap {
	}
	#open_voice .linkwrap .banner .wrap a {
		width: 100%;
		height: 110px;
		padding-top: 38px;
		padding-left: 31px;
	}
	#open_voice .linkwrap .banner .wrap a::before {
		width: 100%;
		height: 110px;
	}
	#open_voice .linkwrap .banner .wrap#banner2 a::before {
	}
	#open_voice .linkwrap .banner .wrap a::after {
		top: 44px;
		right: 19px;
	}
	#open_department {
		padding-bottom: 40px;
	}
	#open_about {
		padding-bottom: 80px;
	}
	#open_about .wall {
	}
	#open_about h2 {
	}
	#open_about h2 a {
		height: 350px;
		padding: 155px 0 0 17px;
	}
	#open_about h2 a .en {
	}
	#open_about h2 a .ja {
		font-size: 2.8125rem;	/* 45px */
		padding-top: 10px;
		padding-bottom: 23px;
	}
	#open_about h2 a .text {
	}
	#open_about h2 a::before {
		width: 100%;
		height: 350px;
	}
	#open_about h2 a .ja::after {
	}


	/* Fixed Page Components */
	#footer_links {
	}
	#footer_links .wall {
		justify-content: center;
		padding: 60px 0;
	}
	#footer_links .footer_links_box {
	}

	/* 大学概要 - 教員紹介 */
	ul.teacher_list {
	}
	ul.teacher_list > li {
		width: 100%;
	}
	ul.teacher_list > li a,
	ul.teacher_list > li span.linkbtn.nolink {	/* 2024.3 KAZ */
	}
	ul.teacher_list > li a.linkbtn.hasimage,
	ul.teacher_list > li span.linkbtn.nolink.hasimage {	/* 2024.3 KAZ */
	}
	ul.teacher_list > li .detail_wrap {
		width: calc(100% - 125px);
	}
	ul.teacher_list > li .photo {
	}
	ul.teacher_list > li :is(.position, .title, .major){
	}
	ul.teacher_list > li .position {
	}
	ul.teacher_list > li .title {
	}
	ul.teacher_list > li .major {
	}
	#teacherlist_guest {
		padding-bottom: 100px;
	}
	#teacher_table {
	}
	#teacher_table td table {
	}
	#teacher_table td table th {
		padding-bottom: 0;
	}
	#teacher_table td table td{
		padding-bottom: 15px;
	}
	#teacher_table td table thead th{
	}
	#teacher_table td h4 {
	}
	#teacher_table td p {
	}
	#my-teachers #content nav#nav-single {
		padding-bottom: 100px;
	}

	/* 大学概要 - 歩み */
	#my-history .page .entry-header.type-c .entry-title .inner {
/*		padding-top: 25px; */	/* 2024.3 KAZ: Problems_m: c/o */
	}
	#history_message {
		padding-bottom: 34px;
	}
	#history_message .imgonly {
	}
	#history_message .catchline {
		margin-top: 18px;
		font-size: 1.125rem;	/* 2024.4 KAZ: 18px */
		text-align: center;	/* 2024.4 KAZ */
	}
	#history_message p:is(.text, .right) {
	}
	#history_message p.right {
		margin-top: 0.8em;	/* 2024.4 KAZ */
		font-size: inherit;	/* 2024.4 KAZ */
	}
	#history_message .wrap {
		padding: 10px;
		margin-top: 25px;
	}
	#history_message .wrap h3 {
	}
	#history_message .wrap p {
	}
	#history_ayumi {
		padding-bottom: 50px;
	}
/*	#history_ayumi .slideshow,
 *	#history_ayumi .slideshow ul {
 *	}
 *	#history_ayumi .slideshow {
 *	}
 *	#history_ayumi .slideshow ul {
 *	}
 *	#history_ayumi .slideshow ul > li {
 *		width: 250px;
 *		height: 250px;
 *	}
 */	/* 2024.3 KAZ: c/o */
	#about_gallery .slider_wrapper,
	#history_ayumi .slider_wrapper {	/* 2024.3 KAZ */
		width: 320px;	/* 250px in design */
		margin: 0 auto;
	}
	#about_gallery .slider_wrapper .slide,
	#history_ayumi .slider_wrapper .slide {	/* 2024.3 KAZ */
	}
	#history_ayumi dl {
		margin-bottom: 50px;
	}
	#history_ayumi :is(dt, dd) {
		padding-left: 10px;
		padding-top: 5px;
	}
	#history_ayumi dt {
	}
	#history_ayumi dd {
		border-top: 0;	/* Aki from chk HTML */
		padding-top: 0;	/* Aki from chk HTML */
		margin-bottom: 5px;
	}
	#history_ayumi h3 {
		margin-bottom: 30px;
	}
	#history_ayumi .youtube {
	}
	#history_ayumi .youtube iframe {
	}

	/* 大学概要 - 未来共創センター */
	#center_message {
	}
	#center_message p {
	}
	#center_about {
	}
	#center_about p {
	}
	#center_about ol {
	}
	#center_about ol > li {
	}
	#center_region {
	}
	#center_region .wrap {
		padding-bottom: 20px;
	}
	#center_region .wrap h3 {
		margin-bottom: 15px;
	}
	#center_region .wrap p {
		margin-bottom: 5px;
	}
	#center_region .wrap .link {
	}
	#center_sns {
		padding-bottom: 50px;
	}
	#center_sns p.text {
	}
	#center_sns .sns_wrap {
	}
	#center_sns .sns_wrap .twitter_wrap {
		padding-bottom: 20px;
	}
	#center_links {
		padding: 60px 0;
	}
	#guide_process h3,
	#guide_process .link_wrapper {
	}
	#guide_process h3 {
	}
	#center_links .link_wrapper {
		justify-content: center;
	}

	#my-guide .page .entry-title .inner .ja {	/* Aki for Android */
		font-size: 1.6rem;
	}
	#guide_message {
	}
	#guide_team {
	}
	#guide_team p.right {
	}
	#guide_youtube {
	}
	#guide_youtube p {
	}
	#guide_youtube .wrap:not(.last_wrap) {
		padding-bottom: 25px;
	}
	#guide_youtube .wrap h3 {
		font-size: 1.125rem;	/* 18px */
		margin-bottom: 10px;
	}
	#guide_youtube .wrap .youtube {
		width: 100%;
		aspect-ratio: 16 / 9;
	}
	#guide_process {
		padding-bottom: 50px;
	}
	#guide_process .imgonly {
		padding-bottom: 50px;
	}
	#guide_process .link_wrapper {
	}
	#guide_process .link_wrapper a span {
		display: block;
	}
	#guide_process .link_wrapper a.linktext::before,
	#guide_process .link_wrapper a.linktext::after {
		top: 11px;
	}


	/* 入試情報; 2024.3 KAZ */
	:is(#my-admission, #my-admission2) #top_news {	/* 2026.5 Aki added #my-admission2 */
		padding-bottom: 50px;
	}
	:is(#my-admission, #my-admission2) #top_news h2 {	/* 2026.5 Aki added #my-admission2 */
		margin-bottom: 40px;
	}
	#admission_outline > .gray {
		padding: 40px 0 30px;
	}
	#admission_outline > .gray h2 {
	}
	#admission_outline .tab_wrapper .gray {
		padding-bottom: 30px;
	}
	#admission_outline .tab_wrapper .gray ul.tab_menu {
		flex-direction: column;
		gap: 8px 0;
	}
	#admission_outline .tab_wrapper .gray ul.tab_menu li {
	}
	#admission_outline .tab_wrapper .gray ul.tab_menu li a {
		height: 40px;
		line-height: 38px;
		padding: 0 30px;
		font-size: 1.25rem;	/* 20px */
	}
	#admission_outline .tab_wrapper .tab_panel {
		padding: 60px 0;
	}
	#admission_outline .tab_wrapper .tab_panel h3 {
	}
	#admission_outline .tab_wrapper .tab_panel h4 {
	}
	#admission_outline .tab_wrapper .tab_panel table {
		display: table;
	}
	#admission_outline .tab_wrapper .tab_panel table caption {
		display: table-caption;
	}
	#admission_outline .tab_wrapper .tab_panel table thead {
		display: table-header-group;
	}
	#admission_outline .tab_wrapper .tab_panel table tbody {
		display: table-row-group;
	}
	#admission_outline .tab_wrapper .tab_panel table tr {
		display: table-row;
	}
	#admission_outline .tab_wrapper .tab_panel table th,
	#admission_outline .tab_wrapper .tab_panel table td {
	}
	#admission_outline .tab_wrapper .tab_panel table tbody th,
	#admission_outline .tab_wrapper .tab_panel table tbody td {
		display: table-cell;
	}
	#admission_outline .tab_wrapper .tab_panel table thead th {
		padding: 11px 3.8462vw 9px;	/* 15 / 390 */
	}
	#admission_outline .tab_wrapper .tab_panel table tbody td:first-of-type,
	.entry-content .p-qualify__tables td:first-of-type,
	.entry-content #work-yoji td:first-of-type,
	.entry-content #work-sogo td:first-of-type {
		border-top: var(--ueda-medium-gray) 1px solid;	/* 2024.3 KAZ: Problems_m */
	}
	#admission_outline .tab_wrapper #capacity {
	}
	#admission_outline .tab_wrapper #capacity .department {
		margin-bottom: 40px;
	}
	#admission_outline .tab_wrapper #capacity table tbody th {
	}
	#admission_outline .tab_wrapper #capacity table tbody td {
		width: 91px;
	}
	#admission_outline .tab_wrapper #schedule {
	}
	#admission_outline .tab_wrapper #schedule table,
	#admission_outline .tab_wrapper #tokutai table,
	#admission_outline .tab_wrapper #tuition table,
	#admission_outline .tab_wrapper #scholarship table {
		min-width: 1010px;
	}
	#admission_outline .tab_wrapper #schedule table .col1 {
		width: 137px;
	}
	#admission_outline .tab_wrapper #tokutai {
	}
	#admission_outline .tab_wrapper #tokutai table .col1 {
		width: 171px;
	}
	#admission_outline .tab_wrapper #tuition {
	}
	#admission_outline .tab_wrapper #tuition table {
		min-width: 882px;
	}
	#admission_outline .tab_wrapper #scholarship {
	}
	#admission_outline .tab_wrapper #scholarship table .col1 {
		width: 171px;
	}
	#admission_outline .tab_wrapper #download {
	}
	#admission_contact {
	}
	#admission_contact .wall {
		padding: 40px 0 50px;
	}
	:is(#my-admission, #my-admission2) #admission_contact h2 {	/* 2026.5 Aki added #my-admission2 */
		margin-bottom: 30px;
	}
	#admission_contact .contact,
	#admission_contact .request {
		margin-bottom: 50px;
	}
	#admission_contact .contact {
	}
	#admission_contact .request {
	}
	#admission_contact h3 {
	}
	#admission_contact .tel {
		/* See also #open_contact .tel */
	}
	#admission_contact .tel .telnumber {
		margin-bottom: 24px;
		font-size: 3rem;	/* 48px */
	}
	#admission_contact .telemail {
		margin-bottom: 20px;
	}
	#admission_contact .telemail a {
	}
	#admission_contact .mail {
		/* See also #open_contact .mail */
	}
	#admission_contact .line {
		/* See also #open_contact .line */
	}


	/* 対象者別コンテンツ - 入学希望の方 */
	:is(#applicants_message, #applicants_recommend) {
		padding-bottom: 50px;
	}
	#applicants_message p.message {
	}
	#applicants_recommend {
	}
	#applicants_recommend h2 {
		width: 100%;
		line-height: 60px;
		margin-bottom: 30px;
	}
	#applicants_recommend h2::after {
	}
	#applicants_recommend .wrap{
		padding: 15px;
	}
	#applicants_recommend .wrap .imgonly {
	}
	#applicants_recommend .wrap .details {
		padding-top: 20px;
	}
	#applicants_recommend .wrap .details h3{
	}
	#applicants_recommend .wrap .details p {
	}
	#applicants_recommend .wrap .details .link {
	}
	#applicants_links {
		padding-top: 50px;
		padding-bottom: 70px;
	}
	#applicants_links .link_wrapper {
	}
	#applicants_links .link_wrapper .link {
	}
	#pamphlet_link .wrapper {	/* 2026.6 Aki added */
	}
	#pamphlet_link .wrapper .imgonly {	/* 2026.6 Aki added */
		width: 60%;
		margin: 0 auto 10px;
	}
	#pamphlet_link .wrapper .text {	/* 2026.6 Aki added */ 
	}


	/* 学科紹介 - 分野 */
	#field_pickup {
	}
	#field_pickup p.message {
		padding-bottom: 20px;
	}
	#field_pickup .wrap{
		padding-bottom: 30px;
	}
	#field_pickup .wrap h3 {
		margin-bottom: 20px;
	}
	#field_pickup .detail {
	}
	#field_pickup .wrap .imgonly {
		padding-bottom: 10px;
	}
	#field_pickup .wrap .right_wrap{
	}
	#field_pickup .wrap .right_wrap p{
	}
	#field_pickup .wrap .right_wrap .wrap_child{
	}
	#field_pickup .wrap .right_wrap .wrap_child .ttl{
	}
	#field_pickup .wrap .right_wrap .wrap_child ul {
	}
	#field_pickup .wrap .right_wrap .wrap_child ul > li {
	}
	#field_pickup .wrap .right_wrap .wrap_child li::before {
	}
	#field_pickup .wrap#wrap_business .detail  {
	}
	#field_pickup .wrap#wrap_business .detail:not(.last) {
		margin-bottom: 20px;	/* 2024.3 Aki from chk HTML */
	}
	#field_pickup .detail .left_wrap {
	}
	#field_pickup .detail .left_wrap h4 {
		text-indent: -1.55em;
		padding-bottom: 10px;
		margin-left: 1.5em;
	}
	#field_pickup .detail .left_wrap p {
		margin-bottom: 16px;	/* 2024.3 Aki from chk HTML */
	}


	/* Campus Life */
	#my-campuslife .slider_wrapper {
		padding-bottom: 20px;
	}
	#my-campuslife .slider_wrapper .slick-list {
	}
	#my-campuslife .slider_wrapper .slick-track {
	}
	#my-campuslife .slider_wrapper .slick-slide {
	}
	#my-campuslife .slider_wrapper .slide {
		padding: 0 7.6923%;	/* 30 / 390 */
	}
	#my-campuslife .slider_wrapper .slide .imgonly {
		height: 56.4103vw;
		margin-bottom: 12px;
	}
	#my-campuslife .slider_wrapper .slide .imgonly img {
	}
	#my-campuslife .slider_wrapper .slide h4 {
		font-size: 1rem;	/* 16px */
	}
	#my-campuslife .slider_wrapper .slide p {
		font-size: 0.9375rem;	/* 15px */
		line-height: 1.666;
		margin-top: 8px;
	}
	#my-campuslife .slider_nav {
	}
	#my-campuslife .slider_nav .slick-arrow {
		width: 54px;
		height: 54px;
		top: 83px;
		padding-block: 17px;
	}
	#my-campuslife .slider_nav .slick-prev {
		left: -14px;
		padding-left: 24px;
	}
	#my-campuslife .slider_nav .slick-next {
		right: -14px;
		padding-left: 20px;
	}
	#my-campuslife .slider_nav .slick-arrow img {
		width: 10px;
		height: 20px;
	}

	#campus_intro {
		padding-bottom: 53px;
	}
	#campus_intro p {
		font-size: 1.125rem;	/* 18px */
		margin-bottom: 35px;
	}
	#campus_intro .youtube_wrap {
	}

	#campus_facility {
		padding-bottom: 50px;
	}
	#campus_facility .library_wrap {
		background: url(/images/img_library.jpg)no-repeat top 20px center / 310px auto var(--ueda-bg-gray);
		padding: 246px 20px 20px;
	}
	#campus_facility .library_wrap h3 {
		font-size: 1.25rem;	/* 20px */
		text-align: center;
		padding-bottom: 10px;
	}
	#campus_facility .library_wrap p {
		font-size: 0.875rem;	/* 14px */
		line-height: 1.785;
	}
	#campus_facility .library_wrap .link {
		text-align: center;
	}
	#campus_facility .library_wrap a.linkbtn {	/* Aki from chk HTML */
		width: auto;
	}

	#campus_circle {
		padding-bottom: 50px;
	}
	#campus_circle .circle_parent_wrapper {
		padding: 20px 20px 4px;
	}
	#campus_circle .circle_wrapper {
	}
	#campus_circle .circle_wrapper .wrap {
	}
	#campus_circle .circle_wrapper .wrap#circle_sports {
	}
	#campus_circle .circle_wrapper .wrap#circle_culture {
		padding-top: 10px;
	}
	#campus_circle .circle_wrapper .wrap h3 {
	}
	#campus_circle .circle_wrapper .wrap ul {
	}
	#campus_circle .circle_wrapper .wrap ul > li{
	}
	#campus_circle p.mincho {
		font-size: 1.125rem;	/* 18px */
		line-height: 1.777;
		text-align: left;
	}

	:is(#campus_festival, #campus_training) h3 {
		font-size: 0.9375rem;	/* 15px */
		padding-bottom: 38px;
	}
	#campus_festival {
		padding-bottom: 20px;
	}
	#campus_training {
		padding-bottom: 25px;
	}
	#campus_links {
		padding: 60px 0 70px;
	}
	#campus_links .link_wrapper{
	}
	#campus_links .link_wrapper .link a.linkbtn{
	}

	/* Campus Life - 上田女子短期大学通信 */
	#newsletter_latest {
	}
	:is(#newsletter_latest, #biv_latest) .box.imgonly {
		padding: 20px 0;
	}
	#newsletter_latest .box.imgonly a {
	}
	:is(#newsletter_latest, #biv_latest) .box.imgonly a img,
	.lecture_wrapper .lecture_pdf.imgonly a img {
		width: 250px;
	}
	#newsletter_backnumbers {
		padding-bottom: 50px;
	}
	#newsletter_backnumbers p.note {
	}
	ul.newsletter_list {
	}
	ul.newsletter_list .linktext::before, ul.newsletter_list .linktext::after {
		top: 11px;
	}

	/* 校歌制作プロジェクト 2026.6 Aki */
	#my-newsong #main .entry-content {	/* KAZ */
		padding-top: 10px;
		padding-bottom: 72px;
	}
	#song_report ul {
		gap: 20px;
	}
	#song_report ul li {
		width: calc((100% - 40px) / 2);
	}
	#song_files .links_box {
		gap: 20px;
	}

	/* Contact Form */
	.wpcf7-form {
		padding: 40px 20px;
	}
	table.contactform {
		margin-bottom: 0;
	}
	table.contactform th {
	}
	table.contactform td {
	}
	table.contactform input[type="text"],
	table.contactform input[type="email"] {
		height: 45px;	/* Aki was 50px */
	}
	table.contactform select {
		width: 100%;
		height: 45px;	/* Aki was 55px */
	}
	table.contactform tr.your-zip input[type="text"] {
		width: 180px;
		height: 55px;
	}
	.wpcf7-list-item {
		display: block !important;
	}
	.wpcf7-list-item:not(.first) {
	}
	.wpcf7-form p.accept_line {
		margin-bottom: 45px;
	}

	/* Contact and Request */
	#contact_message {
	}
	#contact_message .inquiry_banner {
	}
	#contact_message .inquiry_banner p.message {
	}
	#contact_message .inquiry_banner .tel {
	}
	#contact_message .inquiry_banner .tel h3 {
		padding-top: 5px;
	}
	#contact_message .inquiry_banner .tel .telwrap {
	}
	#contact_message .inquiry_banner p.notice {
		line-height: 1.25;
	}
	#contact_message .inquiry_banner p.ttl {
		margin-bottom: 0;
	}
	#contact_message .inquiry_banner p.telnumber {
		white-space: nowrap;
	}
	#contact_message .inquiry_banner .mail {
	}
	#contact_message .inquiry_banner .mail a {
		font-size: 1rem;
		line-height: 1.25;
		background-position-x: 17px;
		padding: 27px 17px 27px 68px;
	}
	#contact_form {
	}
	#contact_form .wall {
		width: 100%;
	}
	#contact_message .inquiry_banner .wrapper .wrap p {	/* 2026.6 Aki added */
		line-height: 1.25;
	}
	#contact_message .inquiry_banner .wrapper .imgonly {	/* 2026.6 Aki added */
		margin-top: -50px;
	}


	/* 法人本部・会議資料 */
	#my-houjinhonbu input[type=submit] {
		margin-top: 15px;
	}


}


section#thanks {
    margin-bottom: 30px;
}
section#thanks div.leadline {
    width: 100%;
    margin-inline: unset;
}
section#thanks_tx {
    margin-bottom: 100px;
}
section#thanks_tx .wall p{
    margin-bottom: 80px;
}
section#thanks_tx p.btn{
    text-align: center;
}

section#company .contact {
    background-color: var(--ueda-bg-gray);
    padding: 40px;
    margin: 40px auto;
}
section#company .contact h3 {
    border-bottom: 1px solid #c7c7c7;
    padding-bottom: 14px;
    margin-bottom: 23.5px;
}

section#alumni div.contact {
    background-color: var(--ueda-bg-gray);
    padding: 40px;
    margin: 40px auto;
}
section#alumni div.contact h3 {
    border-bottom: 1px solid #c7c7c7;
    padding-bottom: 14px;
    margin-bottom: 23.5px;
}

section#alumni table thead th {
    background-color: var(--ueda-medium-gray);
    color: white;
}
section#alumni table thead th:not(:first-child) {
    border-left: 1px solid white;
}
section#alumni table tbody th {
    width: auto;
}
section#alumni table tbody tr td {
    color: var(--ueda-pink);
    font-weight: bold;
}

section#recommend_content h2 {
    margin: 0 auto 18px;
    position: relative;
    color: white;
    background-color: var(--ueda-pink);
    font-size: 1.25rem;
    text-align: center;
    border-radius: 20px;
}
section#recommend_content h2::after {
    content: "";
    display: block;
    position: absolute;
    border-top: 18px solid var(--ueda-pink);
    border-left: transparent 10.5px solid;
    border-right: transparent 10.5px solid;
    width: 21px;
    height: 18px;
    bottom: -18px;
    left: 50%;
}
section#recommend_content .wrap {
    background-color: var(--ueda-bg-gray);
    margin-bottom: 5px;
}
section#recommend_content .wrap .details h3{
    color: var(--ueda-pink);
    font-weight: 400;
    padding-bottom: 10px;
}

section#related_link {
    background-color: var(--ueda-bg-gray);
}
section#related_link h3 {
    margin-top: 0;
}
section#related_link div.link_wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px 20px;
}

img.border {
    border: 2px solid #e6e6e6;
}

table#teacher_table th.pb, table#teacher_table td.pb  {
    padding-bottom: 1.5rem;
}

ol.num_list {
    line-height: 2rem;
}

section#pamphlet_link, section#voice_link {
    text-align: center;
}
section#pamphlet_link h3 {
    font-size: 1.4rem;
    border-bottom: var(--ueda-pink) 2px solid;
    width: fit-content;
    padding: 0 1rem;
    margin: 0 auto 1.5rem;
}
section#pamphlet_link img, section#voice_link img {
    max-width: 450px;
    width: 100%;
    height: auto;
    border: var(--ueda-bg-gray) 1px solid;
}


#my-admission_kousei section h2 {
	text-align: center;
}
#my-admission_kousei section h2 .en {
	position: relative;
	display: block;
	color: var(--ueda-pink);
	font-size: 2.5rem;
	line-height: 1;
	letter-spacing: 0.18em;
	padding-bottom: 11px;
}
#my-admission_kousei section h2 .en::after {
	content: "";
	display: block;
	width: 30px;
	height: 1px;
	background-color: var(--ueda-pink);
	position:absolute;
	bottom: 0;
	left: 50%;
	transform: translatex(-50%);
}
#my-admission_kousei section h2 .ja {
	font-size: 0.875rem;
}


/* 2024-9-26 追加 */
div.p-career__interview-btn__box {
    max-width: 400px;
    margin: 0 auto;
}



/* PC */
/* ----------------------------------------------- */
@media print, screen and (min-width: 768px) {
    section.mb {
        margin-bottom: 130px;
    }

    section#recommend_content {
        margin: 90px auto 130px;
    }
    section#recommend_content h2 {
        width: 416px;
        line-height: 86px;
        margin-bottom: 61px;
    }
    section#recommend_content .wrap {
        display: flex;
        align-items: center;
        gap: 0 44px;
        padding: 50px;
    }

    section#related_link {
        margin-top: 130px;
        padding: 105px 0 120px;
    }

    section#pamphlet_link, section#voice_link {
        margin-bottom: 130px;
    }

    .twocolumns.contact {
        margin-bottom: 16px;
    }

    .twocolumns.contact {
        margin-bottom: 15px;
    }
}


/* SP */
/* ----------------------------------------------- */
@media screen and (max-width: 767px) {
    section.mb {
        margin-bottom: 50px;
    }

    section#recommend_content {
        margin: 50px auto;
    }
    section#recommend_content h2 {
        width: 100%;
        line-height: 60px;
        margin-bottom: 30px;
    }
    section#recommend_content .wrap {
        padding: 15px;
    }
    section#recommend_content .wrap .details{
        padding-top: 20px;
    }

    section#related_link {
        margin-top: 50px;
        padding: 50px 0 70px;
    }
    section#related_link div.link_wrapper {
        flex-direction: column;
    }

    section#pamphlet_link, section#voice_link {
        margin-bottom: 50px;
    }

    .twocolumns.contact {
        margin-bottom: 0;
    }

    section#alumni table {
        display: table;
    }
    section#alumni table thead {
        display: table-header-group;
    }
    section#alumni table tbody {
        display: table-row-group;
    }
    section#alumni table thead tr, section#alumni table tbody tr {
        display: table-row;
    }
    section#alumni table tbody tr th, section#alumni table tbody tr td {
        display: table-cell;
    }
    section#alumni table tbody tr td:not(:first-child) {
        border-bottom: 1px solid var(--ueda-medium-gray);
    }
    section#alumni table tbody tr td {
        white-space: nowrap;
    }
}



#admission_outline .tab_wrapper #tokutai table .col1-r {
    border-right: var(--ueda-medium-gray) 1px solid;
    border-left: none;
}
/*
Description: Style common to PC & Smartphone for uedawjc.ac.jp/libhp
Note: CSS variable definitions are also included in this file
*/


/* Variables
----------------------------------------------- */
:root {

	/* Colors */
	--library-dark-pink: #C95A78;
}

@media print, screen and (min-width: 768px) {	/* PC */
	:root {
		/* Dimensions */
		--library-narrow-width: 860px;
	}
}

@media screen and (max-width: 767px) {	/* SP */
	:root {
		/* Dimensions */
		--library-narrow-width: 89.7436%;
	}
}



/* Common
----------------------------------------------- */
.barlow {
	font-weight: 400;
	font-style: normal;
}
:is(h1, h2, h3).underlined {	/* 2024.3 KAZ: added h1 */
	font-weight: bold;	/* 2024.3 KAZ: was 600 */
}
.entry-content :is(h1, h2, h3).underlined,	/* 2024.3 KAZ: added h1 */
.entry-content :is(h3, h4).pink {
	color: var(--ueda-strong-pink);
}
.entry-content h2.markonleft::before, .entry-content h3.markonleft::before {
	border-right: 0;
}
/* Font
----------------------------------------------- */

/* Header
----------------------------------------------- */
.page-title, .page .entry-title {
	font-family: SVbN, "Yu Gothic", SVbN, YuGothic, "qMmpS ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
}
.page-title .inner .ja, .page .entry-header .entry-title .inner .ja {
	color: var(--ueda-strong-pink);
	font-weight: 600;
}
.page-title .inner .en, .page .entry-title .inner .en {
	letter-spacing: inherit;
	margin-right: 0;
	font-family: 'Barlow', sans-serif;
}
#branding h1#headlogo {
/*	box-sizing: content-box; */	/* 2024.3 KAZ: Problems_m: c/o */
}
#headmenu ul#head_menu2 li.haschildren {
	position: relative;
}
#headmenu ul#head_menu2 li .submenu_panel > ul > li > a, #headmenu ul#head_menu2 li .submenu_panel > ul > li .child a {
	color: inherit;
}


/* Footer
----------------------------------------------- */
#ft_linkbtn {
	background-color: var(--ueda-bg-gray);
}
#ft_linkbtn ul {
}
#ft_linkbtn a.linkbtn {
}
#ft_linkbtn a.linkbtn::after {
}


/* Blog Page Components
----------------------------------------------- */
/* Archive */
#my-blog:not(.single-post) article .entry-header {
	padding: 0;
}
#my-blog:not(.single-post) article .entry-header a {
	display: block;
	color: inherit;
}
#my-blog:not(.single-post) article .entry-header h2 {
	line-height: 1.315;
}

/* Single */
.single-post .entry-header .parent-title {
	letter-spacing: inherit;
}
.single-post .entry-header .entry-title {
	line-height: 1.333;
}
.single-post .entry-header .parent-title::after {
	background-color: var(--ueda-strong-pink);
}


/* Front Page Components
----------------------------------------------- */
#my-libhp section h2 .en {
	color: var(--ueda-strong-pink) !important;
	letter-spacing: inherit;
	padding-bottom: 3px;
}

#top_mainvisual {
	height: auto;
}
.admin-bar #top_mainvisual {
	height: auto;
}

/* SEARCH */
#top_search {
	position: relative;
}
#top_search::before {	/* 2024.3 KAZ */
	background: url(/images/utan.png) no-repeat center / cover;
	display: block;
	position: absolute;
	width: 97px;
	height: 130px;
	top: -108px;
	content: '';
}
#top_search .wall {
	width: var(--library-narrow-width);
	background-color: white;
}
#my-libhp section:is(#top_search, #top_calendar) h2 {
	text-align: left;
}
#my-libhp section:is(#top_search, #top_calendar) h2 .en {
	display: inline;
	vertical-align: bottom;
	margin-right: 15px;
}
#my-libhp section:is(#top_search, #top_calendar) .ja {
}
#top_search form {
	position: relative;
}
#top_search input[type=text] {
	height: 50px;
	background-color: var(--ueda-bg-gray);
	border-color: var(--ueda-gray);
	border-radius: 25px;
	padding-left: 25px;
}
#top_search input[type=image] {
	position: absolute;
	top: 10px;
	right: 21px;
}
#top_search .link {
	text-align: right;
	padding-top: 5px;
}

/* CALENDAR */
#top_calendar {
	background-color: white;
}
#top_calendar h2 {
	position: relative;	/* KAZ */
}
#top_calendar .calendar {	/* KAZ */
}
#top_calendar iframe {	/* KAZ */
}
#top_calendar .link {
}

/* NEWS */
#top_news ul.news_list > li::after, #my-blog:not(.single-post) article::after {
	background-color: var(--ueda-strong-pink);
}

/* RECOMMENT */
#top_recommend {
	background-color: var(--ueda-bg-gray);
}
#top_recommend .wall {
	position: relative;
	width: 100%;
}
#top_recommend .slider_wrapper {
/*	justify-content: center; */
/*	gap: 0 30px; */
	margin-inline: auto;
	padding-bottom: 0;
}
#top_recommend .slider_wrapper .slick-list {
	overflow: visible;
/*	margin-inline: -15px; */
}
#top_recommend .slider_wrapper .slick-track {
	display: flex;
	flex-wrap: wrap;	/* for initial view */
}
#top_recommend .slider_wrapper .slick-slide {
	float: none;
	height: auto;
}
#top_recommend .slider_wrapper .slick-slide > div,
#top_recommend .slider_wrapper .slide,
#top_recommend .slider_wrapper .slide .inner {
	height: 100%;
}
#top_recommend .slider_wrapper .slide {
	padding: 0 15px;
}
#top_recommend .slider_wrapper .slide a {
	display: block;	/* 2024.3 KAZ */
}
#top_recommend .slider_wrapper .slide .inner {
}
#top_recommend .slider_wrapper .slide .imgonly {
	background-color: white;
	margin-bottom: 18px;
	padding: 20px;
}
#top_recommend .slider_wrapper .slide .imgonly a {
	height: 100%;	/* 2024.3 KAZ */
}
#top_recommend .slider_wrapper .slide .imgonly img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
#top_recommend .slider_wrapper .slide h4 {
	margin-bottom: 9px;
}
#top_recommend .slider_wrapper .slide h4 a {
	color: inherit;	/* 2024.3 KAZ */
}
#top_recommend .slider_wrapper .slide p {
	font-size: 0.875rem;	/* 14px */
	line-height: 1.714;
}
#top_recommend .slider_nav {
	position: relative;
	line-height: 0;	/* KAZ: missing */
}
#top_recommend .slider_nav .slick-arrow {
	background-color: rgba(237,26,83,0.75);
	border-radius: 50%;
	position: absolute;
	z-index: 1;
}
#top_recommend .slider_nav .slick-arrow.slick-disabled {
	display: none !important;
}
#top_recommend .slider_nav .slick-prev {
}
#top_recommend .slider_nav .slick-next {
}
#top_recommend .slider_nav .slick-arrow img {
}




/* SNS */
#top_sns {
}
#my-libhp section#top_sns .wall {
}
#top_sns .twitter_wrap {
/*	border: solid 1px var(--ueda-gray); */
/*	border-radius: 10px; */
}
#top_sns .twitter_wrap a.twitter-timeline {
	color: inherit;	/* KAZ */
}
#top_sns .instagram_wrap {
	padding: 10px;
	border: solid 1px var(--ueda-gray);
	border-radius: 10px;
}
#top_sns .right_wrap {
}
#top_sns .yomuzo {
	background: url(/images/img_yomuzo.png) no-repeat top 20px left 20px / 130px 130px var(--ueda-bg-gray);
}
#top_sns .yomuzo h3 {
	font-size: 1.125rem;	/* 18px */
}
#top_sns .yomuzo p {
	font-size: 0.875rem;	/* 14px */
	line-height: 1.714;
	margin-bottom: 0;
}
#top_sns .yomuzo .link {
}
#top_sns .newsletter {
/*	background: url(/images/img_newsletter.png) no-repeat top right /254px auto; */	/* 2024.3 KAZ: c/o */
}
#top_sns .newsletter h2 {
	text-align: left;
}
#top_sns .newsletter .latest {	/* 2024.3 KAZ */
}
#top_sns .newsletter p {
	font-size: 0.9375rem;	/* 15px */
}
#top_sns .newsletter .link {
}


/* LINK */
#top_link {
}
#top_link .wrap {
	border-bottom: solid 1px var(--ueda-gray);
}
#top_link .wrap#link_wrap01 {
	border-top: solid 1px var(--ueda-gray);
}
#top_link .wrap#link_wrap02 {
}
#top_link .wrap#link_wrap03 {
}
#top_link h3 {
	position: relative;
}
#top_link h3::before {
	content: "";
	display: inline-block;
	background: url(/images/icon_search_pink.svg) no-repeat center/cover;
	vertical-align: -7px;	/* 2024.3 KAZ: Problems_m: was middle */
}
#top_link .wrap ul {
	display: flex;
	flex-wrap: wrap;
	gap: 34px 35px;
}
#top_link .wrap ul > li {
}
#top_link .wrap ul > li a {
	display: block;
	color: inherit;
}
#top_link .wrap ul > li span {
	display: block;
}
#top_link .wrap ul > li .imgonly {
	width: 320px;
	height: auto;
}
#top_link .wrap ul > li .ttl {
	font-size: 1.125rem;	/* 18px */
	font-weight: 600;
	padding: 15px 0 5px;
}
#top_link .wrap ul > li .text {
	font-size: 0.875rem;	/* 14px */
	line-height: 1.714;
}





/* Fixed Page Components
----------------------------------------------- */
/* FORM */
.wpcf7 form .wpcf7-response-output {
	text-align: center;
}
:is(#my-request, #my-copy, #my-borrow) .form_message p {
}
section.lib_form {
}
section.lib_form .descr.note {
	font-size: 0.8125rem;	/* 13px */
	line-height: 1.769;
}
table.contactform .unit {
	font-size: 1.125rem;	/* 18px */
	padding-left: 14px;
}
table.contactform tr.short_textbox input[type="text"] {
}
table.contactform tr:is(.contact_type, .authority) td {
	position: relative;
}
table.contactform tr.contact_type .phone_number {
	position: absolute;
	top: 38px;
	right: 0;
}
table.contactform tr:is(.contact_type, .authority) .wpcf7-list-item {
	display: block;
}
table.contactform tr:is(.contact_type, .authority) .wpcf7-list-item {
	padding-left: 0;
}
table.contactform tr.authority {
}
table.contactform tr.authority .authority_text {
	position: absolute;
	bottom: -7px;
	right: 0;
}

/* BIV */
#my-biv {
}
#biv_intro {
}
#biv_intro p {
}
#biv_intro .img_wrap {
}
#biv_intro .img_wrap figure {
	margin-bottom: 0;
}
#biv_intro .img_wrap figcaption {
	font-size: 0.8125rem;	/* 13px */
}
#biv_latest {
}
#biv_latest .box.imgonly {
}
#biv_latest .box.imgonly a {
}
#biv_latest .box.imgonly a img {
}
#biv_backnumbers {
}
#biv_backnumbers h3 {
}
#biv_backnumbers p.note {
}
ul.bivevent_list {
}
ul.bivevent_list > li {
}
#biv_information {
}
#biv_access {
}
#biv_access .gmap {
	border: solid 1px #585858;
}
#biv_access .gmap iframe {
	width: 100%;
	height: 100%;
}
#biv_access p {
}

/* }ٍu */
#lectures_future {
}
.lecture_wrapper {
	background-color: var(--ueda-bg-gray);
}
.lecture_wrapper .lecture_pdf.imgonly {
}
.lecture_wrapper .lecture_pdf.imgonly a img {
	height: auto;
}
.lecture_wrapper .lecture_pdf.imgonly a::after {
	width: 38px !important;
	height: 38px !important;
	background-size: 22px auto !important;
}
.lecture_wrapper .info {
}
.lecture_wrapper .info .title {
	color: var(--ueda-strong-pink);
	font-weight: 600;
	line-height: 1.607;
}
.lecture_wrapper .info .datetime {
	font-weight: 600;
	line-height: 1.5;
}
.lecture_wrapper .info .descr {
}
.lecture_wrapper .event_form_link {
}
.lecture_wrapper .event_form_link a.linkbtn {
}
#lectures_past {
}
#lectures_past p.note {
}
#lectures_past .years {
}
#lectures_past .years .year {
}
#lectures_past .years .year h3 {
	border-bottom: solid 1px var(--ueda-medium-gray);
}
#lectures_past .years .year ul.lectures_list {
}
#lectures_past .years .year ul.lectures_list > li {
}
.entry-content .linktext::before, .entry-content .linktext::after {
	top: 11px;
}

/* }ٕ݂ */
ul.newsletter_list {
}



/*
Description: PC style for uedawjc.ac.jp/libhp
Note: Style for printing is also included in this file
*/


/* Responsive Structure
----------------------------------------------- */
/* General breakpoint for PC
----------------------------------------------- */
@media print, screen and (min-width: 768px) {

	/* Header */
	.page .entry-header.type-b {
		margin-bottom: 10px;
	}
	#branding:not(.floating) h1#headlogo,
	#branding:not(.floating) div#headlogo a {	/* 2024.3 KAZ: Problems_m: added */
		width: auto;	/* 2024.3 KAZ: Problems_m: was 323px */
		height: auto;	/* 2024.3 KAZ: Problems_m: was 66px */
		padding-top: 32px;	/* 2024.3 KAZ: Problems_m: added */
		padding-left: 40px;
	}
	#branding.floating h1#headlogo,
	#branding.floating div#headlogo a {
		width: 303px;
		padding-top: 10px;
		padding-left: 40px;
	}
	#headmenu #gnavi {
		padding-top: 50px;
		padding-right: 19px;
	}
	#branding.floating #headmenu #gnavi {
		padding-top: 19px;
	}
	#headmenu ul#head_menu2 > li > a,
	#headmenu ul#head_menu2 > li .parent a {
		padding-inline: 10px;
	}
	@media (any-hover: hover) {
		#headmenu ul#head_menu2 > li:hover .parent .nolink .text::after, #headmenu ul#head_menu2 > li .parent a .text::after, #headmenu ul#head_menu2 > li > a:hover .text::after {
			background-color: var(--library-dark-pink);
		}
	}
	#headmenu ul#head_menu2 li .submenu_panel {
		width: 270px;
		min-width: auto;
		border-top: 0;
		box-shadow: none;
		left: 50%;
		transform: translatex(-50%);
		padding: 40px;
	}
	#headmenu ul#head_menu2 li:not(.department) .submenu_panel > ul {
		columns: inherit;
		width: auto;
	}
	#headmenu ul#head_menu2 li .submenu_panel > ul {

	}
	#headmenu ul#head_menu2 li .submenu_panel > ul > li {
		width: 190px;
	}
	#headmenu ul#head_menu2 li .submenu_panel > ul > li > a, #headmenu ul#head_menu2 li .submenu_panel > ul > li .child a {
		font-size: 0.9375rem;	/* 15px */
	}


	/* Footer */
	#ft_linkbtn {
		padding: 120px 0;
	}
	#ft_linkbtn ul {
		width: calc(var(--ueda-min-width) - 20px);
		display: flex;
		flex-wrap: wrap;
		gap: 10px 20px;
		margin: 0 auto;
	}
	#ft_linkbtn a.linkbtn {
		width: 295px;
		line-height: 81px;
	}
	#ft_linkbtn a.linkbtn::after {
	}
	#ft_linkbtn a.linkbtn {
	}
	#ft_linkbtn a.linkbtn::after {
	}
	#colophon .wall {
	}
	#footlink {
		justify-content: flex-end;
	}


	/* Common */
/*	a.linkbtn.darkgray {
		position: relative;
		font-weight: 600;
	}
	a.linkbtn.darkgray::before {
		content: "";
		display: block;
		width: 0;
		height: 81px;
		background: rgba(0,0,0,0.5);
		transition: all 0.3s 0s ease;
		z-index: -1;
		position: absolute;
		top: 0;
		left: 0;
	}
	a.linkbtn.darkgray::after {
		background-color: #222222;
	}
	@media (any-hover: hover) {
		a.linkbtn.darkgray:hover {
			color: white;
			background-color: transparent;
			z-index: 1;
		}
		a.linkbtn.darkgray:hover::before {
			width: 100%;
		}
		a.linkbtn.darkgray:hover::after {
			background-color: white;
		}
	}
 Aki moved to uedawjc pc.css */


	/* Blog Page Components */
	/* Archive */

	/* Single */
	.single-post .entry-header {
		min-height: 245px;
	}
	#my-blog:not(.single-post) article .entry-header a {
		padding: 24px 25px 19px;
	}


	/* Front Page Components */
	#top_mainvisual {
/*		position: relative; */	/* 2024.3 KAZ: c/o */
	}
/*	#top_mainvisual::after {
 *		content: "";
 *		display: block;
 *		background: url(/images/utan.png) no-repeat center / cover;
 *		width: 233px;
 *		height: 311px;
 *		position: absolute;
 *		left: -20px;
 *		bottom: -15px;
 *		transform: rotate(22deg);
 *	}
 */	/* 2024.3 KAZ: c/o */
	#top_mainvisual .image {
		height: 36.319%;
		margin-left: 0;
	}

	/* SEARCH */
	#top_search {
		margin-top: -75px;
	}
	#top_search::before {	/* 2024.3 KAZ */
		left: 135px;
	}
	#top_search .wall {
		border-radius: 15px 15px 0 0;
		max-width: calc(100% - 515px);	/* KAZ */
		margin-left: 95px;
		padding: 27px 50px;
	}
	#top_search  h2 {	/* KAZ: was #my-libhp section:is(#top_search, #top_calendar) h2 */
		padding-bottom: 21px;
	}
	#my-libhp section:is(#top_search, #top_calendar) h2 .en {
	}
	#my-libhp section:is(#top_search, #top_calendar) h2 .ja {
	}
	#top_search form,
	#top_search input[type=text] {
		width: 760px;
		max-width: 100%;	/* KAZ */
	}
	#top_search input[type=text] {
	}
	#top_search input[type=image] {
	}
	#top_search .link {
	}

	/* CALENDAR */
	#top_calendar {
		border-radius: 15px 15px 0 0;
		position: absolute;
		top: max(20px, calc((100vw - 16px) * 0.36319 - 490px));	/* KAZ: was 35px */
		right: 30px;
		padding: 30px;	/* KAZ: was 27px 29px */
	}
	#my-libhp #top_calendar h2 {
		background-color: white;
		padding-bottom: 13px;
	}
	#top_calendar .calendar {	/* KAZ */
/*		width: calc(100% + 60px); */	/* 2024.4 KAZ: c/o */
/*		max-width: none; */	/* 2024.4 KAZ: c/o */
/*		margin-inline: -30px; */	/* 2024.4 KAZ: c/o */
	}
	#top_calendar iframe {	/* KAZ */
		width: 100%;
		height: 502px;	/* was actual max size: 592px */
/*		margin-top: -40px; */	/* 2024.4 KAZ: c/o */
	}
	#top_calendar .link {
	}

	/* NEWS */
	#top_news {
		padding-top: 40px;
		padding-bottom: 80px;
	}
	#top_news ul.news_list > li .title {
		line-height: 1.315;
	}

	/* RECOMMENT */
	#top_recommend {
		padding-top: 85px;
		padding-bottom: 60px;
	}
	#top_recommend .wall {
	}
	#top_recommend .slider_wrapper {
		width: 990px;
	}
	#top_recommend .slider_wrapper .slick-list {
	}
	#top_recommend .slider_wrapper .slick-track {
	}
	#top_recommend .slider_wrapper .slick-slide {
	}
	#top_recommend .slider_wrapper .slide {
		width: 330px;
	}
	#top_recommend .slider_wrapper .slide .inner {
	}
	#top_recommend .slider_wrapper .slide .imgonly {
		height: 300px;
	}
	#top_recommend .slider_wrapper .slide .imgonly  img {
	}
	#top_recommend .slider_wrapper .slide h4 {
		line-height: 1.5882;	/* 27px */
		font-size: 1.0625rem;	/* 17px */
	}
	#top_recommend .slider_wrapper .slide p {
	}
	#top_recommend .slider_nav {
	}
	#top_recommend .slider_nav .slick-arrow {
		width: 118px;
		height: 118px;
		top: 163px;
		padding-block: 44px;
	}
	#top_recommend .slider_nav .slick-prev {
		left: -20px;
		padding-left: 48px;
	}
	#top_recommend .slider_nav .slick-next {
		right: -20px;
		padding-left: 55px;
	}
	#top_recommend .slider_nav .slick-arrow img {
		width: 15px;
		height: 30px;
	}


	/* SNS */
	#top_sns {
		padding-top: 80px;
		padding-bottom: 85px;
	}
	#my-libhp section#top_sns .wall {
		display: flex;
		gap: 0 40px;
	}
	#top_sns .twitter_wrap {
		width: 380px;
		height: 580px;
	}
	#top_sns .instagram_wrap {
		width: 380px;
	}
	#top_sns .right_wrap {
		width: 610px;
	}
	#top_sns .yomuzo {
		padding: 25px 20px 24px 175px;
		margin-bottom: 50px;
	}
	#top_sns .yomuzo h3 {
		padding-bottom: 5px;
	}
	#top_sns .yomuzo p {
	}
	#top_sns .yomuzo .link {
	}
	#top_sns .newsletter {
		overflow: hidden;	/* 2024.3 KAZ */
/*		padding: 40px 280px 40px 0; */	/* 2024.3 KAZ: c/o */
	}
	#top_sns .newsletter h2,
	#top_sns .newsletter p,
	#top_sns .newsletter .link {
		width: 330px;	/* 2024.3 KAZ */
	}
	#top_sns .newsletter h2 {
		float: left;	/* 2024.3 KAZ */
		margin-top: 40px;	/* 2024.3 KAZ */
		padding-bottom: 37px;
	}
	#top_sns .newsletter .latest {	/* 2024.3 KAZ */
		float: right;
		width: 254px;
	}
	#top_sns .newsletter p {
	}
	#top_sns .newsletter .link {
	}


	/* LINK */
	#top_link {
		padding-bottom: 120px;
	}
	#top_link .wrap {
		padding: 46px 0;
	}
	#top_link .wrap#link_wrap01 {
		padding-top: 40px;
	}
	#top_link .wrap#link_wrap02 {
	}
	#top_link .wrap#link_wrap03 {
	}
	#top_link h3 {
		font-size: 1.6875rem; /* 27px */
		padding-bottom: 20px;
	}
	#top_link h3::before {
		width: 36px;
		height: 36px;
		margin-right: 20px;
	}
	#top_link .wrap ul {
	}
	#top_link .wrap ul > li {
	}
	#top_link .wrap ul > li a {
	}
	@media (any-hover: hover) {
		#top_link .wrap ul > li a:hover {
			text-decoration: none;
		}
	}
	#top_link .wrap ul > li .imgonly {
	}
	#top_link .wrap ul > li .ttl {
	}
	#top_link .wrap ul > li .text {
	}


	/* Fixed Page Components */
	.page #main .entry-content {
/*		padding-top: 10px; */
		padding-bottom: 120px;
	}

	/* FORM */
	.page:is(#my-request, #my-copy, #my-borrow) #main .entry-content {
/*		padding-top: 10px; Aki c/o */
	}
	:is(#my-request, #my-copy, #my-borrow) .form_message p {
		margin-bottom: 30px;
	}
	section.lib_form {
/*		padding-bottom: 143px; Aki c/o */
	}
	section.lib_form .descr.note {
		padding-bottom: 23px;
	}
	table.contactform .unit {
		padding-right: 44px;
	}
	table.contactform textarea {
		height: 158px;
	}
	table.contactform tr.contact_type .phone_number {
		width: 717px;
	}
	table.contactform tr.short_textbox input[type="text"] {
		width: 246px;
	}
	table.contactform tr.authority {
	}
	table.contactform tr.authority .authority_text {
		width: 697px;
	}

	/* BIV */
	#my-biv {
	}
	#biv_intro {
	}
	#biv_intro p {
		padding-bottom: 50px;
	}
	#biv_intro .img_wrap {
		display: flex;
		justify-content: space-between;
	}
	#biv_intro .img_wrap figure {
		width: 495px;
	}
	#biv_intro .img_wrap figcaption {
	}
	#biv_latest {
		overflow: hidden;
	}
	#biv_latest .box.imgonly {
		float: left;
		padding: 55px 80px;
/*		margin-right: 50px; */	/* 2024.3 KAZ: c/o */
	}
	#biv_latest .box.imgonly a {
	}
	#biv_latest .box.imgonly a img {
		width: 337px;
	}
	#biv_backnumbers {
		margin-left: 547px;	/* 2024.3 KAZ: instead */
	}
	#biv_backnumbers h3 {
		display: inline-block;
	}
	#biv_backnumbers p.note {
		margin-bottom: 45px;
	}
	ul.bivevent_list {
	}
	ul.bivevent_list > li {
		padding-bottom: 20px;
	}
	#biv_information {
		clear: both;
	}
	#biv_access {
	}
	#biv_access .wall {
		width: var(--ueda-narrow-width);
	}
	#biv_access .gmap {
		height: 600px;
		margin-bottom: 40px;
	}
	#biv_access .gmap iframe {
	}
	#biv_access p {
	}

	/* }ٍu */
	#lectures_future {
	}
	.lecture_wrapper {
		overflow: hidden;
		padding: 48px 67px 56px 81px;
		margin-bottom: 21px;
	}
	.lecture_wrapper .lecture_pdf.imgonly {
		float: left;
		margin-right: 52px;
	}
	.lecture_wrapper .lecture_pdf.imgonly a img {
		width: 225px;
	}
	.lecture_wrapper .lecture_pdf.imgonly a::after {
	}
	.lecture_wrapper .info {
		overflow: hidden;
	}
	.lecture_wrapper .info .title {
		font-size: 1.75rem;	/* 28px */
		padding-top: 20px;
	}
	.lecture_wrapper .info .datetime {
		font-size: 1.25rem;	/* 20px */
		padding-top: 25px;
	}
	.lecture_wrapper .info .descr {
		padding-top: 25px;
	}
	.lecture_wrapper .event_form_link {
		clear: both;
		padding-top: 7px;
		padding-left: 321px;
	}
	.lecture_wrapper .event_form_link a.linkbtn {
	}
	#lectures_past {
	}
	#lectures_past p.note {
		margin-bottom: 45px;
	}
	#lectures_past .years {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		gap: 25px 0;	/* 2024.3 KAZ: was 10px 0 */
	}
	#lectures_past .years .year {
		width: 495px;
	}
	#lectures_past .years .year h3 {
		padding-bottom: 25px;
	}
	#lectures_past .years .year ul.lectures_list {
		padding-right: 20px;
	}
	#lectures_past .years .year ul.lectures_list > li {
		padding-bottom: 20px;
	}

	/* }ٕ݂ */
	ul.newsletter_list {
		display: block;
		column-count: 2;
		gap: 0 40px;	/* 2024.3 KAZ: was 0 */
	}
	ul.newsletter_list li {
		break-inside: avoid-column;	/* 2024.3 KAZ: for Mac Safari problem */
		padding-bottom: 21px;	/* 2024.3 KAZ: was margin-bottom; for Mac Safari problem */
	}
	#newsletter_backnumbers {
		padding-bottom: 0;
	}










}




/* =Print
----------------------------------------------- */
@media print {



}

/*
Description: Smartphone style for uedawjc.ac.jp/libhp
*/


/* Responsive Structure
----------------------------------------------- */
/* General breakpoint for Tablet/SP
----------------------------------------------- */
@media screen and (max-width: 767px) {

	/* Header */
	#top_mainvisual, #top_mainvisual .image {
		width: 100%;
		height: 198px;
	}
	#top_mainvisual .image img {
		width: 100%;
		object-fit: cover;
	}
	#headlogo {
		max-width: calc(100% - 64px);	/* 2024.3 KAZ: Problems_m: added */
	}
	#branding:not(.floating):not(.gnavi_opened) h1#headlogo,	/* 2024.3 KAZ: Problems_m: added */
	#branding.floating h1#headlogo,
	#branding.gnavi_opened h1#headlogo,
	div#headlogo a {
		width: auto;	/* 2024.3 KAZ: Problems_m: was 76.41%; Aki was 79.2% */
		padding-top: 3px;	/* 2024.3 KAZ: Problems_m: added */
		padding-left: 14px;
	}
	.page-header, .page .entry-header.type-b {
		margin-bottom: 0;
	}
	#headmenu #gnavi {
		padding-top: 34px;	/* 2024.3 KAZ: Problems_m */
	}
	#headmenu ul#head_menu2 {
		padding-top: 0;	/* 2024.3 KAZ: Problems_m */
	}
	#headmenu ul#head_menu2 li .submenu_panel > ul > li > a, 
	#headmenu ul#head_menu2 li .submenu_panel > ul > li .child a {
		color: var(--ueda-strong-pink);
		font-family: 'Zen Old Mincho', serif;
	}


	/* Footer */
	#colophon .wall {
	}
	#footlink {
	}


	/* Common */
	.entry-content h2.markonleft::before, .entry-content h3.markonleft::before {
		top: 0;
		transform: none;	/* ɓstyle */
		bottom: 0;
		height: 100%;
	}
	#ft_linkbtn {
		padding: 60px 0;
	}
	#ft_linkbtn ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 10px 0;
	}

	/* Blog Page Components */
	#my-blog .page-header {
		margin-bottom: 50px;	/* 2024.3 Aki */
	}
	/* Archive */
	#my-blog:not(.single-post) article .entry-header a {
		width: 100%;	/* Aki was 79.2% */
		padding: 0 17px 15px 14px;
	}



	/* Single */
	.single-post .entry-header {
		min-height: auto;
	}



	/* Front Page Components */
	#my-libhp section h2 .en {
		font-size: 2.1875rem;	/* 35px */
	}

	/* SEARCH */
	#top_search {
		padding-top: 37px;
	}
	#top_search::before {	/* 2024.3 KAZ */
		left: 19px;
	}
	#top_search .wall {
	}
	#my-libhp section:is(#top_search, #top_calendar) h2 {	/* 2024.4 KAZ: back from #my-libhp #top_search h2 */
		padding-bottom: 32px;
	}
	#my-libhp section:is(#top_search, #top_calendar) h2 .en {
	}
	#my-libhp section:is(#top_search, #top_calendar) h2 .ja {
	}
	#top_search form {
		width: 100%;
	}
	#top_search input[type=text] {
		width: 100%;
	}
	#top_search input[type=image] {
	}
	#top_search .link {
		padding-top: 22px;
	}

	/* CALENDAR */
	#top_calendar {
		width: var(--library-narrow-width);
		padding-top: 40px;
		padding-bottom: 42px;
		margin: 0 auto;
	}
	#top_calendar h2 {
	}
	#top_calendar .calendar {	/* KAZ */
		height: 502px;	/* KAZ: was 600px; Aki */
	}
	#top_calendar iframe {	/* KAZ */
		width: 100%;
		height: 100%;
	}
	#top_calendar .link {
	}

	/* NEWS */
	#my-libhp section:is(#top_news, #top_recommend, #top_link) h2,
	#top_sns .newsletter h2 {
		text-align: left;
		margin-bottom: 27px;
	}
	#my-libhp section:is(#top_news, #top_recommend, #top_link) h2 .en,
	#top_sns .newsletter h2 .en {
		display: inline;
		margin-right: 15px;
	}
	#top_news {
		padding-bottom: 50px;
	}
	#top_news ul.news_list > li {
		padding-top: 5px;
	}
	#top_news ul.news_list > li .title {
	}
	#top_news .link {
		margin-top: 32px;
	}

	/* RECOMMENT */
	#top_recommend {
		padding-top: 50px;
		padding-bottom: 31px;	/* was 47px */
	}
	#top_recommend h2 {
		width: var(--library-narrow-width);
		margin: 0 auto 35px !important;
	}
	#top_recommend .wall {
	}
	#top_recommend .slider_wrapper {
		width: 280px;
	}
	#top_recommend .slider_wrapper .slick-list {
	}
	#top_recommend .slider_wrapper .slick-track {
	}
	#top_recommend .slider_wrapper .slick-slide {
	}
	#top_recommend .slider_wrapper .slide {
		width: 280px;
	}
	#top_recommend .slider_wrapper .slide .inner {
	}
	#top_recommend .slider_wrapper .slide .imgonly {
		height: 250px;
	}
	#top_recommend .slider_wrapper .slide .imgonly  img {
	}
	#top_recommend .slider_wrapper .slide h4 {
		line-height: 1.625;	/* 26px */
		font-size: 1rem;	/* 16px */
	}
	#top_recommend .slider_wrapper .slide p {
	}
	#top_recommend .slider_nav {
	}
	#top_recommend .slider_nav .slick-arrow {
		width: 54px;
		height: 54px;
		top: 89px;
		padding-block: 17px;
	}
	#top_recommend .slider_nav .slick-prev {
		left: -14px;
		padding-left: 24px;
	}
	#top_recommend .slider_nav .slick-next {
		right: -14px;
		padding-left: 20px;
	}
	#top_recommend .slider_nav .slick-arrow img {
		width: 10px;
		height: 20px;
	}

	/* SNS */
	#top_sns {
		padding-top: 52px;
	}
	#my-libhp section#top_sns .wall {
		width: 100%;
	}
	#top_sns :is(.twitter_wrap, .instagram_wrap, .newsletter) {
		width: var(--library-narrow-width);
		margin: 0 auto;
	}
	#top_sns .twitter_wrap {
		padding-bottom: 50px;
	}
	#top_sns .twitter_wrap > div {
		margin-left: auto;
		margin-right: auto;
	}
	#top_sns .instagram_wrap {
		width: 90%;
		margin: 0 auto 50px;
	}
	#top_sns .right_wrap {
	}
	#top_sns .yomuzo {
		background-size: 90px auto;
		padding: 10px 5.128% 10px calc(5.128% + 109px);
	}
	#top_sns .yomuzo h3 {
		padding-bottom: 8px;
		font-size: min(1.125rem, 4.6154vw);	/* 18 / 390; 2024.3 KAZ: Problems_m: added */
	}
	#top_sns .yomuzo p {
	}
	#top_sns .yomuzo .link {
	}
	#top_sns .newsletter {
/*		background-size: 184px auto; */	/* 2024.3 KAZ: c/o */
/*		background-position: top 122px center; */	/* 2024.3 KAZ: c/o */
		padding-top: 55px;
	}
	#top_sns .newsletter h2 {
/*		text-align: left; */
	}
	#top_sns .newsletter h2 .en {
		font-size: min(2.1875rem, 8.9744vw);	/* 35 / 390; 2024.3 KAZ */
	}
	#top_sns .newsletter .latest {	/* 2024.3 KAZ */
		margin-bottom: 20px;
		text-align: center;
	}
	#top_sns .newsletter .latest a {	/* 2024.3 KAZ */
		width: 184px;
	}
	#top_sns .newsletter p {
/*		padding-top: 280px; */	/* 2024.3 KAZ: c/o */
	}
	#top_sns .newsletter .link {
		text-align: center;
		margin-top: 23px;
	}


	/* LINK */
	#top_link {
		padding-bottom: 80px;
	}
	#top_link .wall {
		width: 100%;
	}
	#top_link h2 {
		width: var(--library-narrow-width);
		margin: 0 auto;
	}
	#top_link .wrap {
		padding: 20px 5.1282% 27px;
	}
	#top_link .wrap#link_wrap01 {
	}
	#top_link .wrap#link_wrap02 {
	}
	#top_link .wrap#link_wrap03 {
		border-bottom: solid 1px var(--ueda-gray);
	}
	#top_link h3 {
		font-size: 1.25rem;	/* 20px */
		padding-bottom: 25px;
	}
	#top_link h3::before {
		width: 30px;
		height: 30px;
		margin-right: 15px;
	}
	#top_link .wrap ul {
		gap: 27px 0;
		padding-inline: 4.2857%;	/* 15 / 350; 2024.3 KAZ: Problems_m: was padding-left: 18px */
	}
	#top_link .wrap ul > li {
	}
	#top_link .wrap ul > li a {
	}
	#top_link .wrap ul > li .imgonly {
		width: 100%;
	}
	#top_link .wrap ul > li .ttl {
		padding: 9px 0 5px;
	}
	#top_link .wrap ul > li .text {
	}





	/* Fixed Page Components */
	.page #main .entry-content {
		padding-bottom: 100px;
	}

	/* FORM */
	.page:is(#my-request, #my-copy, #my-borrow) #main .entry-content {
	}
	:is(#my-request, #my-copy, #my-borrow) .form_message p {
	}
	section.lib_form {
	}
	section.lib_form .descr.note {
	}
	table.contactform .unit {
		padding-left: 7px;
		padding-right: 14px;
	}
	table.contactform textarea {
	}
	table.contactform tr.contact_type .wpcf7-form-control-wrap .last {
		padding-top: 50px;
	}
	table.contactform tr.contact_type .phone_number {
		top: 80px;
	}
	table.contactform tr.short_textbox input[type="text"] {
		width: 50%;
		padding-left: 10px;
	}
	table.contactform tr.authority {
		padding-bottom: 50px;
	}
	table.contactform tr.authority .authority_text {
		bottom: -50px;
	}

	/* BIV */
	#my-biv {
	}
	#biv_intro {
	}
	#biv_intro p {
	}
	#biv_intro .img_wrap {
	}
	#biv_intro .img_wrap figure {
		margin-bottom: 15px;
	}
	#biv_intro .img_wrap figcaption {
	}
	#biv_latest {
	}
	#biv_latest .box.imgonly {
	}
	#biv_latest .box.imgonly a {
	}
	#biv_latest .box.imgonly a img {
	}
	#biv_backnumbers {
		padding-top: 50px;
	}
	#biv_backnumbers h3 {
		text-align: center;
	}
	#biv_backnumbers p.note {
	}
	ul.bivevent_list {
	}
	ul.bivevent_list > li {
	}
	#biv_information {
	}
	#biv_access {
	}
	#biv_access .gmap {
		height: 250px;
	}
	#biv_access .gmap iframe {
	}
	#biv_access p {
	}

	/* }ٍu */
	#lectures_future {
	}
	.lecture_wrapper {
		padding: 20px;
		margin-bottom: 15px;
	}
	.lecture_wrapper .lecture_pdf.imgonly {
		text-align: center;
	}
	.lecture_wrapper .lecture_pdf.imgonly a img {
	}
	.lecture_wrapper .lecture_pdf.imgonly a::after {
	}
	.lecture_wrapper .info {
		padding-top: 20px;
	}
	.lecture_wrapper .info .title {
		font-size: 1.25rem;	/* 20px */
	}
	.lecture_wrapper .info .datetime {
		padding-top: 10px;
	}
	.lecture_wrapper .info .descr {
		padding-top: 10px;
	}
	.lecture_wrapper .event_form_link {
		text-align: center;
	}
	.lecture_wrapper .event_form_link a.linkbtn {
	}
	#lectures_past {
	}
	#lectures_past p.note {
	}
	#lectures_past .years {
	}
	#lectures_past .years .year {
		margin-top: 25px;	/* 2024.3 KAZ: was 16px */
	}
	#lectures_past .years .year h3 {
	}
	#lectures_past .years .year ul.lectures_list {
		padding-right: 10px;
	}
	#lectures_past .years .year ul.lectures_list > li {
	}

	/* }ٕ݂ */
	ul.newsletter_list {
	}














}

[id^=sb-reviews-container-] .sb-feed-container svg{height:unset;max-width:unset}[id^=sb-reviews-container-] .sb-fs{width:100%;position:relative;float:left;box-sizing:border-box}.sbr-screenreader{text-indent:-9999px!important;display:block!important;width:0!important;height:0!important;line-height:0!important}[id^=sb-reviews-container-] .sb-feed-header::after,[id^=sb-reviews-container-] .sb-post-item::after{display:table;content:"";clear:both}[id^=sb-reviews-container-] .sb-header{height:64px;position:fixed;display:flex;flex-direction:row;justify-content:space-between;align-items:center;background:#fff;z-index:99;padding:0 20px}[id^=sb-reviews-container-] .sb-header-content{width:calc(100% - 160px);display:flex;flex-direction:row;justify-content:space-between;align-items:center;height:52px}[id^=sb-reviews-container-] .sb-customizer-header{position:fixed!important;padding:0 20px}[id^=sb-reviews-container-] .sb-fs{position:relative;float:left;box-sizing:border-box}[id^=sb-reviews-container-] .sb-feed-header-btn svg{width:17px}[id^=sb-reviews-container-] .sb-feed-header-bottom>div{display:inline-block}[id^=sb-reviews-container-] .sb-feed-header[data-align=left] .sb-feed-header-average,[id^=sb-reviews-container-] .sb-feed-header[data-align=right] .sb-feed-header-btn-ctn{float:left}[id^=sb-reviews-container-] .sb-feed-header[data-align=left] .sb-feed-header-btn-ctn,[id^=sb-reviews-container-] .sb-feed-header[data-align=right] .sb-feed-header-average{float:right}[id^=sb-reviews-container-] .sb-feed-header[data-align=center] .sb-feed-header-bottom>div{display:flex;justify-content:center}[id^=sb-reviews-container-] .sb-feed-header-average{display:inline-flex!important;align-items:center}[id^=sb-reviews-container-] .sb-feed-header-rating-icons{margin:0 5px;display:inline-flex;justify-content:center}body:not(.wp-admin) [id^=sb-reviews-container-] .sb-feed-header-rating-icons{line-height:1}[id^=sb-reviews-container-] .sb-feed-header-rating-icons svg{margin:0 7px;display:inline-flex;justify-content:center;width:18px;fill:currentColor;margin:0 2px}[data-layout=carousel] .sb-post-item-wrap,[data-layout=grid] .sb-post-item-wrap,[data-layout=list] .sb-post-item-wrap,[data-layout=masonry] .sb-post-item-wrap{width:100%;position:relative;float:left;box-sizing:border-box}[id^=sb-reviews-container-] .sb-post-item{position:relative}[data-layout=carousel] .sb-feed-posts .Carousel__RailWrapper-sc-hyhecw-1{width:100%}[data-post-style=regular][data-layout=list] .sb-post-item-wrap:last-of-type{border-bottom:0!important}[id^=sb-reviews-container-] .sb-grid-wrapper .sb-feed-posts{display:grid;column-gap:var(--column-gutter)}[id^=sb-reviews-container-] .sb-grid-wrapper[data-grid-columns="1"] .sb-feed-posts{grid-template-columns:1fr}[id^=sb-reviews-container-] .sb-grid-wrapper[data-grid-columns="2"] .sb-feed-posts{grid-template-columns:1fr 1fr}[id^=sb-reviews-container-] .sb-grid-wrapper[data-grid-columns="3"] .sb-feed-posts{grid-template-columns:1fr 1fr 1fr}[id^=sb-reviews-container-] .sb-grid-wrapper[data-grid-columns="4"] .sb-feed-posts{grid-template-columns:1fr 1fr 1fr 1fr}[id^=sb-reviews-container-] .sb-grid-wrapper[data-grid-columns="5"] .sb-feed-posts{grid-template-columns:1fr 1fr 1fr 1fr 1fr}[id^=sb-reviews-container-] .sb-grid-wrapper[data-grid-columns="6"] .sb-feed-posts{grid-template-columns:1fr 1fr 1fr 1fr 1fr 1fr}[id^=sb-reviews-container-] a.sb-feed-header-btn{text-decoration:none}[id^=sb-reviews-container-] .sb-item-provider-icon{position:absolute;width:24px;height:24px;right:10px;top:10px}[id^=sb-reviews-container-] .sb-item-provider-icon svg{width:24px;height:24px;float:left}[id^=sb-reviews-container-] .sb-item-provider-icon img{width:100%}[id^=sb-reviews-container-] .sb-item-author-ctn{display:flex;align-items:flex-start;float:left}[id^=sb-reviews-container-] .sb-item-author-img img{float:left}[id^=sb-reviews-container-] .sb-item-name-date span{display:block;width:100%}[id^=sb-reviews-container-] .sb-item-rating-ctn{display:inline-flex}[id^=sb-reviews-container-] .sb-item-rating{display:flex;align-items:center}[id^=sb-reviews-container-] .sb-item-rating-icon svg{fill:currentColor;margin:0 2px;float:left;width:20px;height:20px}[id^=sb-reviews-container-] .sb-item-rating-icon-dimmed svg{filter:grayscale(1)}[id^=sb-reviews-container-] .sb-feed-item-icon-half{display:inline-block;position:relative}[id^=sb-reviews-container-] .sb-item-rating-icon-halfdimmed{position:absolute;width:50%;overflow:hidden;left:0;top:0}[data-icon-size=small] .sb-item-rating-icon svg{width:16px;height:16px}[data-icon-size=medium] .sb-item-author-img,[data-icon-size=medium] .sb-item-author-img img{width:56px;min-width:56px;height:56px}[id^=sb-reviews-container-] .sb-load-button{height:auto}[id^=sb-reviews-container-] .sb-item-author-ctn,[id^=sb-reviews-container-] .sb-item-author-date-ctn,[id^=sb-reviews-container-] .sb-item-author-img,[id^=sb-reviews-container-] .sb-item-name-date>span,[id^=sb-reviews-container-] .sb-item-rating,[id^=sb-reviews-container-] .sb-item-text{z-index:1}[id^=sb-reviews-container-] .sb-item-author-date-ctn{padding-right:34px}[id^=sb-reviews-container-] .sbr-narrow .sb-item-author-date-ctn{padding-right:21px}[id^=sb-reviews-container-] .sbr-narrow .sb-item-author-img,[id^=sb-reviews-container-] .sbr-narrow .sb-item-author-img img{width:44px;min-width:44px;height:44px}[id^=sb-reviews-container-] .sbr-narrow .sb-item-provider-icon{width:20px;height:20px;right:1px;top:1px}[data-layout=carousel] .owl-nav button{position:absolute;width:30px;height:30px;top:calc(50% - 15px);left:0;display:inline-flex;opacity:.7;border-radius:50%;background:#fff!important;color:#000!important;box-shadow:0 0 5px 0 rgb(0 0 0 / 20%);overflow:hidden;line-height:99999;-webkit-transition:.2s;transition:.2s}[data-layout=carousel] .owl-nav button:before{content:'';position:absolute;width:8px;height:8px;top:10px;left:11px;border-left:2px solid currentColor;border-bottom:2px solid currentColor;-webkit-transform:rotate(45deg);transform:rotate(45deg)}[data-layout=carousel] .owl-nav .owl-next{left:unset;right:0}[data-layout=carousel] .owl-nav .owl-next:before{left:7px;-webkit-transform:rotate(-135deg);transform:rotate(-135deg)}[data-layout=carousel] .owl-nav button:hover{opacity:1}[data-layout=carousel] .owl-dots{position:relative;text-align:center;padding-right:4px}[data-layout=carousel] .owl-dot{width:10px;height:10px;background:#e6e6eb!important;border-radius:50px;margin:0 4px;display:inline-block}[data-layout=carousel] .owl-dot.active{background:#d0d0d8!important}[id^=sb-reviews-container-] .sbr-provider-google .sb-item-author-img,[id^=sb-reviews-container-] .sbr-provider-google img{border-radius:0!important}[id^=sb-reviews-container-] .sb-item-author-img,[id^=sb-reviews-container-] .sb-item-author-img img{width:56px;min-width:56px;height:56px;border-radius:50px}[id^=sb-reviews-container-] .sb-item-author-img{background-size:cover;background-position:center center}[id^=sb-reviews-container-] .sb-feed-posts::after{display:table;content:" ";clear:both}[id^=sb-reviews-container-] .sbr-hidden{visibility:hidden}.sbr-feed-error{border:1px solid #ddd;background:#eee;color:#333;margin:0 auto 10px;padding:10px 15px;font-size:13px;text-align:center;clear:both;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px}.sbr-feed-error p{padding:5px 0!important;margin:0!important;line-height:1.3!important;font-size:13px}.sbr-feed-error p:first-child b{font-size:14px}.sbr-feed-error ol,.sbr-feed-error ul{padding:5px 0 5px 20px!important;margin:0!important}.sbr-feed-error li{padding:1px 0!important;margin:0!important}.sbr-feed-error span{font-size:12px;font-style:italic}[id^=sb-reviews-container-] .sb-num-diff-hide{display:none}[id^=sb-reviews-container-] .sb-load-button-ctn{position:relative}[id^=sb-reviews-container-] .sb-expand{display:inline-block}[id^=sb-reviews-container-] .sb-more{margin-left:6px}[id^=sb-reviews-container-] .sb-media-wrap{width:100%;display:flex;justify-content:flex-start;flex-wrap:wrap;margin-top:15px;gap:8px}[id^=sb-reviews-container-] .sb-single-image,[id^=sb-reviews-container-] .sb-single-image img{height:64px;width:64px;border-radius:5px}[id^=sb-reviews-container-] .sb-single-image{background-position:center center;background-size:cover}[id^=sb-reviews-container-] .sb-single-image img{opacity:0;visibility:hidden}[id^=sb-reviews-container-] .sb-btn{align-items:center;border:0;border-radius:4px;box-shadow:0 2px 5px rgb(60 66 87 / 5%),0 1px 1px rgb(0 0 0 / 5%),inset 0 -1px 1px rgb(0 0 0 / 12%);cursor:pointer;display:flex;font-weight:600;justify-content:center;outline:0;padding:0;position:relative;transition:all .15s ease-in-out;color:#fff}[id^=sb-reviews-container-] .sb-btn[data-icon-position=left]:not([data-onlyicon=false]) .sb-btn-icon{margin-right:7px}[id^=sb-reviews-container-] .sb-feed-header-btn{padding:8px 20px 8px 12px}[id^=sb-reviews-container-] .sb-btn[data-icon-position=left]:not([data-onlyicon=false]){flex-direction:row}.sb-btn[data-boxshadow=false]:active,.sb-btn[data-boxshadow=false]:focus,[id^=sb-reviews-container-] .sb-btn[data-boxshadow=false]{box-shadow:none}[id^=sb-reviews-container-] .sb-btn:active{-webkit-transform:scale(.98);transform:scale(.98)}[id^=sb-reviews-container-] .sb-btn:focus{box-shadow:0 2px 5px rgba(60,66,87,.05),0 1px 1px rgba(0,0,0,.05),inset 0 -1px 1px rgba(0,0,0,.12)}[id^=sb-reviews-container-] .sb-btn[data-full-width=true]{width:100%}[id^=sb-reviews-container-] .sb-load-button{padding:15px 0 15px 0;color:#141b38}[id^=sb-reviews-container-] .sb-feed-header-btn svg{width:17px}.sb-btn svg path,[id^=sb-reviews-container-] .sb-btn svg{fill:currentColor}[id^=sb-reviews-container-] .sb-btn svg{float:left;height:auto}[id^=sb-reviews-container-] .sb-single-image{position:relative}[id^=sb-reviews-container-] .sb-thumbnail-hover{box-sizing:border-box;opacity:0;display:block;position:absolute;top:0;right:0;bottom:0;left:0;z-index:10;color:#fff;background:#333;border-radius:5px;background:rgba(0,0,0,.6);transition:opacity .6s ease-in-out;-moz-transition:opacity .6s ease-in-out;-webkit-transition:opacity .6s ease-in-out}[id^=sb-reviews-container-] .sb-thumbnail-hover:hover{opacity:1;display:block;transition:opacity .2s ease-in-out;-moz-transition:opacity .2s ease-in-out;-webkit-transition:opacity .2s ease-in-out}[id^=sb-reviews-container-] .sbr-loader{width:20px;height:20px;position:relative;top:50%;left:50%;margin:-10px 0 0 -10px;background-color:#000;background-color:rgba(0,0,0,.5);border-radius:100%;-webkit-animation:sbr-sk-scaleout 1s infinite ease-in-out;animation:sbr-sk-scaleout 1s infinite ease-in-out}[id^=sb-reviews-container-] .sb-load-button-ctn .sbr-loader{position:absolute;margin-top:-11px;background-color:#fff;opacity:1}@-webkit-keyframes sbr-sk-scaleout{0%{-webkit-transform:scale(0)}100%{-webkit-transform:scale(1);opacity:0}}@keyframes sbr-sk-scaleout{0%{-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0)}100%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1);opacity:0}}.sbr_lightboxOverlay{position:absolute;top:0;left:0;z-index:99999;background-color:#000;opacity:.9;display:none}#sbr_lightbox{display:none}.sbr_lightbox{position:absolute;left:0;width:100%;z-index:100000;line-height:0;font-weight:400}.sbr_lightbox .sbr_lb-image{display:block;height:auto;max-width:inherit;-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;border-radius:3px}.sbr_lightbox a:active,.sbr_lightbox a:focus,.sbr_lightbox a:hover{outline:0}.sbr_lightbox a img{border:none}.sbr_lb-outerContainer{position:relative;background-color:#000;width:250px;height:250px;margin:0 auto 5px auto;-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;border-radius:3px}.sbr_lb-outerContainer:after{content:"";display:table;clear:both}.sbr_lb-container{position:relative;padding:4px;top:0;left:0;width:100%;height:100%;bottom:0;right:0;-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;border-radius:3px}.sbr_lb-loader{position:absolute;top:43%;left:0;height:25%;width:100%;text-align:center;line-height:0}.sbr_lb-cancel{display:block;width:32px;height:32px;margin:0 auto;background-color:#666;background-color:rgba(255,255,255,.5);border-radius:100%;-webkit-animation:ctf-sk-scaleout 1s infinite ease-in-out;animation:ctf-sk-scaleout 1s infinite ease-in-out}.sbr_lb-nav{top:0;left:0;width:100%;z-index:10}.sbr_lb-container>.nav{left:0}.sbr_lb-nav a{position:absolute;z-index:100;top:0;height:90%;outline:0;background-image:url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==')}.sbr_lb-next,.sbr_lb-prev{height:100%;cursor:pointer;display:block}.sbr_lb-nav a.sbr_lb-prev{width:50px;left:-70px;padding-left:10px;padding-right:10px;float:left;opacity:.5;-webkit-transition:opacity .2s;-moz-transition:opacity .2;-o-transition:opacity .2s;transition:opacity .2s}.sbr_lb-nav a.sbr_lb-prev:hover{opacity:1}.sbr_lb-nav a.sbr_lb-next{width:50px;right:-70px;padding-left:10px;padding-right:10px;float:right;opacity:.5;-webkit-transition:opacity .2s;-moz-transition:opacity .2s;-o-transition:opacity .2s;transition:opacity .2s}.sbr_lb-nav a.sbr_lb-next:hover{opacity:1}.sbr_lb-nav span{display:block;top:55%;position:absolute;left:20px;width:34px;height:45px;margin:-25px 0 0 0;background:url(/wp-content/plugins/reviews-feed/assets/images/sprite.png) no-repeat}.sbr_lb-nav a.sbr_lb-prev span{background-position:-53px 0}.sbr_lb-nav a.sbr_lb-next span{left:auto;right:20px;background-position:-18px 0}.sbr_lb-dataContainer{margin:0 auto;padding-top:5px;width:100%;font-family:"Open Sans",Helvetica,Arial,sans-serif;-moz-border-radius-bottomleft:4px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;-moz-border-radius-bottomright:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px}.sbr_lb-dataContainer:after{content:"";display:table;clear:both}.sbr_lb-data{padding:0 4px;color:#ccc}.sbr_lb-data .sbr_lb-details{width:85%;float:left;text-align:left;line-height:1.1}.sbr_lb-data .sbr_lb-caption{float:left;font-size:13px;font-weight:400;line-height:1.3;padding-bottom:3px;color:#ccc;word-wrap:break-word;-webkit-hyphens:auto;-moz-hyphens:auto;hyphens:auto}.sbr_lb-data .sbr_lb-caption .ctf-screename-sep,.sbr_lb-data .sbr_lb-caption a{color:#ccc;font-weight:700;text-decoration:none}.sbr_lb-data .sbr_lb-caption a:hover{color:#fff;text-decoration:underline}.sbr_lb-data .sbr_lb-caption .sbr_lightbox_username{float:left;width:100%;color:#ccc;padding-bottom:0;display:block;margin:0 0 5px 0}.sbr_lb-data .sbr_lb-caption .sbr_lightbox_username{color:#ccc}.sbr_lb-data .sbr_lb-caption .sbr_lightbox_username:hover p{color:#fff;text-decoration:underline}.sbr_lightbox .sbr_lightbox_username img{float:left;border:none;width:48px;height:48px;margin-right:10px;background:#666;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.sbr_lightbox_username p{float:left;margin:0;padding:0;color:#ccc;line-height:32px;font-weight:700;font-size:13px;text-align:left}.sbr_lb-data .ctf-caption-text{width:100%;margin-left:58px;padding-top:3px}.sbr_lb-data .sbr_lb-caption .ctf-author-screenname,.sbr_lb-data .sbr_lb-caption .ctf-tweet-date{font-weight:400}.sbr_lb-data .sbr_lb-info{width:100%;float:left;clear:both}.sbr_lb-data .sbr_lb-number{display:block;float:left;clear:both;padding:5px 0 15px 0;font-size:12px;color:#999}.sbr_lb-data .sbr_lb-close{display:block;float:right;width:30px;height:30px;background:url(/wp-content/plugins/reviews-feed/assets/images/close.png) top right no-repeat;text-align:right;outline:0;opacity:.7;-webkit-transition:opacity .2s;-moz-transition:opacity .2s;-o-transition:opacity .2s;transition:opacity .2s}.sbr_lb-data .sbr_lb-close:hover{cursor:pointer;opacity:1}.sbr_lb-nav{height:auto}.sbr_lb-container{padding:0}.sbr_lb-container iframe{position:absolute;top:0;left:0;width:100%;height:100%;z-index:1}#sbr_lightbox .sbr_lightbox_action{float:left;position:relative;padding:0 0 0 10px;margin:5px 0 0 10px;border-left:1px solid #666;font-size:12px}#sbr_lightbox .sbr_lightbox_action a{display:block;float:left;color:#999;text-decoration:none}#sbr_lightbox .sbr_lightbox_action a:focus,#sbr_lightbox .sbr_lightbox_action a:hover{color:#fff}#sbr_lightbox .sbr_lightbox_action .fa,#sbr_lightbox .sbr_lightbox_action svg{margin-right:5px}#sbr_lightbox .sbr_lightbox_action.sbr_youtube .fa{font-size:13px}#sbr_lightbox .sbr_tooltip_social a svg{font-size:19px;padding:3px 4px;margin:auto}#sbr_lightbox .sbr_lightbox_tooltip{display:none;position:absolute;width:100px;bottom:22px;left:0;padding:5px 10px;margin:0;background:rgba(255,255,255,.9);color:#222;font-size:12px;line-height:1.3;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;box-shadow:0 0 10px rgba(0,0,0,.4);-moz-box-shadow:0 0 10px rgba(0,0,0,.4);-webkit-box-shadow:0 0 10px rgba(0,0,0,.4);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#sbr_lightbox .sbr_lightbox_tooltip .fa-play{position:absolute;font-size:8px;bottom:-6px;left:36px;color:rgba(255,255,255,.9)}#sbr_lightbox .sbr_tooltip_social a .fa{font-size:16px;margin:0;padding:5px}#sbr_lightbox .sbr_tooltip_social a#sbr_facebook_icon .fa,#sbr_lightbox .sbr_tooltip_social a#sbr_pinterest_icon .fa,#sbr_lightbox .sbr_tooltip_social a#sbr_twitter_icon .fa{padding-top:4px;font-size:18px}#sbr_lightbox .sbr_gdpr_notice{z-index:6;display:block;position:absolute;top:50%;left:50%;margin-left:-44px;margin-top:-44px;padding:20px}#sbr_lightbox .sbr_gdpr_notice svg:not(:root).svg-inline--fa{position:relative;display:block!important;height:48px;width:48px;opacity:.8}#sbr_lightbox .sbr_gdpr_notice:hover svg:not(:root).svg-inline--fa{opacity:1}#sbr_lightbox #sbr_mod_box{width:280px;padding:5px 10px 7px 10px}#sbr_lightbox .sbr_tooltip_social{width:172px;padding:5px 5px 4px 5px}#sbr_lightbox .sbr_tooltip_social a{color:#333;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px}#sbr_lightbox .sbr_lightbox_action #sbr_facebook_icon:hover{background:#3b5998}#sbr_lightbox .sbr_lightbox_action #sbr_twitter_icon:hover{background:#00aced}#sbr_lightbox .sbr_lightbox_action #sbr_google_icon:hover{background:#dd4b39}#sbr_lightbox .sbr_lightbox_action #sbr_linkedin_icon:hover{background:#007bb6}#sbr_lightbox .sbr_lightbox_action #sbr_pinterest_icon:hover{background:#cb2027}#sbr_lightbox .sbr_lightbox_action #sbr_email_icon:hover{background:#333}.sbr_lb-dataContainer,.sbr_lb-outerContainer{min-width:450px}@media all and (max-width:450px){.sbr_lb-dataContainer,.sbr_lb-outerContainer{min-width:0}}.sbr_lightbox .sbr_lb-image{display:block;height:auto;max-width:inherit;margin:0 auto;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0}.sb-feed-posts.sbr_carousel{display:none;width:100%;-webkit-tap-highlight-color:transparent;position:relative;z-index:1}.sbr_carousel{direction:ltr}.sb-carousel-wrap .sb-feed-posts,.sbr_carousel .sbr_owl2row-item{display:none}.sbr-owl-stage{position:relative;-ms-touch-action:pan-Y;-moz-backface-visibility:hidden}.sbr-owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.sbr-owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.sbr-owl-item,.sbr-owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.sbr-owl-item{position:relative;min-height:1px;padding:0 5px;padding:0;float:left;-webkit-backface-visibility:hidden;-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none}.sbr-owl-item img{display:block;width:100%}.sbr-owl-dots.disabled,.sbr-owl-nav.disabled{display:none}.sbr-owl-dot,.sbr-owl-nav .sbr-owl-next,.sbr-owl-nav .sbr-owl-prev{cursor:pointer;cursor:hand;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.sbr_carousel.sbr-owl-loaded{display:block}.sbr_carousel.sbr-owl-loading{opacity:0;display:block}.sbr_carousel.sbr-owl-hidden{opacity:0}.sbr_carousel.sbr-owl-refresh .sbr-owl-item{visibility:hidden}.sbr_carousel.sbr-owl-drag .sbr-owl-item{padding:0 calc(var(--column-gutter)/ 2);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.sbr_carousel.sbr-owl-grab{cursor:move;cursor:grab}.sbr_carousel.sbr-owl-rtl{direction:rtl}.sbr_carousel.sbr-owl-rtl .sbr-owl-item{float:right}.sbr-owl-height{transition:height .5s ease-in-out}.sbr-owl-nav{margin-top:10px;text-align:center;-webkit-tap-highlight-color:transparent}.sbr-owl-nav{margin-top:0}.sbr-owl-nav .disabled{opacity:.5;cursor:default}.sbr-owl-nav.disabled+.sbr-owl-dots{margin-top:10px}.sbr-owl-dots{text-align:center;-webkit-tap-highlight-color:transparent;padding:5px 0;margin-top:5px}.sbr-owl-dots .sbr-owl-dot{display:inline-block;zoom:1}.sbr-owl-dots .sbr-owl-dot span{display:block;width:12px;height:12px;margin:5px 7px;background:#333;filter:Alpha(Opacity=25);opacity:.25;-webkit-backface-visibility:visible;transition:opacity .1s ease;border-radius:30px}.sbr-owl-dots .sbr-owl-dot.active span,.sbr-owl-dots .sbr-owl-dot:hover span{filter:Alpha(Opacity=100);opacity:1}.sbr-owl-item{display:inline-block;vertical-align:top}.sbr-owl-stage-outer{overflow-x:hidden;overflow-y:hidden}.sbr-owl-item>div{width:100%!important}.sbr-post-links{max-width:100%}.sbr-owl-item{box-sizing:border-box}.sbr-owl-nav>div{position:absolute;top:50%;font-size:14px;display:inline-block;line-height:1;background:rgba(255,255,255,.3);padding:6px 6px 6px 8px;border-radius:50%;margin-top:-15px;color:#000;box-shadow:0 0 5px 0 rgba(0,0,0,.2);-webkit-transition:all .5s;-moz-transition:all .5s;-o-transition:all .5s;transition:all .5s}.sbr_carousel:hover .sbr-owl-nav>div{background:rgba(255,255,255,.5);box-shadow:0 0 5px 0 rgba(0,0,0,.5);-webkit-transform:scale(1.1);-moz-transform:scale(1.1);-ms-transform:scale(1.1);-o-transform:scale(1.1);transform:scale(1.1)}.sbr_carousel:hover .sbr-owl-nav>div:hover{cursor:pointer;background:#fff}.sbr-owl-nav .sbr-owl-prev{margin-left:7px;padding:6px 8px 6px 6px;left:0}.sbr-owl-nav .sbr-owl-next{margin-right:7px;right:0}.sbr-owl-nav>div{z-index:999;background:#fff}.sbr_carousel .sbr-owl-nav svg{height:1.2em;box-sizing:unset;overflow:visible;width:1em;display:inline-block;font-size:inherit;vertical-align:-.125em}[id^=sb-reviews-container-] .sb-cols-2 .sb-post-item-wrap{width:calc(50% - calc((var(--column-gutter) * 1)/ 2))}[id^=sb-reviews-container-] .sb-cols-3 .sb-post-item-wrap{width:calc(33.33% - calc((var(--column-gutter) * 2)/ 3))}[id^=sb-reviews-container-] .sb-cols-4 .sb-post-item-wrap{width:calc(25% - calc((var(--column-gutter) * 3)/ 4))}[id^=sb-reviews-container-] .sb-cols-5 .sb-post-item-wrap{width:calc(20% - calc((var(--column-gutter) * 4)/ 5))}[id^=sb-reviews-container-] .sb-cols-6 .sb-post-item-wrap{width:calc(16.66% - calc((var(--column-gutter) * 5)/ 6))}[id^=sb-reviews-container-] .sb-cols-7 .sb-post-item-wrap{width:calc(14.28% - calc((var(--column-gutter) * 6)/ 7))}[id^=sb-reviews-container-] .sb-cols-8 .sb-post-item-wrap{width:calc(12.5% - calc((var(--column-gutter) * 7)/ 8))}[id^=sb-reviews-container-] .sb-cols-9 .sb-post-item-wrap{width:calc(11.11% - calc((var(--column-gutter) * 8)/ 9))}[id^=sb-reviews-container-] .sb-cols-10 .sb-post-item-wrap{width:calc(10% - calc((var(--column-gutter) * 9)/ 10))}@media all and (max-width:640px){[id^=sb-reviews-container-] .sb-colstablet-1 .sb-post-item-wrap{width:100%}[id^=sb-reviews-container-] .sb-colstablet-2 .sb-post-item-wrap{width:calc(50% - calc((var(--column-gutter) * 1)/ 2))}[id^=sb-reviews-container-] .sb-colstablet-3 .sb-post-item-wrap{width:calc(33.33% - calc((var(--column-gutter) * 2)/ 3))}[id^=sb-reviews-container-] .sb-colstablet-4 .sb-post-item-wrap{width:calc(25% - calc((var(--column-gutter) * 3)/ 4))}[id^=sb-reviews-container-] .sb-colstablet-5 .sb-post-item-wrap{width:calc(20% - calc((var(--column-gutter) * 4)/ 5))}[id^=sb-reviews-container-] .sb-colstablet-6 .sb-post-item-wrap{width:calc(16.66% - calc((var(--column-gutter) * 5)/ 6))}[id^=sb-reviews-container-] .sb-colstablet-7 .sb-post-item-wrap{width:calc(14.28% - calc((var(--column-gutter) * 6)/ 7))}[id^=sb-reviews-container-] .sb-colstablet-8 .sb-post-item-wrap{width:calc(12.5% - calc((var(--column-gutter) * 7)/ 8))}[id^=sb-reviews-container-] .sb-colstablet-9 .sb-post-item-wrap{width:calc(11.11% - calc((var(--column-gutter) * 8)/ 9))}[id^=sb-reviews-container-] .sb-colstablet-10 .sb-post-item-wrap{width:calc(10% - calc((var(--column-gutter) * 9)/ 10))}[id^=sb-reviews-container-] .sb-grid-wrapper[data-grid-tablet-columns="1"] .sb-feed-posts{grid-template-columns:1fr}[id^=sb-reviews-container-] .sb-grid-wrapper[data-grid-tablet-columns="2"] .sb-feed-posts{grid-template-columns:1fr 1fr}[id^=sb-reviews-container-] .sb-grid-wrapper[data-grid-tablet-columns="3"] .sb-feed-posts{grid-template-columns:1fr 1fr 1fr}[id^=sb-reviews-container-] .sb-grid-wrapper[data-grid-tablet-columns="4"] .sb-feed-posts{grid-template-columns:1fr 1fr 1fr 1fr}[id^=sb-reviews-container-] .sb-grid-wrapper[data-grid-tablet-columns="5"] .sb-feed-posts{grid-template-columns:1fr 1fr 1fr 1fr 1fr}[id^=sb-reviews-container-] .sb-grid-wrapper[data-grid-tablet-columns="6"] .sb-feed-posts{grid-template-columns:1fr 1fr 1fr 1fr 1fr 1fr}}@media all and (max-width:480px){[id^=sb-reviews-container-] .sb-colsmobile-1 .sb-post-item-wrap{width:100%}[id^=sb-reviews-container-] .sb-colsmobile-2 .sb-post-item-wrap{width:calc(50% - calc((var(--column-gutter) * 1)/ 2))}[id^=sb-reviews-container-] .sb-colsmobile-3 .sb-post-item-wrap{width:calc(33.33% - calc((var(--column-gutter) * 2)/ 3))}[id^=sb-reviews-container-] .sb-colsmobile-4 .sb-post-item-wrap{width:calc(25% - calc((var(--column-gutter) * 3)/ 4))}[id^=sb-reviews-container-] .sb-colsmobile-5 .sb-post-item-wrap{width:calc(20% - calc((var(--column-gutter) * 4)/ 5))}[id^=sb-reviews-container-] .sb-colsmobile-6 .sb-post-item-wrap{width:calc(16.66% - calc((var(--column-gutter) * 5)/ 6))}[id^=sb-reviews-container-] .sb-colsmobile-7 .sb-post-item-wrap{width:calc(14.28% - calc((var(--column-gutter) * 6)/ 7))}[id^=sb-reviews-container-] .sb-colsmobile-8 .sb-post-item-wrap{width:calc(12.5% - calc((var(--column-gutter) * 7)/ 8))}[id^=sb-reviews-container-] .sb-colsmobile-9 .sb-post-item-wrap{width:calc(11.11% - calc((var(--column-gutter) * 8)/ 9))}[id^=sb-reviews-container-] .sb-colsmobile-10 .sb-post-item-wrap{width:calc(10% - calc((var(--column-gutter) * 9)/ 10))}[id^=sb-reviews-container-] .sb-grid-wrapper[data-grid-mobile-columns="1"] .sb-feed-posts{grid-template-columns:1fr}[id^=sb-reviews-container-] .sb-grid-wrapper[data-grid-mobile-columns="2"] .sb-feed-posts{grid-template-columns:1fr 1fr}[id^=sb-reviews-container-] .sb-grid-wrapper[data-grid-mobile-columns="3"] .sb-feed-posts{grid-template-columns:1fr 1fr 1fr}[id^=sb-reviews-container-] .sb-grid-wrapper[data-grid-mobile-columns="4"] .sb-feed-posts{grid-template-columns:1fr 1fr 1fr 1fr}[id^=sb-reviews-container-] .sb-grid-wrapper[data-grid-mobile-columns="5"] .sb-feed-posts{grid-template-columns:1fr 1fr 1fr 1fr 1fr}[id^=sb-reviews-container-] .sb-grid-wrapper[data-grid-mobile-columns="6"] .sb-feed-posts{grid-template-columns:1fr 1fr 1fr 1fr 1fr 1fr}}[id^=sb-reviews-container-] .sb-item-title{margin-bottom:8px;font-weight:600;font-size:16px;clear:both}[id^=sb-reviews-container-] .sb-item-pros-cons{margin-bottom:12px;font-size:.95em}[id^=sb-reviews-container-] .sb-item-cons,[id^=sb-reviews-container-] .sb-item-pros{margin-bottom:6px;line-height:1.5}[id^=sb-reviews-container-] .sb-pros-label{font-weight:600;color:#28a745;margin-right:4px}[id^=sb-reviews-container-] .sb-cons-label{font-weight:600;color:#dc3545;margin-right:4px}[id^=sb-reviews-container-] .sb-cons-text,[id^=sb-reviews-container-] .sb-pros-text{color:#333}[id^=sb-reviews-container-] .sb-item-reviewer-photos{margin-top:12px;display:flex;flex-wrap:wrap;gap:8px}[id^=sb-reviews-container-] .sb-reviewer-photo-link{display:inline-block;border-radius:4px;overflow:hidden;transition:transform .2s ease;cursor:pointer}[id^=sb-reviews-container-] .sb-reviewer-photo-link:hover{transform:scale(1.05)}[id^=sb-reviews-container-] .sb-reviewer-photo{display:block;width:90px;height:90px;object-fit:cover;border-radius:4px}.sbr-lightbox-overlay{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.9);z-index:999999;display:none;align-items:center;justify-content:center;opacity:0;transition:opacity .3s ease}.sbr-lightbox-overlay.sbr-active{display:flex;opacity:1}.sbr-lightbox-content{position:relative;max-width:90%;max-height:90%;display:flex;align-items:center;justify-content:center}.sbr-lightbox-image{max-width:100%;max-height:90vh;object-fit:contain;border-radius:4px}.sbr-lightbox-close{position:absolute;top:20px;right:20px;width:40px;height:40px;background:rgba(255,255,255,.2);border:none;border-radius:50%;cursor:pointer;font-size:24px;color:#fff;display:flex;align-items:center;justify-content:center;transition:background .2s ease;z-index:1000000}.sbr-lightbox-close:hover{background:rgba(255,255,255,.3)}.sbr-lightbox-nav{position:absolute;top:50%;transform:translateY(-50%);width:50px;height:50px;background:rgba(255,255,255,.2);border:none;border-radius:50%;cursor:pointer;font-size:24px;color:#fff;display:none;align-items:center;justify-content:center;transition:background .2s ease}.sbr-lightbox-nav:hover{background:rgba(255,255,255,.3)}.sbr-lightbox-nav.sbr-prev{left:20px}.sbr-lightbox-nav.sbr-next{right:20px}.sbr-lightbox-overlay.sbr-has-multiple .sbr-lightbox-nav{display:flex}.sbr-lightbox-loading{position:absolute;width:40px;height:40px;border:3px solid rgba(255,255,255,.3);border-top-color:#fff;border-radius:50%;animation:sbr-spin .8s linear infinite}@keyframes sbr-spin{to{transform:rotate(360deg)}}#sb_instagram{width:100%;margin:0 auto;padding:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#sb_instagram #sbi_images,#sb_instagram.sbi_fixed_height{-webkit-box-sizing:border-box;-moz-box-sizing:border-box}#sb_instagram:after,.sbi_lb-commentBox:after,.sbi_lb-data:after,.sbi_lb-dataContainer:after,.sbi_lb-outerContainer:after{content:"";display:table;clear:both}#sb_instagram.sbi_fixed_height{overflow:hidden;overflow-y:auto;box-sizing:border-box}#sb_instagram #sbi_images{box-sizing:border-box;display:grid;width:100%;padding:12px 0}#sb_instagram .sbi_header_link{-webkit-box-shadow:none;box-shadow:none}#sb_instagram .sbi_header_link:hover,.sbi_lightbox a img{border:none}#sb_instagram #sbi_images .sbi_item{display:inline-block;width:100%;vertical-align:top;zoom:1;margin:0!important;text-decoration:none;opacity:1;overflow:hidden;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:.5s;-moz-transition:.5s;-o-transition:.5s;transition:.5s}#sb_instagram #sbi_images .sbi_item.sbi_transition{opacity:0}#sb_instagram.sbi_col_1 #sbi_images,#sb_instagram.sbi_col_1.sbi_disable_mobile #sbi_images{grid-template-columns:repeat(1,1fr)}#sb_instagram.sbi_col_2 #sbi_images,#sb_instagram.sbi_col_2.sbi_disable_mobile #sbi_images{grid-template-columns:repeat(2,1fr)}#sb_instagram.sbi_col_3 #sbi_images,#sb_instagram.sbi_col_3.sbi_disable_mobile #sbi_images{grid-template-columns:repeat(3,1fr)}#sb_instagram.sbi_col_4 #sbi_images,#sb_instagram.sbi_col_4.sbi_disable_mobile #sbi_images{grid-template-columns:repeat(4,1fr)}#sb_instagram.sbi_col_5 #sbi_images,#sb_instagram.sbi_col_5.sbi_disable_mobile #sbi_images{grid-template-columns:repeat(5,1fr)}#sb_instagram.sbi_col_6 #sbi_images,#sb_instagram.sbi_col_6.sbi_disable_mobile #sbi_images{grid-template-columns:repeat(6,1fr)}#sb_instagram.sbi_col_7 #sbi_images,#sb_instagram.sbi_col_7.sbi_disable_mobile #sbi_images{grid-template-columns:repeat(7,1fr)}#sb_instagram.sbi_col_8 #sbi_images,#sb_instagram.sbi_col_8.sbi_disable_mobile #sbi_images{grid-template-columns:repeat(8,1fr)}#sb_instagram.sbi_col_9 #sbi_images,#sb_instagram.sbi_col_9.sbi_disable_mobile #sbi_images{grid-template-columns:repeat(9,1fr)}#sb_instagram.sbi_col_10 #sbi_images,#sb_instagram.sbi_col_10.sbi_disable_mobile #sbi_images{grid-template-columns:repeat(10,1fr)}#sb_instagram #sbi_load .sbi_load_btn,#sb_instagram .sbi_photo_wrap{position:relative}#sb_instagram .sbi_photo{display:block;text-decoration:none}#sb_instagram .sbi_photo img{width:100%;height:inherit;object-fit:cover;scale:1;transition:transform .5s ease-in-out;transition:transform .5s ease-in-out,-webkit-transform .5s ease-in-out;vertical-align:middle}#sb_instagram .sbi_no_js img,#sb_instagram br,#sb_instagram p:empty,#sb_instagram.sbi_no_js .sbi_load_btn,#sb_instagram.sbi_no_js .sbi_photo img{display:none}#sb_instagram a,#sb_instagram a:active,#sb_instagram a:focus,#sb_instagram a:hover,.sbi_lightbox a:active,.sbi_lightbox a:focus,.sbi_lightbox a:hover{outline:0}#sb_instagram img{display:block;padding:0!important;margin:0!important;max-width:100%!important;opacity:1!important}#sb_instagram .sbi_link{display:none;position:absolute;bottom:0;right:0;width:100%;padding:10px 0;background:rgba(0,0,0,.5);text-align:center;color:#fff;font-size:12px;line-height:1.1}#sb_instagram .sbi_link a{padding:0 6px;text-decoration:none;color:#fff;font-size:12px;line-height:1.1;display:inline-block;vertical-align:top;zoom:1}#sb_instagram .sbi_link .sbi_lightbox_link{padding-bottom:5px}#sb_instagram .sbi_link a:focus,#sb_instagram .sbi_link a:hover{text-decoration:underline}#sb_instagram .sbi_photo_wrap:focus .sbi_link,#sb_instagram .sbi_photo_wrap:hover .sbi_link{display:block}#sb_instagram svg:not(:root).svg-inline--fa{height:1em;display:inline-block}#sb_instagram .sbi_type_carousel .sbi_playbtn,#sb_instagram .sbi_type_carousel .svg-inline--fa.fa-play,#sb_instagram .sbi_type_video .sbi_playbtn,#sb_instagram .sbi_type_video .svg-inline--fa.fa-play,.sbi_type_carousel .fa-clone{display:block!important;position:absolute;z-index:1;color:rgba(255,255,255,.9);font-style:normal!important;text-shadow:0 0 8px rgba(0,0,0,.8)}#sb_instagram .sbi_type_carousel .sbi_playbtn,#sb_instagram .sbi_type_video .sbi_playbtn{z-index:2;top:50%;left:50%;margin-top:-24px;margin-left:-19px;padding:0;font-size:48px}#sb_instagram .sbi_type_carousel .fa-clone{right:12px;top:12px;font-size:24px;text-shadow:0 0 8px rgba(0,0,0,.3)}#sb_instagram .sbi_type_carousel .svg-inline--fa.fa-play,#sb_instagram .sbi_type_video .svg-inline--fa.fa-play,.sbi_type_carousel svg.fa-clone{-webkit-filter:drop-shadow(0px 0px 2px rgba(0,0,0,.4));filter:drop-shadow(0px 0px 2px rgba(0, 0, 0, .4))}#sb_instagram .sbi_loader{width:20px;height:20px;position:relative;top:50%;left:50%;margin:-10px 0 0 -10px;background-color:rgba(0,0,0,.5);border-radius:100%;-webkit-animation:1s ease-in-out infinite sbi-sk-scaleout;animation:1s ease-in-out infinite sbi-sk-scaleout}#sbi_load p{display:inline;padding:0;margin:0}#sb_instagram #sbi_load .sbi_loader{position:absolute;margin-top:-11px;background-color:#fff;opacity:1}@-webkit-keyframes sbi-sk-scaleout{0%{-webkit-transform:scale(0)}100%{-webkit-transform:scale(1);opacity:0}}@keyframes sbi-sk-scaleout{0%{-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0)}100%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1);opacity:0}}#sb_instagram .fa-spin,#sbi_lightbox .fa-spin{-webkit-animation:2s linear infinite fa-spin;animation:2s linear infinite fa-spin}#sb_instagram .fa-pulse,#sbi_lightbox .fa-pulse{-webkit-animation:1s steps(8) infinite fa-spin;animation:1s steps(8) infinite fa-spin}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.sbi-screenreader{text-indent:-9999px!important;display:block!important;width:0!important;height:0!important;line-height:0!important;text-align:left!important;overflow:hidden!important}#sb_instagram .sb_instagram_header,.sb_instagram_header{overflow:hidden;position:relative;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:12px 0}#sb_instagram .sb_instagram_header a,.sb_instagram_header a{transition:color .5s;text-decoration:none}.sb_instagram_header.sbi_header_outside{float:none;margin-left:auto!important;margin-right:auto!important;display:flex}.sbi_no_avatar .sbi_header_img{background:#333;color:#fff;width:50px;height:50px;position:relative}.sb_instagram_header .sbi_header_hashtag_icon{opacity:0;position:absolute;width:100%;top:0;bottom:0;left:0;text-align:center;color:#fff;background:rgba(0,0,0,.75)}.sbi_no_avatar .sbi_header_hashtag_icon{display:block;color:#fff;opacity:.9;-webkit-transition:background .6s linear,color .6s linear;-moz-transition:background .6s linear,color .6s linear;-o-transition:background .6s linear,color .6s linear;transition:background .6s linear,color .6s linear}.sbi_no_avatar:hover .sbi_header_hashtag_icon{display:block;opacity:1;-webkit-transition:background .2s linear,color .2s linear;-moz-transition:background .2s linear,color .2s linear;-o-transition:background .2s linear,color .2s linear;transition:background .2s linear,color .2s linear}@media all and (min-width:480px){#sb_instagram .sb_instagram_header.sbi_medium .sbi_header_img,#sb_instagram .sb_instagram_header.sbi_medium .sbi_header_img img,.sb_instagram_header.sbi_medium .sbi_header_img,.sb_instagram_header.sbi_medium .sbi_header_img img{width:80px;height:80px;border-radius:50%}#sb_instagram .sb_instagram_header.sbi_medium .sbi_header_text h3,.sb_instagram_header.sbi_medium .sbi_header_text h3{font-size:20px}#sb_instagram .sb_instagram_header.sbi_medium .sbi_header_text .sbi_bio,#sb_instagram .sb_instagram_header.sbi_medium .sbi_header_text .sbi_bio_info,.sb_instagram_header.sbi_medium .sbi_header_text .sbi_bio,.sb_instagram_header.sbi_medium .sbi_header_text .sbi_bio_info{font-size:14px}#sb_instagram .sb_instagram_header.sbi_medium .sbi_header_text .sbi_bio,#sb_instagram .sb_instagram_header.sbi_medium .sbi_header_text .sbi_bio_info,#sb_instagram .sb_instagram_header.sbi_medium .sbi_header_text h3,.sb_instagram_header.sbi_medium .sbi_header_text .sbi_bio,.sb_instagram_header.sbi_medium .sbi_header_text .sbi_bio_info,.sb_instagram_header.sbi_medium .sbi_header_text h3{line-height:1.4}#sb_instagram .sb_instagram_header.sbi_large .sbi_header_img,#sb_instagram .sb_instagram_header.sbi_large .sbi_header_img img,.sb_instagram_header.sbi_large .sbi_header_img,.sb_instagram_header.sbi_large .sbi_header_img img{width:120px;height:120px;border-radius:50%}#sb_instagram .sb_instagram_header.sbi_large .sbi_header_text h3,.sb_instagram_header.sbi_large .sbi_header_text h3{font-size:28px}#sb_instagram .sb_instagram_header.sbi_large .sbi_header_text .sbi_bio,#sb_instagram .sb_instagram_header.sbi_large .sbi_header_text .sbi_bio_info,.sb_instagram_header.sbi_large .sbi_header_text .sbi_bio,.sb_instagram_header.sbi_large .sbi_header_text .sbi_bio_info{font-size:16px}}#sb_instagram .sb_instagram_header .sbi_header_img,.sb_instagram_header .sbi_header_img{position:relative;width:50px;height:50px;overflow:hidden;-moz-border-radius:40px;-webkit-border-radius:40px;border-radius:50%}#sb_instagram .sb_instagram_header .sbi_header_img_hover,.sb_instagram_header .sbi_header_img_hover{opacity:0;position:absolute;width:100%;top:0;bottom:0;left:0;text-align:center;color:#fff;background:rgba(0,0,0,.75);z-index:2;transition:opacity .4s ease-in-out}#sb_instagram .sb_instagram_header .sbi_header_hashtag_icon .sbi_new_logo,#sb_instagram .sb_instagram_header .sbi_header_img_hover .sbi_new_logo,.sb_instagram_header .sbi_header_hashtag_icon .sbi_new_logo,.sb_instagram_header .sbi_header_img_hover .sbi_new_logo{position:absolute;top:50%;left:50%;margin-top:-12px;margin-left:-12px;width:24px;height:24px;font-size:24px}#sb_instagram .sb_instagram_header.sbi_medium .sbi_header_hashtag_icon .sbi_new_logo,.sb_instagram_header.sbi_medium .sbi_header_hashtag_icon .sbi_new_logo{margin-top:-18px;margin-left:-18px;width:36px;height:36px;font-size:36px}#sb_instagram .sb_instagram_header.sbi_large .sbi_header_hashtag_icon .sbi_new_logo,.sb_instagram_header.sbi_large .sbi_header_hashtag_icon .sbi_new_logo{margin-top:-24px;margin-left:-24px;width:48px;height:48px;font-size:48px}#sb_instagram .sb_instagram_header .sbi_header_img_hover i{overflow:hidden}#sb_instagram .sb_instagram_header .sbi_fade_in,.sb_instagram_header .sbi_fade_in{opacity:1;transition:opacity .2s ease-in-out}#sb_instagram .sb_instagram_header a:focus .sbi_header_img_hover,#sb_instagram .sb_instagram_header a:hover .sbi_header_img_hover,#sb_instagram.sbi_no_js #sbi_images .sbi_item.sbi_transition,.sb_instagram_header a:focus .sbi_header_img_hover,.sb_instagram_header a:hover .sbi_header_img_hover,.sbi_lb-nav a.sbi_lb-next:hover,.sbi_lb-nav a.sbi_lb-prev:hover{opacity:1}#sb_instagram .sb_instagram_header .sbi_header_text,.sb_instagram_header .sbi_header_text{display:flex;gap:20px;justify-content:flex-start;align-items:center}#sb_instagram .sb_instagram_header.sbi_large .sbi_feedtheme_header_text,.sb_instagram_header.sbi_large .sbi_feedtheme_header_text{gap:8px}.sb_instagram_header.sbi_medium .sbi_feedtheme_header_text{gap:4px}.sbi_feedtheme_header_text{display:flex;justify-content:flex-start;align-items:flex-start;flex:1;flex-direction:column;gap:4px}#sb_instagram .sb_instagram_header h3,.sb_instagram_header h3{font-size:16px;line-height:1.3;margin:0;padding:0}#sb_instagram .sb_instagram_header p,.sb_instagram_header p{font-size:13px;line-height:1.3;margin:0;padding:0}#sb_instagram .sb_instagram_header .sbi_header_text img.emoji,.sb_instagram_header .sbi_header_text img.emoji{margin-right:3px!important}#sb_instagram .sb_instagram_header .sbi_header_text.sbi_no_bio .sbi_bio_info,.sb_instagram_header .sbi_header_text.sbi_no_bio .sbi_bio_info{clear:both}#sb_instagram #sbi_load{float:left;clear:both;width:100%;text-align:center;opacity:1;transition:.5s ease-in}#sb_instagram #sbi_load .fa-spinner{display:none;position:absolute;top:50%;left:50%;margin:-8px 0 0 -7px;font-size:15px}#sb_instagram #sbi_load .sbi_load_btn,#sb_instagram .sbi_follow_btn a,.et-db #et-boc .et-l .et_pb_module .sbi_follow_btn a{display:inline-block;vertical-align:top;zoom:1;padding:7px 14px;margin:5px auto 0;background:#333;text-decoration:none;line-height:1.5}#sb_instagram .sbi_load_btn .sbi_btn_text,#sb_instagram .sbi_load_btn .sbi_loader{opacity:1;transition:.1s ease-in}#sb_instagram .sbi_hidden{opacity:0!important}#sb_instagram #sbi_load .sbi_load_btn,#sb_instagram .sbi_follow_btn a{border:none;color:#fff;font-size:13px;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;transition:.1s ease-in}.sbi_lb-nav a.sbi_lb-next,.sbi_lb-nav a.sbi_lb-prev{width:50px;padding-left:10px;padding-right:10px;opacity:.5;-webkit-transition:opacity .2s;-moz-transition:opacity .2s;-o-transition:opacity .2s}#sb_instagram .sbi_follow_btn{display:inline-block;vertical-align:top;zoom:1;text-align:center}#sb_instagram .sbi_follow_btn.sbi_top{display:block;margin-bottom:5px}#sb_instagram .sbi_follow_btn a{background:#408bd1;color:#fff}#sb_instagram #sbi_load .sbi_load_btn:focus,#sb_instagram #sbi_load .sbi_load_btn:hover{outline:0;box-shadow:inset 0 0 20px 20px rgba(255,255,255,.25)}#sb_instagram .sbi_follow_btn a:focus,#sb_instagram .sbi_follow_btn a:hover{outline:0;box-shadow:inset 0 0 10px 20px #359dff}#sb_instagram #sbi_load .sbi_load_btn:active,#sb_instagram .sbi_follow_btn a:active{box-shadow:inset 0 0 10px 20px rgba(0,0,0,.3)}#sb_instagram .sbi_follow_btn .fa,#sb_instagram .sbi_follow_btn svg{margin-bottom:-1px;margin-right:7px;font-size:15px}#sb_instagram .sbi_follow_btn svg{vertical-align:-.125em}#sb_instagram #sbi_load .sbi_follow_btn{margin-left:5px}#sb_instagram .sb_instagram_error{width:100%;text-align:center;line-height:1.4}#sbi_mod_error{display:none;border:1px solid #ddd;background:#eee;color:#333;margin:10px 0 0;padding:10px 15px;font-size:13px;text-align:center;clear:both;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px}#sbi_mod_error br{display:initial!important}#sbi_mod_error p{padding:5px 0!important;margin:0!important;line-height:1.3!important}#sbi_mod_error ol,#sbi_mod_error ul{padding:5px 0 5px 20px!important;margin:0!important}#sbi_mod_error li{padding:1px 0!important;margin:0!important}#sbi_mod_error span{font-size:12px}#sb_instagram.sbi_medium .sbi_photo_wrap .svg-inline--fa.fa-play,#sb_instagram.sbi_medium .sbi_playbtn{margin-top:-12px;margin-left:-9px;font-size:23px}#sb_instagram.sbi_medium .sbi_type_carousel .sbi_photo_wrap .fa-clone{right:8px;top:8px;font-size:18px}#sb_instagram.sbi_small .sbi_photo_wrap .svg-inline--fa.fa-play,#sb_instagram.sbi_small .sbi_playbtn{margin-top:-9px;margin-left:-7px;font-size:18px}#sb_instagram.sbi_small .sbi_type_carousel .sbi_photo_wrap .fa-clone{right:5px;top:5px;font-size:12px}@media all and (max-width:640px){#sb_instagram.sbi_col_3 #sbi_images,#sb_instagram.sbi_col_4 #sbi_images,#sb_instagram.sbi_col_5 #sbi_images,#sb_instagram.sbi_col_6 #sbi_images{grid-template-columns:repeat(2,1fr)}#sb_instagram.sbi_col_10 #sbi_images,#sb_instagram.sbi_col_7 #sbi_images,#sb_instagram.sbi_col_8 #sbi_images,#sb_instagram.sbi_col_9 #sbi_images{grid-template-columns:repeat(4,1fr)}#sb_instagram.sbi_width_resp{width:100%!important}}#sb_instagram.sbi_no_js #sbi_images .sbi_item .sbi_photo_wrap{box-sizing:border-box;position:relative;overflow:hidden}#sb_instagram.sbi_no_js #sbi_images .sbi_item .sbi_photo_wrap:before{content:"";display:block;padding-top:100%;z-index:-300}#sb_instagram.sbi_no_js #sbi_images .sbi_item .sbi_photo{position:absolute;top:0;left:0;bottom:0;right:0}#sb_instagram #sbi_images .sbi_js_load_disabled .sbi_imgLiquid_ready.sbi_photo,#sb_instagram #sbi_images .sbi_no_js_customizer .sbi_imgLiquid_ready.sbi_photo{padding-bottom:0!important}#sb_instagram #sbi_mod_error .sb_frontend_btn{display:inline-block;padding:6px 10px;background:rgba(0,0,0,.1);text-decoration:none;border-radius:5px;margin-top:10px;color:#444}#sb_instagram #sbi_mod_error .sb_frontend_btn:hover{background:rgba(0,0,0,.15)}#sb_instagram #sbi_mod_error .sb_frontend_btn .fa{margin-right:2px}#sb_instagram.sbi_palette_dark,#sbi_lightbox.sbi_palette_dark_lightbox .sbi_lb-outerContainer .sbi_lb-dataContainer,#sbi_lightbox.sbi_palette_dark_lightbox .sbi_lightbox_tooltip,#sbi_lightbox.sbi_palette_dark_lightbox .sbi_share_close,.sbi_header_outside.sbi_header_palette_dark{background-color:rgba(0,0,0,.85);color:rgba(255,255,255,.75)}#sb_instagram.sbi_palette_dark .sbi_caption,#sb_instagram.sbi_palette_dark .sbi_meta,#sbi_lightbox.sbi_lb-comments-enabled.sbi_palette_dark_lightbox .sbi_lb-commentBox p,#sbi_lightbox.sbi_palette_dark_lightbox .sbi_lb-outerContainer .sbi_lb-dataContainer .sbi_lb-details .sbi_lb-caption,#sbi_lightbox.sbi_palette_dark_lightbox .sbi_lb-outerContainer .sbi_lb-dataContainer .sbi_lb-number,.sbi_header_palette_dark,.sbi_header_palette_dark .sbi_bio{color:rgba(255,255,255,.75)}#sb_instagram.sbi_palette_dark .sbi_expand a,#sbi_lightbox.sbi_lb-comments-enabled.sbi_palette_dark_lightbox .sbi_lb-commentBox .sbi_lb-commenter,#sbi_lightbox.sbi_palette_dark_lightbox .sbi_lb-outerContainer .sbi_lb-dataContainer .sbi_lb-details a,#sbi_lightbox.sbi_palette_dark_lightbox .sbi_lb-outerContainer .sbi_lb-dataContainer .sbi_lb-details a p,.sbi_header_palette_dark a{color:#fff}#sb_instagram.sbi_palette_light,#sbi_lightbox.sbi_palette_light_lightbox .sbi_lb-outerContainer .sbi_lb-dataContainer,#sbi_lightbox.sbi_palette_light_lightbox .sbi_lightbox_tooltip,#sbi_lightbox.sbi_palette_light_lightbox .sbi_share_close,.sbi_header_outside.sbi_header_palette_light{color:rgba(0,0,0,.85);background-color:rgba(255,255,255,.75)}#sb_instagram.sbi_palette_light .sbi_caption,#sb_instagram.sbi_palette_light .sbi_meta,#sbi_lightbox.sbi_lb-comments-enabled.sbi_palette_light_lightbox .sbi_lb-commentBox p,#sbi_lightbox.sbi_palette_light_lightbox .sbi_lb-outerContainer .sbi_lb-dataContainer .sbi_lb-details .sbi_lb-caption,#sbi_lightbox.sbi_palette_light_lightbox .sbi_lb-outerContainer .sbi_lb-dataContainer .sbi_lb-number,.sbi_header_palette_light,.sbi_header_palette_light .sbi_bio{color:rgba(0,0,0,.85)}#sb_instagram.sbi_palette_light .sbi_expand a,#sbi_lightbox.sbi_lb-comments-enabled.sbi_palette_light_lightbox .sbi_lb-commentBox .sbi_lb-commenter,#sbi_lightbox.sbi_palette_light_lightbox .sbi_lb-outerContainer .sbi_lb-dataContainer .sbi_lb-details a,#sbi_lightbox.sbi_palette_light_lightbox .sbi_lb-outerContainer .sbi_lb-dataContainer .sbi_lb-details a p,.sbi_header_palette_light a{color:#000}@media all and (max-width:800px){#sb_instagram.sbi_tab_col_10 #sbi_images{grid-template-columns:repeat(10,1fr)}#sb_instagram.sbi_tab_col_9 #sbi_images{grid-template-columns:repeat(9,1fr)}#sb_instagram.sbi_tab_col_8 #sbi_images{grid-template-columns:repeat(8,1fr)}#sb_instagram.sbi_tab_col_7 #sbi_images{grid-template-columns:repeat(7,1fr)}#sb_instagram.sbi_tab_col_6 #sbi_images{grid-template-columns:repeat(6,1fr)}#sb_instagram.sbi_tab_col_5 #sbi_images{grid-template-columns:repeat(5,1fr)}#sb_instagram.sbi_tab_col_4 #sbi_images{grid-template-columns:repeat(4,1fr)}#sb_instagram.sbi_tab_col_3 #sbi_images{grid-template-columns:repeat(3,1fr)}#sb_instagram.sbi_tab_col_2 #sbi_images{grid-template-columns:repeat(2,1fr)}#sb_instagram.sbi_tab_col_1 #sbi_images{grid-template-columns:1fr}}@media all and (max-width:480px){#sb_instagram.sbi_col_10 #sbi_images,#sb_instagram.sbi_col_10.sbi_mob_col_auto #sbi_images,#sb_instagram.sbi_col_3 #sbi_images,#sb_instagram.sbi_col_3.sbi_mob_col_auto #sbi_images,#sb_instagram.sbi_col_4 #sbi_images,#sb_instagram.sbi_col_4.sbi_mob_col_auto #sbi_images,#sb_instagram.sbi_col_5 #sbi_images,#sb_instagram.sbi_col_5.sbi_mob_col_auto #sbi_images,#sb_instagram.sbi_col_6 #sbi_images,#sb_instagram.sbi_col_6.sbi_mob_col_auto #sbi_images,#sb_instagram.sbi_col_7 #sbi_images,#sb_instagram.sbi_col_7.sbi_mob_col_auto #sbi_images,#sb_instagram.sbi_col_8 #sbi_images,#sb_instagram.sbi_col_8.sbi_mob_col_auto #sbi_images,#sb_instagram.sbi_col_9 #sbi_images,#sb_instagram.sbi_col_9.sbi_mob_col_auto #sbi_images,#sb_instagram.sbi_mob_col_1 #sbi_images{grid-template-columns:1fr}#sb_instagram.sbi_mob_col_2 #sbi_images{grid-template-columns:repeat(2,1fr)}#sb_instagram.sbi_mob_col_3 #sbi_images{grid-template-columns:repeat(3,1fr)}#sb_instagram.sbi_mob_col_4 #sbi_images{grid-template-columns:repeat(4,1fr)}#sb_instagram.sbi_mob_col_5 #sbi_images{grid-template-columns:repeat(5,1fr)}#sb_instagram.sbi_mob_col_6 #sbi_images{grid-template-columns:repeat(6,1fr)}#sb_instagram.sbi_mob_col_7 #sbi_images{grid-template-columns:repeat(7,1fr)}#sb_instagram.sbi_mob_col_8 #sbi_images{grid-template-columns:repeat(8,1fr)}#sb_instagram.sbi_mob_col_9 #sbi_images{grid-template-columns:repeat(9,1fr)}#sb_instagram.sbi_mob_col_10 #sbi_images{grid-template-columns:repeat(10,1fr)}}#sb_instagram #sbi_images .sbi_item.sbi_num_diff_hide{display:none!important}body:after{content:url(/wp-content/plugins/instagram-feed/img/sbi-sprite.png);display:none}.sbi_lightboxOverlay{position:absolute;top:0;left:0;z-index:99999;background-color:#000;opacity:.9;display:none}.sbi_lightbox{position:absolute;left:0;width:100%;z-index:100000;text-align:center;line-height:0;font-weight:400}.sbi_lightbox .sbi_lb-image{display:block;height:auto;max-width:inherit;-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;-o-border-radius:3px;border-radius:3px;object-fit:contain}.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-image{-webkit-border-radius:3px 0 0 3px;-moz-border-radius:3px 0 0 3px;-ms-border-radius:3px 0 0 3px;-o-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px}.sbi_lb-outerContainer{position:relative;background-color:#000;width:250px;height:250px;margin:0 auto 5px;-webkit-border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-o-border-radius:4px;border-radius:4px}.sbi_lb-container-wrapper{height:100%}.sbi_lb-container{position:relative;top:0;left:0;width:100%;height:100%;bottom:0;right:0}.sbi_lb-loader{position:absolute;width:100%;top:50%;left:0;height:20px;margin-top:-10px;text-align:center;line-height:0}.sbi_lb-loader span{display:block;width:14px;height:14px;margin:0 auto;background:url(/wp-content/plugins/instagram-feed/img/sbi-sprite.png) no-repeat}.sbi_lb-container>.nav{left:0}.sbi_lb-nav a{position:absolute;z-index:100;top:0;height:90%;outline:0;background-image:url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==')}.sbi_lb-next,.sbi_lb-prev{height:100%;cursor:pointer;display:block}.sbi_lb-nav a.sbi_lb-prev{left:-70px;float:left;transition:opacity .2s}.sbi_lb-nav a.sbi_lb-next{right:-70px;float:right;transition:opacity .2s}.sbi_lb-nav span{display:block;top:55%;position:absolute;left:20px;width:34px;height:45px;margin:-25px 0 0;background:url(/wp-content/plugins/instagram-feed/img/sbi-sprite.png) no-repeat}.sbi_lb-nav a.sbi_lb-prev span{background-position:-53px 0}.sbi_lb-nav a.sbi_lb-next span{left:auto;right:20px;background-position:-18px 0}.sbi_lb-dataContainer{margin:0 auto;padding-top:10px;width:100%;font-family:"Open Sans",Helvetica,Arial,sans-serif;-moz-border-radius-bottomleft:4px;-webkit-border-bottom-left-radius:4px;border-bottom-left-radius:4px;-moz-border-radius-bottomright:4px;-webkit-border-bottom-right-radius:4px;border-bottom-right-radius:4px}.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-outerContainer{position:relative;padding-right:300px;background:#fff;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-container-wrapper{position:relative;background:#000}.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-dataContainer{width:300px!important;position:absolute;top:0;right:-300px;height:100%;bottom:0;background:#fff;line-height:1.4;overflow:hidden;overflow-y:auto;text-align:left}.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-commentBox{display:block!important;width:100%;margin-top:20px;padding:4px}#sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-number{padding-bottom:0}#sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-caption{width:100%;max-width:100%;margin-bottom:20px}#sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-caption .sbi_caption_text{display:inline-block;padding-top:10px}.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-comment{display:block!important;width:100%;min-width:100%;float:left;clear:both;font-size:12px;padding:3px 20px 3px 0;margin:0 0 1px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-commenter{font-weight:700;margin-right:5px}.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-commentBox p{text-align:left}.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-dataContainer{box-sizing:border-box;padding:15px 20px}.sbi_lb-data{padding:0 4px;color:#ccc}.sbi_lb-data .sbi_lb-details{width:85%;float:left;text-align:left;line-height:1.1}.sbi_lb-data .sbi_lb-caption{float:left;font-size:13px;font-weight:400;line-height:1.3;padding-bottom:3px;color:#ccc;word-wrap:break-word;word-break:break-word;overflow-wrap:break-word;-webkit-hyphens:auto;-moz-hyphens:auto;hyphens:auto}.sbi_lb-data .sbi_lb-caption a{color:#ccc;font-weight:700;text-decoration:none}.sbi_lb-commenter:hover,.sbi_lb-data .sbi_lb-caption .sbi_lightbox_username:hover p,.sbi_lb-data .sbi_lb-caption a:hover{color:#fff;text-decoration:underline}.sbi_lb-data .sbi_lb-caption .sbi_lightbox_username{float:left;width:100%;color:#ccc;padding-bottom:0;display:block;margin:0 0 5px}#sbi_lightbox.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-number,#sbi_lightbox.sbi_lightbox.sbi_lb-comments-enabled .sbi_lightbox_action a,#sbi_lightbox.sbi_lightbox.sbi_lb-comments-enabled .sbi_lightbox_action a:hover,.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-commenter,.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-commenter:hover,.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-data,.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-data .sbi_lb-caption,.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-data .sbi_lb-caption .sbi_lightbox_username p,.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-data .sbi_lb-caption .sbi_lightbox_username:hover p,.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-data .sbi_lb-caption a,.sbi_lightbox.sbi_lb-comments-enabled .sbi_lb-data .sbi_lb-caption a:hover,.sbi_lightbox.sbi_lb-comments-enabled .sbi_lightbox_username{color:#333}.sbi_lightbox .sbi_lightbox_username img{float:left;border:none;width:32px;height:32px;margin-right:10px;background:#666;-moz-border-radius:40px;-webkit-border-radius:40px;border-radius:40px}.sbi_lightbox_username p{float:left;margin:0;padding:0;color:#ccc;line-height:32px;font-weight:700;font-size:13px}.sbi_lb-data .sbi_lb-number{display:block;float:left;clear:both;padding:5px 0 15px;font-size:12px;color:#999}.sbi_lb-data .sbi_lb-close{display:block;float:right;width:30px;height:30px;font-size:18px;color:#aaa;text-align:right;outline:0;opacity:.7;-webkit-transition:opacity .2s;-moz-transition:opacity .2s;-o-transition:opacity .2s;transition:opacity .2s}.sbi_lb-data .sbi_lb-close:hover{cursor:pointer;opacity:1;color:#fff}.sbi_lb-nav{top:0;left:0;width:100%;z-index:10;height:auto}.sbi-feed-block-cta,.sbi-feed-block-cta-img-ctn{width:100%!important;position:relative!important}.sbi_lightbox .sbi_owl-item:nth-child(n+2) .sbi_video{position:relative!important}.sbi_lb-container{padding:0}.sbi-feed-block-cta{border:1px solid #e8e8eb!important;border-radius:2px!important;text-align:center!important}.sbi-feed-block-cta-img-ctn{float:left!important;display:flex!important;justify-content:center!important;align-items:center!important;margin-top:50px!important;margin-bottom:35px!important}.sbi-feed-block-cta-img{width:65px!important;height:65px!important;position:relative!important;border:2px solid #dcdde1!important;border-radius:16px!important;-webkit-transform:rotate(-3deg)!important;transform:rotate(-3deg)!important;display:flex!important;justify-content:center!important;align-items:center!important}.sbi-feed-block-cta-img span svg{float:left!important}.sbi-feed-block-cta-img>*{-webkit-transform:rotate(3deg)!important;transform:rotate(3deg)!important}.sbi-feed-block-cta-logo{position:absolute!important;right:-15px!important;bottom:-19px!important;z-index:1!important}.sbi-feed-block-cta-heading{font-size:19px!important;padding:0!important;margin:0 0 30px!important;display:inline-block!important;width:100%!important;font-weight:700!important;line-height:1.4em!important}.sbi-feed-block-cta-btn{background:#0068a0!important;border-radius:2px!important;padding:8px 20px 8px 38px!important;cursor:pointer!important;color:#fff!important;position:relative!important;margin-bottom:30px!important}.sbi-feed-block-cta-btn:after,.sbi-feed-block-cta-btn:before{content:''!important;position:absolute!important;width:2px!important;height:12px!important;background:#fff!important;left:20px!important;top:14px!important}.sbi-feed-block-cta-btn:after{-webkit-transform:rotate(90deg)!important;transform:rotate(90deg)!important}.sbi-feed-block-cta-desc{display:flex!important;justify-content:center!important;align-items:center!important;padding:20px!important;background:#f9f9fa!important;border-top:1px solid #e8e8eb!important;margin-top:35px!important;flex-direction:column!important}.sbi-feed-block-cta-desc strong{color:#141b38!important;font-size:16px!important;font-weight:600!important;margin-bottom:8px!important}.sbi-feed-block-cta-desc span{color:#434960!important;font-size:14px!important;line-height:1.5em!important;padding:0 20%!important}.sbi-feed-block-cta-desc span a,.sbi-feed-block-cta-selector span a{text-transform:capitalize!important;text-decoration:underline!important;font-weight:600!important}.sbi-feed-block-cta-selector{width:100%!important;padding:0 20%!important;display:flex!important;justify-content:center!important;align-items:center!important;flex-direction:column!important;margin-bottom:45px!important}.sbi-feed-block-cta-feedselector{border:1px solid #d0d1d7!important;padding:8px 16px!important;margin-bottom:15px!important;max-width:100%!important;min-width:400px!important}.sbi-feed-block-cta-selector span{color:#2c324c!important}.sbi-feed-block-cta-selector span a:after{color:#2c324c!important;margin-left:2px!important;font-weight:400!important;text-decoration-color:#fff!important}.sbi-feed-block-cta-selector span a:first-of-type:after{content:','!important}.sbi-feed-block-cta-selector span a:nth-of-type(2):after{content:'or'!important;margin-left:5px!important;margin-right:2px!important}.et-db #et-boc .et-l .et-fb-modules-list ul>li.sb_facebook_feed::before,.et-db #et-boc .et-l .et-fb-modules-list ul>li.sb_instagram_feed::before,.et-db #et-boc .et-l .et-fb-modules-list ul>li.sb_twitter_feed::before,.et-db #et-boc .et-l .et-fb-modules-list ul>li.sb_youtube_feed::before{content:''!important;height:16px!important;font-variant:normal!important;background-position:center center!important;background-repeat:no-repeat!important}.et-db #et-boc .et-l .et-fb-modules-list ul>li.sb_facebook_feed::before{background-image:url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 29 29' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.9056 18.109H13.4056V17.609H12.9056V18.109ZM9.79722 18.109H9.29722V18.609H9.79722V18.109ZM9.79722 14.5601V14.0601H9.29722V14.5601H9.79722ZM12.9056 14.5601V15.0601H13.4056V14.5601H12.9056ZM20.2604 7.32764H20.7604V6.90407L20.3426 6.83444L20.2604 7.32764ZM20.2604 10.3503V10.8503H20.7604V10.3503H20.2604ZM16.7237 14.5601H16.2237V15.0601H16.7237V14.5601ZM20.1258 14.5601L20.6199 14.6367L20.7094 14.0601H20.1258V14.5601ZM19.5751 18.109V18.609H20.0035L20.0692 18.1857L19.5751 18.109ZM16.7237 18.109V17.609H16.2237V18.109H16.7237ZM27.0523 14.5601H26.5523L26.5523 14.5612L27.0523 14.5601ZM17.0803 26.6136L16.9877 26.1222L17.0803 26.6136ZM12.5489 26.6139L12.6411 26.1225L12.5489 26.6139ZM14.8147 1.79797C7.80749 1.79797 2.07703 7.51685 2.07703 14.5601H3.07703C3.07703 8.06849 8.36042 2.79797 14.8147 2.79797V1.79797ZM2.07703 14.5601C2.07703 20.7981 6.54984 25.9974 12.4567 27.1053L12.6411 26.1225C7.19999 25.1019 3.07703 20.3097 3.07703 14.5601H2.07703ZM13.4056 26.3139V18.109H12.4056V26.3139H13.4056ZM12.9056 17.609H9.79722V18.609H12.9056V17.609ZM10.2972 18.109V14.5601H9.29722V18.109H10.2972ZM9.79722 15.0601H12.9056V14.0601H9.79722V15.0601ZM13.4056 14.5601V11.8556H12.4056V14.5601H13.4056ZM13.4056 11.8556C13.4056 10.4191 13.8299 9.36825 14.5211 8.67703C15.2129 7.98525 16.2305 7.59512 17.5314 7.59512V6.59512C16.0299 6.59512 14.7346 7.04939 13.814 7.96992C12.893 8.891 12.4056 10.2204 12.4056 11.8556H13.4056ZM17.5314 7.59512C18.1724 7.59512 18.8342 7.65119 19.3401 7.70823C19.592 7.73664 19.8029 7.76502 19.9504 7.78622C20.0241 7.79681 20.0818 7.8056 20.1208 7.81167C20.1402 7.81471 20.155 7.81706 20.1647 7.81863C20.1695 7.81941 20.1731 7.82 20.1754 7.82037C20.1765 7.82056 20.1773 7.82069 20.1778 7.82077C20.178 7.82081 20.1782 7.82083 20.1782 7.82084C20.1783 7.82085 20.1783 7.82085 20.1783 7.82085C20.1783 7.82085 20.1783 7.82085 20.1783 7.82085C20.1782 7.82084 20.1782 7.82084 20.2604 7.32764C20.3426 6.83444 20.3426 6.83443 20.3425 6.83443C20.3425 6.83442 20.3424 6.83441 20.3424 6.83441C20.3423 6.83439 20.3422 6.83437 20.342 6.83435C20.3418 6.8343 20.3414 6.83425 20.341 6.83417C20.3401 6.83403 20.3389 6.83383 20.3373 6.83357C20.3342 6.83307 20.3298 6.83234 20.3241 6.83142C20.3127 6.82958 20.2962 6.82695 20.2749 6.82362C20.2323 6.81698 20.1707 6.8076 20.0927 6.7964C19.9369 6.774 19.7157 6.74425 19.4521 6.71453C18.927 6.65532 18.2243 6.59512 17.5314 6.59512V7.59512ZM19.7604 7.32764V10.3503H20.7604V7.32764H19.7604ZM20.2604 9.85033H18.7185V10.8503H20.2604V9.85033ZM18.7185 9.85033C17.851 9.85033 17.1997 10.1241 16.7742 10.6148C16.3604 11.0922 16.2237 11.7025 16.2237 12.2594H17.2237C17.2237 11.8495 17.3257 11.5053 17.5298 11.2699C17.7224 11.0477 18.0684 10.8503 18.7185 10.8503V9.85033ZM16.2237 12.2594V14.5601H17.2237V12.2594H16.2237ZM16.7237 15.0601H20.1258V14.0601H16.7237V15.0601ZM19.6317 14.4834L19.081 18.0323L20.0692 18.1857L20.6199 14.6367L19.6317 14.4834ZM19.5751 17.609H16.7237V18.609H19.5751V17.609ZM16.2237 18.109V26.3135H17.2237V18.109H16.2237ZM17.1728 27.105C20.0281 26.5671 22.618 25.068 24.5079 22.8512L23.7469 22.2025C22.0054 24.2452 19.6188 25.6266 16.9877 26.1222L17.1728 27.105ZM24.5079 22.8512C26.4793 20.5388 27.5591 17.5977 27.5523 14.559L26.5523 14.5612C26.5586 17.3614 25.5636 20.0715 23.7469 22.2025L24.5079 22.8512ZM27.5523 14.5601C27.5523 7.51685 21.8218 1.79797 14.8147 1.79797V2.79797C21.2689 2.79797 26.5523 8.06849 26.5523 14.5601H27.5523ZM16.2237 26.3135C16.2237 26.8064 16.6682 27.2 17.1728 27.105L16.9877 26.1222C17.119 26.0975 17.2237 26.2006 17.2237 26.3135H16.2237ZM12.4567 27.1053C12.9603 27.1998 13.4056 26.8073 13.4056 26.3139H12.4056C12.4056 26.2001 12.5107 26.098 12.6411 26.1225L12.4567 27.1053Z' fill='%232b87da' /%3E%3Cpath d='M12.9056 18.1088H13.4056V17.6088H12.9056V18.1088ZM9.79724 18.1088H9.29724V18.6088H9.79724V18.1088ZM9.79724 14.5599V14.0599H9.29724V14.5599H9.79724ZM12.9056 14.5599V15.0599H13.4056V14.5599H12.9056ZM20.2604 7.32749H20.7604V6.90392L20.3426 6.83429L20.2604 7.32749ZM20.2604 10.3502V10.8502H20.7604V10.3502H20.2604ZM16.7237 14.5599H16.2237V15.0599H16.7237V14.5599ZM20.1258 14.5599L20.6199 14.6366L20.7094 14.0599H20.1258V14.5599ZM19.5751 18.1088V18.6088H20.0035L20.0692 18.1855L19.5751 18.1088ZM16.7237 18.1088V17.6088H16.2237V18.1088H16.7237ZM13.4056 26.366V18.1088H12.4056V26.366H13.4056ZM12.9056 17.6088H9.79724V18.6088H12.9056V17.6088ZM10.2972 18.1088V14.5599H9.29724V18.1088H10.2972ZM9.79724 15.0599H12.9056V14.0599H9.79724V15.0599ZM13.4056 14.5599V11.8554H12.4056V14.5599H13.4056ZM13.4056 11.8554C13.4056 10.4189 13.8299 9.3681 14.5212 8.67688C15.2129 7.9851 16.2305 7.59497 17.5314 7.59497V6.59497C16.0299 6.59497 14.7346 7.04924 13.814 7.96977C12.893 8.89085 12.4056 10.2202 12.4056 11.8554H13.4056ZM17.5314 7.59497C18.1724 7.59497 18.8342 7.65103 19.3401 7.70808C19.592 7.73648 19.803 7.76487 19.9504 7.78607C20.0241 7.79666 20.0819 7.80545 20.1208 7.81152C20.1402 7.81455 20.155 7.81691 20.1647 7.81848C20.1695 7.81926 20.1731 7.81984 20.1754 7.82022C20.1765 7.8204 20.1773 7.82054 20.1778 7.82061C20.178 7.82065 20.1782 7.82068 20.1783 7.82069C20.1783 7.8207 20.1783 7.8207 20.1783 7.8207C20.1783 7.8207 20.1783 7.82069 20.1783 7.82069C20.1782 7.82069 20.1782 7.82068 20.2604 7.32749C20.3426 6.83429 20.3426 6.83428 20.3425 6.83427C20.3425 6.83427 20.3424 6.83426 20.3424 6.83425C20.3423 6.83424 20.3422 6.83422 20.3421 6.8342C20.3418 6.83415 20.3414 6.83409 20.341 6.83402C20.3401 6.83387 20.3389 6.83367 20.3374 6.83342C20.3343 6.83291 20.3298 6.83219 20.3241 6.83127C20.3127 6.82943 20.2962 6.82679 20.2749 6.82347C20.2324 6.81683 20.1707 6.80745 20.0927 6.79624C19.9369 6.77385 19.7158 6.7441 19.4522 6.71438C18.927 6.65516 18.2244 6.59497 17.5314 6.59497V7.59497ZM19.7604 7.32749V10.3502H20.7604V7.32749H19.7604ZM20.2604 9.85018H18.7185V10.8502H20.2604V9.85018ZM18.7185 9.85018C17.8511 9.85018 17.1997 10.1239 16.7743 10.6146C16.3604 11.092 16.2237 11.7024 16.2237 12.2592H17.2237C17.2237 11.8493 17.3257 11.5052 17.5298 11.2697C17.7224 11.0476 18.0684 10.8502 18.7185 10.8502V9.85018ZM16.2237 12.2592V14.5599H17.2237V12.2592H16.2237ZM16.7237 15.0599H20.1258V14.0599H16.7237V15.0599ZM19.6317 14.4833L19.081 18.0322L20.0692 18.1855L20.6199 14.6366L19.6317 14.4833ZM19.5751 17.6088H16.7237V18.6088H19.5751V17.6088ZM16.2237 18.1088V26.366H17.2237V18.1088H16.2237ZM16.4146 26.1752H13.2148V27.1752H16.4146V26.1752ZM16.2237 26.366C16.2237 26.2606 16.3092 26.1752 16.4146 26.1752V27.1752C16.8615 27.1752 17.2237 26.8129 17.2237 26.366H16.2237ZM12.4056 26.366C12.4056 26.8129 12.7679 27.1752 13.2148 27.1752V26.1752C13.3202 26.1752 13.4056 26.2606 13.4056 26.366H12.4056Z' fill='%232b87da'/%3E%3C/svg%3E%0A")}.et-db #et-boc .et-l .et-fb-modules-list ul>li.sb_instagram_feed::before{background-image:url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1' y='1' width='22' height='22' rx='6' stroke='%232b87da' stroke-width='1.5'/%3E%3Ccircle cx='12' cy='12' r='5' stroke='%232b87da' stroke-width='1.5'/%3E%3Ccircle cx='18.5' cy='5.75' r='1.25' fill='%232b87da'/%3E%3C/svg%3E%0A")}.et-db #et-boc .et-l .et-fb-modules-list ul>li.sb_twitter_feed::before{background-image:url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 29 29' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M27.8762 6.78846C27.9345 6.7065 27.8465 6.60094 27.7536 6.63936C27.0263 6.93989 26.26 7.15757 25.4698 7.29241C25.3632 7.31061 25.3082 7.16347 25.3956 7.09969C26.2337 6.48801 26.8918 5.63649 27.2636 4.63802C27.2958 4.55162 27.2014 4.47574 27.1212 4.52123C26.1605 5.06618 25.1092 5.45524 24.0054 5.68842C23.971 5.69568 23.9354 5.68407 23.9113 5.65844C22.9264 4.60891 21.5545 4 19.9999 4C17.0624 4 14.6624 6.4 14.6624 9.3625C14.6624 9.74071 14.702 10.109 14.7724 10.4586C14.7855 10.5235 14.7342 10.5842 14.6681 10.5803C10.3227 10.3231 6.45216 8.2421 3.84135 5.09864C3.79681 5.04501 3.71241 5.0515 3.67879 5.11257C3.26061 5.8722 3.02493 6.75115 3.02493 7.675C3.02493 9.41548 3.84362 10.9704 5.13417 11.9317C5.2141 11.9913 5.17327 12.12 5.07385 12.1129C4.32811 12.0597 3.63173 11.835 3.00827 11.5171C2.99303 11.5094 2.97493 11.5204 2.97493 11.5375V11.5375C2.97493 13.9896 4.6205 16.0638 6.86301 16.7007C6.96452 16.7295 6.96588 16.8757 6.86218 16.8953C6.25772 17.0096 5.63724 17.0173 5.0289 16.9176C4.95384 16.9052 4.89095 16.9762 4.91633 17.0479C5.26967 18.0466 5.91213 18.9192 6.7637 19.5537C7.58576 20.1661 8.56481 20.5283 9.58351 20.6001C9.67715 20.6067 9.71634 20.7266 9.64124 20.7829C7.78574 22.1744 5.52424 22.9237 3.19993 22.9125C2.91864 22.9125 2.63736 22.9015 2.35608 22.8796C2.25034 22.8714 2.20189 23.0116 2.29272 23.0664C4.58933 24.4509 7.27959 25.25 10.1499 25.25C19.9999 25.25 25.4124 17.075 25.4124 9.9875C25.4124 9.76833 25.4124 9.5598 25.4026 9.34228C25.4011 9.30815 25.4168 9.27551 25.4445 9.2555C26.3819 8.57814 27.1984 7.74079 27.8762 6.78846Z' stroke='%232b87da' stroke-width='1.25' stroke-linejoin='round'/%3E%3C/svg%3E%0A")}.et-db #et-boc .et-l .et-fb-modules-list ul>li.sb_youtube_feed::before{background-image:url("data:image/svg+xml,%3Csvg width='27' height='20' viewBox='0 0 27 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 13.3267C11 13.4037 11.0834 13.4518 11.15 13.4133L17.3377 9.83658C17.4043 9.79808 17.4043 9.70192 17.3377 9.66342L11.15 6.08673C11.0834 6.0482 11 6.0963 11 6.17331V13.3267ZM25.45 3.7125C25.6125 4.3 25.725 5.0875 25.8 6.0875C25.8875 7.0875 25.925 7.95 25.925 8.7L26 9.75C26 12.4875 25.8 14.5 25.45 15.7875C25.1375 16.9125 24.4125 17.6375 23.2875 17.95C22.7 18.1125 21.625 18.225 19.975 18.3C18.35 18.3875 16.8625 18.425 15.4875 18.425L13.5 18.5C8.2625 18.5 5 18.3 3.7125 17.95C2.5875 17.6375 1.8625 16.9125 1.55 15.7875C1.3875 15.2 1.275 14.4125 1.2 13.4125C1.1125 12.4125 1.075 11.55 1.075 10.8L1 9.75C1 7.0125 1.2 5 1.55 3.7125C1.8625 2.5875 2.5875 1.8625 3.7125 1.55C4.3 1.3875 5.375 1.275 7.025 1.2C8.65 1.1125 10.1375 1.075 11.5125 1.075L13.5 1C18.7375 1 22 1.2 23.2875 1.55C24.4125 1.8625 25.1375 2.5875 25.45 3.7125Z' stroke='%232b87da' stroke-width='1.25' stroke-linejoin='round'/%3E%3C/svg%3E%0A")}.et-db #et-boc .et-l .et_pb_module .sbi_follow_btn a{border:none;color:#fff;font-size:13px;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.et-db #et-boc .et-l .et_pb_module .sbi-feed-block-cta-btn:after,.et-db #et-boc .et-l .et_pb_module .sbi-feed-block-cta-btn:before{top:10px!important}