/*
Theme Name: uedawjc.ac.jp Site's Main Theme
Version: 1.0
Derived from the Original Theme: Twenty Eleven
Original Theme URI: http://wordpress.org/extend/themes/twentyeleven
Original Author: the WordPress team
Original Author URI: http://wordpress.org/
Original Version: 1.5
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

@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;
	}


}

 
/*上田女子短期大学を選んだ理由 余白無くし*/

#page #main .entry-content:has(#reason){
  padding-top: 0;
}
/**/

/*自動整形のp対策*/
p:has(.c-link),p:has(.c-btn){
  line-height: 1;
  margin: 0;
  padding: 0;
}
.entry-content p:empty,
.entry-content a:empty{
  display: none;
  margin: 0;
  padding-left: 0;
}

/**/


@media print, screen and (min-width: 768px) {
  .utils-hidden-mobile {
    display: inline-block !important;
  }
}
@media screen and (max-width: 767px) {
  .utils-hidden-mobile {
    display: none !important;
  }
}

@media print, screen and (min-width: 768px) {
  .utils-block-hidden-mobile {
    display: block !important;
  }
}
@media screen and (max-width: 767px) {
  .utils-block-hidden-mobile {
    display: none !important;
  }
}

@media print, screen and (min-width: 768px) {
  .utils-hidden-pc {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .utils-hidden-pc {
    display: inline-block !important;
  }
}

@media print, screen and (min-width: 768px) {
  .utils-block-hidden-pc {
    display: inline !important;
  }
}
@media screen and (max-width: 767px) {
  .utils-block-hidden-pc {
    display: none !important;
  }
}

.utils-hidden {
  display: none !important;
}

.c-grid {
    display: grid;
  }  
.c-flex {
    display: flex;
  }

.entry-content .c-desc {
/*font-family: "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif; */
  font-size: 15px;
  line-height: 2;
  font-weight: 500;
}

.entry-content .c-pink {
  background-color: var(--ueda-pink);
}

.entry-content .c-pink-rose {
  background-color: var(--ueda-rose-pink);
}

.entry-content .c-pink-pale {
  background-color: var(--ueda-bg-pink);
}

.entry-content .c-pink-strong {
  background-color: var(--ueda-strong-pink);
}

.entry-content .c-blue {
  background-color: var(--ueda-sky-blue);
}

.entry-content .c-border--pink {
  border-left: 2px solid var(--ueda-pink);
}
.entry-content .c-border--pink-rose {	/* 2024.4 KAZ */
  border-left: 2px solid var(--ueda-rose-pink);
}
.entry-content .c-border--blue {
  border-left: 2px solid var(--ueda-sky-blue);
}

.entry-content .pink {
  color: var(--ueda-pink);
}

.entry-content .pink-rose {
  color: var(--ueda-rose-pink);
}

.entry-content .pink-pale {
  color: var(--ueda-bg-pink);
}

.entry-content .pink-strong {
  color: var(--ueda-strong-pink);
}

.entry-content .blue {
  color: var(--ueda-sky-blue);
}

  .entry-content .c-btn {
    padding: 12px 0px 12px 20px;
    margin-inline: auto;
    text-decoration: none;
    width: 100%;
  }
  .entry-content .c-btn--large {
    padding: 12.5px 0px 12.5px 25px;
    text-decoration: none;
    margin-inline: auto;
  }
  @media print, screen and (min-width: 768px) {
    .entry-content .c-btn--large {
      padding: 27.5px 0 27.5px 25px;
    }
  }
  .entry-content .c-btn--white {
    color: #222;
  }
  
  .entry-content .c-btn--white::after {
    content: "";
    height: 1px;
    width: 10px;
    background: var(--ueda-pink);
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
  }
  .entry-content .c-btn--black {
    color: #222;
    width: 100%;
    display: block;
  }
  
  .entry-content .c-btn--black::after {
    content: "";
    height: 1px;
    width: 10px;
    background: #222;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: block;
  }
  .entry-content .c-btn--pink {
    width: 100%;
    display: block;
  }
  
  .entry-content .c-btn--pink::after {
    content: "";
    height: 2px;
    background-color: var(--ueda-pink)!important;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: block;
  }
  
.entry-content .c-link {
    position: relative;
    padding-left: 27px;
    text-decoration:none;
    display: inline-block;
  }
  .entry-content .c-link::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
/*  font-family: "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif; */
    width: 7px;
    height: 14px;
    background: url(/images/arrow_right_strong_pink.svg) center center no-repeat;	/* 2024.4 KAZ: was url(/wp-content/uploads/2024/02/arrows.svg) */
  }

.entry-content .c-link--pink::after {
  background: url(/images/arrow_right_strong_pink.svg) center center no-repeat;	/* 2024.4 KAZ: was url(/wp-content/uploads/2024/02/arrows.svg) */
}
.entry-content .c-link--pink-rose::after {	/* 2024.4 KAZ */
  background: url(/images/arrow_right_rose_pink.svg) center center no-repeat;
}
.entry-content .c-link--blue::after {
  background: url(/images/arrow_right_blue.svg) center center no-repeat;	/* 2024.4 KAZ: was url(/wp-content/uploads/2024/02/arrows2.svg) */
}

.entry-content .c-career--1::after {
  content: "キャリアアップ I";
}

.entry-content .c-career--2::after {
  content: "キャリアアップ Ⅱ";
}
@media screen and (max-width: 767px) {
.p-career-flow__box-subttl_box--pink.c-career--2::before,
.p-career-flow__box-subttl_box--pink.c-career--2::after {
    transform: translateY(92px);
  }
}

.entry-content .c-intern::after {
  content: "インターンシップ";
}
.c-bg-bubble {
  background: url(/wp-content/uploads/2024/02/bg_bubble.png) center center repeat;
  background-size: 1440px auto;	/* 2024.3 KAZ: was cover */

}
.c-gray-box {
  background-color: var(--ueda-bg-gray);
}

.c-gray-box_ttl {
  font-size: 17px;
  line-height: 1.5882352941;
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
  padding-bottom: 14px;
  margin-bottom: 23.5px;
/*font-family: "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif; */
  border-bottom: 1px solid var(--ueda-medium-gray);
}

.c-gray-box_ttl.blue {
  color: #00b1cc;
}

.c-gray-box_desc {
/*font-family: "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif; */
}

.entry-content .linktext {
  display: inline-block;
  position: relative;
  padding-left: 20px;
  color: inherit;
  font-size: 15px;
  /* 15px 2024.2 Aki */
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
  /* 2024.2 Aki */
  text-decoration: none;
  line-height: 1.6666666667;
/*font-family: "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif; */
}

.entry-content .linktext span {
  font-weight: 500;
  display: inline-block;
  font-size: 15px;
  /* 15px 2024.2 Aki */
  line-height: 2;
}

.entry-content .linktext::before {
  background-color: var(--ueda-gray);
  width: 15px;
  left: 0;
}

.entry-content .linktext::after {
  width: 5px;
  left: 10px;
  transition: all 0.2s 0s ease;
}

.entry-content .linktext::after {
  background: var(--ueda-rose-pink);
}
.entry-content .linktext.blue {
  color: #222;
}

.entry-content .linktext.blue::after {
  background: var(--ueda-sky-blue);
}

.entry-content .linktext::before,
.entry-content .linktext::after {
  display: block;
  position: absolute;
  height: 1px;
  top: 50%;
  content: "";
}

.entry-content .c-list__boxes {
  grid-template-columns: 1fr;
  gap: 54px 0;
}
@media print, screen and (min-width: 768px) {
  .entry-content .c-list__boxes {
    grid-template-columns: 1fr;
    gap: 54px 0;
  }
}

.entry-content .c-list__boxes--two {
  grid-template-columns: 1fr;
  gap: 36px 0;
}
@media print, screen and (min-width: 768px) {
  .entry-content .c-list__boxes--two {
    grid-template-columns: 1fr 1fr;
    gap: 54px;
  }
}

.entry-content .c-list__box-ttl {
  font-size: 18.5px;
  line-height: 1.35;
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
/*font-family: "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif; */
  padding-bottom: 9px;
  margin-bottom: 26px;
}
@media print, screen and (min-width: 768px) {
  .entry-content .c-list__box-ttl {
    font-size: 20px;
    padding-bottom: 11.5px;
    margin-bottom: 30px;
  }
}
.entry-content .c-list__box-ttl.pink-rose {
  border-bottom: 2px solid var(--ueda-rose-pink);
}

.entry-content .c-list__box-ttl.blue {
  border-bottom: 2px solid var(--ueda-sky-blue);
}

/*後で確認*/
.entry-content .c-list__boxes .c-list__box-lists {
  grid-template-columns: 1fr;
  gap: 20px 0;
}
@media print, screen and (min-width: 768px) {
  .entry-content .c-list__boxes .c-list__box-lists {
    grid-template-columns: 1fr 1fr;
    gap: 25px 54px;
  }
}
@media screen and (max-width: 767px) {
  .entry-content .c-list__boxes .c-list__box-lists {
margin-bottom: 0;
  }
}
.entry-content .c-list__boxes--two .c-list__box-lists {
  grid-template-columns: 1fr;
  gap: 20px 0;
  margin-bottom: 0;
}
@media print, screen and (min-width: 768px) {
  .entry-content .c-list__boxes--two .c-list__box-lists {
    grid-template-columns: 1fr;
    gap: 25px 0;
  }
}

.entry-content .c-list__box-lists .c-list__box-list {
  list-style-type: none;
  padding-left: 18px;
  font-size: 18px;
  line-height: 1;
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
  margin-bottom: 0;
}
@media print, screen and (min-width: 768px) {
  .entry-content .c-list__box-lists .c-list__box-list {
    padding-left: 24px;
    font-size: 24px;
  }
  #my-curriculum .entry-content .c-list__box-lists .c-list__box-list {	/* 2024.3 KAZ: Problems_K */
    font-size: 1.25rem;	/* 20px */
  }
}
.entry-content .c-list__box-lists .c-list__box-list::before {
  border-radius: 50%;
  display: inline-block;
  float: left;
  width: 18px;
  height: 18px;
  margin-left: -18px;
  margin-right: 5px;
  content: "";
  margin-top: 0;
}
@media print, screen and (min-width: 768px) {
  .entry-content .c-list__box-lists .c-list__box-list::before {
    width: 24px;
    height: 24px;
    margin-left: -24px;
  }
  #my-curriculum .entry-content .c-list__box-lists .c-list__box-list::before {	/* 2024.3 KAZ: Problems_K */
    width: 20px;
    height: 20px;
    margin-left: -20px;
  }
}
.entry-content .pink-rose + .c-list__box-lists .c-list__box-list::before {
  background-color: var(--ueda-rose-pink);
}

.entry-content .blue + .c-list__box-lists .c-list__box-list::before {
  background-color: #25cee6;
}

/*見出し*/
.entry-content .c-midashi {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .entry-content .c-midashi {
margin-inline: 7px;
  }
}
.entry-content .c-midashi__bubble {
  width: 100%;
  margin-inline: auto;
  position: relative;
  z-index: 8;
  border-radius: 20px;
  text-align: center;
  color: #fff;
  margin-inline: auto;
}

.entry-content .c-midashi__bubble::before {
  content: "";
  display: block;
  width: 21px;
  height: 18px;
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  position: absolute;
  bottom: -17.5px;
  left: 50%;
  transform: translateX(-50%);
}

.entry-content .c-midashi__bubble.c-pink::before {
  background: var(--ueda-pink);
}
.entry-content .c-midashi__bubble.c-blue::before {
  background: var(--ueda-sky-blue);
}
.entry-content .c-midashi__bubble.c-pink-rose::before {
  background: var(--ueda-rose-pink);
}
.entry-content .c-midashi__bubble.c-white::before {
  background-color: #fff;
}
.entry-content .c-midashi__border {
  font-size: 24px;
  line-height: 1.2083333333;
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
  padding-top: 19.5px;
  padding-bottom: 15.5px;
  text-align: center;
}

.entry-content .c-midashi__border.pink {
  border-top: 1px solid var(--ueda-pink);
  border-bottom: 1px solid var(--ueda-pink);
}

.entry-content .c-midashi__border.pink-rose {
  border-top: 1px solid var(--ueda-rose-pink);
  border-bottom: 1px solid var(--ueda-rose-pink);
}

.entry-content .c-midashi__border.blue {
  border-top: 1px solid var(--ueda-sky-blue);
  border-bottom: 1px solid var(--ueda-sky-blue);
}

.entry-content .c-midashi__single {
  font-size: 20px;
  line-height: 1.35;
  border-bottom-width: 2px;
  border-bottom-style: solid;
  display: block;
  text-align: center;
  margin-bottom: 29px;
  padding-bottom: 11.5px;
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
/*font-family: "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif; */
}

.entry-content .c-midashi__single.white {
  border-bottom-color: #fff;
}

.entry-content .c-midashi__single.pink-rose {
  border-bottom-color: var(--ueda-rose-pink);
}

.entry-content .c-midashi__single.blue {
  border-bottom-color: var(--ueda-sky-blue);
}

