@charset "utf-8";

/* ==========================================================================
   Variables & Root
   ========================================================================== */
:root {
	--primary-color: #e98282;
	/* 紅色系統 */
	--secondary-color: #f5f5f5;
	--text-color: #333;
	--white: #fff;
	--accent-color: #ff9999;

	/* Font Families */
	--font-main: "Zen Kaku Gothic Antique", sans-serif;
	--font-en: 'Montserrat', sans-serif;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: var(--font-main);
	color: var(--text-color);
	line-height: 1.6;
	overflow-x: auto;
}

a {
	text-decoration: none;
	color: inherit;
	transition: opacity 0.3s;
}

a:hover {
	opacity: 0.7;
}

ul {
	list-style: none;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

.list_icon_new::before {
	content: 'NEW';
	background: #ffff71;
	color: #0077a9;
	font-weight: bold;
	font-size: 90%;
	line-height: 1;
	padding: 0 4px;
	margin-right: 4px;
}

.pc_blk {
	display: block;
}
.pc_inblk {
	display: inline-block;
}
.sp_blk,
.sp_inblk {
	display: none;
}
@media screen and (max-width: 768px) {
.list_icon_new::before {}
.sp_blk {
	display: block;
}
.sp_inblk {
	display: inline-block;
}
.pc_blk,
.pc_inblk {
	display: none;
}
}

/* ==========================================================================
   Header (Non-sticky)
   ========================================================================== */
header {
	width: calc(100% - 60px);
	padding: 35px 0 0;
	background: var(--white);
	position: relative;
	z-index: 3;
	height: 90px;
	text-align: right;
}

header h1 {
	position: absolute;
	top: 0;
	left: 0;
	font-size: 0;
	display: inline-block;
	vertical-align: top;
	width: 430px;
	height: 130px;
	border-radius: 0 0 50px 0;
	background: var(--white);
	padding: 54px 48px 0 40px;
}

header ul {}

header ul li {
	position: relative;
	padding: 4px 6px 10px;
	display: inline-block;
	vertical-align: bottom;
}

header ul li:last-of-type {
	margin-right: 90px;
}

header ul li span {
	font-size: 14px;
	line-height: 1;
	display: inline-block;
	padding: 8px 14px;
	border-radius: 20px;
}

header ul li:hover span {
	background: linear-gradient(to bottom, #F798A6, #F27777);
	color: white;
}

header .submenu {
	position: absolute;
	top: 40px;
	left: 50%;
	background: rgba(255, 230, 230, 0.95);
	width: fit-content;
	padding: 17px 15px 12px;
	display: none;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transform: translate(-50%, 0);
	border-radius: 15px;
}

header ul li:hover .submenu {
	display: block;
}

header .submenu a {
	font-size: 14px;
	padding: 6px 0;
	display: block;
	width: fit-content;
	white-space: nowrap;
}

/* ==========================================================================
   Side Navigation (Sticky)
   ========================================================================== */
nav#sideNav {
	position: fixed;
	top: 0;
	right: 0;
	height: 100vh;
	width: 60px;
	z-index: 1000;
	padding-top: 60px;
	color: var(--white);
	background: #F2AFB9;
}

nav#sideNav .btn {
	width: 60px;
	aspect-ratio: 1;
	cursor: pointer;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	background: var(--primary-color);
}

html.open nav#sideNav .btn {}

nav#sideNav .btn span,
nav#sideNav .btn span::before,
nav#sideNav .btn span::after {
	content: '';
	display: block;
	width: 44px;
	height: 2px;
	background: var(--white);
	position: absolute;
	top: 50%;
	left: 50%;
	transition: 0.3s;
	transform: translate(-50%, -50%);
}

nav#sideNav .btn span::before {
	top: -12px;
}

nav#sideNav .btn span::after {
	top: 14px;
}

html.open nav#sideNav {
	right: 15px;
}

html.open nav#sideNav .btn span {
	background: transparent;
}

html.open nav#sideNav .btn span::before {
	top: 0;
	transform: translate(-50%, -50%) rotate(-45deg);
}

html.open nav#sideNav .btn span::after {
	top: 0;
	transform: translate(-50%, -50%) rotate(45deg);
}

nav#sideNav .sticky_links {
	display: block;
}

nav#sideNav .sticky_links a {
	display: block;
	background: no-repeat center top 14px / auto 24px #F2AFB9;
	padding: 50px 0 22px;
	min-height: 144px;
	border-bottom: solid 2px white;
	text-align: center;
	width: 100%;
}

