@charset "UTF-8";

/* basic
------------------------- */
:root {
	--colorBlue: #005ab4;
	--colorGreen: #00a082;
	--fontFamily: "Noto Sans JP", sans-serif;
	--txtSizeS: 1.4rem;
	--txtSizeM: 1.6rem;
	--txtSizeL: 1.8rem;
	--lineHeight: 1.75;
	--widthTablet: 744px;
	--widthPC: 1160px;
	--widthMax: 1400px;
	--breakminLength: 320;
	--breakTabLength: 768;
	--breakPcLength: 1024;
	--trans03S: all 0.3s ease-in-out;
	--colorGray: #999;
}

img {
	max-width: 100%;
	height: auto;
}

html {
	font-size: 62.5%;
}

body {
	margin: 0;
	font-family: var(--fontFamily);
	font-size: var(--txtSizeM);
	font-feature-settings: "palt" 1;
	line-height: var(--lineHeight);
}

.small {
	font-size: var(--txtSizeS);
}

p {
	margin-bottom: 1em;
	font-size: var(--txtSizeM);
	font-weight: 500;
	line-height: 2;
	text-align: justify;
	text-justify: inter-character;
	word-break: normal;
	word-wrap: break-word;
}

div > p:last-child {
	margin-bottom: 0;
}

.text-right {
	text-align: right;
}

p.asterisk,
li.asterisk {
	margin: 0 0 0.25em 1.25em;
	font-size: var(--txtSizeS);
	font-weight: 500;
	line-height: 1.5em;
	text-indent: -1em;
}
p.asterisk::before,
li.asterisk::before {
	content: "※";
}
.text-s {
	font-size: var(--txtSizeS);
	font-weight: 500;
}
.pc_true {
	display: none;
}
.sp_true {
	display: block;
}

/* リンク */
a {
	transition: var(--trans03S);
}
a:hover,
a:active,
a:focus {
	color: var(--primary);
	text-decoration: none;
	opacity: 0.6;
}

a.link-round {
	background-color: var(--colorBlue);
	color: #fff;
	position: relative;
	display: inline-block;
	padding: 30px 60px;
	clip-path: polygon(
		10px 0%,
		/* 左上 */ calc(100% - 10px) 0%,
		/* 右上 */ 100% 10px,
		/* 右上 */ 100% calc(100% - 10px),
		/* 右下 */ calc(100% - 10px) 100%,
		/* 右下 */ 10px 100%,
		/* 左下 */ 0% calc(100% - 10px),
		/* 左下 */ 0% 10px
	);
}
a.link-round svg {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
}
a.link-border {
	color: var(--colorBlue);
	text-decoration: underline;
}
a.link-border:hover {
	text-decoration: none;
}

/*--------------------------------
 オープニングアニメーション
--------------------------------*/
#loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 99;
	transition: transform 0.4s ease-in-out;
}

/*--------------------------------
 Layout
--------------------------------*/
body {
	background-image: url(/tokaiex/assets/img/common/bg_line.svg);
	background-size: 943px;
	background-repeat: repeat-y;
	background-position: center;
	border-bottom: 10px solid var(--colorBlue);
}
body.modal-open {
	overflow: hidden;
}
/* header */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 70px;
	background-color: #fff;
	z-index: 10;
}
.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
	max-width: var(--widthMax);
	margin: 0 auto;
	padding: 0 10px;
}
.header-logo {
	margin-top: 10px;
	width: 200px;
	max-width: 60%;
}
  .header-logo-70th-pc {
    display: inherit;
    margin-right: 75px;
  }
nav.header-nav-pc {
	display: none;
}
/*hamburger*/
.hamburger {
	display: flex;
	position: absolute;
	width: 70px;
	height: 70px;
	background: var(--colorBlue);
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 6px;
	cursor: pointer;
	z-index: 10;
	top: 0;
	right: 0;
}
.hamburger span {
	display: block;
	width: 20px;
	height: 2px;
	background: #fff;
	transition: all 0.3s ease;
	position: relative;
}
.hamburger.active span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
	opacity: 0;
}
.hamburger.active span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