/*後で確認*/
/*----- 2024.3 KAZ: c/o
h2.underlined {
  position: relative;
  padding-bottom: 21px;
  color: var(--ueda-pink);
  font-weight: normal;
  text-align: center;
}

h2.underlined::before,
h2.underlined::after {
  display: block;
  position: absolute;
  height: 1px;
  bottom: 0;
  content: "";
}

h2.underlined::before {
  background-color: var(--ueda-gray);
  width: 100vw;
  left: calc(50% - 50vw);
}

h2.underlined::after {
  background-color: var(--ueda-strong-pink);
  width: 30px;
  left: calc(50% - 15px);
}
-----*/
.entry-content .underlined.blue {
  color: #00b1cc;
}
.entry-content .underlined.blue::after {
  background-color: var(--ueda-sky-blue);
  width: 30px;
  left: calc(50% - 15px);
}
/* 後で確認*/
/*----- 2024.3 KAZ: c/o
.entry-content h2.markonleft,
.entry-content h3.markonleft {
  font-weight: 600;
  position: relative;
  padding-left: 0;
  margin-left: 13px;
}

.entry-content h2.markonleft::before,
.entry-content h3.markonleft::before
 {
  border-left: var(--ueda-strong-pink) 1px solid;
  border-right: var(--ueda-strong-pink) 1px solid;
  display: inline-block;
  width: 3px;
  height: 20px;
  margin-left: -13px;
  margin-right: 10px;
  vertical-align: -2px;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
-----*/
.entry-content h2.markonleft--long::before,
.entry-content h3.markonleft--long::before
 {
  height: 45px;
}
.entry-content .markonleft.blue {
  color: #222;
}
.entry-content .markonleft.blue::before {
  border-left: var(--ueda-sky-blue) 1px solid;
  border-right: var(--ueda-sky-blue) 1px solid;
}
/**/
/*c-three-column__box*/
.entry-content .c-three-column__boxes {
  grid-template-columns: 1fr;
  gap: 20px 0;
}
@media print, screen and (min-width: 768px) {
  .entry-content .c-three-column__boxes {
    gap: 0 20px;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media screen and (max-width: 767px) {
  .entry-content .c-three-column__box {
    margin-inline: 20px;
  }
}

.entry-content .c-three-column__box-inner {
  width: 100%;
  display: inline-block;
  position: relative;
  padding: 20px 16px;
  background-color: var(--ueda-bg-gray);
}
@media print, screen and (min-width: 768px) {
  .entry-content .c-three-column__box-inner {
    padding: 2.5rem 2rem;
  }
}
.entry-content .c-three-column__box--num {
  color: #fff;
  border-radius: 50%;
  width: 56px;
  aspect-ratio: 1/1;
  font-size: 28px;
  line-height: 1.2142857143;
  font-weight: 400;
  margin-inline: auto;
}

.entry-content .c-three-column__box--ttl {
  font-size: 25px;
  line-height: 1.44;
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
  margin-bottom: 9.5px;
}
@media print, screen and (min-width: 768px) {
  .entry-content .c-three-column__box--ttl {
    font-size: 30px;
    line-height: 0.9;
    margin-bottom: 31.5px;
  }
}
.entry-content .c-three-column__box--desc {
/*font-family: "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif; */
  font-weight: 500;
  font-size: 13.5px;
  line-height: 1.6296296296;
  margin-bottom: 18px;
}
@media print, screen and (min-width: 768px) {
  .entry-content .c-three-column__box--desc {
    font-size: 15px;
    line-height: 1.6666666667;
    margin-bottom: 25px;
  }
}

.entry-content .p-gakka-feature__box-inner{
text-decoration: none;
}
.entry-content .p-gakka-feature__box-inner + p{
  display: none;
}

.entry-content .p-gakka-feature__box--desc {
  color: #222;
}

/*共通トップしたの説明文*/
.entry-content .c-top-ttl {
  font-size: 25px;
  line-height: 1.44;
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
/*font-family: "Zen Old Mincho", "Roboto", sans-serif; */
  margin-bottom: 15px;
}
@media print, screen and (min-width: 768px) {
  .entry-content .c-top-ttl {
    max-width: 820px;
    margin-inline: auto;
    font-size: 35px;
    line-height: 1.2571428571;
    margin-bottom: 20px;
  }
}
.entry-content .c-top-desc {
  font-size: 18px;
  line-height: 1.7777777778;
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
/*font-family: "Zen Old Mincho", "Roboto", sans-serif; */
  margin-bottom: 27px;
}
@media print, screen and (min-width: 768px) {
  .entry-content .c-top-desc {
    max-width: 820px;
    margin-inline: auto;
    margin-bottom: 68px;
    font-size: 20px;
    line-height: 2.2;
  }
}
@media screen and (max-width: 767px) {
  .entry-content .c-top-desc.p-gakka__top-desc {
    margin-bottom: 53px;
  }
}
.entry-content .c-two-columns-img-boxes {
  margin-inline: auto;
  grid-template-columns: 1fr;
  align-items: flex-end;
}
@media print, screen and (min-width: 768px) {
  .entry-content .c-two-columns-img-boxes {
    grid-template-columns: 920px 1fr;
  }
}

.entry-content .c-two-columns-img-boxes--rev {
  grid-template-columns: 1fr;
}
@media print, screen and (min-width: 768px) {
  .entry-content .c-two-columns-img-boxes--rev {
    grid-template-columns: 1fr 920px;
  }
}

.entry-content .c-two-columns-img-box--right .c-two-columns-img-box__title {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 24px;
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
/*font-family: "Zen Old Mincho", "Roboto", sans-serif; */
  color: #222;
}
@media print, screen and (min-width: 768px) {
  .entry-content .c-two-columns-img-box--right .c-two-columns-img-box__title {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 34.5px;
  }
}

.entry-content .c-two-columns-img-box--right {
  background-color: #fff;
  position: relative;
  margin-left: 20px;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .entry-content .c-two-columns-img-box--right {
    margin-top:30px;
  }
}
@media print, screen and (min-width: 768px) {
  .entry-content .c-two-columns-img-box--right {
    padding-top:57px;
    padding-right:50px;
    margin-left: -70px;
    margin-right: 70px;
  }
}

.entry-content .c-two-columns-img-box--right .c-two-columns-img-box__inner {
  padding-left: 18px;
  position: relative;
}
.entry-content .c-two-columns-img-box--right .c-two-columns-img-box__inner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 2px;
  display: block;

}
.entry-content .c-two-columns-img-box--right .c-two-columns-img-box__inner.c-border--pink::before {
  background: var(--ueda-pink);
}
.entry-content .c-two-columns-img-box--right .c-two-columns-img-box__inner.c-border--pink-rose::before {	/* 2024.4 KAZ */
  background: var(--ueda-rose-pink);
}
.entry-content .c-two-columns-img-box--right .c-two-columns-img-box__inner.c-border--blue::before {
  background: var(--ueda-sky-blue);
}
@media print, screen and (min-width: 768px) {
  .entry-content .c-two-columns-img-box--right .c-two-columns-img-box__inner {
    padding-left: 50px;
  }
}

.entry-content .c-two-columns-img-box--left {
  width: 100%;
  aspect-ratio: 39 / 26;
  max-width: 390px;
  margin-inline: auto;
  height: 260px;
}
@media print, screen and (min-width: 768px) {
  .entry-content .c-two-columns-img-box--left {
    aspect-ratio: 92 / 52;
    max-width: 920px;
    height: 520px;
  }
}

.entry-content .c-two-columns-img-box--left img {
  height: calc(100% - 0.4px);
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 100%;
}

@media print, screen and (min-width: 768px) {
  .entry-content .c-two-columns-img-boxes--rev .c-two-columns-img-box--right {
    margin-right: -100px;
    margin-left: 100px;
  }
}

@media screen and (max-width: 767px) {
  .entry-content .c-two-columns-img-box--right {
    width: calc(100% - 14.1%);
  }
}
@media screen and (max-width: 767px) {
  .entry-content .c-two-columns-img-boxes--rev .c-two-columns-img-box--left {
    grid-row: 1/2;
  }
}

.entry-content .c-two-columns-img-box--right .c-two-columns-img-box__desc {
  font-size: 15px;
  line-height: 2;
  color: #222;
  margin-bottom: 18.5px;
}
@media print, screen and (min-width: 768px) {
  .entry-content .c-two-columns-img-box--right .c-two-columns-img-box__desc {
    margin-bottom:28.5px;
  }
}
.entry-content .c-two-columns-img-box--right .c-two-columns-img-box__inner{
  border-left: none;
}
.entry-content .c-two-columns-img-box--right .c-two-columns-img-box__inner::before{
  transition: 0.3s;
}
.entry-content .c-two-columns-img-box--right:hover .c-two-columns-img-box__inner::before{
  width:7px;
  transition: 0.3s;
}
.entry-content .c-two-columns-img-box--right .c-two-columns-img-box__link::after{
  transition: 0.3s;
}
.entry-content .c-two-columns-img-box--right:hover .c-two-columns-img-box__link::after{
left:5px;
transition: 0.3s;
}
/**/
.entry-content .p-about-concept {
    aspect-ratio: 390/844;
    max-width: 100%;
    width: 100%;
    position: relative;
    z-index: 0;
  }
  @media print, screen and (min-width: 768px) {
    .entry-content .p-about-concept {
      aspect-ratio: 1440/900;
    }
  }
  
.p-about-concept__inner {
  position: relative;
}
.entry-content .p-about-concept_fv__bg,
.entry-content .p-about-concept-cont__bg {	/* 2024.3 KAZ: background-attachment: fixed が実機で動作しない */
	position: relative;
	clip-path: inset(-1px);	/* inset(0) results in a 1px gap */
}
.entry-content .p-about-concept_fv__bg {
/*background: url("/wp-content/uploads/2024/02/concept_bg_conten.png") center center no-repeat; */
/*background-size: cover; */
/*background-attachment: fixed; */	/* 2024.3 KAZ: background-attachment: fixed が実機で動作しない */
  width: 100%;
/*height: inherit; */
  height: 100%;
  margin-top: -54px;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-about-concept_fv__bg {
/*  background: url("/wp-content/uploads/2024/02/concept_bg_conten.png") center center no-repeat; */
/*  background-size: cover; */
/*  background-attachment: fixed; */	/* 2024.3 KAZ: background-attachment: fixed が実機で動作しない */
    margin-top: -130px;
  }
}
.entry-content .p-about-concept_fv__bg::before,
.entry-content .p-about-concept-cont__bg::before {	/* 2024.3 KAZ: background-attachment: fixed が実機で動作しない */
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	content: '';
}
@media print, screen and (min-width: 768px) {
	.entry-content .p-about-concept_fv__bg::before,
	.entry-content .p-about-concept-cont__bg::before {	/* 2024.3 KAZ: background-attachment: fixed が実機で動作しない */
		background: url(/wp-content/uploads/2024/02/concept_bg_conten.png) no-repeat center / cover;
	}
}
@media screen and (max-width: 767px) {
	.entry-content .p-about-concept_fv__bg::before,
	.entry-content .p-about-concept-cont__bg::before {	/* 2024.3 KAZ; background-attachment: fixed が実機で動作しない */
		background: url(/images/sp/values_mainvisual.jpg) no-repeat center / cover;
	}
}
/*-----
.entry-content .p-about-concept__fv-box {
  text-align: center;
}
.entry-content .p-about-concept__title-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  display: block;
}
@media screen and (max-width: 767px) {
  .entry-content .p-about-concept__title-box {
    margin-top: 27px;
    width: 100%;
  }
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-about-concept__title-box {
    margin-top:65px;
    top: 50%;
  }
}
.entry-content .p-about-concept__title-box .p-about-concept__title {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #fff;
  font-weight: 400;
  font-family: "Zen Old Mincho", "Roboto", sans-serif;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-about-concept__title-box .p-about-concept__title {
    font-size: 45px;
    line-height: 1.2;
    margin-bottom: 26.5px;
  }
}
.entry-content .p-about-concept__desc {
  font-family: "Zen Old Mincho", "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  color: #fff;
  line-height: 2.0833333333;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-about-concept__desc {
    font-size: 30px;
    line-height: 2.3333333333;
  }
}
-----*/
/*about-concept-cont*/
#about-concept-cont,
#about-todo,
#my-values #footer_links,
#my-values #colophon {	/* 2024.3 KAZ: background-attachment: fixed が実機で動作しない */
	position: relative;
}
#about-concept-cont,
#about-todo {	/* 2024.3 KAZ: background-attachment: fixed が実機で動作しない */
	background-color: white;
}
#about-concept-cont {
/*margin-bottom: 60px; */	/* 2024.3 KAZ: background-attachment: fixed が実機で動作しない */
}
@media print, screen and (min-width: 768px) {
  #about-concept-cont {
/*  margin-bottom: 130px; */	/* 2024.3 KAZ: background-attachment: fixed が実機で動作しない */
  }
}
.entry-content .p-about-concept-cont {
  aspect-ratio: 390/1832;
  max-width: 100%;
  width: 100%;
  position: relative;
  z-index: 0;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-about-concept-cont {
    aspect-ratio: 1440/1695;
  }
}

.p-about-concept-cont__inner {	/* 2024.3 KAZ: background-attachment: fixed が実機で動作しない */
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.p-about-concept-cont__inner::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: -289px;
  left: 0;
  z-index: 1;
  aspect-ratio: 2097 / 2500;
  background-size: cover;
  background-image: url("/wp-content/uploads/2024/02/bg_black.png");
  background-size: cover;
}
.entry-content .p-about-concept-cont__bg {
  background: url("/wp-content/uploads/2024/02/concept_bg_conten.png") center center no-repeat;
  background-size: cover;
  width: 100%;
  height: inherit;
  height: 100%;
  background-attachment: fixed;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-about-concept-cont__bg {
    background: url("/wp-content/uploads/2024/02/concept_bg_conten.png") center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
  }
}
.p-about-concept__content {
  margin-inline: auto;
  color: #fff;
  line-height: 2.6666666667;
  font-size: 15px;
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
/*font-family: "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif; */
  padding-top: 268px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .p-about-concept__content {
    margin-inline: 20px;
    max-width: 100%;
  }
}
@media print, screen and (min-width: 768px) {
  .p-about-concept__content {
    padding-top: 123px;
    max-width: 820px;
    line-height: 3.5294117647;
    font-size: 17px;
  }
}

.p-about-concept__content p + p {
  margin-top: 60px;
}

/*concept-todo*/
#about-todo {
/*margin-bottom: 51.5px; */	/* 2024.3 KAZ: background-attachment: fixed が実機で動作しない */
}
@media print, screen and (min-width: 768px) {
	#about-todo {
/*		margin-bottom: 124px; */	/* 2024.3 KAZ: background-attachment: fixed が実機で動作しない */
		padding-top: 130px;	/* 2024.3 KAZ; background-attachment: fixed が実機で動作しない */
		padding-bottom: 124px;	/* 2024.3 KAZ; background-attachment: fixed が実機で動作しない */
	}
}
@media screen and (max-width: 767px) {
	#about-todo {	/* 2024.3 KAZ; background-attachment: fixed が実機で動作しない */
		padding-top: 60px;
		padding-bottom: 51.5px;
	}
}

.p-about-todo__inner {
  max-width: 100%;
  margin-inline: 20px;
}
@media print, screen and (min-width: 768px) {
  .p-about-todo__inner {
    max-width: 820px;
    margin-inline: auto;
  }
}

.entry-content .p-about-todo__title_box--ttl {
  position: relative;
  margin-bottom: 51.5px;
  font-size: 30px;
  line-height: 1.2;
  color: var(--ueda-pink);
/*font-family: "Zen Old Mincho", "Roboto", sans-serif; */
  text-align: center;
  font-weight: 400;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-about-todo__title_box--ttl {
    font-size: 35px;
    line-height: 1.2;
    margin-bottom: 92px;
  }
}
.entry-content .p-about-todo__title_box--ttl::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -24.5px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 16px;
  background-color: var(--ueda-pink);
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-about-todo__title_box--ttl::before {
    height: 28px;
    bottom: -36.5px;
  }
}
.p-about-todo__title_box--desc {
/*font-family: "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif; */
  font-size: 15px;
  line-height: 2;
  margin-bottom: 37px;
}
@media print, screen and (min-width: 768px) {
  .p-about-todo__title_box--desc {
    margin-bottom: 69.5px;
  }
}
.p-about-todo__cont_box:not(:last-of-type) {
  margin-bottom: 36.5px;
}
@media print, screen and (min-width: 768px) {
  .p-about-todo__cont_box:not(:last-of-type) {
    margin-bottom: 82px;
  }
}

.entry-content .p-about-todo__cont_box--ttl {
  font-size: 17px;
  line-height: 1.7058823529;
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
  border-bottom: 1px solid var(--ueda-pink);
  position: relative;
  padding-bottom: 2px;
  display: inline-block;
/*font-family: "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif; */
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-about-todo__cont_box--ttl {
    padding-bottom: 3px;

  }
}
.p-about-todo__cont_box:first-of-type .p-about-todo__cont_box--ttl {
  margin-bottom: 22px;
}
.p-about-todo__cont_box:nth-of-type(2) .p-about-todo__cont_box--ttl {
  margin-bottom: 14.5px;
}
.p-about-todo__cont_box{
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-about-todo__cont_box .p-about-todo__cont_box--ttl {
    font-size: 16px;
  }
}
@media print, screen and (min-width: 768px) {
  .p-about-todo__cont_box:first-of-type .p-about-todo__cont_box--ttl {
    margin-bottom: 19px;
  }
  .p-about-todo__cont_box:nth-of-type(2) .p-about-todo__cont_box--ttl{
    margin-bottom: 23px;
  }
  .p-about-todo__cont_box:last-of-type .p-about-todo__cont_box--ttl{
    margin-bottom: 23.5px;
  }
}
@media screen and (max-width: 767px) {
  .p-about-todo__cont_box:last-of-type .p-about-todo__cont_box--ttl {
    margin-bottom: 20px;
  }
}

.entry-content .p-about-todo__cont_box--ttl::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 1px;
  z-index: -1;
  width: 350px;
  max-width: 350px;
  display: block;
  background: var(--ueda-gray);
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-about-todo__cont_box--ttl::before {
    width: 820px;
    max-width: 820px;
  }
}
.p-about-todo__cont_box--desc {
  font-weight: 400;
}

.p-about-todo__cont_box--large .p-about-todo__cont_box--desc {
  font-size: 35px;
  line-height: 1.2;
}
@media print, screen and (min-width: 768px) {
  .p-about-todo__cont_box--large .p-about-todo__cont_box--desc {
    font-size: 50px;
    line-height: 1.2;
  }
}

.p-about-todo__cont_box--middle .p-about-todo__cont_box--desc {
  font-size: 25px;
  line-height: 1.8;
}
@media print, screen and (min-width: 768px) {
  .p-about-todo__cont_box--middle .p-about-todo__cont_box--desc {
    font-size: 30px;
    line-height: 1.2;
  }
}

.p-about-todo__cont_box--small .p-about-todo__cont_box--desc {
  font-size: 17px;
  line-height: 2;
}
@media print, screen and (min-width: 768px) {
  .p-about-todo__cont_box--small .p-about-todo__cont_box--desc {
    font-size: 25px;
    line-height: 2;
  }
}

.p-about_fv {
  aspect-ratio: 1440/487;
  max-width: 100%;
  width: 100%;
}
/*-----
.p-about_fv img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.p-about__fv-box {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-about__fv-box {
    margin-inline: 20px;
  }
}
.p-about__title-box {
  padding: 60px 100px 0;
  text-align: center;
  background: #fff;
  display: inline-block;
  max-width: 358px;
  margin: -57px auto 51px;
}
@media print, screen and (min-width: 768px) {
  .p-about__title-box {
    margin: -100px auto 106px;
  }
}
.p-about__title-box .p-about__title {
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: 0.126em;
  margin-bottom: 17px;
  color: var(--ueda-pink);
  font-weight: 400;
}
@media print, screen and (min-width: 768px) {
  .p-about__title-box .p-about__title {
    font-size: 35px;
    line-height: 1.2;
    margin-bottom:26.5px;
  }
}

.p-about__title-box .p-about__subtitle {
  font-size: 16px;
  line-height: 1.1875;
  letter-spacing: 0.18em;
  color: #222;
  font-family: "Zen Old Mincho", "Roboto", sans-serif;
  font-weight: 600;
}
@media print, screen and (min-width: 768px) {
  .p-about__title-box .p-about__subtitle {
    font-size: 20px;
    line-height: 1.2;
  }
}
-----*/
.p-about__desc {
  font-size: 18px;
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
  text-align: left;
  color: #222;
  line-height: 1.7777777778;
  margin-bottom: 52px;
}
@media print, screen and (min-width: 768px) {
  .p-about__desc {
    font-size: 20px;
    line-height: 2.2;
    margin-bottom:73px;
    text-align: center;
    margin-bottom: 68px;
  }
}
@media screen and (max-width: 767px) {
  .p-about__desc {
          margin-inline: 20px;
  }
}
/*gallery*/
#about_gallery {
  margin-bottom: 40px;
}
@media print, screen and (min-width: 768px) {
  #about_gallery {
    margin-bottom: 100px;
  }
}

.p-about__gallaries {
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.p-about__gallery-box {
  width: 280px;
  aspect-ratio: 1/1;
}
@media print, screen and (min-width: 768px) {
  .p-about__gallery-box {
    width: 420px;
  }
}

.p-about__gallery-box img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  width: 100%;
}

/*campus*/
#about_campus {
  margin-bottom: 60px;
}
@media print, screen and (min-width: 768px) {
  #about_campus {
    margin-bottom: 120px;
  }
}

.p-about_campus-boxes {
  padding: 20px;
  background: var(--ueda-bg-gray);
  max-width: 100%;
  margin-inline: auto;
  grid-template-columns: 1fr;
  gap: 25px 0;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-about_campus-boxes {
    gap: 20px 0;
  }
}
@media print, screen and (min-width: 768px) {
  .p-about_campus-boxes {
    padding: 50px;
    max-width: 1030px;
    gap: 0 44px;
    grid-template-columns: 390px 1fr;
  }
}

.p-about_campus-box--right .p-about_campus-box__title {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 17px;
  color: var(--ueda-pink);
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-about_campus-box--right .p-about_campus-box__title {
    text-align: center;
    margin-bottom: 5px;
  }
}
@media print, screen and (min-width: 768px) {
  .p-about_campus-box--right .p-about_campus-box__title {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom:17px;
  }
}
@media screen and (max-width: 767px) {
  .p-about_campus-box--right {
    text-align: center;
  }
}
.p-about_campus-box--left {
  aspect-ratio: 310/206;
  max-width: 310px;
  width: 100%;
  margin-inline: auto;
}
@media print, screen and (min-width: 768px) {
  .p-about_campus-box--left {
    aspect-ratio: 39/26;
    max-width: 390px;
  }
}

.p-about_campus-box--left img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  width: 100%;
  height: 100%;
}

.p-about_campus-box--right .p-about_campus-box__desc {
  font-size: 14px;
  line-height: 1.7857142857;
  color: #222;
  margin-bottom: 14.5px;
}
@media screen and (max-width: 767px) {
  .p-about_campus-box--right .p-about_campus-box__desc {
    text-align: center;
  }
}
@media print, screen and (min-width: 768px) {
  .p-about_campus-box--right .p-about_campus-box__desc {
    font-size: 15px;
    line-height: 1.6666666667;
    margin-bottom:25px;
  }
}

.entry-content a.p-about_campus-box__btn {
  min-width: auto;
  max-width: 240px;
  color: #222;
  font-size: 15px;
  line-height: 1.7333333333;
  padding:16px 17px 16px 20px;
  margin-inline: auto;
  text-decoration: none;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .entry-content a.p-about_campus-box__btn {
    margin-inline: auto;
    text-align: left;
  }
}
@media print, screen and (min-width: 768px) {
  .entry-content a.p-about_campus-box__btn {
    max-width: 210px;
    margin-left: 0;
    padding:16px 17px 16px 17px;
  }
}

/*thoughts*/
#about_thoughts {
  margin-bottom: 60px;
}
@media print, screen and (min-width: 768px) {
  #about_thoughts {
    margin-bottom: 120px;
  }
}

.p-about_thoughts__inner {
  gap: 50px 0;
}
@media print, screen and (min-width: 768px) {
  .p-about_thoughts__inner {
    gap:100px 0;
  }
}

.p-about_thoughts-box__link {
  color: #222;
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
}

/*footer_links*/
#footer_links {
  background-color: #f4f4f4;
}

.entry-content .p-footer_thoughts-box__link {
  font-size: 15px;
  line-height: 1.8;
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
}

