@charset "utf-8";

/*//////////////////////////////////////////////////////////////////////////////

	共通

//////////////////////////////////////////////////////////////////////////////*/


/*------------------------------------------------------------------------------

	変数

------------------------------------------------------------------------------*/

:root {
	--main-color: 192,82,57;
	--light-bg: 247,234,227;
	--yellow: 255,255,0;
	--type_hardware: 90,153,244;
	--type_data: 0,176,240;
	--type_contents : 27,193,191;
	--type_ai : 160,145,230;
}



/*------------------------------------------------------------------------------

	image replacement

------------------------------------------------------------------------------*/

#content > header .main_logo,
#content > header .university,
.action_buttons li a,
main #students header,
main #students .date,
main #program .detail,
main #schedule .flow {
	display: block;
	overflow: hidden;
	outline: none;
	clear: both;
	text-indent: -9999px;
	white-space: nowrap;
	background-repeat: no-repeat;
	background-size: contain;
}


/*------------------------------------------------------------------------------

	全体

------------------------------------------------------------------------------*/

/*	site_column
------------------------------------------------------------------------------*/

.site_column,
main .action_buttons,
footer .action_buttons {
	position: relative;
	margin: 0 auto;
	width: 86%;
}

.site_column {
	max-width: 1040px;
}

main .action_buttons,
footer .action_buttons {
	max-width: 860px;
}

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

main .action_buttons,
footer .action_buttons {
	max-width: 700px;
}

}

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

main .action_buttons,
footer .action_buttons {
	max-width: 550px;
}

}

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

main .action_buttons,
footer .action_buttons {
	max-width: 60%;
}

}


/*	body・textarea・input
------------------------------------------------------------------------------*/

body,
textarea,
input,
select {
	line-height: 1.8;
	font-family: YuGothic,"游ゴシック","メイリオ",Meiryo,sans-serif,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,verdana,"ＭＳ Ｐゴシック","MS PGothic",Sans-Serif;
	font-size: 16px;
	font-weight: 500;
	color: rgba(var(--main-color),1);
  	-webkit-text-size-adjust: 100%;
	font-feature-settings: "palt";
}

textarea,
input,
select {
	-webkit-appearance: none;
}

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

body,
textarea,
input  {
	font-size: 14px;
}

}

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

body,
textarea,
input {
	font-size: 3.2vw;
}

}


/*	見出し
------------------------------------------------------------------------------*/

h1,h2,h3,h4,h5,h6 {
	line-height: 1.4;
}

/*	アンカー
------------------------------------------------------------------------------*/

a,
a:hover,
a:visited {
	outline: none;
	text-decoration: none;
	color: rgba(var(--main-color),1);
}

a {
	transition: opacity .4s;
}

a:hover {
	text-decoration: none;
	opacity: .4;
	transition: color .4s;
}

main a,
main a:visited {
	text-decoration: underline;
}

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

a:hover {
	opacity: 1;
}

a[href^="tel:"] {
	text-decoration: underline;
}

}

@media screen and (min-width: 768px){
	
a[href^="tel:"] {
	pointer-events: none;
	text-decoration: none;
	color: #333;
}

a[href^="tel:"]:hover {
	cursor: default;
	opacity: 1;
}

}


/*	リスト
------------------------------------------------------------------------------*/

main ol,
main ul {
	margin: 1em 0 1em 1.5em;
}

main ul {
	list-style: disc;
}

main ol {
	list-style: decimal;
}

main li {
	margin-bottom: .5em;
	line-height: 1.4;
}


/*	テーブル
------------------------------------------------------------------------------*/

table {
	width: 100%;
}

th,
td {
	line-height: 1.6;
}

th {
	font-weight: bold;
}


/*	その他
------------------------------------------------------------------------------*/

em {
	font-style: normal;
}

figcaption {
	margin-top: .5em;
	text-align: center;
	font-size: .875em;
}

img {
	vertical-align: bottom;
}

address {
	font-style: normal;
}


/*	共通設定
------------------------------------------------------------------------------*/

main p,
main dd {
	margin-bottom: .5em;
	text-align: justify;
}