.menu-overlay {
	position: fixed;
	top: 70px;
	left: 0;
	width: 100vw;
	height: calc(100vh - 70px);
	background: rgba(0, 0, 0, 0.6);
	z-index: 9;
	transition:
		opacity 0.5s ease,
		visibility 0.5s ease;
	opacity: 0;
	visibility: hidden;
}
.menu-overlay.show {
	opacity: 1;
	visibility: visible;
}
/* slide-menu */
.slide-menu {
	position: fixed;
	top: 70px;
	right: -300px;
	width: 300px;
	height: calc(100vh - 70px);
	background: #fff;
	transition: right 0.3s ease;
	z-index: 10;
	padding: 50px 30px;
}
.slide-menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.slide-menu ul li {
	margin-bottom: 20px;
}
.slide-menu ul li a {
	font-weight: bold;
	color: #000;
	text-decoration: none;
}
.slide-menu.open {
	right: 0;
}

/* common */
main {
	padding-top: 70px;
}
section {
	margin-bottom: 100px;
}

.c-box-center {
	max-width: var(--widthMax);
	margin-left: auto;
	margin-right: auto;
	padding: 0 20px;
	text-align: center;
}
.c-box-940-inner {
	max-width: 940px;
	padding: 0 20px;
	margin-left: auto;
	margin-right: auto;
}
.c-box-1160-inner {
	max-width: 1160px;
	padding: 0 20px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}
.c-flex-half {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px 100px;
	flex-wrap: wrap;
}
.c-flex-half > div {
	width: 100%;
}
.sec-title {
	margin-bottom: 40px;
}
.sec-title p.en-title {
	font-size: 4rem;
	font-weight: 700;
	color: var(--colorBlue);
	margin-bottom: 0;
}
.sec-title p.en-title span::first-letter {
	font-size: 5rem;
}
.sec-title h2.jp-title,
.sec-title h1.jp-title {
	font-size: var(--txtSizeL);
	font-weight: 700;
	line-height: 1.5;
}
.ti-sub-b {
	font-size: 3.4rem;
	color: var(--colorBlue);
}
.ti-sub-sub-g {
	font-size: 2.4rem;
}
.mb50 {
	margin-bottom: 50px;
}
.mb100 {
	margin-bottom: 100px;
}

/* top-key-visual */
#top-key-visual {
	background-color: var(--colorBlue);
	background-image: url(/tokaiex/assets/img/common/bg_line.svg);
	background-size: 943px;
	background-repeat: repeat-y;
	background-position: center;
}
.top-key-visual-inner {
	position: relative;
	max-width: var(--widthMax);
	margin: 0 auto;
	padding: 50px 0 140px 0;
}
.top-key-title {
	position: absolute;
	bottom: 30px;
}
.top-key-title h1.bg-gra {
	padding: 20px;
	background: linear-gradient(120deg, #005ab4, #00a082, #a2a05a);
	margin-bottom: 20px;
}
.top-key-title h1 img {
	width: 100%;
	max-width: 320px;
	margin: 0 auto;
}

.top-key-title p {
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.5;
	width: 100%;
	color: #fff;
	padding-left: 25px;
}

#top-key-visual .top-key-video {
	width: 96%;
	height: auto;
	position: relative;
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
}
#top-key-visual .top-key-video video {
	transform: translateX(-15%);
	width: 130%;
	height: auto;
	object-fit: cover;
}
.mask {
	position: absolute;
	background: var(--colorBlue);
	z-index: 1;
}

.top-left {
	top: 0;
	left: 0;
	width: 20%;
	height: 6px;
}
.bottom-right {
	bottom: 0;
	right: 0;
	width: 5px;
	height: 40%;
}
/* top-evo2027 */
#top-evo2027 {
	padding-bottom: 120px;
	background-image: url(/tokaiex/assets/img/index/bg_evo_down.svg);
	background-size: 100px auto;
	background-repeat: no-repeat;
	background-position: center bottom;
}
#top-evo2027 h2 {
	font-size: 4rem;
	font-weight: 700;
	color: var(--colorBlue);
	line-height: 1.4;
	margin-bottom: 30px;
}
#top-evo2027 h2 strong {
	color: var(--colorGreen);
	font-size: 5rem;
}
#top-evo2027 p {
	max-width: 740px;
	margin: 0 auto;
}