.entry-content .p-footer_links__inner {
  max-width: 300px;
  margin-inline: auto;
  padding-top: 60px;
  padding-bottom: 80px;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-footer_links__inner {
    max-width: 100%;
    margin-right: 100px;
    margin-left: 100px;
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.entry-content .p-footer_links-boxes {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px 20px;
}
@media screen and (max-width: 767px) {
  .entry-content .p-footer_links-boxes {
    gap: 10px 0;
    grid-template-columns: 1fr;
  }
}

.entry-content a.p-footer_links-box__btn {
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
  max-width: 300px;
  margin-inline: auto;
  color: #222;
  font-size: 15px;
  line-height: 1.7333333333;
  display: block;
}
@media screen and (max-width: 767px) {
  .entry-content a.p-footer_links-box__btn {
    margin-inline: auto;
  }
}
@media print, screen and (min-width: 768px) {
  .entry-content a.p-footer_links-box__btn {
    max-width: 295px;
  }
}

.entry-content a.p-footer_links-box__btn--two {
  line-height: 1.2;
  padding: 22.5px 25px;
}

/*access*/
#access {
  margin-bottom: 45px;
  
}
@media print, screen and (min-width: 768px) {
  #access {
    margin-bottom: 95.5px;
  }
}

#access_way {
  margin-bottom: 60px;
}
@media print, screen and (min-width: 768px) {
  #access_way {
    margin-bottom: 134px;
  }
}

.p-access__inner {
  margin-inline: 20px;
}
@media print, screen and (min-width: 768px) {
  .p-access__inner {
    max-width: 1030px;
    margin-inline: auto;
  }
}

/*後ほど削除*/
.entry-content .p-access__midashi {
  margin-bottom: 49px;
}

/**/
.entry-content .p-access__midashi::after {
  background-color: var(--ueda-rose-pink);
}

@media print, screen and (min-width: 768px) {
.entry-content .p-access__map-box {
  padding-left: 128px;
}
}

.entry-content .p-access__map-box__img {
  margin-bottom: 31px;
  width: 100%;
  aspect-ratio: 390/300;
}
@media print, screen and (min-width: 768px) {
  .p-access__map-box__img {
    aspect-ratio: 820/600;
    max-width: 820px;
  }
}
.entry-content .p-access__map-box__img iframe{
  border: 1px solid #707070;
  height: 100%;
}
.entry-content .p-access-way__midashi {
  margin-bottom: 93.5px;
}

.entry-content .p-access_boxes {
  grid-template-columns: 1fr;
  gap: 43px 0;
  max-width: 1000px;
  margin-inline: auto;
}

.entry-content .p-access__title {
  margin-bottom: 30px;
}

.entry-content .p-access_box.c-grid .p-locate__title {
  margin-bottom: 20.5px;
}

.entry-content .p-access_box-desc {
  margin-top: 23.5px;
}

.entry-content .p-access_box__inner {
  grid-template-columns: 1fr;
  gap: 60px 0;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-access_box__inner {
    gap: 0 43px;
    grid-template-columns: 488px 1fr;
  }
}

.entry-content .p-access_box-img {
  max-width: 488px;
  width: 100%;
  display: block;
  aspect-ratio: 488/365;
}
@media screen and (max-width: 767px) {
  .entry-content .p-access_box-img {
    margin-inline: auto;
  }
}
.entry-content .p-access_box-img img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  width: 100%;
}

/*後で確認*/
.entry-content .p-access_box-lists {
  grid-template-columns: 1fr;
  gap: 10px 0;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-access_box-lists {
    gap: 10px 30px;
  }
}

.entry-content .p-access_box-lists .p-access_box-list {
  line-height: 1.6666666667;
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
  margin-bottom: 0;
}

/**/
/*around-info*/
#around-info {
  margin-bottom: 50px;
}
@media print, screen and (min-width: 768px) {
  #around-info {
    margin-bottom: 118px;
  }
}

.entry-content .p-around-info__intro {
  font-size: 17px;
  line-height: 2;
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
/*font-family: "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif; */
  margin-bottom: 49px;
  max-width: 820px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
.entry-content .p-around-info__intro + h2.p-shikaku__midashi {
margin-bottom: 32.5px;
}
}
.entry-content .p-around-info__desc {
  max-width: 1030px;
  margin-inline: 20px;
  margin-bottom: 48.5px;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-around-info__desc {
    margin-inline: auto;
  }
}
.entry-content .p-around-info__inner {
  margin-inline: 20px;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-around-info__inner {
    max-width: 1030px;
    margin-inline: auto;
  }
}

.entry-content .p-around-info__boxes {
  grid-template-columns: 1fr;
  gap: 50.5px 0;
}

.entry-content .p-around-info__box-desc + .p-around-info__link {
  margin-top: 29.5px;
}

/*後ほど削除*/
.entry-content .p-around-info__box-ttl {
  margin-bottom: 32.5px;
  font-size: 24px;
  line-height: 1.5;
  font-weight: bold;
  position: relative;
  padding-bottom: 10px;
}

/**/
.entry-content .p-around-info__box-ttl::after {
  background-color: var(--ueda-rose-pink);
}
/*career*/
@media screen and (max-width: 767px) {
  .entry-content .p-career__top-desc {
    margin-bottom: 53px;
  }
}
/*career-point*/
#career-point {
  margin-bottom: 40px;
}
@media print, screen and (min-width: 768px) {
  #career-point {
    margin-bottom: 90px;
  }
}

.entry-content .p-career-point__title-box {
  margin-bottom: 0px;
  max-width: 330px;
  padding-top: 15.2px;
  padding-bottom: 11.5px;
}
@media print, screen and (min-width: 768px) {
  .entry-content  .p-career-point__title-box {
    max-width: 610px;
    margin-bottom: -40px; 
   }
}
.entry-content .p-career-point__title {
  aspect-ratio: 257.01/65.5;
  max-width: 257.01px;
  width: 100%;
  margin-inline: auto;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-career-point__title {
    aspect-ratio: 407.01/49.27;
    max-width: 407.01px;
  }
}
.entry-content .p-career-point__title img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  width: 100%;
}

.entry-content .p-career-point__cont-box {
  margin-inline: -20px;
  background: var(--ueda-bg-gray);
  padding: 36px 20px 40px 20px;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-career-point__cont-box {
    max-width: 1030px;
    margin-inline: auto;
    max-width: 100%;
    padding: 101px 198px 60px 198px;
  }
}

.entry-content .p-career-point__cont-lists {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px 0;

}

.entry-content .p-career-point__cont-list {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0 12px;
  align-items: center;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-career-point__cont-list {
    gap: 0 26px;
    grid-template-columns: 56px 1fr;
  }
}

.entry-content .p-career-point__cont-lists .p-career-point__cont-list span {
  display: inline-block;
  width: 100%;
  height: 44px;
  color: #fff;
  font-size: 24px;
  line-height: 1.2083333333;
  text-align: center;
  padding-top: 5.5px;
  padding-bottom: 7.5px;
  font-weight: 400;
  border-radius: 50%;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-career-point__cont-lists .p-career-point__cont-list span {
    padding-top: 11px;
    padding-bottom: 11px;
    height: 56px;
    font-size: 28px;
    line-height: 1.2142857143;
  }
}

.p-career-point__cont-lists .p-career-point__cont-list .p-career-point__cont {
  font-size: 20px;
  line-height: 1.5;
/*font-family: "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif; */
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
}
@media print, screen and (min-width: 768px) {
  .p-career-point__cont-lists .p-career-point__cont-list .p-career-point__cont {
    font-size: 24px;
    line-height: 1.25;
  }
}

/*career-support*/
#career-support {
  margin-bottom: 70px;
}
@media print, screen and (min-width: 768px) {
  #career-support {
    margin-bottom: 100px;
  }
}
.p-career-support__inner {
  max-width: 1440px;
  margin-inline: auto;
}

.p-career-support__boxes {
  max-width: 1235px;
  grid-template-columns: 1fr;
  gap: 39px 0;
  align-items: center;
}
@media print, screen and (min-width: 768px) {
  .p-career-support__boxes {
    gap: 0 39px;
    grid-template-columns: 720px 1fr;
  }
}

.p-career-support__box--left {
  width: 100%;
}

.p-career-support__img {
  aspect-ratio: 390/223;
  max-width: 390px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-career-support__img {
    margin-inline: auto;
  }
}
@media print, screen and (min-width: 768px) {
  .p-career-support__img {
    aspect-ratio: 72/53;
    max-width: 720px;
  }
}

.p-career-support__box--left img {
  max-width: 100%;
  margin-inline: auto;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .p-career-support__box--right {
    width: 100%;
  }
}
.p-career-support__ttl {
  font-size: 20px;
  line-height: 1.5;
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
/*font-family: "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif; */
  margin-bottom: 22.5px;
}

.p-career-support__desc {
  font-size: 15px;
  line-height: 2;
  font-weight: 500;
  margin-bottom: 21.5px;
}
@media print, screen and (min-width: 768px) {
  .p-career-support__desc {
    margin-bottom: 32.5px;
  }
}

.p-career-support__cont {
  background: var(--ueda-bg-gray);
  padding: 20px;
}
@media print, screen and (min-width: 768px) {
  .p-career-support__cont {
    padding: 30px;
  }
}
/*後で確認*/
.entry-content .p-career-support__cont-ttl {
/*font-family: "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif; */
  border-bottom: 1px solid var(--ueda-medium-gray);
  margin-bottom: 22px;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-career-support__cont-ttl {
    padding-bottom: 3px;
  }
}

.entry-content .p-career-support__cont-lists {
  grid-template-columns: 1fr;
  gap: 10px 0;
  margin-bottom: 0;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-career-support__cont-lists {
    grid-template-columns: auto auto;
    gap:15px 30px;
  }
}

.entry-content .p-career-support__cont-lists .p-career-support__cont-list {
  margin-bottom: 0;
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
}


/**/
/*career-graph*/
#career-graph {
  margin-bottom: 70px;
}
@media print, screen and (min-width: 768px) {
  #career-graph {
    margin-bottom: 107px;
  }
}

.entry-content .p-career-graph__midashi {
  margin-bottom: 40px;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-career-graph__midashi {
    margin-bottom: 80px;
  }
}
.entry-content .p-career-graph__inner {
  max-width: 920px;
  margin-inline: auto;
}

.entry-content .p-career-graph__boxes {
  grid-template-columns: 1fr;
  gap: 60px 0;
}
@media screen and (max-width: 767px) {
  .entry-content .p-career-graph__boxes {
    margin-bottom: 30px;
  }
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-career-graph__boxes {
    grid-template-columns: 1fr 1fr;
  gap: 0 60px;
  }
}

.entry-content .p-career-graph__box-ttl {
  margin-bottom: 44px;
}
@media screen and (max-width: 767px) {
  .entry-content .p-career-graph__box-ttl {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.45;
    padding-top: 5.5px;
    padding-bottom: 5.5px;
  }
}
.entry-content .p-career-graph__box-img {
  aspect-ratio: 430/254;
  width: 100%;
  max-width: 430px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .entry-content .p-career-graph__box-img {
    margin-bottom: 0px;
  }
}
.entry-content .p-career-graph__box-img img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  width: 100%;
}
.p-career-graph__links-box {
  text-align: center;
}
.entry-content a.p-career-graph-box__btn {
  min-width: auto;
  padding-top: 16px;
  padding-bottom: 16px;
  max-width: 165px;
width: 100%;
  font-size: 15px;
  line-height: 1.7333333333;
  color: #222;
}

/*career-flow*/
#career-flow {
  margin-bottom: 50px;
}
@media print, screen and (min-width: 768px) {
  #career-flow {
    margin-bottom: 80px;
  }
}
.p-career-flow__midashi {
  margin-bottom: 80px;
}

.p-career-flow__midashi-txt {
  font-size: 15px;
  line-height: 2;
  font-weight: 400;
/*font-family: "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif; */
  margin-bottom: 42.5px;
  max-width: 1030px;
  margin-inline: auto;
}
@media print, screen and (min-width: 768px) {
  .p-career-flow__midashi-txt {
    margin-bottom: 80px;
  }
}
.p-career-flow__inner {
  max-width: 1030px;
  margin-inline: auto;
}
.p-career-flow__boxes--pc {
  width: 100%;
}
.p-career-flow__boxes {
  grid-template-columns: 1fr;
}
@media screen and (max-width: 767px) {
  .entry-content .p-career-flow__boxes--mobile .p-career-flow__boxes:first-of-type {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-career-flow__boxes {
    gap: 22.5px 0;
  }
}
@media print, screen and (min-width: 768px) {
  .p-career-flow__boxes {
    grid-template-columns: 1fr 1fr;
  }
}
.p-career-flow__boxes + .p-career-flow__boxes {
  margin-top: 11.5px;
}
.entry-content .p-career-flow__box-ttl {
  max-width: calc(100% - 15px);
  margin-bottom: 35px;
}

.p-career-flow__boxes .p-career-flow__box:last-of-type .p-career-flow__box-ttl {
  margin-left: auto;
}
.p-career-flow__box__inner:not(:last-of-type) {
  margin-bottom: 22.5px;
}
@media print, screen and (min-width: 768px) {
.p-career-flow__boxes .p-career-flow__box:last-of-type .p-career-flow__box__inner {
  padding-left: 95px;
}
}
.p-career-flow__box-subttl_box {
  position: relative;
}

.p-career-flow__box-subttl_box::before {
  content: "";
  display: block;
  width: 43px;
  top: 0;
  z-index: 100;
  position: absolute;
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 93%, 50% 100%, 0 93%);
  clip-path: polygon(0 0, 100% 0%, 100% 93%, 50% 100%, 0 93%);
}

.p-career-flow__box-subttl_box--blue::before {
  background-color: var(--ueda-sky-blue);
}
@media print, screen and (min-width: 768px) {
  .p-career-flow__box-subttl_box--blue::before {
    left: 15px;
  }
}
@media screen and (max-width: 767px) {
  .p-career-flow__box-subttl_box--blue::before {
    right: 0;
  }
}
.p-career-flow__box-subttl_box--pink::before {
  background-color: #fcadb5;
}
@media screen and (max-width: 767px) {
  .p-career-flow__box-subttl_box--pink::before {
    right: 0;
  }
}
@media print, screen and (min-width: 768px) {
  .p-career-flow__box-subttl_box--pink::before {
    right: 15px;
  }
}
.p-career-flow__box-subttl_box::after {
  position: absolute;
  width: 43px;
  top: 20px;
  z-index: 999;
  -webkit-text-orientation: upright;
  text-orientation: upright;
  word-break: break-all;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  color: #fff;
  font-weight: bold;
  font-size: 17px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-career-flow__box-subttl_box--blue::after {
    right: 0;
  }
}
@media print, screen and (min-width: 768px) {
  .p-career-flow__box-subttl_box--blue::after {
    left: 15px;
  }
}

@media screen and (max-width: 767px) {
  .p-career-flow__box-subttl_box--pink::after {
    right: 0;
  }
}
@media print, screen and (min-width: 768px) {
  .p-career-flow__box-subttl_box--pink::after {
    right: 15px;
  }
}

.p-career-flow__box-subttl_box::before,
.p-career-flow__box-subttl_box::after {
  max-height: 275px;
  height: 275px;
}

.p-career-flow__box-subttl_box.p-career-flow__box--middle.c-career--1::before,
.p-career-flow__box-subttl_box.p-career-flow__box--middle.c-career--1::after {
  max-height: 210px;
  height: 210px;
}
.p-career-flow__box-subttl_box.p-career-flow__box--middle.c-intern::before,
.p-career-flow__box-subttl_box.p-career-flow__box--middle.c-intern::after {
  max-height: 399px;
  height: 399px;
}
@media print, screen and (min-width: 768px) {
  .p-career-flow__box-subttl_box.p-career-flow__box--middle::before,
.p-career-flow__box-subttl_box.p-career-flow__box--middle::after {
  max-height: 399px;
  height: 399px;
  }
}

.p-career-flow__box-subttl_box.p-career-flow__box--large::before,
.p-career-flow__box-subttl_box.p-career-flow__box--large::after {
  max-height: 414px;
  height: 414px;
}
.p-career-flow__box-subttl_box.p-career-flow__box--large.p-career-flow__box-subttl_box--blue::before,
.p-career-flow__box-subttl_box.p-career-flow__box--large.p-career-flow__box-subttl_box--blue::after {
  max-height: 462px;
  height: 462px;
}
@media print, screen and (min-width: 768px) {
  .p-career-flow__box-subttl_box.p-career-flow__box--large::before,
  .p-career-flow__box-subttl_box.p-career-flow__box--large::after {
    max-height: 525px;
    height: 525px;
  }
}
.entry-content .p-career-flow__box-subttl {
  padding-bottom: 2.5px;
  border-bottom: 1px solid var(--ueda-bg-gray);
  margin-bottom: 27.5px;
/*font-family: "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif; */
  font-size: 15px;
  line-height: 2;
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-career-flow__box-subttl {
    margin-bottom: 32.5px;
  }
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-career-flow__boxes .p-career-flow__box:last-of-type .p-career-flow__box-subttl {
    text-align: right;
  }
}

.entry-content .p-career-flow__box-list-ttl {
/*font-family: "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif; */
  font-size: 15px;
  line-height: 2;
  margin-bottom: 12.5px;
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
}

.p-career-flow__box-list-ttl.pink {
  color: #fa8591;
}

.p-career-flow__box-list-ttl.blue {
  color: #25cee6;
}

/*後で確認*/
.entry-content .p-career-flow__box-lists {
  grid-template-columns: 1fr;
  gap: 10px 0;
}
@media screen and (max-width: 767px) {
  .entry-content .p-career-flow__box-lists {
    margin-bottom: 0;
  }
}
@media print, screen and (min-width: 768px) {
  .entry-content  .p-career-flow__box-lists {
    grid-template-columns: auto;
    gap: 10px 30px;
  }
}
.entry-content .p-career-flow__box-lists .p-career-flow__box-list{
  list-style-type: none;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.6666666667;
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
  margin-bottom: 0;
}

.entry-content .p-career-flow__box-lists .p-career-flow__box-list::before {
  border-radius: 50%;
  display: inline-block;
  float: left;
  width: 1em;
  height: 1em;
  margin-top: 0.3333em;
  margin-left: -20px;
  margin-right: calc(20px - 1em);
  content: "";
}

.entry-content .pink + .p-career-flow__box-lists .p-career-flow__box-list::before {
  background-color: #fa8591;
}

.entry-content .blue + .p-career-flow__box-lists .p-career-flow__box-list::before {
  background-color: #25cee6;
}

/**/
/*career schedule*/
#career__schedule {
  margin-bottom: 80px;
}
@media print, screen and (min-width: 768px) {
  #career__schedule {
    margin-bottom: 101px;
  }
}

.entry-content .p-career__schedule__inner {
  max-width: 1030px;
  margin-inline: auto;
}

