@charset "UTF-8";

:root {
  --black: 89,89,89;
  --dark_black: 51,51,51;
  --dark_black50: rgb(var(--dark_black),.5);
  --main: 255,103,0;
  --light_main: 252,204,190;
  --gray: 153,153,153;
  --border: 191,191,191;
  --bg_base: 250,250,250;
  --bg_beige01: 242,240,235;
  --bg_beige02: 233,228,220;
  --width_contents: 1170px;
  --width_nav_list: 1060px;
  --line_height_head: 1.5;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, a, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

html {
  font-size: 62.5%;
  word-break: break-all;
}

body {
  -webkit-text-size-adjust: 100%;
}
@media (min-width: 959px) and (hover: none) {
  body {
    -webkit-text-size-adjust: none;
  }
}

article, aside, details, figcaption, figure,
main, footer, header, menu, nav, section {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  word-break: break-word;
  line-break: strict;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

ul:not([class]),
ol:not([class]) {
  padding-left: 1.25em;
}

ul[class],
ol[class] {
  list-style: none;
}

span {
  font-weight: inherit;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  color: inherit;
}
@media all and (min-width: 959px) {
  a:hover {
    text-decoration: none;
  }
}

a[class] {
  text-decoration: none;
}

ins {
  background-color: #ff9;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

address {
  font-style: normal;
}

sup {
  vertical-align: text-top;
  font-size: 0.75em;
}

sub {
  vertical-align: text-bottom;
  font-size: 0.75em;
}

table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid rgb(var(--border));
  margin: 1em 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

iframe {
  max-width: 100%;
}

/* form
================================================== */
input[type=text], input[type=email], input[type=tel], textarea, button, select, option {
  display: block;
  width: 100%;
  max-width: 100%;
  font-family: inherit;
  outline: none;
  border: 1px solid;
  border-radius: 0;
  background: none;
}
@media all and (max-width: 959px) {
  input[type=text], input[type=email], input[type=tel], textarea, button, select, option {
    font-size: 1.6rem;
  }
}

input[type=text], input[type=email], input[type=tel], textarea, button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}

input[type=radio], input[type=checkbox] {
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

select {
  color: inherit;
}

textarea {
  resize: vertical;
}

button {
  color: inherit;
  font-weight: normal;
  cursor: pointer;
}

/* 02_base
================================================ */
body {
  position: relative;
  min-width: 320px;
  padding-top: 60px;
  color: rgb(var(--black));
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.02em;
}
body::before {
  position: absolute;
  content: "";
  z-index: -10;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(var(--bg_base));
}
@media all and (min-width: 959px) {
  body {
    padding-top: 100px;
    font-size: 1.6rem;
  }
}

::-moz-selection {
  background: #999;
  color: #fff;
}

::selection {
  background: #999;
  color: #fff;
}

.content_wrapper {
	background-color: #f8fafa;
}
@media all and (max-width: 959px) {
	.content_wrapper {
		padding: 0 4%;
	}
}
.content_wrapper * {
	font-family: "Roboto", "Noto Sans TC", sans-serif;
}

/* .page_title
================================================== */
.v2404_page_title {
	width: 100%;
	max-width: 1170px;
	margin: 0 auto;
}
.v2404_page_title h2 {
	color: #333333;
	font-size: xx-large;
	font-weight: bold;
	line-height: 1.4;
	padding: 1em 0;
}
.v2404_page_title h2::after {
	content: "";
	display: block;
	width: 1em;
	height: 3px;
	background-color: #ff6700;
}


/* .v2404_article_wrapper
================================================== */
.v2404_article_wrapper {
	max-width: 1170px;
	width: 100%;
	margin: 0 auto;
}
.awardWrap_title {
  font-size: x-large;
  font-weight: bold;
  padding: .5em 0 1em;
  color: #333333;
}
.awardBox {
	width: 100%;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 15px;
}
@media all and (max-width: 959px) {
	.awardBox {
		grid-template-columns: 1fr 1fr 1fr;
		gap: 15px;
	}
}
@media all and (max-width: 719px) {
	.awardBox {
		grid-template-columns: 1fr 1fr;
		gap: 15px 2%;
	}
}
@media all and (max-width: 479px) {
	.awardBox {
		grid-template-columns: 1fr;
		gap: 15px 2%;
	}
}
.awardUnit {
	background-color: white;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 0 5px rgba(51, 51, 51, 0.3);
	position: relative;
}
.awardUnit:hover {
	opacity: 0.8;
}
.awardUnit:hover .awardUnit_img {
	width: 100%;
	overflow: hidden;
}
.awardUnit:hover .awardUnit_img img {
	transform: scale(1.15);
	transition: all 0.8s;
}
.awardUnit_img {
  height: 0;
  padding-top: 80%;
  overflow: hidden;
  position: relative;
}
.awardUnit_img img {
  position: absolute;
  top: 0;
  left: 0;
}
.awardUnit_name {
	font-weight: bold;
	color: #333333;
	font-size: medium;
	line-height: 1.5;
	padding: .5em 0;
	text-align: center;
  border-bottom: 1px solid;
  width: 95%;
  margin: 0 auto;
}
.l-see-more-post {
  display: block;
  position: relative;
  width: 100%;
  height: 3.5em;
}
.l-see-more-post img {
	width: 100px;
	clip-path: inset(0 0 0 65px);
	position: absolute;
	bottom: 10px;
	right: 10px;
}
.awardUnit:hover .l-see-more-post img.float_see {
	right: 5px;
	transition: all 0.3s;
}
@media all and (max-width: 719px) {
	.l-see-more-post img {
		width: 20vw;
		clip-path: inset(0 0 0 13vw);
		bottom: 10%;
		right: 3%;
	}
}
@media all and (max-width: 479px) {
	.l-see-more-post img {
		width: 25vw;
		clip-path: inset(0 0 0 16vw);
		bottom: 10%;
		right: 3%;
	}
}

.awardTextBox {
  background-color: white;
  border-radius: 15px;
  margin: 2em auto;
  padding: 1.5em 0;
}
.awardTextBox_title {
  text-align: center;
}
.awardTextBox_title span {
  display: inline-block;
  background-color: #ff6700;
  color: white;
  font-size: large;
  font-weight: bold;
  line-height: 2;
  padding: 0 1.5em;
  margin: 0 auto 1em;
  border-radius: 1em;
}
.awardTextBox_content {
  text-align: justify;
  width: 95%;
  margin: 0 auto;
  line-height: 1.4;
}
.finalDeliberation_btn {
  font-size: large;
  width: 30%;
  line-height: 3;
  background-color: #ff6700;
  color: white;
  text-align: center;
  margin: 2em auto;
  border-radius: 5em;
}
.finalDeliberation_btn:hover {
  opacity: 0.6;
}


/* .pop_finalDeliberation
================================================== */
.pop_finalDeliberation {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 5000;
  overflow: hidden;
}
.pop_finalDeliberation_background {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 51, 51, 0.85);
}
.pop_finalDeliberation_container {
  position: absolute;
  width: 95%;
  max-width: 1050px;
  height: 80vh;
  align-items: center;
  background-color: #fafafa;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2em;
  text-align: center;
  overflow: hidden;
}
.pop_finalDeliberation_text_title {
  display: inline-block;
  background-color: #ff6700;
  color: white;
  text-align: center;
  font-size: x-large;
  font-weight: bold;
  line-height: 1.4;
  padding: .5em 1em;
  border-bottom: 3px solid;
  border-radius: 5em;
}
.pop_finalDeliberation_text_block {
  overflow-y: scroll;
  height: 80%;
  overscroll-behavior: none;
}
.pop_finalDeliberation_text_block01 {
  text-align: left;
  padding: 3% 5% 1.5em;
}
.pop_finalDeliberation_text_inner01 {
  font-size: large;
  line-height: 1.7;
  color: #333;
}
.pop_finalDeliberation_text_block02 {
  text-align: justify;
  padding: 0 5% 1.5em;
  border-radius: 25px;
  background-color: white;
  border: 1px solid #acacad;
}
.pop_finalDeliberation_text_inner02_01 {
  font-size: large;
  font-weight: bold;
  line-height: 1.5;
  color: #ff6700;
  padding-top: 2em;
  padding-bottom: .5em;
}
.pop_finalDeliberation_text_inner02_01::before {
  content: "▎ ";
}
.pop_finalDeliberation_text_inner02_02 {
  font-size: medium;
  line-height: 1.5;
  color: #333;
}
.pop_finalDeliberation_close {
  position: absolute;
  top: 5%;
  right: 5%;
  display: block;
  width: 1em;
  line-height: 1em;
  text-align: center;
  font-size: xx-large;
  color: black;
  background-color: lightgray;
  border-radius: 50%;
  cursor: pointer;
}
@media all and (max-width: 959px) {
  .pop_finalDeliberation_container {
    padding: 5%;
  }
  .finalDeliberation_btn {
    width: 60%;
  }
}





/* .onlyImgShow
================================================== */
.awardUnit.onlyImgShow:hover .awardUnit_img {
  width: 100%;
  overflow: hidden;
}
.awardUnit.onlyImgShow:hover .awardUnit_img img {
  transform: scale(1);
  transition: none;
}
.awardUnit_img.onlyImgShow {
  height: fit-content;
  padding-top: 0;
  margin-bottom: 5%;
  text-align: center;
}
.awardUnit_img.onlyImgShow img {
  position: static;
}
.onlyImgShow_see_wrap {
  margin: 2em auto 0;
  width: 95%;
  max-width: 1150px;
  text-align: center;
}
.onlyImgShow_see_box {
  display: inline-block;
  cursor: pointer;
}
.onlyImgShow_see_box:hover {
  opacity: .6;
}
.onlyImgShow_see_box:hover .onlyImgShow_see_more {
  background-position: top right -5px;
  transition: all 0.3s;
}
.onlyImgShow_see_box.pre {
  float: left;
}
.onlyImgShow_see_box.next {
  float: right;
}
.onlyImgShow_see_more {
  display: inline-block;
  position: relative;
  width: 45px;
  height: 45px;
  background-color: #ff6700;
  background-image: url(https://arts.ntu.edu.tw/img/seemore_arrow_1.png);
  background-position: top right 5px;
  background-size: cover;
  border-radius: 100%;
}
.onlyImgShow_see_more.pre {
  transform: rotateY(180deg);
}
.onlyImgShow_see_text {
  display: inline-block;
  line-height: 45px;
  vertical-align: text-bottom;
  color: #ff6700;
  font-size: x-large;
  font-weight: bold;
  padding: 0 .5em;
}
.onlyImgShow_see_text.back {
  border: .1em solid #ff6700;
  background-color: white;
  font-weight: normal;
  font-size: smaller;
  padding: 0 1em;
}
@media all and (max-width: 719px) {
  .onlyImgShow_see_more {
    width: 35px;
    height: 35px;
  }
  .onlyImgShow_see_text {
    line-height: 35px;
    vertical-align: top;
    font-size: large;
  }
}
/*
@media all and (max-width: 479px) {
  .onlyImgShow_see_more img {
    width: 25vw;
    clip-path: inset(0 0 0 16vw);
    bottom: 3%;
    right: 3%;
  }
}*/