/* top-newtokaicampus */
#top-newtokaicampus {
	background-image: url(/tokaiex/assets/img/index/bg_top_concept.svg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center bottom;
}
#top-newtokaicampus .c-box-940-inner {
	max-width: 940px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	flex-direction: column;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 50px;
}
#top-newtokaicampus h2 {
	font-size: 5rem;
	font-weight: bold;
	color: var(--colorBlue);
	line-height: 1;
	letter-spacing: -0.2rem;
	margin-bottom: 30px;
}
#top-newtokaicampus h2 span {
	display: inline-block;
}
#top-newtokaicampus h2 span::first-letter {
	font-size: 7rem;
}

ul.concept-list3 {
	display: flex;
	justify-content: space-around;
	flex-direction: column;
	align-items: center;
}
ul.concept-list2 {
	display: flex;
	justify-content: space-around;
	flex-direction: column;
	align-items: center;
}
ul.concept-list3 li,
ul.concept-list2 li {
	margin-bottom: 30px;
}
.concept-01 button,
.concept-02 button,
.concept-03 button,
.concept-04 button,
.concept-05 button {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2rem;
	font-weight: bold;
	color: var(--colorBlue);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	zoom: 0.8;
}
.concept-01 button,
.concept-02 button,
.concept-03 button {
	width: 294px;
	height: 84px;
}
.concept-04 button,
.concept-05 button {
	width: 357px;
	height: 84px;
}

.concept-01 button {
	background-image: url(/tokaiex/assets/img/index/bg_top_concept_s01.svg);
}
.concept-02 button {
	background-image: url(/tokaiex/assets/img/index/bg_top_concept_s02.svg);
}
.concept-03 button {
	background-image: url(/tokaiex/assets/img/index/bg_top_concept_s03.svg);
}
.concept-04 button {
	background-image: url(/tokaiex/assets/img/index/bg_top_concept_l01.svg);
}
.concept-05 button {
	background-image: url(/tokaiex/assets/img/index/bg_top_concept_l02.svg);
}

/* top-popup */
.popup {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	justify-content: center;
	align-items: center;
	z-index: 10;
}

.popup-content {
	width: calc(100% - 20px);
	background: #fff;
	padding: 2rem;
	position: relative;
}
.popup-content button.close {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	width: 50px;
	height: 50px;
	background-color: var(--colorBlue);
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}
.popup-content-flex {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	flex-direction: column;
	flex-wrap: wrap;
}
.popup-content-flex > div {
	width: 100%;
}
.popup-content-flex h3 {
	font-size: 3rem;
	font-weight: bold;
	margin-bottom: 1rem;
	line-height: 1.4;
}
.popup-content-flex p.h3-sub {
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 0;
}
.pop-inner-p {
	font-size: var(--txtSizeM);
	line-height: 1.6;
}
.popup-content-flex > div.switch-image {
	position: relative;
	width: 80%;
	aspect-ratio: 1 / 1;
	margin: 0 auto;
}