.entry-content .p-career__schedule_ttl {
  margin-bottom: 49px;
  border-bottom: 1px solid var(--ueda-gray);
  border-top: 1px solid var(--ueda-gray);
}
@media screen and (max-width: 767px) {
  .entry-content .p-career__schedule_ttl {
    font-size: 20px;
    line-height: 1.45;
    padding-top: 5.5px;
    padding-bottom: 5.5px;
    margin-bottom: 32.5px;
  }
}
.entry-content .p-career-schedule__boxes {
  grid-template-columns: 1fr;
}
@media screen and (max-width: 767px) {
  .entry-content .p-career-schedule__boxes {
    gap: 22.5px 0;
  }
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-career-schedule__boxes {
    grid-template-columns: 1fr 1fr;
  }
}
.entry-content .p-career-schedule__box-subttl {
  padding-bottom: 2.5px;
  border-bottom: 1px solid var(--ueda-bg-gray);
  margin-bottom: 35px;
/*font-family: "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif; */
  font-size: 15px;
  line-height: 2;
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-career-schedule__box-subttl {
    margin-bottom: 36px;
  }
}
.p-career-schedule__box-lists {
  gap: 18px 0;
}

.entry-content .p-career-schedule__box-lists .p-career-schedule__box-list {
  grid-template-columns: 29.5% 1fr;
  align-items: center;
  gap: 0 21px;
  padding-left: 0;
  margin-bottom: 0;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-career-schedule__box-lists .p-career-schedule__box-list {
    grid-template-columns: 22% 1fr;
  }
}
.entry-content .p-career-schedule__box-lists .p-career-schedule__box-list:has(.p-career-schedule__box-sublist) {
  align-items: flex-start;
}
.entry-content .p-career-schedule__box-lists .p-career-schedule__box-list::before {
  display: none;
}
.entry-content .p-career-schedule__box-lists .p-career-schedule__box-list span {
  display: inline-block;
}

.p-career-schedule__box-list--month {
  font-size: 25px;
  line-height: 1;
/*font-family: "Zen Old Mincho", "Roboto", sans-serif; */
  font-weight: bold;
  color: var(--ueda-bg-pink);
}

.entry-content .p-career-schedule__box-lists .p-career-schedule__box-list--cont {
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
  font-size: 15px;
  line-height: 1.6666666667;
/*font-family: "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif; */
  margin-bottom: 0;
}
.p-career-schedule__box-list--cont p{
  display: none;
}
/*後で確認*/
.p-career-schedule__box-sublists {
  grid-template-columns: 1fr;
  gap: 10px 0;
}
@media print, screen and (min-width: 768px) {
  .p-career-schedule__box-sublists {
    grid-template-columns: auto;
    gap: 10px 30px;
  }
}

.p-career-schedule__box-sublist {
  list-style-type: none;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.6666666667;
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
}

.p-career-schedule__box-sublist::before {
  background: #fa8591;
  border-radius: 50%;
  display: inline-block;
  float: left;
  width: 1em;
  height: 1em;
  margin-top: 0.3333em;
  margin-left: -20px;
  margin-right: calc(20px - 1em);
  content: "";
}

/*career__interview*/
#career__interview {
  margin-bottom: 100px;
}
@media print, screen and (min-width: 768px) {
  #career__interview {
    margin-bottom: 109px;
  }
}

.p-career__interview__inner {
  max-width: 350px;
  margin-inline: auto;
}
@media print, screen and (min-width: 768px) {
  .p-career__interview__inner {
    max-width: 820px;
  }
}

.p-career__interview-boxes {
  background: var(--ueda-bg-gray);
  max-width: 100%;
  grid-template-columns: 1fr;
  gap: 30px 0;
  align-items: center;
  width: 100%;
  margin-bottom: 40px;
}
@media print, screen and (min-width: 768px) {
  .p-career__interview-boxes {
    gap: 0 52px;
    grid-template-columns: 505px 1fr;
  }
}

.p-career__interview-box--right .p-career__interview-box__title {
  font-size: 30px;
  line-height: 1.4666666667;
  margin-bottom: 4px;
  color: var(--ueda-pink);
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-career__interview-box--right .p-career__interview-box__title {
    text-align: center;
  }
}
@media print, screen and (min-width: 768px) {
  .p-career__interview-box--right .p-career__interview-box__title {
    font-size: 33px;
    line-height: 1.2121212121;
    margin-bottom:10px;
  }
}

.entry-content .p-career__interview-box--left {
  aspect-ratio: 350/228;
  max-width: 350px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .entry-content .p-career__interview-box--left {
    max-height: 228px;
    height: 100%;
  }
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-career__interview-box--left {
    aspect-ratio: 505/329;
    max-width: 505px;
  }
}

.p-career__interview-box--left img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  width: 100%;
  height: 100%;
}

.p-career__interview-box--right .p-career__interview-box__desc {
  font-size: 15px;
  line-height: 3.333;
  color: #222;
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
/*font-family: "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif; */
  margin-bottom: 18.5px;
}
@media screen and (max-width: 767px) {
  .p-career__interview-box--right .p-career__interview-box__desc {
    text-align: center;
  }
}
@media print, screen and (min-width: 768px) {
  .p-career__interview-box--right .p-career__interview-box__desc {
    font-size:15px;
    line-height: 2;
    margin-bottom:28.5px;
  }
}

.entry-content a.p-career__interview-box__btn {
  min-width: auto;
  max-width: 240px;
  color: #222;
  font-size: 15px;
  line-height: 1.7333333333;
  display: block;
  font-weight:500;
  width: 100%;
  padding: 17px 0px 17px 20px;
}
@media screen and (max-width: 767px) {
  .entry-content a.p-career__interview-box__btn {
    margin-inline: auto;
    margin-bottom: 30px;
  }
}
@media print, screen and (min-width: 768px) {
  .entry-content a.p-career__interview-box__btn {
    max-width:224px;
    margin: 0;
  }
}

.p-career__interview-btn__boxes {
  grid-template-columns: 1fr;
  gap: 20px 0;
}
@media print, screen and (min-width: 768px) {
  .p-career__interview-btn__boxes {
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
  }
}

.entry-content a.p-career__interview-btn__btn {
  min-width: auto;
  width: 100%;
  padding-top: 27.5px;
  padding-bottom: 27.5px;
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
  padding-left: 25px;
  font-size: 15px;
  line-height: 1.7333333333;
  color: var(--ueda-strong-pink);	/* 2024.3 KAZ: Problems_K: was var(--ueda-rose-pink) */
}
.entry-content a.p-career__interview-btn__btn::after {
  background-color: var(--ueda-strong-pink);	/* 2024.3 KAZ: Problems_K */
}

/*career__recruit*/
#career__recruit {
  background: #f4f4f4;
}

.entry-content .p-career__recruit__inner {
  padding-top: 51px;
  padding-bottom: 60px;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-career__recruit__inner {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.entry-content .p-career__recruit-ttl {
  position: relative;
  text-align: center;
  font-size: 25px;
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
/*font-family: "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif; */
  line-height: 1.72;
  margin-bottom: 26px;
}

.entry-content .p-career__recruit-ttl::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  background: #ff508d;
  height: 3px;
  width: 100%;
  transform: translateX(-50%);
  left: 50%;
  max-width: 286px;
}

.entry-content .p-career__recruit-desc {
  margin-bottom: 25px;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-career__recruit-desc {
    margin-bottom: 35px;

  }
}

.entry-content .p-career__recruit-btn {
  text-align: center;
}
.entry-content a.p-career__recruit-btn__btn {
  width: 100%;
  max-width: 258px;
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 15px;
  line-height: 1.7333333333;
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
/*font-family: "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif; */
}
@media print, screen and (min-width: 768px) {
  .entry-content a.p-career__recruit-btn__btn {
    max-width: 372px;
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
#gakka{
  margin-top: -7px;
}
@media print, screen and (min-width: 768px) {
#gakka{
  margin-top: 9.8px;
}
}
#gakka-feature {
  margin-bottom: 70px;
}
@media print, screen and (min-width: 768px) {
  #gakka-feature {
    margin-bottom: 107px;
  }
}

.p-gakka-feature__inner {
  width: 100%;
  max-width: 100%;
}
@media print, screen and (min-width: 768px) {
  .p-gakka-feature__inner {
    max-width: 1030px;
    margin-inline: auto;
  }
}

.p-gakka-feature__title {
  padding-top: 29.5px;
  padding-bottom: 29.5px;
  text-align: center;
  width: 100%;
  color: #fff;
  max-width: 330px;
  margin-bottom: 40px;
/*font-family: "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif; */
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
  margin-inline: auto;
  font-size: 20px;
}
@media print, screen and (min-width: 768px) {
  .p-gakka-feature__title {
    max-width:610px;
  }
}
.entry-content .p-gakka-feature__box-inner{
  border-bottom: 2px solid transparent;
  transition: 0.3s;
}
.entry-content .p-gakka-feature__box-inner:hover{
  border-bottom: 2px solid var(--ueda-strong-pink);
  transition: 0.3s;
}
.entry-content .p-gakka-feature__box-inner div {
  text-align: center;
}
.entry-content .p-gakka-feature__box--num {
  color: #fff;
  border-radius: 50%;
  width: 56px;
  aspect-ratio: 1/1;
  font-size: 28px;
  line-height: 1.2142857143;
  padding-top: 11px;
  padding-bottom: 11px;
  font-weight: 400;
  margin-bottom: 4.5px;
  max-width: 56px;
  margin-inline: auto;
  transition: 0.3s;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-gakka-feature__box--num {
    margin-bottom: 39px;
  }
}

.entry-content .p-gakka-feature__box--desc {
/*font-family: "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif; */
  font-weight: 500;
  font-size: 15px;
  line-height: 1.6666666667;
  margin-bottom: 15px;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-gakka-feature__box--desc {
    margin-bottom: 25px;
  }
}
.entry-content .p-gakka-feature__box--img {
  width: 10px;
  aspect-ratio: 10/5;
  max-width: 10px;
  margin-inline: auto;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .entry-content .p-gakka-feature__box--img {
    height: 14px;
    transform: translateY(-14px);
  }
}
.entry-content .p-gakka-feature__box-inner:hover .p-gakka-feature__box--img{
  transform: translateY(10px);
  transition: 0.3s;
}

.entry-content .p-gakka-feature__box--img img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  width: 100%;
}

/*gakka_learn*/
#gakka-learn {
  margin-bottom: 70px;
}
@media print, screen and (min-width: 768px) {
  #gakka-learn {
    margin-bottom: 107px;
  }
}
@media screen and (max-width: 767px) {
  .entry-content .p-gakka-learn__midashi {
    margin-bottom: 40px;
  }
}
.entry-content .p-gakka-learn__inner {
  gap: 50px 0;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-gakka-learn__inner {
    gap: 100px 0;
  }
}
.entry-content .p-gakka-learn-box__inner {
  border-left: none;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .entry-content .p-gakka-learn-box__inner .p-gakka-learn-box__title {
    font-size: 24px;
    line-height: 1.4583333333;
  }
}
.entry-content .p-gakka-learn-box__link{
  color: #222;
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
}
/*gakka-design*/
#gakka-design {
  margin-bottom: 70px;
}
@media print, screen and (min-width: 768px) {
  #gakka-design {
    margin-bottom: 107px;
  }
}

.entry-content .p-gakka-design__inner {
  max-width: 100%;
  margin-inline: 20px;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-gakka-design__inner {
    max-width: 1240px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
 .entry-content .p-gakka-design__midashi {
    margin-bottom: 32.5px;
  }
}

.entry-content .p-gakka-design-box__desc {
  margin-bottom: 0;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-gakka-design-box__desc {
    margin-bottom: 27.5px;
  }
}
.entry-content h3.p-gakka-design-box__list-ttl {
  font-size: 17px;
  line-height: 1.5882352941;
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
/*font-family: "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif; */
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .entry-content h3.p-gakka-design-box__list-ttl {
margin-top: 35px;
  }
}

@media print, screen and (min-width: 768px) {
  .entry-content .p-gakka-design-box__lists {
    margin-bottom: 40px;
  }
}

/*後で確認*/
.p-gakka-design-boxes {
  grid-template-columns: 1fr;
  gap: 32.5px 0;
}
@media print, screen and (min-width: 768px) {
  .p-gakka-design-boxes {
    grid-template-columns: 1fr 715px;
    gap: 0 60px;
}
}

.entry-content .p-gakka-design-box__lists {
  grid-template-columns: 1fr;
  gap: 20px 0;
}
@media screen and (max-width: 767px) {
  .entry-content .p-gakka-design-box__lists {
    margin-bottom: 32.5px;
  }
}
@media print, screen and (min-width: 768px) {
.entry-content .p-gakka-design-box__lists {
    grid-template-columns: auto;
    gap: 20px 0;
  }
}

.entry-content .p-gakka-design-box__lists .p-gakka-design-box__list {
  list-style-type: none;
  padding-left: 20px;
  font-size: 20px;
  line-height: 1;
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
  margin: 0;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-gakka-design-box__lists .p-gakka-design-box__list {
    font-size: 24px;
    line-height: 1.0416666667;
  }
}

.entry-content .p-gakka-design-box__lists .p-gakka-design-box__list::before {
  background-color: var(--ueda-pink);
  border-radius: 50%;
  display: inline-block;
  float: left;
  width: 20px;
  height: 20px;
  margin-left: -20px;
  margin-right: 5px;
  margin-top: 0;
  content: "";
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-gakka-design-box__lists .p-gakka-design-box__list::before {
    width: 24px;
    height: 24px;
    margin-left: -24px;
  }
}
/**/
.entry-content .p-gakka-design-box:last-of-type {
  max-width: 350px;
  width: 100%;
  aspect-ratio: 350/247.48;
  margin-inline: auto;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-gakka-design-box:last-of-type {
    max-width: 715px;
    aspect-ratio: 715/520;
  }
}

.entry-content .p-gakka-design-box img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  width: 100%;
}

/*gakka-kagai*/
#gakka-kagai {
  margin-bottom: 100px;
}
@media print, screen and (min-width: 768px) {
  #gakka-kagai {
    margin-bottom: 120px;
  }
}
@media screen and (max-width: 767px) {
  .entry-content .p-gakka-kagai__midashi {
    margin-bottom: 2.5rem;
  }
}

.entry-content .p-career-graph__cap {
  max-width: 100%;
  margin-inline: 20px;
  margin-bottom: 32.5px;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-career-graph__cap {
    max-width: 1030px;
    margin-inline: auto;
    margin-bottom: 40px;
  }
}

.entry-content .p-gakka-kagai__inner {
  max-width: 100%;
  margin-inline: 20px;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-gakka-kagai__inner {
    max-width: 1240px;
    margin-inline: auto;
  }
}

.entry-content .p-gakka-kagai-boxes {
  grid-template-columns: 1fr;
  gap: 20px 0;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-gakka-kagai-boxes {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0 20px;
  }
}

.entry-content .p-gakka-kagai-box {
  position: relative;
  aspect-ratio: 35/20;
  max-width: 350px;
  width: 100%;
  margin-inline: auto;
  display: inline-flex;
  align-items: center;
  padding-left: 31px;
  padding-right: 19.2px;
  text-decoration: none;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-gakka-kagai-box {
    aspect-ratio: 40/25;
    max-width: 400px;
  }
}

.entry-content .p-gakka-kagai-box span {
  display: inline-block;
  color: #fff;
  font-size: 20px;
  line-height: 1.5;
  font-weight: bold;
  z-index: 99;
  position: relative;
}

.entry-content .p-gakka-kagai-box img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  object-fit: cover;	/* 2024.3 KAZ: Problems_K #6 */
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
.entry-content .p-gakka-kagai-box:hover img{
  transform: translate(-50%, -50%) scale(1.1);
  transition: 0.3s;
}
.entry-content .p-gakka-kagai-box::before {
  content: "";
  display: inline-block;
  width: 23px;
  height: 23px;
  aspect-ratio: 1/1;
  background: url(/images/arrow_right_white_large.svg) center center no-repeat;	/* 2024.4 KAZ: was url(/wp-content/uploads/2024/02/arrows__white.svg) */
  position: absolute;
  top: 50%;
  right: 19.2px;
  transform: translateY(-50%);
  z-index: 88;
}

/*information*/
#information {
  margin-bottom: 40px;
}
@media print, screen and (min-width: 768px) {
  #information {
    margin-bottom: 93px;
  }
}

#information-shugaku,#information-teacher,#information-daigaku,#information-ninchi,#information-houjin,#information-plan,#information-business {
  margin-bottom: 35px;
}
@media print, screen and (min-width: 768px) {
  #information-shugaku,#information-teacher,#information-daigaku,#information-ninchi,#information-houjin,#information-plan,#information-business{
    margin-bottom: 105px;
  }
}

#information-sd {
  margin-bottom: 64px;
}
@media print, screen and (min-width: 768px) {
  #information-sd {
    margin-bottom: 127px;
  }
}

#information-zaimu {
  margin-bottom: 58px;
}
@media print, screen and (min-width: 768px) {
  #information-zaimu {
    margin-bottom: 105px;
  }
}

#information-others {
  margin-bottom: 76px;
}
@media print, screen and (min-width: 768px) {
  #information-others {
    margin-bottom: 159px;
  }
}

#information-top {
  margin-bottom: 50px;
}
@media print, screen and (min-width: 768px) {
  #information-top {
    margin-bottom: 97.5px;
  }
}

#information-protect {
  margin-bottom: 67px;
}
@media print, screen and (min-width: 768px) {
  #information-protect {
    margin-bottom: 132px;
  }
}

.entry-content .p-information-top-desc {
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
/*font-family: "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif; */
  font-size: 15px;
  line-height: 2;
/*margin-inline: 0; */	/* 2024.3 KAZ: Problems_K: c/o */
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-information-top-desc {
    font-size: 17px;
    line-height: 2;
  }
}
.entry-content .p-information__midashi {
  margin-bottom: 38px;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-information__midashi {
    margin-bottom: 73px;
  }
}
.entry-content .p-information__inner {
  margin-inline: 20px;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-information__inner {
    max-width: 1030px;
    margin-inline: auto;
  }
}

.entry-content .p-information__boxes {
  grid-template-columns: 1fr;
  gap: 26px 0;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-information__boxes {
    gap: 48px 0;
  }
}
.entry-content .p-information__box-ttl {
  margin-bottom: 20px;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-information__box-ttl {
    margin-bottom: 37px;
  }
}
/*後ほど削除*/
.entry-content .p-information__box-ttl {
  font-size: 17px;
  line-height: 1.6470588235;
  position: relative;
  padding-bottom: 10px;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-information__box-ttl {
    font-size: 24px;
    line-height: 1.5;
  }
}
/**/
.entry-content .p-information__box-ttl::after {
  background-color: var(--ueda-rose-pink);
}