nav#sideNav .sticky_links a.opencampus {
	padding-top: 46px;
	background-image: url(../images/common/icon-oc-white.png);
}

nav#sideNav .sticky_links a.line {
	background-image: url(../images/common/icon-line-white.png);
}

nav#sideNav .sticky_links a.form {
	background-image: url(../images/common/icon-form-white.png);
}

nav#sideNav .sticky_links a.access {
	background-image: url(../images/common/icon-access-white.png);
}

nav#sideNav .sticky_links a span {
	display: inline-block;
	vertical-align: top;
	font-size: 12px;
	line-height: 1.3;
	letter-spacing: 0.05em;
	writing-mode: vertical-rl;
	text-orientation: upright;
}

nav#sideNav .sticky_sns {
	display: block;
	background: #7C7C7C;
	padding: 5px 0;
}

nav#sideNav .sticky_sns a {
	display: block;
	background: no-repeat center / contain;
	width: 34px;
	height: 26px;
	margin: 20px auto;
}

nav#sideNav .sticky_sns a.instagram {
	background-image: url(../images/common/icon-instagram-white.png);
}

nav#sideNav .sticky_sns a.youtube {
	background-image: url(../images/common/icon-youtube-white.png);
}

/* Mega Menu overlay */
nav#sideNav .menu {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100vh;
	background: var(--primary-color);
	padding: 137px 120px 80px 60px;
	overflow-y: auto;
	scrollbar-gutter: stable;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
	clip-path: polygon(100% 0, 100% 0, 100% 0, 100% 0);
	transition: 0.3s;
}

html {
	scrollbar-gutter: stable;
}

html.open {
	overflow: hidden;
	scrollbar-gutter: unset;
	padding-right: 15px;
}

html.open nav#sideNav .menu {
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

nav#sideNav .menu ul li {
	margin: 0 0 30px;
}

nav#sideNav .menu ul li span {
	display: block;
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 0;
}

nav#sideNav .menu ul li div {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 10px;
}

nav#sideNav .menu ul li div a {
	font-size: 14.3px;
	color: #fff;
	position: relative;
	padding-left: 27px;
}

nav#sideNav .menu ul li div a::after {
	content: '';
	position: absolute;
	top: 12px;
	left: 2px;
	width: 10px;
	height: 1px;
	background: white;
}

nav#sideNav .menu .bottom_content a {
	font-size: 14px;
	display: block;
	width: fit-content;
	margin: 0 0 11px;
}

nav#sideNav .menu .bottom_content .student {
	padding: 14px 0 0;
}

nav#sideNav .menu .bottom_content .student p {
	font-size: 14px;
	padding-bottom: 10px;
}

nav#sideNav .menu .bottom_content .student a {
	border: solid 1px white;
	width: 120px;
	padding: 3px 0;
	text-align: center;
}

nav#sideNav .menu .bottom_content .contact {
	text-align: center;
	margin: 88px 0 0;
}

nav#sideNav .menu .bottom_content .contact p {
	font-weight: 500;
	font-size: 15px;
	border-bottom: solid 2px white;
	width: fit-content;
	margin: 0 auto 0;
	padding: 0 3px 3px;
}

nav#sideNav .menu .bottom_content .contact .tel {
	display: block;
	font-size: 30px;
	font-weight: 600;
	line-height: 1;
	width: fit-content;
	margin: 7px auto 0;
	letter-spacing: 5px;
	padding-left: 50px;
	background: url(../images/common/icon-tel-white.png) no-repeat left bottom / auto 78%;
}

nav#sideNav .menu .bottom_content .contact .form {
	display: block;
	padding: 14px 20px;
	font-weight: 700;
	font-size: 14px;
	font-weight: 500;
	margin: 22px 0 0;
	border: solid 1px white;
	width: 100%;
}

nav#sideNav .menu .bottom_content .contact .form::before {
	content: '';
	background: url(../images/common/icon-mail-white.png) no-repeat center / contain;
	display: inline-block;
	vertical-align: sub;
	width: 22px;
	aspect-ratio: 1;
	margin-right: 9px;
}

/* ==========================================================================
   Main
   ========================================================================== */
main {
	display: block;
	width: calc(100% - 60px);
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
	color: #333;
	width: calc(100% - 60px);
}