.image-box {
	text-align: center;
}
.image-box img {
	width: 80%;
	height: auto;
	margin-left: auto;
	margin-right: auto;
}
/* top-Floormap */
.icon-search {
	display: inline-block;
	width: 34px;
	height: 40px;
	background-image: url(/tokaiex/assets/img/common/icon_map_search.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	margin-right: 5px;
	vertical-align: middle;
}
#top-floor-map-canvas {
	width: 100%;
	height: 500px;
	margin-top: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow-y: hidden;
	overflow-x: auto;
	margin-bottom: 20px;
	position: relative;
}
#top-floor-map-canvas::-webkit-scrollbar-button {
	display: none; /* ← これで左右の矢印を非表示に */
}
.floor-map-canvas-inner {
	position: relative;

	height: 700px;
	zoom: 0.7142;
}
.floor-map-canvas-inner img {
	max-width: 1594px;
	height: 700px;
}
#pop-icon-group {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
#pop-icon-group li {
	position: absolute;
}
#pop-icon-group li.searchno01 {
	top: 550px;
	left: 1470px;
}
#pop-icon-group li.searchno02 {
	top: 90px;
	left: 1320px;
}
#pop-icon-group li.searchno03 {
	top: 210px;
	left: 810px;
}
#pop-icon-group li.searchno04 {
	top: 490px;
	left: 600px;
}
#pop-icon-group li.searchno05 {
	top: 375px;
	left: 1340px;
}
#pop-icon-group li.searchno06 {
	top: 470px;
	left: 1390px;
}
#pop-icon-group li.searchno07 {
	top: 550px;
	left: 1260px;
}
#pop-icon-group li.searchno08 {
	top: 290px;
	left: 1110px;
}
#pop-icon-group li.searchno09 {
	top: 210px;
	left: 980px;
}
#pop-icon-group li.searchno10 {
	top: 180px;
	left: 380px;
}
#pop-icon-group li.searchno11 {
	top: 190px;
	left: 475px;
}
#pop-icon-group li.searchno12 {
	top: 200px;
	left: 685px;
}
#pop-icon-group li.searchno13 {
	top: 280px;
	left: 290px;
}
#pop-icon-group li.searchno14 {
	top: 210px;
	left: 590px;
}
#pop-icon-group li.searchno15 {
	top: 260px;
	left: 480px;
}
#pop-icon-group li.searchno16 {
	top: 100px;
	left: 680px;
}
#pop-icon-group li.searchno17 {
	top: 230px;
	left: 300px;
}
#pop-icon-group li.searchno18 {
	top: 100px;
	left: 220px;
}
#pop-icon-group li.searchno19 {
	top: 10px;
	left: 1020px;
}
#pop-icon-group li.searchno20 {
	top: 10px;
	left: 720px;
}
#pop-icon-group li.searchno21 {
	top: 10px;
	left: 460px;
}

#pop-icon-group li img {
	width: 34px;
	height: 39px;
}

/* top-floormap popup */
.f-popup-content {
	width: calc(100% - 40px);
	max-width: 500px;
	background: #fff;
	padding: 35px;
	position: relative;
}
.f-popup-content button.close {
	position: absolute;
	top: -50px;
	right: 0;
	z-index: 2;
	width: 50px;
	height: 50px;
	background-color: var(--colorBlue);
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}
.f-popup-content h3 {
	font-size: 2rem;
	font-weight: bold;
	margin: 2rem 0;
	text-align: center;
	line-height: 1.4;
}
.image-box {
	text-align: center;
}
.f-popup-content .image-box img {
	width: 100%;
	height: auto;
	margin-left: auto;
	margin-right: auto;
}

/* top-instagram */
.instagram-link {
	margin-bottom: 30px;
}
.instagram-link a {
	display: flex;
}
.instagram-link a img {
	width: 30px;
}
.instagram-link a p {
	margin-bottom: 0;
	margin-left: 10px;
}

.instagram-list {
	width: 100%;
	overflow: hidden;
	white-space: nowrap;
}
.slider-track {
	display: inline-flex;
}
.slider-track div {
	width: 150px;
	height: auto;
	margin-right: 10px;
}
.slider-track div img {
	width: 150px;
	height: 187.5px;
	object-fit: cover;
}
.slider-track div a {
	display: block;
}

/* top-message */
.message-wrapper {
  display: flex;
  justify-content: space-between;
}
.message-photo-box {
  width: 405px;
}
.message-text-box {
  width: 660px;
}
.message-text-name {
  margin-top: 50px;
  text-align: right;
}
.message-text-name span {
  font-size: 2rem;
}
@media only screen and (max-width: 767px) {
  .message-wrapper {
    display: inherit;
  }
  .message-photo-box {
    width: 70%;
    margin: 0 auto 30px;
  }
  .message-text-box {
    width: auto;
  }
  .message-text-name {
    margin-top: 30px;
  }
  .message-text-name span {
    font-size: 1.8rem;
  }
}