.entry-content .p-information__box--links {
  gap: 15px 0;
  grid-template-columns: 1fr;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-information__box--links {
    gap: 18px 0;
  }
}

#interview {
  margin-bottom: 70px;
}
@media print, screen and (min-width: 768px) {
  #interview {
    margin-bottom: 100px;
  }
}

.p-interview__inner {
  max-width: 268px;
  margin-inline: auto;
}
@media print, screen and (min-width: 768px) {
  .p-interview__inner {
    max-width: 660px;
  }
}

.p-interview_boxes {
  grid-template-columns: 1fr;
  gap: 30px 0;
}
@media print, screen and (min-width: 768px) {
  .p-interview_boxes {
    grid-template-columns: 1fr 1fr;
    gap: 0 60px;
  }
}

.p-interview_boxes .p-interview_boxes--pink .p-interview_boxes__inner,
.p-interview_boxes .p-interview_boxes--blue .p-interview_boxes__inner {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0 15px;
}

.p-interview_boxes-ttl {
  font-size: 15px;
  line-height: 1.8;
  padding-top: 4px;
  padding-bottom: 4px;
  border-top: 1px solid #cecece;
  border-bottom: 1px solid #cecece;
  margin-bottom: 20px;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .p-interview_boxes-ttl {
    margin-bottom: 19px;
    padding-top: 6.5px;
    padding-bottom: 6.5px;
    font-size: 18px;
    line-height: 1.5;
  }
}

.p-interview_boxes .p-interview_boxes--pink .p-interview_boxes-ttl {
  color: var(--ueda-rose-pink);
}

.p-interview_boxes .p-interview_boxes--blue .p-interview_boxes-ttl {
  color: var(--ueda-sky-blue);
}

.p-interview_boxes .p-interview_box {
  max-width: 90px;
  border-radius: 50%;
  position: relative;
}
.p-interview_boxes .p-interview_box a{
  padding-top: 19px;
  padding-bottom: 27px;
}
@media print, screen and (min-width: 768px) {
  .p-interview_boxes .p-interview_box a {
    padding-top: 24px;
    padding-bottom: 32px;
  }
}
.p-interview_boxes .p-interview_boxes--pink .p-interview_box {
  background: var(--ueda-rose-pink);
}

.p-interview_boxes .p-interview_boxes--blue .p-interview_box {
  background: var(--ueda-sky-blue);
}

.entry-content .p-interview_box__link {
  font-size: 28px;
  line-height: 1.2142857143;
  color: #fff;
  position: relative;
  width: 100%;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

.p-interview_boxes .p-interview_box::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 17px;
  width: 10px;
  height: 5px;
  left: 50%;
  transform: translateX(-50%);
  background: url(/images/arrow_down_white.svg) center center no-repeat;	/* 2024.4 KAZ: was url(/wp-content/uploads/2024/02/arrow_white.svg) */
}
@media print, screen and (min-width: 768px) {
  .p-interview_boxes .p-interview_box::before {
    bottom: 23px;
  }
}
/*interview_cont*/
#interview_cont {
  position: relative;
  margin-bottom: 60px;
}
@media print, screen and (min-width: 768px) {
  #interview_cont {
    margin-bottom: 100px;
  }
}

.p-interview_cont__inner {
  grid-template-columns: 1fr;
  gap: 60px 0;
  max-width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-interview_cont__inner {
    margin-right: 20px;
    margin-left: 20px;
  }
}
@media print, screen and (min-width: 768px) {
  .p-interview_cont__inner {
    gap:70px 0;
    max-width: 1030px;
  }
}

.p-interview_title-boxes {
  position: relative;
}

.p-interview_title-box {
  grid-template-columns: 80px 1fr;
  gap: 0 17px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-interview_title-box {
    max-width: 390px;
    margin-inline: auto;
    margin-bottom: 20px;
  }
}
@media print, screen and (min-width: 768px) {
  .p-interview_title-box {
    gap: 0 30px;
    max-width:550px;
    grid-template-columns: 129px 1fr;
  }
}

.p-interview_title-box--num__inner {
  padding-top: 11px;
  padding-bottom: 6px;
  border-radius: 50%;
  display: block;
  max-width: 129px;
  width: 100%;
  aspect-ratio: 1/1;
}
@media print, screen and (min-width: 768px) {
  .p-interview_title-box--num__inner {
    padding-top: 29.5px;
    padding-bottom: 29.5px;
  }
}

.p-interview_title-box--pink .p-interview_title-box--num__inner {
  background: var(--ueda-rose-pink);
}

.p-interview_title-box--blue .p-interview_title-box--num__inner {
  background: var(--ueda-sky-blue);
}

.p-interview_title-box--num {
  text-align: center;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px 0;
}
@media print, screen and (min-width: 768px) {
  .p-interview_title-box--num {
    gap: 0;
  }
}

.p-interview_title-box--num {
  font-size: 38px;
  line-height: 1.2105263158;
}
@media print, screen and (min-width: 768px) {
  .p-interview_title-box--num {
    font-size: 45px;
    line-height: 1.2;
  }
}

.p-interview_title-box--num span {
  display: inline-block;
  width: 100%;
  font-size: 11px;
  line-height: 1.1818181818;
}
@media print, screen and (min-width: 768px) {
  .p-interview_title-box--num span {
    font-size: 13px;
    line-height: 1.2307692308;
  }
}

@media print, screen and (min-width: 768px) {
  .p-interview_title-box--info {
    padding-top: 22px;
  }
}

.p-interview__info-subttl {
  font-size: 17px;
  line-height: 1.6470588235;
  margin-bottom: 1px;
/*font-family: "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif; */
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
}
@media print, screen and (min-width: 768px) {
  .p-interview__info-subttl {
    font-size: 20px;
    line-height: 1.4;
  }
}

.p-interview__info-ttl {
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 17.5px;
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
}
@media print, screen and (min-width: 768px) {
  .p-interview__info-ttl {
    margin-bottom: 15px;
    font-size: 25px;
    line-height: 1.4;
  }
}

.p-interview__info-mini_ttl {
  font-size: 13px;
  line-height: 1.5384615385;
/*font-family: "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif; */
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
}
@media print, screen and (min-width: 768px) {
  .p-interview__info-mini_ttl {
    font-size: 13px;
    line-height: 1.5384615385;
  }
}

.p-interview_title-box--pink .p-interview__info-subttl {
  color: var(--ueda-rose-pink);
}

.p-interview_title-box--blue .p-interview__info-subttl {
  color: var(--ueda-sky-blue);
}

.p-interview_cont-box__img {
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 300px;
  display: block;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-interview_cont-box__img {
    margin-inline: auto;
    text-align: center;
  }
}
@media print, screen and (min-width: 768px) {
  .p-interview_cont-box__img {
    max-width: 440px;
    position: absolute;
    top: 0;
    right: 0;
  }
}

.p-interview_cont-box__img img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  width: 100%;
  max-width: 300px;
}
@media print, screen and (min-width: 768px) {
  .p-interview_cont-box__img img {
    max-width: 440px;
  }
}

.p-interview_cont-box__inner {
  background: #fffbed;
  padding: 36px 40px 35px;
}
@media print, screen and (min-width: 768px) {
  .p-interview_cont-box__inner {
    max-width: 55.9375rem;
  }
  .p-interview_cont-box__inner--long{
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-interview_cont-box__inner {
    padding: 180px 20px 50px 20px;
    margin-right: -20px;
    margin-left: -20px;
    margin-top:-162px
  }
}
.p-interview_cont-box__detail + .p-interview_cont-box__detail {
  margin-top: 34px;
}
.p-interview_cont-box__ttl {
  font-size: 20px;
  line-height: 1.4;
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
/*font-family: "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif; */
  margin-bottom: 15px;
}
.p-interview_cont-box__desc {
  font-size: 15px;
  line-height: 1.6666666667;
  color: #222;
/*font-family: "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif; */
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-interview_cont-box__desc {
    margin-inline: auto;
    max-width:390px;
  }
}
@media print, screen and (min-width: 768px) {
  .p-interview_cont-box__desc {
    max-width:510px;
  }
}

.p-interview_cont-box__desc--long {
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .p-interview_cont-box__desc--long {
    margin-inline: auto;
    max-width: 390px;
  }
}

/*interview_book */
#interview_book {
  margin-bottom: 120px;
}

@media screen and (max-width: 767px) {
  .p-interview_book__inner {
    margin-right: 20px;
    margin-left: 20px;
  }
}

.p-interview_book-img {
  width: 100%;
  aspect-ratio: 70/26;
  max-width: 350px;
  margin-inline: auto;
}
@media print, screen and (min-width: 768px) {
  .p-interview_book-img {
    max-width:700px;
  }
}

.p-interview_book-img img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  width: 100%;
}

#message {
  margin-top: 16px;
  margin-bottom: 45px;
}
@media print, screen and (min-width: 768px) {
  #message {
    margin-bottom: 114px;
  }
}
.entry-content .p-message__inner {
  max-width: 820px;
  margin-inline: auto;
}

.entry-content .p-message__img {
  margin-bottom: 35px;
  max-width: 720px;
  margin-inline: auto;
  aspect-ratio: 72/48;
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-message__img {
    margin-bottom: 80px;
  }
}
.entry-content .p-message__img img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  width: 100%;
}

.entry-content .p-message__ttl {
  font-size: 14px;
  line-height: 2;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
}@media print, screen and (min-width: 768px) {
  .entry-content .p-message__ttl {
    line-height: 1.8333333333;
    margin-bottom: 34.5px;
    font-size: 24px;
  }
}
.entry-content .p-message__desc {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .entry-content .p-message__desc {
    font-size:13.4px;
    margin-bottom: 25px;
  }
}
.entry-content .p-message__desc p + p {
  margin-top: 2em;
}
@media screen and (max-width: 767px) {
  .entry-content .p-message__desc p + p {
    margin-top: 0.8em;
  }
}
.entry-content .p-message__desc p:last-of-type {
  margin-bottom: 22px;
  font-size: 14.5px;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-message__desc p:last-of-type {
    margin-bottom: 2.65625rem;
    font-size: 1.0625rem;
  }
}

.p-message__desc span {
  display: block;
  text-align: right;
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
}

.p-message__box {
  padding: 20px 25px 18px 25px;
  margin-bottom: 40px;
}@media print, screen and (min-width: 768px) {
  .p-message__box {
    margin-bottom: 77px;
    padding: 38px 50px 27.5px 50px;
  }
}


.p-message__btn-box {
  max-width: 263px;
  margin-inline: auto;
}

.entry-content a.p-message__btn {
  min-width: auto;
  padding-top: 17.5px;
  padding-bottom: 17.5px;
  width: 100%;
  line-height: calc(26 / 15);
}

/*shikaku*/
#yoji-shikaku {
  margin-bottom: 50px;
}
@media print, screen and (min-width: 768px) {
  #yoji-shikaku {
    margin-bottom: 123.5px;
  }
}

.entry-content .p-shikaku__midashi::after{
background-color: var(--ueda-rose-pink);
}
#sogo-shikaku {
  margin-bottom: 56px;
}
@media print, screen and (min-width: 768px) {
  #sogo-shikaku {
    margin-bottom: 132px;
  }
}
.p-shikaku__inner {
  max-width: 1030px;
  margin-inline: auto;
}

.p-shikaku__boxes {
  grid-template-columns: 1fr;
  gap: 17px 0;
}
@media print, screen and (min-width: 768px) {
  .p-shikaku__boxes {
    gap: 50.5px 0;
  }
}
.p-sogo-shikaku__boxes {
  margin-bottom: 38px;
}
@media print, screen and (min-width: 768px) {
  .p-sogo-shikaku__boxes {
    margin-bottom: 60px;
  }
}
.p-shikaku__box:has(.p-shikaku__box-link__txt) {
  margin-bottom: -5px;
}

/*後ほど削除*/
.entry-content .p-shikaku__box-ttl {
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 1.25;
  font-weight: bold;
  position: relative;
  padding-bottom: 11px;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-shikaku__box-ttl {
    padding-bottom: 10px;
    margin-bottom: 32.5px;
    font-size: 24px;
    line-height: 1.5;
  }
}
.entry-content .markonbottom::after {
  display: block;
  position: absolute;
  width: 58px;
  height: 1px;
  bottom: 0;
  left: 0;
  content: "";
}

.entry-content .p-shikaku__box-link {
  margin-top: 13px;
}

.entry-content .p-sogo-shikaku__box-link .linktext::after {
  background-color: var(--ueda-sky-blue);
}

.entry-content .p-yoji-shikaku__box-ttl::after {
  background-color: var(--ueda-rose-pink);
}

.entry-content .p-sogo-shikaku__box-ttl::after {
  background-color: var(--ueda-sky-blue);
}
.p-shikaku__gray-box {
  padding: 18px 20px 16px 20px;
}
@media print, screen and (min-width: 768px) {
  .p-shikaku__gray-box {
    padding: 43px 54px 35.4px 54px;
  }
}
/*sitemap*/
#sitemap {
  margin-bottom: 140px;
}

.entry-content .p-sitemap__inner {
  margin-inline: 20px;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-sitemap__inner {
    max-width: 1030px;
    margin-inline: auto;
  }
}

.entry-content .p-sitemap__boxes {
  grid-template-columns: 1fr;
  gap: 30px 0;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-sitemap__boxes {
    grid-template-columns: 1fr 1fr;
    gap:50px 44px;
  }
}

.entry-content .p-sitemap__boxes + .p-sitemap__boxes {
  margin-top: 52px;
}

.entry-content .p-sitemap__box-ttl {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--ueda-strong-pink);	/* 2024.3 KAZ: was #ED1A53 */
  position: relative;
  color: var(--ueda-strong-pink);	/* 2024.3 KAZ: was #ED1A53 */
  text-align: left;
  display: inline-block;
  width: 100%;
  padding-left: 0;
/*font-family: 'Zen Old Mincho', serif; */
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-sitemap__box-ttl {
    padding-bottom: 10.5px;
    font-size:24px;
    line-height: 1.4583333333;
  }
}

.entry-content .p-sitemap__lists .p-sitemap__list {
  position: relative;
  padding: 17px 17px 9px;
  font-size: 14px;
  line-height: 1.8571428571;
  display: inline-block;
  width: 100%;
  border-bottom: 1px solid var(--ueda-gray);
  font-weight: 500;
/*font-family: "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif; */
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-sitemap__lists .p-sitemap__list {
    font-size:17px;
    line-height: 1.7058823529;
    padding: 19px 26px 11px;
  }
}

.entry-content .p-sitemap__lists .p-sitemap__list--child {
  padding-left: 32px;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-sitemap__lists .p-sitemap__list--child {
    padding-left: 59px;
  }
}

.entry-content .p-sitemap__box-ttl::before,
.entry-content .p-sitemap__lists .p-sitemap__list::before {
  background-color: var(--ueda-gray);
  width: 15px;
  right: 0;
  left: auto;
  left: initial;
}
.entry-content .p-sitemap__box-ttl:hover::after,
.entry-content .p-sitemap__lists .p-sitemap__list:hover::after{
  right: 0;
  left: auto;
  left: initial;
  width: 15px;
}
.entry-content .p-sitemap__box-ttl::after,
.entry-content .p-sitemap__lists .p-sitemap__list::after {
  width: 5px;
  right: 0px;
    left: auto;
  left: initial;
  transition: all 0.2s 0s ease;
}

.entry-content .p-sitemap__box-ttl::after,
.entry-content .p-sitemap__lists .p-sitemap__list::after {
  background: var(--ueda-rose-pink);
}

.entry-content .p-sitemap__box .p-sitemap__box__btn {
  border: 1px solid var(--ueda-pink);
  font-size: 20px;
  line-height: 1.2;
  padding: 38px 28px 32px;
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
  background: #fff;
  color: var(--ueda-strong-pink);	/* 2024.3 KAZ: was #ED1A53 */
}

.entry-content .p-sitemap__box .p-sitemap__box-ttl::before,
.entry-content .p-sitemap__box .p-sitemap__box-ttl::after {
  top: calc(50% - 7px);
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-sitemap__box .p-sitemap__box-ttl::before,
  .entry-content .p-sitemap__box .p-sitemap__box-ttl::after {
    top: calc(50% - 10.5px);
  }
}

.entry-content .p-sogo-intro__midashi {
  max-width: 350px;
  margin-inline: auto;
  color: #fff;
  margin-bottom: 48px;
  font-size: 20px;
  line-height: 1.35;
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
/*font-family: "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif; */
  padding-top: 17px;
  padding-bottom: 17px;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-sogo-intro__midashi {
    margin-bottom: 47.5px;
    padding-top: 29.5px;
  padding-bottom: 29.5px;
  max-width: 610px;
  }
}
.entry-content .p-sogo-intro_policy__midashi{
  margin-bottom: 70px;
}
.entry-content .p-sogo-introduce__top-desc {
  margin-bottom: 97px;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-sogo-introduce__top-desc {
    margin-bottom: 115.5px;
  }
}
#sogo-intro_todo {
  margin-bottom: 40px;
}
@media print, screen and (min-width: 768px) {
  #sogo-intro_todo {
    margin-bottom: 92px;
  }
}
.p-sogo-intro_todo__inner {
  max-width: 1030px;
  margin-inline: auto;
}

.p-sogo-intro_todo__box {
  position: relative;
  padding-top: 101px;
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .p-sogo-intro_todo__box {
    padding-right: 20px;
    padding-left: 20px;
    margin-right: -20px;
    margin-left: -20px;
    padding-top: 92px;
    padding-bottom: 40px;
  }
}

.entry-content .p-sogo-intro_todo__midashi {
  position: absolute;
  top: -43px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
}

.p-sogo-intro_todo__box-lists {
  max-width: 490px;
  margin-inline: auto;
  grid-template-columns: 1fr;
  gap: 20px 0;
}

.p-sogo-intro_todo__box-list {
  grid-template-columns: 44px 1fr;
  gap: 0 12px;
  font-size: 20px;
  line-height: 1.5;
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
  align-items: center;
/*font-family: "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif; */
}
@media print, screen and (min-width: 768px) {
  .p-sogo-intro_todo__box-list {
    gap: 0 26px;
    grid-template-columns: 3.5rem 1fr;
    font-size: 24px;
    line-height: 1.25;
  }
}

.p-sogo-intro_todo__box-list span {
  justify-content: center;
  color: #fff;
  width: 44px;
  aspect-ratio: 1/1;
  display: inline-flex;
  align-items: center;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1.4583333333;
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .p-sogo-intro_todo__box-list span {
    grid-template-columns: 3.5rem 1fr;
    font-size: 28px;
    line-height: 1.2142857143;
    width: 56px;
  }
}

/*sogo-intro_learn*/
#sogo-intro_learn {
  margin-bottom: 70px;
}
@media print, screen and (min-width: 768px) {
  #sogo-intro_learn {
    margin-bottom: 100px;
  }
}
.entry-content .p-sogo-intro_learn__midashi {
  background: #fff;
  color: var(--ueda-sky-blue);
}