/* 入学案内センター Area */
footer .footer_info_center {
	background: #f8f8f8;
	padding: 60px 20px;
	border-top: 1px solid #eee;
}

footer .footer_info_center .inner {
	max-width: 1060px;
	margin: 0 auto;
	padding: 0 10px;
}

footer .info_left {
	flex: 1;
}

footer .logo_footer {
	max-width: 300px;
}

footer .campus_addresses {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0;
	width: 100%;
	margin-top: 45px;
}

footer .campus_addresses div {
	width: 33%;
	border-left: solid 2px #333;
	padding-left: 14px;
}

footer .address_block .name {
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 5px;
}

footer .address_block .address {
	font-size: 0.9rem;
	font-weight: 500;
	color: #666;
}

footer .info_right {
	margin-top: 55px;
	display: flex;
	gap: 120px;
}

footer .info_right .contact_box {
	width: 50%;
	text-align: center;
}

footer .info_right .contact_box .center_label {
	font-weight: 700;
	font-size: 0.9rem;
	border-bottom: solid 2px #333;
	width: fit-content;
	margin: 0 auto 0;
	padding: 0 5px 3px;
}

footer .info_right .contact_box .tel {
	display: block;
	font-size: 38px;
	font-weight: 600;
	line-height: 1;
	width: fit-content;
	margin: 7px auto 0;
	letter-spacing: 5px;
	padding-left: 66px;
	background: url(../images/common/icon-tel.png) no-repeat left bottom / auto 78%;
}

footer .info_right .contact_btn {
	display: block;
	padding: 14px 20px;
	font-weight: 700;
	font-size: 17px;
	font-weight: 500;
	margin: 22px 0 0;
	border: solid 1px #333;
}

footer .info_right .contact_btn::before {
	content: '';
	background: url(../images/common/icon-mail.png) no-repeat center / contain;
	display: inline-block;
	vertical-align: sub;
	width: 22px;
	aspect-ratio: 1;
	margin-right: 9px;
}

footer .info_right .obm_banner {
	width: 50%;
	text-align: right;
}

footer .info_right .obm_banner img {
	width: 100%;
	max-width: 436px;
}

/* Main Footer Area */
footer .footer_main {
	background: #7C7C7C;
	color: #fff;
	padding: 48px 0 40px;
}

footer .footer_main .inner {
	max-width: 1060px;
	margin: 0 auto;
	padding: 0 10px;
}

footer .footer_flex {
	display: flex;
	justify-content: space-between;
	gap: 60px;
}