main li:last-child,
main p:last-of-type,
main dd:last-of-type {
	margin-bottom: 0;
}


/*	独自class
------------------------------------------------------------------------------*/

.note {
	margin-left: 0;
}

.note li {
	display: block;
	position: relative;
	padding-left: 1em;
	font-size: .875em;
}

.note li::before {
	content: "※";
	position: absolute;
	top: 0;
	left: 0;
}

.l {
	display: block;
}

#noscript {
	padding: 1em;
	line-height: 1;
	text-align: center;
	color: #FFF;
	background-color: #F00;
}


/*------------------------------------------------------------------------------

	header

------------------------------------------------------------------------------*/

#content > header {
	position: relative;
	height: 800px;
	margin-bottom: 310px;
}

#content > header::after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-image: url(../img/main_image.jpg?20250612);
	background-repeat: no-repeat;
	background-position: left;
	background-size: cover;
}

#content > header .site_column {
	display: flex;
	flex-direction: column;
	align-items: center;
}

#content > header .title {
	position: absolute;
	top: 600px;
	left: 50%;
	translate: -50% 0;
	width: 100%;
}

#content > header .main_logo {
	width: 900px;
	aspect-ratio: 900/440;
	margin: 0 auto;
	background-image: url(../img/main_logo.svg);
	background-size: contain;
	background-repeat: no-repeat;
}

#content > header .university {
	position: absolute;
	top: 0;
	left: 0;
	width: 285px;
	aspect-ratio: 285/76;
	background-image: url(../img/logo.svg);
	background-size: contain;
	background-repeat: no-repeat;
}

#content > header .catch {
	position: absolute;
	top: 200px;
	right: 25%;
	text-align: center;
	font-style: italic;
	line-height: 1.4;
	font-weight: bold;
	font-size: 3em;
}

#content > header .catch span {
	display: block;
}

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

#content > header .catch {
	right: 15%;
}

}

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

#content > header {
	height: 650px;
	margin-bottom: 300px;
}

#content > header .title {
	top: 500px;
}

#content > header .main_logo {
	width: 800px;
}

#content > header .university {
	width: 250px;
}

#content > header .catch {
	font-size: 2.7em;
}

}

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

#content > header {
	height: 500px;
	margin-bottom: 300px;
}

#content > header .title {
	top: 400px;
}

#content > header .main_logo {
	width: 700px;
}

#content > header .catch {
	top: 150px;
	font-size: 2.2em;
}
}

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

#content > header {
	height: 450px;
}

#content > header .title {
	top: 350px;
}

#content > header::after {
	background-position: center left 30%;
}

#content > header .university {
	width: 220px;
}

}

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

#content > header {
	margin-bottom: 330px;
}

#content > header::after {
}

#content > header .title {
	top: 380px;
}

#content > header .main_logo {
}

#content > header .catch {
	right: 60px;
	font-size: 2em;
}

}

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

#content > header {
	height: 130vw;
	margin-bottom: 30vw;
}

#content > header::after {
	background-image: url(../img/main_image_sp.jpg);
	background-position: center;
}

#content > header .title {
	top: 100vw;
}

#content > header .main_logo {
	width: 100vw;
}

#content > header .university {
	width: 50vw;
}


#content > header .catch {
	top: 45vw;
	right: auto;
	left: 50%;
	translate: -50% 0;
	width: 100%;
	font-size: 7.5vw;
	color: #FFF;
	text-shadow: 1px 1px 4px rgba(var(--main-color),.8);
}

}



/*------------------------------------------------------------------------------

	action_buttons

------------------------------------------------------------------------------*/

header .action_buttons {
	position: fixed;
	top: 70px;
	right: 0;
	z-index: 11;
}

header .action_buttons li {
	width: 66px;
	margin-bottom: 3px;
}

header .action_buttons li:last-child {
	margin-bottom: 0;
}

header .action_buttons li a {
	display: block;
	aspect-ratio: 65.5/209;
}

header .action_buttons .application a { background-image: url(../img/button_application_2.svg);}
header .action_buttons .inquiry a { background-image: url(../img/button_inquiry_2.svg);}