.p-sogo-intro_learn__inner {
  padding-top: 60px;
  padding-bottom: 48px;
  max-width: 1030px;
  margin-inline: auto;
}
@media print, screen and (min-width: 768px) {
  .p-sogo-intro_learn__inner {
    padding-top: 100px;
    padding-bottom: 79px;
  }
}

.p-sogo-intro_learn__boxes {
  margin-bottom: 41px;
}

.p-sogo-intro_learn__box {
  background-color: #fff;
  position: relative;
}

.p-sogo-intro_learn__box-img {
  aspect-ratio: 310/944.14;
  max-width: 296px;
  margin-inline: auto;
  width: 100%;
  display: block;
}
@media print, screen and (min-width: 768px) {
  .p-sogo-intro_learn__box-img {
    aspect-ratio: 932/520;
    max-width: 932px;
  }
}
.p-sogo-intro_learn__box-img img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  width: 100%;
}

.p-sogo-intro_learn__boxes--img {
  aspect-ratio: 1/1;
  max-width: 60px;
  margin-inline: auto;
  width: 100%;
  display: block;
  margin-top: 15px;
  margin-bottom: 15px;
}

.p-sogo-intro_learn__boxes--img img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  width: 100%;
}

@media print, screen and (min-width: 768px) {
.p-sogo-intro_learn__box__inner {
  padding-right: 48px;
  padding-left: 48px;
}
}

.p-sogo-intro_learn__boxes .p-sogo-intro_learn__box:first-of-type::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -0.5px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  aspect-ratio: 100/50.68;
  background: url("/wp-content/uploads/2024/02/sogo-intro_tip1.png") center center no-repeat;
  background-size: contain;
}

.p-sogo-intro_learn__boxes .p-sogo-intro_learn__box:last-of-type::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  aspect-ratio: 100/50.68;
  background: url("/wp-content/uploads/2024/02/sogo-intro_tip2.png") center center no-repeat;
  background-size: contain;
}

.p-sogo-intro_learn__boxes .p-sogo-intro_learn__box:first-of-type .p-sogo-intro_learn__box__inner {
  padding-top: 40px;
  padding-bottom: 74px;
}
@media print, screen and (min-width: 768px) {
  .p-sogo-intro_learn__boxes .p-sogo-intro_learn__box:first-of-type .p-sogo-intro_learn__box__inner {
    padding-top: 50px;
    padding-bottom: 68px;
  }
}
.p-sogo-intro_learn__boxes .p-sogo-intro_learn__box:last-of-type .p-sogo-intro_learn__box__inner {
  padding-bottom: 40px;
  padding-top: 68px;
}
@media screen and (max-width: 767px) {
  .p-sogo-intro_learn__boxes .p-sogo-intro_learn__box:last-of-type .p-sogo-intro_learn__box__inner {
    padding-inline: 20px;
  }
}
@media print, screen and (min-width: 768px) {
  .p-sogo-intro_learn__boxes .p-sogo-intro_learn__box:last-of-type .p-sogo-intro_learn__box__inner {
    padding-bottom: 50px;
  }
}

.p-sogo-intro_learn__desc {
  max-width: 951px;
  margin-inline: auto;
  color: #fff;
  text-align: center;
  line-height: 1.6666666667;
  margin-bottom: 36px;
}

.entry-content .p-sogo-intro_learn__btn-box {
  min-width: 180px;
  max-width: 180px;
  min-width: auto;
  margin-inline: auto;
  width: 100%;
}

.entry-content a.p-sogo-intro_learn__btn {
  min-width: 180px;
  padding-top: 16px;
  line-height: 1.7333333333;
  padding-bottom: 16px;
}

/*sogo-intro__shikaku*/
#sogo-intro_shikaku {
  margin-bottom: 70px;
}
@media print, screen and (min-width: 768px) {
  #sogo-intro_shikaku {
    margin-bottom: 107px;
  }
}

.p-sogo-intro_shikaku__inner {
  max-width: 1030px;
  margin-inline: auto;
}

.p-sogo-intro_shikaku__midashi + .p-sogo-intro_shikaku__midashi-desc {
  margin-bottom: 32.5px;
}

.p-sogo-intro_shikaku__box {
  padding: 50px;
  margin-bottom: 40px;
}

.entry-content .p-sogo-intro_shikaku__box {
  padding: 30px 28px 30px 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .entry-content .p-sogo-intro_shikaku__box {
    margin-inline: -20px;
  }
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-sogo-intro_shikaku__box {
    padding: 50px;
  
  }
}
.entry-content .p-sogo-intro_shikaku__box-lists {
  grid-template-columns: 1fr;
  gap: 14px 0;
  margin-bottom: 0;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-sogo-intro_shikaku__box-lists {
    grid-template-columns: 1fr 1fr;
    gap: 20px 30px;
  }
}

.entry-content .p-sogo-intro_shikaku__box-lists .p-sogo-intro_shikaku__box-list {
  padding-left: 0;
  font-size: 18px;
  line-height: 1;
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
  padding-left: 0;
  margin-bottom: 0;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-sogo-intro_shikaku__box-lists .p-sogo-intro_shikaku__box-list {
    font-size: 24px;
    line-height: 1;
  }
}
.entry-content .p-sogo-intro_shikaku__box-lists .p-sogo-intro_shikaku__box-list::before {
  border-radius: 50%;
  display: inline-block;
  float: left;
  width: 18px;
  height: 18px;
  margin-left: 0px;
  margin-right: 5px;
  content: "";
  background-color: var(--ueda-sky-blue);
  margin-top: 0;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-sogo-intro_shikaku__box-lists .p-sogo-intro_shikaku__box-list::before {
    width: 24px;
  height: 24px;
margin-left: 0;
  }
}
/**/
.entry-content .p-sogo-intro_shikaku__btn-box {
  min-width: 180px;
  max-width: 180px;
  min-width: auto;
  margin-inline: auto;
  width: 100%;
}

.entry-content a.p-sogo-intro_shikaku__btn {
  min-width: 180px;
  padding-top: 17px;
  line-height: 1.625;
  padding-bottom: 17px;
}

/*sogo-intro message*/
#sogo-intro_message {
  margin-bottom: 70px;
}
@media print, screen and (min-width: 768px) {
  #sogo-intro_message {
    margin-bottom: 97.5px;
  }
}

@media screen and (max-width: 767px) {
  .entry-content .p-sogo-intro_message__midashi {
    margin-bottom:40px;
  }
}
.entry-content .p-sogo-intro_message__inner {
  max-width: 820px;
  margin-inline: auto;
}

.entry-content .p-sogo-intro_message__boxes {
  grid-template-columns: 1fr;
  gap: 30px 0;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-sogo-intro_message__boxes {
    grid-template-columns: 243px 1fr;
    gap: 0 41px;
  }
}
.entry-content .p-sogo-intro_message__box-desc {
  font-size: 17px;
  line-height: 2;
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
/*font-family: "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif; */
}
.entry-content .p-sogo-intro_message__box-img {
  max-width:243px;
  width: 100%;
  aspect-ratio: 243/244;
}
@media screen and (max-width: 767px) {
  .entry-content .p-sogo-intro_message__box-img {
    max-width: 193px;
    margin-inline: auto;
    aspect-ratio: 193/194;
    max-height:194px ;
    height: 100%;
  }
}
.entry-content .p-sogo-intro_message__box-img img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  width: 100%;
}

.entry-content .p-sogo-intro_message__box-desc span {
  display: block;
  text-align: right;
  margin-top: 23px;
}

#sogo-intro_policy {
  margin-bottom: 95px;
}
@media print, screen and (min-width: 768px) {
  #sogo-intro_policy {
    margin-bottom: 112px;
  }
}
@media screen and (max-width: 767px) {
  .p-sogo-intro_policy__midashi {
    margin-bottom: 2.5rem;
  }
}
.p-sogo-intro_policy__inner {
  max-width: 1030px;
  margin-inline: auto;
}

.p-sogo-intro_policy__boxes {
  grid-template-columns: 1fr;
  gap: 35px 0;
}
@media print, screen and (min-width: 768px) {
  .p-sogo-intro_policy__boxes {
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
  }
}
.entry-content .p-sogo-intro_policy__box-title {
  font-size: 19px;
  line-height: 1.6842105263;
  font-weight: bold;
  margin-bottom: 22.5px;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-sogo-intro_policy__box-title {
    font-size: 22px;
    line-height: 1.4545454545;
    margin-bottom: 28.75px;
  }
}

.entry-content .p-sogo-intro_policy__box-title span {
  display: block;
  font-family: 游ゴシック体, "Yu Gothic", 游ゴシック, YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;	/* 2024.3 KAZ: was "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif */
  margin-top: -.5px;
  font-weight: 500;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-sogo-intro_policy__box-title span {
    margin-top: 7.5px;
  }
}
.entry-content .p-sogo-intro_policy__box-desc {
  margin-bottom: 27.5px;
}

.entry-content .p-sogo-intro_policy__box-lists {
  list-style: auto;
  margin-left: 16px;
  /*13 + 3*/
  grid-template-columns: 1fr;
  gap: 10px 0;
  margin-bottom: 0;
}

.entry-content .p-sogo-intro_policy__box-lists .p-sogo-intro_policy__box-list {
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
  font-size: 15px;
  line-height: 1.6666666667;
}

.entry-content .p-sogo-intro_policy__box-lists .p-sogo-intro_policy__box-list::marker {
  color: #00b1cc;
  font-size: 15px;
  line-height: 2;
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
/*font-family: "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif; */
}

/*study*/
#study {
  margin-bottom: 60px;
}
@media print, screen and (min-width: 768px) {
  #study {
    margin-bottom: 110.5px;
  }
}

#study-hennyu {
  margin-bottom: 69.1px;
}
@media print, screen and (min-width: 768px) {
  #study-hennyu {
    margin-bottom: 142px;
  }
}

.entry-content .p-study__inner {
  margin-inline: 20px;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-study__inner {
    max-width: 1030px;
    margin-inline: auto;
  }
}

.entry-content .p-study__midashi {
  margin-bottom: 34.5px;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-study__midashi {
    margin-bottom: 76.5px;
  }
}

.entry-content .p-study-hennyu__desc {
  margin-bottom: 44px;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-study-hennyu__desc {
    margin-bottom: 70.5px;
  }
}

.entry-content .p-study__gray-box {
  padding: 22px 25px 14.5px;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-study__gray-box {
    padding: 43px 45px 26.5px 53px;
  }
}

/*volunteer*/
#volunteer-top {
  margin-bottom: 65px;
}
@media print, screen and (min-width: 768px) {
  #volunteer-top {
    margin-bottom: 133.5px;
  }
}
.entry-content .p-volunteer {
  margin-bottom: 40px;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-volunteer {
  margin-bottom: 116px;
  }
}
.entry-content .p-volunteer__inner {
  margin-inline: 20px;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-volunteer__inner {
    max-width: 1030px;
    margin-inline: auto;
  }
}

.entry-content .p-volunteer-top-desc {
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
/*font-family: "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif; */
  font-size: 17px;
  line-height: 2;
}

/**/
.entry-content .p-volunteer__midashi {
  margin-bottom: 55px;
  font-weight: 400;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-volunteer__midashi {
    margin-bottom: 76px;
  }
}

.entry-content .p-volunteer_boxes {
  grid-template-columns: 1fr;
  gap: 48px 0;
  max-width: 1003px;
  margin-inline: auto;
}

.entry-content .p-volunteer__title {
  margin-bottom: 30px;
  font-size: 17px;
  line-height: 1.6470588235;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-volunteer__title {
    font-size: 22px;
    line-height: 1.4545454545;
  }
}

.entry-content .p-volunteer_box.c-grid .p-locate__title {
  margin-bottom: 20.5px;
}


.entry-content .p-volunteer_box__inner {
  grid-template-columns: 1fr;
  gap:20px 0;

}
@media print, screen and (min-width: 768px) {
  .entry-content .p-volunteer_box__inner {
    gap: 0 42px;
    grid-template-columns: 467px 1fr;
    width: 100%;
  }
}

.entry-content .p-volunteer_box-img {
  max-width: 467px;
  width: 100%;
  display: block;
  aspect-ratio: 467/297;
}

.entry-content .p-volunteer_box-img img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  width: 100%;
}

.entry-content .p-volunteer_box-desc + .p-volunteer_box__link {
  margin-top: 22.4px;
}

/*work*/
#work-yoji {
  margin-bottom: 55px;
}
@media print, screen and (min-width: 768px) {
  #work-yoji {
    margin-bottom: 110px;
  }
}
#work-sogo {
  margin-bottom: 72px;
}
@media print, screen and (min-width: 768px) {
  #work-sogo {
    margin-bottom: 131px;
  }
}
.entry-content .p-work__inner {
  margin-inline: 20px;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-work__inner {
    max-width: 1030.4px;
    margin-inline: auto;
  }
}

.entry-content .p-work__box-ttl {
  margin-bottom: 51px;
  font-size: 24px;
  line-height: 1.5;
  font-weight: bold;
  position: relative;
  padding-bottom: 10px;
}

.entry-content .p-work__box-ttl span.note {	/* 2024.3 KAZ: added class note */
  display: inline-block;
  font-size: 15px;
  line-height: 2;
  font-family: 游ゴシック体, "Yu Gothic", 游ゴシック, YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;	/* 2024.3 KAZ: was "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif */
  margin-left: 30px;
  font-weight: 500;
  vertical-align: top;
  padding-top: 1.5px;
}

.entry-content .p-work__box-ttl::after {
  background-color: var(--ueda-rose-pink);
}

.entry-content .p-work__box-cont_ttl {
  margin-bottom: 29px;
}

.entry-content .p-work__box-cont_ttl:has(+ .p-work__list-box) {
  margin-bottom: 42px;
}

.entry-content .p-work__box-cont__tables {
  margin-bottom: 45px;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-work__box-cont__tables {
    margin-bottom: 53px;
  }
}
.entry-content .p-work__box-cont:has(+ h2.p-work__box-ttl) .p-work__box-cont__tables {
  margin-bottom: 45px;
}

@media print, screen and (min-width: 768px) {
  .entry-content .p-work__box-cont:has(+ h2.p-work__box-ttl) .p-work__box-cont__tables {
    margin-bottom: 100px;
  }
}
/*後ほど削除*/
.entry-content .p-work__box-cont__tables {
  border-bottom: 1px solid var(--ueda-medium-gray);
  width: 100%;
  border-spacing: 1px 0px;
}

/**/
.entry-content .p-work__box-cont__tables thead th,
.entry-content .p-work__box-cont__tables thead td {
  padding-top: 8.5px;
  padding-bottom: 8.5px;
}

.entry-content .p-work__box-cont__tables thead th {
  padding-left: 16px;
}
/*後ほど削除*/
.entry-content .p-work__box-cont__tables th,
.entry-content .p-work__box-cont__tables td {
  border-top: var(--ueda-medium-gray) 1px solid;
  line-height: 1.5882352941;
/*font-family: "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif; */
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
}

.entry-content .p-work__box-cont__tables th {
  font-weight: bold;
  text-align: left;
  max-width: 50.142%;
  width: 100%;
 
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-work__box-cont__tables th {
    font-size: 17px;
    padding-left: 28px;
  }
}
.entry-content .p-work__box-cont__tables td {
  max-width: 10.562%;
  width: 100%;
 
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-work__box-cont__tables td {
  font-size: 20px;
  }
}
.entry-content .p-work__box-cont__tables thead,
.entry-content .p-work__box-cont__tables tbody {
  box-sizing: inherit;
}

.entry-content .p-work__box-cont__tables thead th,
.entry-content .p-work__box-cont__tables thead td {
  background-color: var(--ueda-medium-gray);
  color: #fff;
}

.entry-content .p-work__box-cont__tables tbody th {
  background-color: var(--ueda-bg-gray);
}
.entry-content .p-work__box-cont__tables tbody td{
  color: var(--ueda-strong-pink);
}
/**/
.entry-content .p-work__list-box + .p-work__list-box {
  margin-top: 39px;
}

.entry-content .p-work__list-box h3.p-work__box-cont_ttl {
  font-size: 22px;
  line-height: 1.4545454545;
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
  margin-bottom: 22px;
}

.entry-content .p-work__list-box__ttl {
  margin-bottom: 22px;
  font-size: 17px;
  line-height: 1.5882352941;
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
/*font-family: "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif; */
}

/*後で確認*/
.entry-content .p-work__lists {
  grid-template-columns: 1fr;
  gap: 10px 0;
  margin-bottom: 0;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-work__lists {
    grid-template-columns: auto;
    gap: 16px 30px;
  }
}

.entry-content .p-work__lists .p-work__list {
  line-height: calc(25 / 15);
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
  margin-bottom: 0;
}

.entry-content .p-work__lists .p-work__list span {
  display: block;
  font-weight: 500;
  margin-top: 5px;
}

.entry-content .p-work__lists .p-work__list::before {
  border-radius: 50%;
  display: inline-block;
  float: left;
  width: 1em;
  height: 1em;
  margin-top: 0.3333em;
  margin-left: -20px;
  margin-right: calc(20px - 1em);
  content: "";
  background-color: var(--ueda-pink);
}

/**/
.entry-content .p-work__desc {
  font-size: 15px;
  line-height: 1.6666666667;
  font-weight: 500;
/*font-family: "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif; */
}

.entry-content .p-work__list-box:not(:has(.p-work__list)) .p-work__desc {
  max-width: 1010px;
}
/*yoji-intro*/
.entry-content .p-yoji-intro__midashi {
  max-width: 350px;
  margin-inline: auto;
  color: #fff;
  margin-bottom: 48px;
  font-size: 20px;
  line-height: 1.35;
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
/*font-family: "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif; */
  padding-top: 17px;
  padding-bottom: 17px;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-yoji-intro__midashi {
    margin-bottom: 47.5px;
    padding-top: 29.5px;
    padding-bottom: 29.5px;
    max-width: 610px;
  }
}
.entry-content .p-yoji-introduce__top-desc {
  margin-bottom: 97px;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-yoji-introduce__top-desc {
    margin-bottom: 115.5px;
  }
}
#yoji-intro_todo {
  margin-bottom: 40px;
}
@media print, screen and (min-width: 768px) {
  #yoji-intro_todo {
    margin-bottom: 92.3px;
  }
}
.entry-content .p-yoji-intro_todo__inner {
  max-width: 1030px;
  margin-inline: auto;
}

.entry-content .p-yoji-intro_todo__box {
  position: relative;
  padding-top: 101px;
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .entry-content .p-yoji-intro_todo__box {
    padding-top: 101px;
    padding-bottom: 51px;
    padding-right: 20px;
    padding-left: 20px;
    margin-right: -20px;
    margin-left: -20px;
  }
}