footer .footer_nav {
	flex: 1;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

footer .nav_col .title {
	font-weight: 700;
	font-size: 16px;
	padding: 12px 0;
	margin: 0;
}

footer .nav_col ul {
	margin: 0;
}

footer .nav_col ul li {
	padding-bottom: 14px;
	position: relative;
	padding-left: 25px;
	padding-bottom: 10px;
}

footer .nav_col ul li::before {
	content: '';
	display: inline-block;
	vertical-align: top;
	width: 10px;
	height: 1px;
	background: white;
	position: absolute;
	top: 10px;
	left: 0;
}

footer .nav_col ul li a {
	font-size: 13.6px;
	color: #FFFFFF;
	transition: color 0.3s;
	display: inline-block;
	vertical-align: top;
}

footer .nav_col ul li a:hover {
	color: #fff;
	opacity: 1;
}

footer .footer_side_btns {
	text-align: right;
	margin-top: 14px;
	margin-left: auto;
	width: 225px;
}

footer .f_btn {
	display: inline-block;
	width: 100%;
	padding: 20px 15px 20px 27px;
	border-radius: 8px;
	font-weight: 700;
	color: #fff;
	transition: transform 0.3s;
	border: solid 1px white;
	text-align: left;
	margin: 0 0 25px;
}

footer .f_btn::before {
	content: '';
	display: inline-block;
	vertical-align: middle;
	width: 34px;
	height: 34px;
	background: no-repeat center / contain;
	margin-right: 23px;
}

footer .f_btn.oc::before {
	background-image: url(../images/common/icon-oc-white.png);
}

footer .f_btn.line::before {
	background-image: url(../images/common/icon-line-white.png);
}

footer .f_btn.form::before {
	background-image: url(../images/common/icon-form-white.png);
}

footer .f_btn.access::before {
	background-image: url(../images/common/icon-access-white.png);
}

footer .f_btn span {
	font-size: 14px;
	font-weight: 600;
	display: inline-block;
	vertical-align: middle;
	text-align: left;
}

footer .f_btn:hover {
	transform: translateX(-5px);
	opacity: 1;
}

/* Footer Bottom */
footer .footer_bottom {
	margin-top: 54px;
}

footer .bottom_links a {
	font-size: 14px;
	color: white;
	display: inline-block;
	margin-right: 32px;
}

footer .footer_sns {
	text-align: center;
	margin: 18px 0 0;
}

footer .f_sns_link {
	display: inline-block;
	width: 36px;
	height: 30px;
	background: no-repeat center / contain;
	margin: 0 15px;
}

footer .f_sns_link.insta {
	background-image: url('/new_assets/images/common/icon-instagram-white.png');
}

footer .f_sns_link.line {
	background-image: url('/new_assets/images/common/icon-line-white.png');
}

footer .f_sns_link.youtube {
	background-image: url('/new_assets/images/common/icon-youtube-white.png');
}

footer .footer_copyright {
	background: #fff;
	width: calc(100% - 60px);
}

footer .footer_copyright .inner {
	max-width: 1060px;
	margin: 0 auto;
	padding: 30px 10px;
	display: flex;
	gap: 0;
}

footer .footer_copyright .student {
	width: 50%;
}

footer .footer_copyright .student p {
	display: inline-block;
	vertical-align: middle;
	font-size: 14px;
	margin-right: 12px;
}

footer .footer_copyright .student a {
	display: inline-block;
	vertical-align: middle;
	font-size: 14px;
	border: solid 1px #333;
	text-align: center;
	width: 120px;
	margin-right: 6px;
}

footer .footer_copyright .copyright {
	width: 50%;
	text-align: right;
	font-size: 12px;
}

/* ==========================================================================
   Responsive (Common UI)
   ========================================================================== */
@media screen and (max-width: 1340px) {

header {
	padding: 85px 0 0;
	height: 140px;
}
header h1 {
	padding: 30px 48px 0 40px;
}
header ul {
	text-align: left;
	margin: 0 0 0 20px;
	white-space: nowrap;
}
header .submenu {
	left: 0;
	transform: none;
}

}	
	
@media screen and (max-width: 1024px) {
	.footer_flex {
		flex-direction: column;
	}

	.footer_side_btns {
		width: 100%;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}

	.info_flex {
		flex-direction: column;
		text-align: center;
	}

	.info_right {
		width: 100%;
		justify-content: center;
	}

	.campus_addresses {
		justify-content: center;
	}

	.contact_box {
		text-align: center;
	}
}

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

header {
	width: 100%;
	padding: 0;
	height: 6.3vw;
}

header h1 {
	width: 79.6vw;
	height: 18.4vw;
	border-radius: 0 0 30px 0;
	padding: 7vw 6vw 0 4vw;
}

header ul {
	display: none;
}

header ul li {}

header ul li span {}

header ul li:hover span {}

header .submenu {}

header ul li:hover .submenu {}

header .submenu a {}

nav#sideNav {
	height: 0;
	width: 0;
	padding: 0;
}

nav#sideNav .btn {width: 12vw;}

html.open nav#sideNav .btn {}

nav#sideNav .btn span,
nav#sideNav .btn span::before,
nav#sideNav .btn span::after {
	width: 8vw;
}

nav#sideNav .btn span::before {
	top: -2.2vw;
}

nav#sideNav .btn span::after {
	top: 2.6vw;
}

html.open nav#sideNav {
	right: 0;
}

html.open nav#sideNav .btn span {}

html.open nav#sideNav .btn span::before {}

html.open nav#sideNav .btn span::after {}

nav#sideNav .sticky_links {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1vw;
	background: white;
}

nav#sideNav .sticky_links a {
	min-height: 19vw;
	border-bottom: none;
	background: no-repeat center / cover;
}

nav#sideNav .sticky_links a.opencampus {
	padding: 0;
	background-image: url(../images/common/spbottom-opencampus.png);
}

nav#sideNav .sticky_links a.line {
	padding: 0;
	background-image: url(../images/common/spbottom-line.png);
}

nav#sideNav .sticky_links a.form {
	padding: 0;
	background-image: url(../images/common/spbottom-form.png);
}

nav#sideNav .sticky_links a.access {
	padding: 0;
	background-image: url(../images/common/spbottom-access.png);
}

nav#sideNav .sticky_links a span {
	font-size: 0;
}

nav#sideNav .sticky_sns {
	display: none;
}