/* top-comingsoon */
.message-comingsoon {
	padding: 100px 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.message-comingsoon p {
	font-size: var(--txtSizeL);
	color: #9bbee1;
}

/* top-access */
.access-map-full {
	width: 100%;
	height: 400px;
	margin-bottom: 100px;
}
.access-map-full iframe {
	width: 100%;
	height: 100%;
	filter: hue-rotate(320deg);
}

.access-minutes {
	display: flex;
	justify-content: space-between;
}
.access-minutes div {
	width: 32%;
	border: 2px solid #6da1d4;
	padding: 20px 0;
	border-radius: 20px;
}
.access-minutes div.nagoya {
	border: 2px solid #6da1d4;
	padding: 20px 0;
	border-radius: 20px;
}
.access-minutes div p {
	text-align: center;
	font-size: var(--txtSizeL);
	line-height: 1.5;
}
.access-minutes div p span.access-address {
	font-size: 1.8rem;
	color: var(--colorBlue);
}
.access-minutes div p strong {
	font-size: 2.4rem;
	color: var(--colorGreen);
}

.access-seibi-gaiyo {
	width: 100%;
	background-color: #f0f0f0;
	padding: 20px;
}
.access-seibi-gaiyo h4 {
	font-size: var(--txtSizeL);
	font-weight: bold;
	margin-bottom: 20px;
}
.access-seibi-gaiyo table {
	width: 100%;
	margin-bottom: 10px;
}
.access-seibi-gaiyo table th,
.access-seibi-gaiyo table td {
	padding: 0.5rem;
}
.access-seibi-gaiyo table th {
	width: 30%;
	font-weight: normal;
}
.access-seibi-gaiyo table tr {
	position: relative;
}
.access-seibi-gaiyo table td {
	position: relative;
}
.access-seibi-gaiyo table td::before {
	content: "：";
	position: absolute;
	left: -10px;
}

/* top-news */
ul.news-list li {
	border-bottom: 1px solid var(--colorGray);
	display: flex;
	justify-content: flex-start;
	flex-direction: column;
	padding: 20px 0;
	flex-wrap: wrap;
}
ul.news-list li time {
	font-size: var(--txtSizeM);
	line-height: var(--lineHeight);
	font-weight: bold;
	width: 100%;
	padding: 15px 0;
}
ul.news-list li p {
	font-size: var(--txtSizeM);
	line-height: var(--lineHeight);
	width: 100%;
	padding: 15px 0;
	margin-bottom: 0;
}
ul.news-list li.link-detail p {
	padding: 0;
}
ul.news-list li.link-detail p a {
	display: inline-block;
	padding: 15px 0;
	color: var(--colorGreen);
	text-decoration: underline;
}

/* Footer */
.c-flex-triple {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}
.c-flex-triple > a {
	width: 80%;
	margin: 0 auto 30px auto;
}

a.link-round-footer {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--colorBlue);
	color: #fff;
	position: relative;
	height: 100px;
	clip-path: polygon(
		10px 0%,
		/* 左上 */ calc(100% - 10px) 0%,
		/* 右上 */ 100% 10px,
		/* 右上 */ 100% calc(100% - 10px),
		/* 右下 */ calc(100% - 10px) 100%,
		/* 右下 */ 10px 100%,
		/* 左下 */ 0% calc(100% - 10px),
		/* 左下 */ 0% 10px
	);
}
a.link-bt-border {
	height: 100px;
	border: 2px solid var(--colorBlue);
	display: flex;
	align-items: center;
	position: relative;
	font-weight: bold;
	background-color: #fff;
}
a.link-bt-border .link-bt-border-img {
	width: 96px;
	height: 96px;
	display: flex;
	justify-content: center;
	align-items: center;
}
a.link-bt-border .link-bt-border-text {
	margin-left: 20px;
}
a.link-round-footer svg,
a.link-bt-border svg {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
}

/*--------------------------------
 Campus
--------------------------------*/
#campus-overview {
	padding: 100px 0;
}
.campus-guide h2 {
	font-size: 2.4rem;
	font-weight: bold;
	margin-bottom: 20px;
	color: var(--colorBlue);
}
.campus-guide ul {
	margin-bottom: 50px;
}
.campus-guide ul li {
	position: relative;
	padding-left: 15px;
	margin-bottom: 10px;
}

.campus-guide ul li::before {
	position: absolute;
	top: 12px;
	left: 0;
	width: 6px;
	height: 6px;
	content: "";
	background: #ccc;
	border-radius: 5px;
}