.entry-content .p-yoji-intro_todo__box::before {
  content: "";
  position: absolute;
  width: 36px;
  height: 33px;
  background-color: var(--ueda-bg-gray);
  display: block;
  aspect-ratio: 36/33;
  z-index: 9;
  top: 49%;
  left: 50%;
  transform: translate(-50%, -51%);
}

.entry-content .p-yoji-intro_todo__midashi {
  position: absolute;
  top: -43px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
}

.entry-content .p-yoji-intro_todo__box-lists {
  max-width: 834px;
  margin-inline: auto;
  grid-template-columns: 1fr;
  gap: 0;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-yoji-intro_todo__box-lists {
    grid-template-columns: 1fr 1fr;
  }
}

.entry-content .p-yoji-intro_todo__box-lists .p-yoji-intro_todo__box-list {
  font-size: 20px;
  line-height: 1.5;
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
  align-items: center;
/*font-family: "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif; */
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-yoji-intro_todo__box-lists .p-yoji-intro_todo__box-list {
    font-size: 24px;
    line-height: 1.25;
  }
}

@media print, screen and (min-width: 768px) {
.entry-content .p-yoji-intro_todo__box-lists .p-yoji-intro_todo__box-list:nth-of-type(1) {
  padding-bottom: 33px;
}
}
@media print, screen and (min-width: 768px) {
.entry-content .p-yoji-intro_todo__box-lists .p-yoji-intro_todo__box-list:nth-of-type(1),
.entry-content .p-yoji-intro_todo__box-lists .p-yoji-intro_todo__box-list:nth-of-type(2) {
  border-bottom: 1px solid var(--ueda-medium-gray);
}
}

@media print, screen and (min-width: 768px) {
  .entry-content .p-yoji-intro_todo__box-lists .p-yoji-intro_todo__box-list:nth-of-type(1),
  .entry-content .p-yoji-intro_todo__box-lists .p-yoji-intro_todo__box-list:nth-of-type(3) {
    border-right: 1px solid var(--ueda-medium-gray);
    padding-right: 21px;
    padding-left: 4px;
  }
}
@media print, screen and (min-width: 768px) {
.entry-content .p-yoji-intro_todo__box-lists .p-yoji-intro_todo__box-list:nth-of-type(2),
.entry-content .p-yoji-intro_todo__box-lists .p-yoji-intro_todo__box-list:nth-of-type(4) {
  padding-left: 33px;
  padding-right: 1px;
}
}
@media print, screen and (min-width: 768px) {
.entry-content .p-yoji-intro_todo__box-lists .p-yoji-intro_todo__box-list:nth-of-type(3),
.entry-content .p-yoji-intro_todo__box-lists .p-yoji-intro_todo__box-list:nth-of-type(4) {
  padding-top: 37px;
}
}
.entry-content .p-yoji-intro_todo__box-list__ttls {
  grid-template-columns: 44px 1fr;
  gap: 0 12px;
  align-items: center;
  margin-bottom: 20px;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-yoji-intro_todo__box-list__ttls {
    gap: 0 26px;
    margin-bottom: 26px;
    grid-template-columns: 56px 1fr;
  }
}
.entry-content .p-yoji-intro_todo__box-list .p-yoji-intro_todo__box-list__ttls span {
  color: #fff;
  width: 44px;
  aspect-ratio: 1/1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1.4583333333;
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-yoji-intro_todo__box-list .p-yoji-intro_todo__box-list__ttls span {
    font-size: 28px;
    line-height: 1.2142857143;
     width: 56px;
  }
}
.entry-content .p-yoji-intro_todo__box-list .p-yoji-intro_todo__box-list__descs {
  margin-bottom: 20px;
  margin-left: 7px;
}

.entry-content .p-yoji-intro__link__txt::before,
.entry-content .p-yoji-intro__link__txt::after {
  top: calc(50% - 1em);
}

.entry-content a.p-yoji-intro__link span {
  font-size: 15px;
  line-height: 2;
  color: #222;
/*font-family: "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif; */
  display: inline-flex;
}

/*yoji-intro_learn*/
#yoji-intro_learn {
  margin-bottom: 70px;
}
@media print, screen and (min-width: 768px) {
  #yoji-intro_learn {
    margin-bottom: 100px;
  }
}
.entry-content .p-yoji-intro_learn__midashi {
  background: #fff;
  color: var(--ueda-rose-pink);
}

.entry-content .p-yoji-intro_learn__inner{
  padding-top: 60px;
  padding-top: 3.75rem;
  padding-bottom: 48px;
  padding-bottom: 3rem;
  max-width: 1030px;
  max-width: 64.375rem;
  margin-inline: auto;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-yoji-intro_learn__inner {
    padding-top: 105.7px;
    padding-bottom: 82.2px;
  }
}
.entry-content .p-yoji-intro_learn__box {
  background-color: #fff;
  position: relative;
}

.entry-content .p-yoji-intro_learn__box-img {
  aspect-ratio: 84/59;
  max-width: 84px;
  margin-inline: auto;
  width: 100%;
  margin-top: 18px;
  margin-bottom: 25px;
  display: block;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-yoji-intro_learn__box-img {
    margin-bottom: 46px;
  }
}
.entry-content .p-yoji-intro_learn__box-img img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  width: 100%;
}

.entry-content .p-yoji-intro_learn__basic {
  padding: 40px 20px 40px;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-yoji-intro_learn__basic {
    padding: 63.5px 49px 75px;
  }
}

.p-yoji-intro_learn--basic_desc {
  margin-bottom: 30px;
}
@media print, screen and (min-width: 768px) {
  .p-yoji-intro_learn--basic_desc {
    margin-bottom: 41px;
  }
}

.entry-content .p-yoji-intro_learn__box-ttls {
  margin-bottom: 30px;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-yoji-intro_learn__box-ttls {
    margin-bottom: 41px;
  }
}

.entry-content .p-yoji-intro_learn__box-ttl {
  color: #fff;
}

.p-yoji-intro_learn__box-desc {
  max-width: 951px;
  margin-inline: auto;
  color: #fff;
}

/*後で確認*/
.entry-content .p-yoji-intro_learn--basic-lists {
  grid-template-columns: 1fr;
  gap: 20px 0;
  margin-bottom: 0;
  margin-left: 17px;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-yoji-intro_learn--basic-lists {
    grid-template-columns: 1fr 1fr;
    gap: 20px 30px;
    margin-left: 19px;
  }
}

.entry-content .p-yoji-intro_learn--basic-lists .p-yoji-intro_learn--basic-list {
  list-style-type: none;
  padding-left: 17px;
  font-size: 17px;
  line-height: 1.125;
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
  padding-left: 0;
  position: relative;
  margin-bottom: 0;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-yoji-intro_learn--basic-lists .p-yoji-intro_learn--basic-list {
    padding-left: 24px;
    line-height: 1.5;
    font-size: 24px;
    line-height: 1.125;
  }
}
.entry-content .p-yoji-intro_learn--basic-lists .p-yoji-intro_learn--basic-list::before {
  margin-top: 5px;
  border-radius: 50%;
  display: inline-block;
  margin-top: 0;
  float: left;
  width: 17px;
  height: 17px;
  margin-right: 4px;
  content: "";
  background-color: var(--ueda-rose-pink);
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-yoji-intro_learn--basic-lists .p-yoji-intro_learn--basic-list::before {
    width: 24px;
    height: 24px;
  }
}
/**/
.p-yoji-intro_learn__box__inner {
  padding-right: 48px;
  padding-left: 48px;
}

.p-yoji-intro_learn__box--courses {
  grid-template-columns: 1fr;
  gap: 28px 0;
}

.entry-content .p-yoji-intro_learn__box--course_title {
  margin-bottom: 20px;
  line-height: 1.25;
}
@media screen and (max-width: 767px) {
  .entry-content .p-yoji-intro_learn__box--course_title {
    font-size:20px;
    line-height: 1.25;
    padding-top: 9.5px;
    padding-bottom: 9.5px;
  }
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-yoji-intro_learn__box--course_title {
    margin-bottom: 43px;
    line-height: 1.125;
    margin-right: 17px;
  }
}
.entry-content .p-yoji-intro_learn__box--course {
  padding: 25px 20px;
  background: #fff;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-yoji-intro_learn__box--course {
    padding: 40px;
  }
}

.p-yoji-intro_learn__box--course_inner {
  grid-template-columns:  1fr;
  gap: 2px 0;
}
@media print, screen and (min-width: 768px) {
  .p-yoji-intro_learn__box--course_inner {
      grid-template-columns: 467px 1fr;
    gap: 0 41px;
  }
}

.p-yoji-intro_learn__box--course--left {
  max-width: 467px;
  width: 100%;
  aspect-ratio: 467/297;
  display: block;
}

.p-yoji-intro_learn__box--course--left img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  width: 100%;
}

.entry-content .p-yoji-intro_learn__box--course_ttl {
  margin-top: 11px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
/*font-family: "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif; */
  margin-bottom: 18px;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-yoji-intro_learn__box--course_ttl {
    margin-bottom: 24px;
    font-size: 20px;
  }
}

.entry-content .p-yoji-intro_learn__box--course_desc {
  padding-bottom: 15px;
  border-bottom: 1px solid var(--ueda-medium-gray);
  margin-bottom: 21px;
  margin-right: 17px;
}
.entry-content .p-yoji-intro_learn__btn-box{
  text-align: center;
}
.entry-content a.p-yoji-intro_learn__btn {
  max-width: 240px;
  width: 100%;
  margin-top: 22px;
  font-size: 15px;
  line-height: calc(26 / 15);
  padding-top: 17px;
  padding-bottom: 17px;
  margin-inline: auto;
}
@media print, screen and (min-width: 768px) {
  .entry-content a.p-yoji-intro_learn__btn{
    margin-top: 49px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
/*後で確認*/
.entry-content .p-yoji-intro_learn__box--course-list {
  font-size: 15px;
  line-height: 1.7333333333;
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
/*font-family: "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif; */
}

.entry-content .p-yoji-intro_learn__box--course-list span {
  color: var(--ueda-rose-pink);	/* 2024.3 KAZ: was #FB8F9A */
}

/**/
/*yoji-intro_eca*/
#yoji-intro_eca {
  margin-bottom: 102px;
}

.p-yoji-intro_eca__inner {
  max-width: 1030px;
  margin-inline: auto;
}

.p-yoji-intro_eca__boxes {
  margin-bottom: 20px;
  padding: 30px 20px 45px;
}
@media print, screen and (min-width: 768px) {
  .p-yoji-intro_eca__boxes {
    margin-bottom: 34px;
  padding: 70px 50px 129px;
  }
}
.p-yoji-intro_eca__box {
  position: relative;
}

.entry-content .p-yoji-intro_eca__box-btn_boxes {
  grid-template-columns: 1fr;
  gap: 20px 0;
  position: relative;
  align-items: center;
  margin-bottom: 23px;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-yoji-intro_eca__box-btn_boxes {
    grid-template-columns: 1fr 1fr;
    gap: 0 50px;
    margin-bottom: 37px;
  }
}
.entry-content .p-yoji-intro_eca__box-btn_boxes::before {
  content: "";
  display: block;
  max-width: 50px;
  width: 100%;
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("/wp-content/uploads/2024/02/plus_bg.png") center center no-repeat;
  background-size: contain;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-yoji-intro_eca__box-btn_boxes::before {
    max-width: 69px;
  }
}
.entry-content .p-yoji-intro_eca__box-btn_box {
  border: 1px solid var(--ueda-rose-pink);
  background: #fff;
  font-size: 21px;
  line-height: 1.238;
  color: var(--ueda-rose-pink);
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
/*font-family: var(--ueda-pink); */
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-yoji-intro_eca__box-btn_box {
    padding-top: 37.5px;
    padding-bottom: 37.5px;
    font-size: 24px;
    line-height: 1.125;
  }
}
.entry-content .p-yoji-intro_eca__box-btn_box:has(span) {
  padding-top: 14px;
  padding-bottom: 14.5px;
}
@media print, screen and (min-width: 768px) {
.entry-content .p-yoji-intro_eca__box-btn_box:has(span) {
  padding-top: 26px;
  padding-bottom: 26.5px;
}
}
.entry-content .p-yoji-intro_eca__box-btn_box.c-pink-rose {
  color: #fff;
  background: var(--ueda-rose-pink);
}

.entry-content .p-yoji-intro_eca__box-btn_box span {
  font-size: 36px;
  vertical-align: sub;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-yoji-intro_eca__box-btn_box span {
    font-size: 44px;
  }
}

.entry-content .p-yoji-intro_eca__btn-box {
  min-width: 225px;
  max-width: 225px;
  min-width: auto;
  margin-inline: auto;
  width: 100%;
}

.entry-content .p-yoji-intro_eca__box-ttl {
  margin-bottom: 46px;
}

.p-yoji-intro_eca__desc {
  margin-bottom: 45.5px;
}
@media screen and (max-width: 767px) {
  .p-yoji-intro_eca__desc {
    margin-bottom: 32.5px;	/* 2024.3 KAZ: Problems_K */
  }
}

.entry-content .p-yoji-intro_eca__box-desc_box {
  font-size: 20px;
  line-height: 1.5;
/*font-family: "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif; */
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
  margin-bottom: 65px;
}

.entry-content .p-yoji-intro_eca__box-desc_box span {
  display: inline-block;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-yoji-intro_eca__box-desc_box span {
    margin-left: 27px;
  }
}

.entry-content .p-yoji-intro_eca-cont__boxes {
  gap: 35px 30px;
}

/*後で確認*/
.entry-content .p-yoji-intro_eca-cont__boxes .p-yoji-intro_eca-cont__box-lists {
  grid-template-columns: 1fr;
  gap: 10px 0;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-yoji-intro_eca-cont__boxes .p-yoji-intro_eca-cont__box-lists {
    grid-template-columns: 1fr;
    gap: 5px 0;
  }
}

.entry-content .p-yoji-intro_eca-cont__box-lists .p-yoji-intro_eca-cont__box-list {
  list-style-type: none;
  padding-left: 17px;
  font-size: 17px;
  line-height: 1.5882352941;
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
  padding-left: 0;
  padding-left: 22px;
  position: relative;
}

.entry-content .p-yoji-intro_eca-cont__box-lists .p-yoji-intro_eca-cont__box-list::before {
  margin-top: 5px;
  border-radius: 50%;
  display: inline-block;
  float: left;
  width: 17px;
  height: 17px;
  margin-right: 5px;
  content: "";
  background-color: var(--ueda-rose-pink);
}

/**/
.entry-content .p-yoji-intro_eca__btn {
  min-width: 225px;
  padding-top: 18.5px;
  line-height: 1.625;
  padding-bottom: 18.5px;
}

.entry-content .p-yoji-intro_eca-cont__box-ttl {
  color: #222;
  font-size: 15px;
  line-height: calc(30 / 15);
  padding-bottom: 2.5px;
  margin-bottom: 25px;
}

/*yoji-intro__shikaku*/
#yoji-intro_shikaku {
  margin-bottom: 70px;
}
@media print, screen and (min-width: 768px) {
  #yoji-intro_shikaku {
    margin-bottom: 107px;
  }
}
.entry-content .p-yoji-intro_shikaku__inner {
  max-width: 1030px;
  margin-inline: auto;
}

.entry-content .p-yoji-intro_shikaku__midashi + .p-yoji-intro_shikaku__midashi-desc {
  margin-bottom: 32.5px;
}
.entry-content .p-yoji-intro_shikaku__box {
  padding: 30px 26px 30px 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .entry-content .p-yoji-intro_shikaku__box {
    margin-inline: -20px;
  }
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-yoji-intro_shikaku__box {
    padding: 50px;
  }
}
/*後で確認*/
.entry-content .p-yoji-intro_shikaku__box-lists {
  grid-template-columns: 1fr;
  gap: 14px 0;
  margin-bottom: 0;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-yoji-intro_shikaku__box-lists {
    grid-template-columns: 1fr 1fr;
    gap:20px 30px;
  }
}

.entry-content .p-yoji-intro_shikaku__box-lists .p-yoji-intro_shikaku__box-list {
  padding-left: 0;
  font-size: 18px;
  line-height: 1;
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
  padding-left: 0;
  margin-bottom: 0;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-yoji-intro_shikaku__box-lists .p-yoji-intro_shikaku__box-list {
    font-size: 24px;
    line-height: 1;
  }
}
.entry-content .p-yoji-intro_shikaku__box-lists .p-yoji-intro_shikaku__box-list::before {
  border-radius: 50%;
  display: inline-block;
  float: left;
  width: 18px;
  height: 18px;
  margin-left: 0px;
  margin-right: 5px;
  content: "";
  background-color: var(--ueda-rose-pink);
  margin-top: 0;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-yoji-intro_shikaku__box-lists .p-yoji-intro_shikaku__box-list::before {
    width: 24px;
  height: 24px;
  margin-left: 0;
  }
}
/**/
.entry-content .p-yoji-intro_shikaku__btn-box {
  min-width: 180px;
  max-width: 180px;
  min-width: auto;
  margin-inline: auto;
  width: 100%;
}

.entry-content a.p-yoji-intro_shikaku__btn {
  min-width: 180px;
  padding-top: 17px;
  line-height: 1.625;
  padding-bottom: 17px;
}

/*yoji-intro message*/
#yoji-intro_message {
  margin-bottom: 70px;
}
@media print, screen and (min-width: 768px) {
  #yoji-intro_message {
    margin-bottom: 97.5px;
  }
}

@media screen and (max-width: 767px) {
  .entry-content .p-yoji-intro_message__midashi {
    margin-bottom:40px;
  }
}
.entry-content .p-yoji-intro_message__inner {
  max-width: 820px;
  margin-inline: auto;
}
.entry-content .p-yoji-intro_policy__midashi{
  margin-bottom: 70px;
}
.entry-content .p-yoji-intro_message__midashi,.entry-content .p-yoji-intro_policy__midashi{
  color: var(--ueda-rose-pink);
}
.entry-content .p-yoji-intro_message__midashi::after,.p-yoji-intro_policy__midashi::after{
  background-color: var(--ueda-rose-pink);
}
.entry-content h2.p-yoji-intro_policy__box-title::before{
  border-left-color: var(--ueda-rose-pink);
  border-right-color: var(--ueda-rose-pink);
}
.entry-content .c-gray-box h2.p-yoji-intro_policy__box-title{
  margin-bottom: 13px;
}
.entry-content .c-gray-box h2.p-yoji-intro_policy__box-title::before{
  height: 26px;
}

.entry-content .p-yoji-intro_message__boxes {
  grid-template-columns: 1fr;
  gap: 30px 0;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-yoji-intro_message__boxes {
    grid-template-columns: 243px 1fr;
    gap: 0 41px;
  }
}

.p-yoji-intro_message__box-desc {
  font-size: 17px;
  line-height: 2;
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
/*font-family: "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif; */
}