nav#sideNav .sticky_sns a {}

nav#sideNav .sticky_sns a.instagram {}

nav#sideNav .sticky_sns a.youtube {}

nav#sideNav .menu {padding: 21.4vw 6vw 6vw;display: block;}

html {}

html.open {
	padding: 0;
}

html.open nav#sideNav .menu {}

nav#sideNav .menu ul {
	border-bottom: solid 1px white;
}

nav#sideNav .menu ul li {
	margin: 0;
}

nav#sideNav .menu ul li span {
	font-size: 4.2vw;
	padding: 4.6vw 0;
	border-top: solid 1px white;
}

nav#sideNav .menu ul li div {
	gap: 6vw;
	margin: 2vw 0 8.4vw 5vw;
}

nav#sideNav .menu ul li div a {
	font-size: 3.4vw;
	padding-left: 3.2vw;
}

nav#sideNav .menu ul li div a br {
	display: none;
}

nav#sideNav .menu ul li div a::after {
	top: 2.8vw;
	left: 0;
	width: 1.2vw;
}

nav#sideNav .menu .bottom_content {
	margin-top: 8vw;
}

nav#sideNav .menu .bottom_content a {}

nav#sideNav .menu .bottom_content .student {}

nav#sideNav .menu .bottom_content .student p {}

nav#sideNav .menu .bottom_content .student a {}

nav#sideNav .menu .bottom_content .contact {}

nav#sideNav .menu .bottom_content .contact p {}

nav#sideNav .menu .bottom_content .contact .tel {}

nav#sideNav .menu .bottom_content .contact .form {}

nav#sideNav .menu .bottom_content .contact .form::before {}

main {
	width: 100%;
}

footer {
	width: 100%;
}

footer .footer_info_center {
	padding: 16vw 6vw 14.2vw;
}

footer .footer_info_center .inner {
	padding: 0;
}

footer .info_left {}

footer .logo_footer {
	max-width: 61vw;
}

footer .campus_addresses {
	display: block;
	margin-top: 10vw;
}

footer .campus_addresses div {
	width: 100%;
	text-align: left;
	padding-left: 4vw;
	margin-bottom: 4.2vw;
}

footer .address_block .name {
	font-size: 3.7vw;
	margin-bottom: 1.6vw;
}

footer .address_block .address {
	font-size: 4vw;
}

footer .info_right {
	display: block;
	margin-top: 15vw;
}

footer .info_right .contact_box {
	width: 100%;
}

footer .info_right .contact_box .center_label {
	font-size: 3.6vw;
	padding: 0 3vw 0.4vw;
}

footer .info_right .contact_box .tel {
	font-size: 7.6vw;
	margin-top: 2.4vw;
	letter-spacing: 4px;
	padding-left: 13vw;
}

footer .info_right .contact_btn {
	padding: 4vw 0;
	font-weight: 700;
	font-size: 3.8vw;
	margin: 9vw 0 0;
}

footer .info_right .contact_btn::before {
	width: 4.6vw;
	margin-right: 1.4vw;
}

footer .info_right .obm_banner {
	width: 100%;
	margin-top: 13vw;
}

footer .info_right .obm_banner img {}

footer .footer_main {
	display: none;
}

footer .footer_main .inner {}

footer .footer_flex {}

footer .footer_nav {}

footer .nav_col .title {}

footer .nav_col ul {}

footer .nav_col ul li {}

footer .nav_col ul li::before {}

footer .nav_col ul li a {}

footer .nav_col ul li a:hover {}

footer .footer_side_btns {}

footer .f_btn {}

footer .f_btn::before {}

footer .f_btn.oc::before {}

footer .f_btn.line::before {}

footer .f_btn.form::before {}

footer .f_btn.access::before {}

footer .f_btn span {}

footer .f_btn:hover {}

footer .footer_bottom {}

footer .bottom_links a {}

footer .footer_sns {}

footer .f_sns_link {}

footer .f_sns_link.insta {}

footer .f_sns_link.line {}

footer .f_sns_link.youtube {}

footer .footer_copyright {
	width: 100%;
}

footer .footer_copyright .inner {
	padding: 7vw 0;
	display: block;
	width: 100%;
}

footer .footer_copyright .student {
	display: none;
}

footer .footer_copyright .student p {}

footer .footer_copyright .student a {}

footer .footer_copyright .copyright {
	width: 100%;
	text-align: center;
	font-size: 3.1vw;
}

}