/*--------------------------------
 News
--------------------------------*/
#news-entry {
	padding: 100px 0;
}
.entry-title {
	margin-bottom: 50px;
}
#news-entry h2 {
	font-size: 2.4rem;
	font-weight: bold;
	margin-bottom: 20px;
}
#news-entry p.entry-date {
	font-size: 1.6rem;
	margin-bottom: 20px;
}
.c-box-news-entry p {
	margin-bottom: 1.8em;
}
.entry-img-max {
	margin-bottom: 50px;
}
.entry-img-half {
	margin-bottom: 50px;
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.entry-text {
	margin-bottom: 50px;
}
a.entry-link-web,
a.entry-link-pdf {
	display: inline-block;
	padding: 0.2rem;
	border-bottom: 2px solid var(--colorGreen);
}
a.entry-link-back {
	display: inline-block;
	padding: 0.5rem;
}

a.entry-link-web span.web,
a.entry-link-pdf span.pdf,
a.entry-link-back span.back {
	display: inline-block;
	margin-left: 10px;
	content: "";
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 18px;
	height: 18px;
	vertical-align: sub;
}
a.entry-link-web span.web {
	background-image: url(/tokaiex/assets/img/common/icon_link_web.svg);
}
a.entry-link-pdf span.pdf {
	background-image: url(/tokaiex/assets/img/common/icon_link_pdf.svg);
}
a.entry-link-back span.back {
	vertical-align: baseline;

	margin-right: 15px;
	background-image: url(/tokaiex/assets/img/common/icon_link_back.svg);
}

/*--------------------------------
 Over Tablet
--------------------------------*/
@media (min-width: 744px) {
	.pc_true {
		display: block;
	}
	.sp_true {
		display: none;
	}

	/* header */
	.header-logo {
		width: 280px;
	}
  .header-logo-70th-pc {
    display: none;
  }

	/* common */
	.c-flex-half {
		flex-direction: row;
		justify-content: space-between;
	}
	/* リンク */
	a.link-round {
		padding: 40px 100px;
	}
	a.link-round svg {
		right: 30px;
	}
	.c-flex-half > div {
		width: calc(50% - 50px);
	}

	/* top-key-visual */
	.top-key-visual-inner {
		display: flex;
		padding: 40px 20px 120px 20px;
	}
	.top-key-title {
		bottom: 20px;
		left: 10px;
		width: 45%;
		min-width: 533px;
	}

	.top-key-title h1.bg-gra {
		padding: 15px 30px 18px 30px;
		margin-bottom: 30px;
	}
	.top-key-title h1 img {
		width: 100%;
		max-width: 600px;
	}
	.top-key-title p {
		padding: 0 30px 30px 30px;
		font-size: 4rem;
		font-weight: 700;
		line-height: 1.5;
		width: auto;
	}

	#top-key-visual .top-key-video {
		max-width: 1100px;
		width: 80%;
		height: auto;
		object-fit: cover;
		margin-left: auto;
		margin-right: 0;
	}
	#top-key-visual .top-key-video video {
		width: 100%;
		height: auto;
		object-fit: cover;
		transform: none;
	}

	.top-left {
		width: 20%;
		height: 12px;
	}
	.bottom-right {
		width: 10px;
		height: 40%;
	}

	/* top-evo2027 */
	#top-evo2027 h2 {
		font-size: 5rem;
	}
	#top-evo2027 h2 strong {
		font-size: 6rem;
	}

	/* top-newtokaicampus */
	#top-newtokaicampus {
		padding-bottom: 10px;
		background-size: 100% auto;
	}
	#top-newtokaicampus .c-box-940-inner {
		flex-direction: row;
		margin-bottom: 150px;
	}
	ul.concept-list3,
	ul.concept-list2 {
		flex-direction: row;
		margin-bottom: 80px;
	}
	.concept-01 a,
	.concept-02 a,
	.concept-03 a,
	.concept-04 a,
	.concept-05 a {
		zoom: 1;
	}

	#top-newtokaicampus .newtokaicampus-title {
		width: 30%;
	}
	#top-newtokaicampus .newtokaicampus-image {
		width: 60%;
	}
	#top-newtokaicampus h2 {
		font-size: 7.7rem;
		font-weight: bold;
		color: var(--colorBlue);
		line-height: 1;
		letter-spacing: -0.2rem;
		margin-bottom: 0;
	}
	#top-newtokaicampus h2 span {
		display: block;
	}

	#top-newtokaicampus h2 span::first-letter {
		font-size: 9.6rem;
	}
	/* top-popup */
	.popup-content {
		max-width: 940px;
		padding: 50px 40px;
		height: auto;
	}
	.popup-content-flex {
		gap: 50px;
		flex-direction: row;
	}
	.popup-content-flex > div {
		width: calc(50% - 25px);
	}
	.popup-content button.close {
		width: 60px;
		height: 60px;
	}
	.popup-content-flex h3 {
		font-size: 5rem;
		margin-bottom: 50px;
	}
	.popup-content-flex p.h3-sub {
		font-size: 2.4rem;
	}
	.pop-inner-p {
		font-size: var(--txtSizeM);
		line-height: 1.8;
	}
	.popup-content-flex > div.switch-image {
		width: calc(50% - 25px);
	}
	.image-box img {
		width: 100%;
	}
	.switch-image img {
		display: block;
	}

	/* top-map */
	#top-floor-map-canvas {
		margin-top: 50px;
		height: 700px;
	}
	.floor-map-canvas-inner {
		height: 700px;
		zoom: 1;
	}
	/* top-instagram */
	.instagram-link {
		position: absolute;
		top: 25px;
		left: 300px;
		margin-bottom: 0;
	}
	.slider-track div {
		width: 300px;
		margin-right: 20px;
	}
	.slider-track div img {
		width: 300px;
		height: 375px;
	}

	/* top-access */
	#top-access .c-flex-half.access-minutes-div {
		flex-direction: column;
	}
	#top-access .c-flex-half > div {
		margin: 0 auto;
	}
	.access-map-full {
		width: 100%;
		height: 620px;
	}
	#top-access .c-flex-half.access-minutes-div > div {
		width: 610px;
	}
	.access-minutes div {
		width: 30%;
	}
	.access-minutes div p span.access-address {
		font-size: 2.4rem;
		color: var(--colorBlue);
	}
	.access-minutes div p strong {
		font-size: 3.8rem;
		color: var(--colorGreen);
	}

	.access-seibi-gaiyo {
		padding: 30px;
	}
	.access-seibi-gaiyo table th {
		width: 20%;
		font-weight: normal;
	}

	/* top-news */
	ul.news-list li {
		flex-direction: row;
	}
	ul.news-list li time {
		width: 15%;
	}
	ul.news-list li p {
		width: 85%;
	}
	/* Footer */
	a.link-round-footer svg {
		right: 20px;
	}

	.c-flex-triple {
		flex-direction: row;
	}
	.c-flex-triple > a {
		width: 31%;
	}

	/*--------------------------------
	News
	--------------------------------*/
	.entry-img-half {
		flex-direction: row;
		gap: 50px;
	}
	.entry-img-half img {
		width: calc(50% - 25px);
	}
	#news-entry h2 {
		font-size: 3.2rem;
	}
}

/*--------------------------------
 1025px以上のナビゲーション
--------------------------------*/
@media (min-width: 1025px) {
	main {
		padding-top: 80px;
	}
	/* header */
	header {
		height: 80px;
	}

	.header-logo {
		width: 280px;
		margin-top: 0;
	}
	nav.header-nav-pc {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	nav.header-nav-pc ul {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-top: 20px;
	}
	nav.header-nav-pc ul li a {
		display: block;
		padding: 0 20px;
		font-weight: 700;
		font-size: var(--txtSizeM);
	}

	.header-logo-70th {
		margin-left: 20px;
	}
  .header-logo-70th-pc {
    display: none;
  }
  
	/* hamburger */
	.hamburger {
		display: none;
	}

	/* slide-menu */
	.slide-menu {
		display: none;
	}
}

/*--------------------------------
  微調整（iPad mini:744px等）
--------------------------------*/
@media (min-width: 744px) and (max-width: 820px) {
	a.link-bt-border {
		justify-content: center;
	}
	a.link-bt-border .link-bt-border-text {
		margin-left: 0;
	}
	a.link-bt-border .link-bt-border-img {
		display: none;
	}
}