.p-yoji-intro_message__box-img {
  max-width:243px;
  width: 100%;
  aspect-ratio: 243/244;
}
@media screen and (max-width: 767px) {
  .p-yoji-intro_message__box-img {
    max-width:193px;
    margin-inline: auto;
  }
}
.p-yoji-intro_message__box-img img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  width: 100%;
}

.p-yoji-intro_message__box-desc span {
  display: block;
  text-align: right;
  margin-top: 23px;
}

#yoji-intro_policy {
  margin-bottom: 70px;
}
@media print, screen and (min-width: 768px) {
  #yoji-intro_policy {
    margin-bottom: 112px;
  }
}
.p-yoji-intro_policy__inner {
  max-width: 1030px;
  margin-inline: auto;
}

.p-yoji-intro_policy__boxes {
  grid-template-columns: 1fr;
  gap: 20px 0;
}
@media print, screen and (min-width: 768px) {
  .p-yoji-intro_policy__boxes {
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
    margin-bottom: 35px;
  }
}

.entry-content .p-yoji-intro_policy__box-title {
  font-size: 19px;
  line-height: 1.6842105263;
  font-weight: bold;
  margin-bottom: 22.5px;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-yoji-intro_policy__box-title {
    font-size: 22px;
    line-height: 1.4545454545;
    margin-bottom: 28.75px;
  }
}
.entry-content .p-yoji-intro_policy__box-title span {
  display: block;
  font-family: 游ゴシック体, "Yu Gothic", 游ゴシック, YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;	/* 2024.3 KAZ: was "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif */
  margin-top: -0.5px;
  font-weight: 500;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-yoji-intro_policy__box-title span {
    margin-top: 7.5px;
  }
}
.entry-content .p-yoji-intro_policy__box-desc {
  margin-bottom: 27.5px;
}

.entry-content .p-yoji-intro_policy__box-lists {
  list-style: auto;
  margin-left: 16px;
  /*13 + 3*/
  grid-template-columns: 1fr;
  gap: 10px 0;
}
.entry-content .c-gray-box .p-yoji-intro_policy__box-lists {
margin-bottom: 0;
}

.entry-content .p-yoji-intro_policy__box-lists .p-yoji-intro_policy__box-list {
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
  font-size: 15px;
  line-height: 1.6666666667;
}

.entry-content .p-yoji-intro_policy__box-lists .p-yoji-intro_policy__box-list::marker {
  color: var(--ueda-rose-pink);
  font-size: 15px;
  line-height: 2;
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
/*font-family: "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif; */
}

.p-yoji-intro_policy__gray-box {
  padding: 21px 20px 22px 20px;
}
@media print, screen and (min-width: 768px) {
  .p-yoji-intro_policy__gray-box {
    padding: 2.875rem 2.8125rem 2.9375rem 2.8125rem;
  }
}
#eca_cont {
  margin-bottom: 48px;
}
@media print, screen and (min-width: 768px) {
  #eca_cont {
    margin-bottom: 124.5px;
  }
}

.entry-content .p-eca__midashi {
  margin-bottom: 36px;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-eca__midashi {
    margin-bottom: 69.5px;
  }
}
.p-eca__top-desc {
  margin-bottom: 30px;
  max-width: 1030px;
}
@media print, screen and (min-width: 768px) {
  .p-eca__top-desc {
    margin-bottom: 54.5px;
  }
}

.p-eca_cont__inner {
  max-width: 1030px;
  margin-inline: auto;
}

.p-eca_cont__inner + .p-eca_cont__inner {
  margin-top: 23px;
}
@media print, screen and (min-width: 768px) {
  .p-eca_cont__inner + .p-eca_cont__inner {
    margin-top: 62px;
  }
}

.entry-content .p-eca_cont__inner--link + .p-eca_cont__inner--link {
  margin-top: 20px;
}

@media print, screen and (min-width: 768px) {
  .entry-content .p-eca_cont__inner--link + .p-eca_cont__inner--link {
    margin-top: 60.5px;
  }
}
.entry-content .p-eca_cont__title {
  margin-bottom: 28px;
}
.entry-content h2.p-eca_cont__title::before{
  border-right-color: var(--ueda-rose-pink);
  border-left-color: var(--ueda-rose-pink);
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-eca_cont__title {
    margin-bottom: 59px;
  }
}
.entry-content .p-eca_cont__title-desc {
  margin-bottom: 17px;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-eca_cont__title-desc {
    margin-bottom: 28.5px;
  }
}
.entry-content .p-eca_cont__title-link {
  margin-bottom: 20px;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-eca_cont__title-link {
    margin-bottom: 45px;
  }
}
.entry-content .p-eca_cont__desc {
  margin-bottom: 30px;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-eca_cont__desc {
    margin-bottom: 38.5px;
  }
}

.entry-content .p-eca_cont__link + .p-eca_cont__link {
  margin-top: 10px;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-eca_cont__link + .p-eca_cont__link {
    margin-top: 19.5px;
  }
}


.entry-content .p-eca_cont__title {
  line-height: 1.4545454545;
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
}

#qualification {
  margin-bottom: 50px;
}@media print, screen and (min-width: 768px) {
  #qualification {
    margin-bottom: 136.5px;
  }
}


.entry-content .p-qualify__inner {
  margin-inline: 20px;
  width: calc(100% - 40px);
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-qualify__inner {
    max-width: 1030px;
    margin-inline: auto;
  }
}
.entry-content .p-qualify__tables--overflow,.entry-content .p-work-yoji__tables--overflow,.entry-content .p-work-sogo__tables--overflow
{
  overflow-x: auto;
    white-space: nowrap;
    position: relative;
}
.entry-content .p-qualify__tables {
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .entry-content .p-qualify__tables {
   width: 600px;
  }
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-qualify__tables {
    margin-bottom: 68px;
    width: 100%;
  }
}
.entry-content .p-qualify__tables thead,
.entry-content #work-yoji thead,
.entry-content #work-sogo thead
{
  display: table-header-group;
}
.entry-content .p-qualify__tables tbody,
.entry-content #work-yoji tbody,
.entry-content #work-sogo tbody{
  display: table-row-group;
}
.entry-content .p-qualify__tables tr,
.entry-content #work-yoji tr,
.entry-content #work-sogo tr{
  display: table-row;
}
.entry-content .p-qualify__tables th,
.entry-content .p-qualify__tables td,
.entry-content #work-yoji th,
.entry-content #work-sogo th,
.entry-content #work-yoji td,
.entry-content #work-sogo td
{
display: table-cell;
}
/*後ほど削除*/
.entry-content .p-qualify__tables {
  border-bottom: 1px solid var(--ueda-medium-gray);
/*border-collapse: initial; */
}

  .entry-content .p-qualify__tables thead td {
    border-left: 1px solid #fff;
  }
  
  .entry-content .p-qualify__tables tbody td:not(:last-of-type) {
    border-right: 1px solid var(--ueda-medium-gray);
  }
.entry-content .p-qualify__tables th,
.entry-content .p-qualify__tables td {
  border-top: var(--ueda-medium-gray) 1px solid;
  font-size: 15px;
  line-height: 1.6666666667;
/*font-family: "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif; */
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
}

.entry-content .p-qualify__tables th {
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
  text-align: left;
  max-width: 57.755%;
  width: 100%;
}

.entry-content .p-qualify__tables td {
  max-width: 14.0816%;
  width: 100%;
}

.entry-content .p-qualify__tables thead,
.entry-content .p-qualify__tables tbody {
  box-sizing: inherit;
}

.entry-content .p-qualify__tables thead th,
.entry-content .p-qualify__tables thead td {
  background-color: var(--ueda-medium-gray);
  color: #fff;
  padding: 9.5px 20px;
}

.entry-content .p-qualify__tables tbody th {
  background-color: var(--ueda-bg-gray);
}
@media screen and (max-width: 767px) {
  .entry-content .p-qualify__tables tbody th {
white-space: normal ;
  }
}
@media print, screen and (min-width: 768px) {
.entry-content .p-qualify__tables tbody th,
.entry-content .p-qualify__tables tbody td{
  padding:22px 25px 17px;
}
}
.entry-content .p-qualify__tables tbody td{
  color: var(--ueda-strong-pink);
}
.entry-content .p-qualify__midashi {
  margin-bottom: 51px;
  font-size: 24px;
  line-height: 1.5;
  font-weight: bold;
  position: relative;
  padding-bottom: 10px;
}

/**/
.entry-content .p-qualify__midashi::after {
  background-color: var(--ueda-rose-pink);
}

.entry-content .p-qualify__box + .p-qualify__box {
  margin-top: 44.5px;
}

.entry-content .p-qualify__title {
  margin-bottom: 32.5px;
}


.p-reason__inner {
  max-width: 820px;
  margin-inline: auto;
  padding-top: 219px;
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .p-reason__inner {
    margin-inline: 20px;
  }
}
@media print, screen and (min-width: 768px) {
  .p-reason__inner {
    padding-top:222px;
    padding-bottom: 120px;
  }
}

.entry-content .p-reason__box-title {
  font-size: 18px;
  line-height: 2;
  color: #fff;
  text-align: center;
/*font-family: "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif; */
  margin-bottom: 31.5px;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-reason__box-title {
    font-size: 27px;
    line-height: 1.7407407407;
  }
}

.entry-content .p-reason__box-desc {
  font-size: 17px;
  line-height: 2;
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
  color: #fff;
  text-align: center;
/*font-family: "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif; */
}

.p-reason_origin__inner {
  padding-top: 51.5px;
  padding-bottom: 60px;
  max-width: 1030px;
  margin-inline: auto;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .p-reason_origin__inner {
    padding-top: 94px;
    padding-bottom: 130px;
  }
}
@media screen and (max-width: 767px) {
  .p-reason_origin__inner::before {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    border-top: 30px solid #fff;
    border-left: 18px solid transparent;
    border-bottom: 0px solid transparent;
    border-right: 18px solid transparent;
  }
}

.p-reason_origin-ttl_box {
  margin-bottom: 45.5px;
}
@media print, screen and (min-width: 768px) {
  .p-reason_origin-ttl_box {
    margin-bottom: 80px;
  }
}

.p-reason_origin-ttl_box,
.p-reason_origin-voice-ttl_box {
  text-align: center;
}

.entry-content .p-reason-ttl {
  font-size: 30px;
  line-height: 1.9343;
/*font-family: "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif; */
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
  position: relative;
  display: inline-block;
  z-index: 3;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-reason-ttl {
    font-size:35px;
    line-height: 1.3428571429;
  }
}

.p-reason-desc {
/*font-size: 23px; */
  font-size: 1.4375rem;
  line-height: 1.88;
/*font-family: "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif; */
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
  color: #fff;
}
@media print, screen and (min-width: 768px) {
  .p-reason-desc {
    font-size: 25px;
    line-height: 1.88;
  }
}
.entry-content .p-reason-ttl::before {
  content: "";
  width: calc(100% + 60px);
  height: 17px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  z-index: -1;
}

.entry-content .p-reason_origin-ttl {
  color: #222;
}
@media screen and (max-width: 767px) {
  .entry-content .p-reason_origin-ttl {
    background: linear-gradient(transparent 70%, #f8f138 0%);
    display: inline;
  }
}
.entry-content .p-reason_origin-voice-ttl {
  color: #fff;
}

@media print, screen and (min-width: 768px) {
  .entry-content .p-reason_origin-ttl::before {
    background-color: #f8f138;
  }
}
.p-reason_origin-btn__inner {
  max-width: 350px;
  margin-inline: auto;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media print, screen and (min-width: 768px) {
  .p-reason_origin-btn__inner {
    max-width: 610px;
    padding-top:100px;
    padding-bottom: 120px;
  }
}

.entry-content .p-reason_origin-btn_box {
  display: inline-block;
  width: 100%;
  border: 1px solid var(--ueda-strong-pink);
  border-radius: 20px;
  position: relative;
  text-decoration: none;
}
.entry-content .p-reason_origin-btn_box::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  /*色や形状*/
  background: var(--ueda-pink);
  width: 100%;
  border-radius: 20px;
  /*アニメーション*/
  height: 100%;
  transition: 0.4s cubic-bezier(0.2, 0, 0.2, 1) 0s;
}
.entry-content .p-reason_origin-btn_box:hover::before {
  height: 0;
  transition: 0.4s cubic-bezier(0.2, 0, 0.2, 1) 0s;
}
.entry-content .p-reason_origin-btn {
  justify-content: center;
  grid-template-columns: 61.3px 1fr;
  gap: 0 30px;
  width: 100%;
  align-items: center;
  max-width: 271.3px;
  margin-inline: auto;
  color: #fff;
  font-size: 18px;
  line-height: 1.7222222222;
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
  padding-top: 22.7px;
  padding-bottom: 19px;
  position: relative;
  z-index: 3;
}
@media print, screen and (min-width: 768px) {
  .entry-content .p-reason_origin-btn {
    padding-top: 43.2px;
    padding-bottom: 37.6px;
  }
}
.entry-content .p-reason_origin-btn svg {
  fill: #fff;
  transition: 0.3s;
  aspect-ratio: 61.3 /49.15;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  width: 100%;
  max-width: 61.3px;
}
.entry-content .p-reason_origin-btn_box:hover .p-reason_origin-btn svg {
  transition: 0.3s;
  fill: var(--ueda-strong-pink);
}
.entry-content .p-reason_origin-btn_box:hover .p-reason_origin-btn {
  color:  var(--ueda-strong-pink);
  transition: 0.3s;
}

.entry-content .p-reason_origin-voice-ttl::before {
  background-color: var(--ueda-strong-pink);
}

.p-reason_origin-img_boxes {
  grid-template-columns: 1fr;
  gap: 0 50px;
}
@media screen and (max-width: 767px) {
	.p-reason_origin-img_boxes {
		gap: 20px 0;	/* Aki 2024.3 */
	}
}
@media print, screen and (min-width: 768px) {
  .p-reason_origin-img_boxes {
    align-items: flex-start;
    grid-template-columns:630px 350px;
  }
}

.p-reason_origin-img_boxes .p-reason_origin-img_box:first-of-type {
  max-width: 350px;
  width: 100%;
  margin-inline: auto;
  display: block;
  aspect-ratio: 630/451;
}
@media print, screen and (min-width: 768px) {
  .p-reason_origin-img_boxes .p-reason_origin-img_box:first-of-type {
    max-width:630px;
  }
}

.p-reason_origin-img_boxes .p-reason_origin-img_box:first-of-type img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  width: 100%;
}

.p-reason_origin-img_boxes .p-reason_origin-img_box:last-of-type {
  max-width: 350px;
  width: 100%;
  margin-inline: auto;
  display: block;
  aspect-ratio: 350/345;
}
@media print, screen and (min-width: 768px) {
  .p-reason_origin-img_boxes .p-reason_origin-img_box:last-of-type {
    max-width: 350px;
  }
}

.p-reason_origin-img_boxes .p-reason_origin-img_box:last-of-type img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  width: 100%;
}

.p-reason_origin-voice__inner {
  padding-top: 71.5px;
  padding-bottom: 108px;
  max-width: 1030px;
  margin-inline: auto;
}
@media print, screen and (min-width: 768px) {
  .p-reason_origin-voice__inner {
    padding-top: 124px;
  padding-bottom: 120px;
  }
}
.entry-content .p-reason_origin-voice-ttl {
  margin-bottom: 23px;
}

.entry-content .p-reason_origin-voice-desc {
  margin-bottom: 69px;	/* 2024.3 KAZ: was 28.5px */
}
@media screen and (max-width: 767px) {
  .entry-content .p-reason_origin-voice-desc {
    margin-bottom: 28.5px;	/* 2024.3 KAZ: was 69px */
  }
}

.p-reason_origin-voice-imges {
  grid-template-columns: 1fr;
  gap: 28px 0;
}
@media screen and (max-width: 767px) {
  .p-reason_origin-voice-imges {
    gap: 40px 0;
  }
}
.p-reason_origin-voice-imges .p-reason_origin-voice-img {
  display: block;
  max-width: 925px;
  width: 100%;
  border-radius: 20px 25px;
  background: #fff;
  position: relative;
  padding: 15px 25px;
  text-align: left;
  font-size: 15px;
  line-height: 1.6666666667;
  font-weight: bold;	/* 2024.3 KAZ: was 600 */
/*font-family: "YuGothic", "游ゴシック", "Noto Sans JP", "Poppins", sans-serif; */
}
@media print, screen and (min-width: 768px) {
  .p-reason_origin-voice-imges .p-reason_origin-voice-img {
    border-radius: 34.5px;
    font-size: 17px;
    line-height: 2;
    padding: 16.5px 30px;
  }
}
.p-reason_origin-voice-imges .p-reason_origin-voice-img span {
  display: block;
  font-size: 13px;
  line-height: 2.3076923077;
  font-weight: 500;
}
@media print, screen and (min-width: 768px) {
  .p-reason_origin-voice-imges .p-reason_origin-voice-img span {
    font-size: 15px;
    line-height: 2.2666666667;
  }
}

.p-reason_origin-voice-imges .p-reason_origin-voice-img.p-reason_origin-voice-img--right {
  margin-left: auto;
}

.p-reason_origin-voice-imges .p-reason_origin-voice-img.p-reason_origin-voice-img--left {
  margin-right: auto;
}

.p-reason_origin-voice-imges .p-reason_origin-voice-img.p-reason_origin-voice-img--right::before,
.p-reason_origin-voice-imges .p-reason_origin-voice-img.p-reason_origin-voice-img--left::before {
  content: "";
  display: block;
  width: 37px;
  height: 28px;
  background-color: #fff;
  position: absolute;
  bottom: -27px;
}

.p-reason_origin-voice-imges .p-reason_origin-voice-img.p-reason_origin-voice-img--right::before {
  right: 38px;
  -webkit-clip-path: polygon(0 0, 100% 100%, 75% 0);
  clip-path: polygon(0 0, 100% 100%, 75% 0);
}

.p-reason_origin-voice-imges .p-reason_origin-voice-img.p-reason_origin-voice-img--left::before {
  left: 38px;
  -webkit-clip-path: polygon(25% 0, 0% 100%, 100% 0);
  clip-path: polygon(25% 0, 0% 100%, 100% 0);
}

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


}


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


}

/*-----
.scroll-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-weight: 700;
  line-height: 1.4;
  display: none;
  -webkit-animation: scroll-hint-animation 2s infinite ease;
          animation: scroll-hint-animation 2s infinite ease;
}

@-webkit-keyframes scroll-hint-animation {
  0% {
    transform: translate(-50%, -50%);
  }
  50% {
    transform: translate(-40%, -50%);
  }
  100% {
    transform: translate(-50%, -50%);
  }
}

@keyframes scroll-hint-animation {
  0% {
    transform: translate(-50%, -50%);
  }
  50% {
    transform: translate(-40%, -50%);
  }
  100% {
    transform: translate(-50%, -50%);
  }
}

.scroll-hint--show {
  display: block;
}
-----*/


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;
}
/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
#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}