.action_buttons li a:hover {
	opacity: 1;
}

main .action_buttons,
footer .action_buttons {
	display: flex;
	justify-content: center;
}

main .action_buttons li,
footer .action_buttons li {
	width: 48.5%;
	margin: 0;
	list-style: none;
}

main .action_buttons .application a,
footer .action_buttons .application a { background-image: url(../img/button_application.svg);}
main .action_buttons .inquiry a,
footer .action_buttons .inquiry a { background-image: url(../img/button_inquiry.svg);}

main .action_buttons li a,
footer .action_buttons li a {
	display: block;
	aspect-ratio: 415.8/123;
}

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

header .action_buttons li {
	width: 50px;
}

}

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

header .action_buttons li {
	width: 40px;
}

}

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

header .action_buttons {
	top: auto;
	right: auto;
	bottom: 0;
	left: 50%;
	translate: -50% 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 3vw 0;
	background-color: rgba(255,255,255,.95);
}

header .action_buttons li {
	width: 42.5vw;
	margin: 0 1vw 0 0;
}

header .action_buttons li:last-child {
	margin-right: 0;
}

header .action_buttons li a {
	aspect-ratio: 209/65.5;
}

header .action_buttons .application a { background-image: url(../img/button_application_2_sp.svg);}
header .action_buttons .inquiry a { background-image: url(../img/button_inquiry_2_sp.svg);}

main .action_buttons,
footer .action_buttons {
	display: block;
}

main .action_buttons li,
footer .action_buttons li {
	width: 100%;
	margin-top: 3vw;
}

}



/*------------------------------------------------------------------------------

	footer

------------------------------------------------------------------------------*/

#content > footer {
	position: relative;
}

#content > footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	translate: -50% 0;
	display: block;
	width:0;
	height:0;
	border-style:solid;
	border-width: 40px 50px 0 50px;
	border-color: rgba(var(--light-bg),1) transparent transparent transparent;
}

#content > footer section {
	padding: 115px 0 120px;
	background-color: rgba(var(--main-color),1);
}

#content > footer h2 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	line-height: 1;
	font-weight: bold;
	font-size: 2em;
	color: #FFF;
}

#content > footer h2::before {
	content: '';
	display: block;
	width: 75px;
	aspect-ratio: 1/1;
	margin-bottom: .5em;
	background-image: url(../img/icon_book.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

#content > footer .action_buttons {
	margin-top: 80px;
}

#content > footer #copy {
	padding: 50px 0 70px .25em;
	line-height: 1;
	letter-spacing: .25em;
	text-align: center;
}

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

#content > footer::before {
	border-width: 30px 40px 0 40px;
}

#content > footer section {
	padding: 95px 0 100px;
}

#content > footer h2::before {
	width: 60px;
}

#content > footer .action_buttons {
	margin-top: 60px;
}

}

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

#content > footer::before {
	border-width: 5vw 7vw 0 7vw;
}

#content > footer section {
	padding: 15vw 0 17vw;
}

#content > footer h2 {
	font-size: 5.5vw;
}

#content > footer h2::before {
	width: 12vw;
}

#content > footer .action_buttons {
	margin-top: 10vw;
}

#content > footer #copy {
	padding: 10vw 0 35vw .25em;
}

}


/*	 page_top
------------------------------------------------------------------------------*/

#page_top {
    position: fixed;
	right: 3vw;
    bottom: 3vw;
	z-index: 1000;
	width: 10vw;
	height: 10vw;	
	max-width: 60px;
	max-height: 60px;
    transition: opacity .6s;
	background-color: #FFF;
	opacity: 0;
}

.moved #page_top {
	opacity: .7;
}

#page_top a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(var(--main-color),1);
	text-decoration: none;
	cursor: default;
}

.moved #page_top a {
	cursor: pointer;
	opacity: 1;
}

#page_top a::after {
	position: absolute;
	top: 60%;
	left: 50%;
	transform: translate(-50%,-50%)  rotate(45deg);
	content: "";
	display: block;
	width: 30%;
	height: 30%;
	border-top: 1px solid #FFF;
	border-left: 1px solid #FFF;
}
