@charset "UTF-8";
/*
#overview
色

サイト全体で使用している色一覧
*/
/*
#colors
色

@white #fff
@black #444444
@gray #626262
@beige #efeee3
@beige2 #e5e1cd
@blue #4098bc
@blue2 #4064bc
@sky #80c5db
@sky2 #eaf5f9
@gold #a69e4d
@yellow #fff100
@pink #f19ec2
@pink2 #aa5290
@red #e60012
*/
:root {
  --color-white: #fff;
  --color-black: #333;
  --color-navy: #232c5a;
  --color-blue: #00486e;
  --color-red: #e60012;
  --color-pink: #d580b2;
  --color-green: #506d69;
  --color-gray: #eee;
  --color-gray2: #ccc;
  --color-main: var(--color-green, #506d69);
  --color-sub: var(--color-blue, #89a1ce);
  --text-color: var(--color-black, #333);
  --pattern-cross: repeating-linear-gradient(
			45deg,
			var(--color-gray) 25%,
			transparent 25%,
			transparent 75%,
			var(--color-gray) 75%,
			var(--color-gray)
		),
		repeating-linear-gradient(
			45deg,
			var(--color-gray) 25%,
			transparent 25%,
			transparent 75%,
			var(--color-gray) 75%,
			var(--color-gray)
		);
  --pattern-stripe: repeating-linear-gradient(
		-45deg,
		transparent 0,
		transparent 3px,
		var(--color-gray) 3px,
		var(--color-gray) 6px
	);
  --width-base: 1000px;
  --width-main-column: 700px;
  --width-side-column: 200px;
}

.interval5em > *:not(:last-child) {
  margin-bottom: 0.5em;
}

.interval10em > *:not(:last-child) {
  margin-bottom: 1em;
}

.interval15em > *:not(:last-child) {
  margin-bottom: 1.5em;
}

.interval20em > *:not(:last-child) {
  margin-bottom: 2em;
}

.interval25em > *:not(:last-child) {
  margin-bottom: 2.5em;
}

.interval30em > *:not(:last-child) {
  margin-bottom: 3em;
}

.interval35em > *:not(:last-child) {
  margin-bottom: 3.5em;
}

.interval40em > *:not(:last-child) {
  margin-bottom: 4em;
}

.interval45em > *:not(:last-child) {
  margin-bottom: 4.5em;
}

.interval50em > *:not(:last-child) {
  margin-bottom: 5em;
}

.bg-white {
  background: #fff;
}

.text-white {
  color: #fff;
}

.bg-black {
  background: #000;
}

.text-black {
  color: #000;
}

.bg-gray {
  background: #efefef;
}

.text-gray {
  color: #efefef;
}

.bg-beige {
  background: #f4efe6;
}

.text-beige {
  color: #f4efe6;
}

.bg-blue {
  background: #89a1ce;
}

.text-blue {
  color: #89a1ce;
}

.bg-green {
  background: #52ddae;
}

.text-green {
  color: #52ddae;
}

.bg-green2 {
  background: #39876d;
}

.text-green2 {
  color: #39876d;
}

.bg-green3 {
  background: #469280;
}

.text-green3 {
  color: #469280;
}

.bg-pale-green {
  background: #f0f7f2;
}

.text-pale-green {
  color: #f0f7f2;
}

.bg-pale-green2 {
  background: rgba(80, 178, 128, 0.3);
}

.text-pale-green2 {
  color: rgba(80, 178, 128, 0.3);
}

.bg-red {
  background: #df0515;
}

.text-red {
  color: #df0515;
}

.bg-orange {
  background: #f8b500;
}

.text-orange {
  color: #f8b500;
}

.bg-sky0 {
  background: #1b96d5;
}

.text-sky0 {
  color: #1b96d5;
}

.bg-green0 {
  background: #74be5a;
}

.text-green0 {
  color: #74be5a;
}

.bg-orange0 {
  background: #ef7d54;
}

.text-orange0 {
  color: #ef7d54;
}

.bg-pink0 {
  background: #e9516e;
}

.text-pink0 {
  color: #e9516e;
}

/*
@mixin bgStripe($type: -45, $color1: #fff, $color2: #000, $interval: 4, $size: 10) {
	@if (type_of($type) == number) {
		$stripes: ();
		$width: 100% / $interval;

		@for $i from 1 through $interval {
			//$stripes: append();

			@if $i == 1 {
				$colorStripe: $color1;
			} @else {
				$colorStripe: $color2;
			}
			$widthStripe: $width * $i;
			$stripes: append($stripes, $colorStripe);
		}
		background: repeating-linear-gradient($type + deg, $stripes);
	}
	background-size: $size + px $size + px;
}
*/
.vol76.designated-school {
  background: url(../images/bg-beige2.jpg) repeat center top;
}

.vol76.designated-school .wrap {
  padding: 240px 0 200px;
}

.designated-school-head {
  font-family: "Zen Maru Gothic", "メイリオ", Meiryo, sans-serif;
  color: #595949;
  text-align: center;
  letter-spacing: .05em;
  font-size: min(6.6rem,9vw);
}

.designated-school-head span {
  margin-left: .25em;
  margin-right: .25em;
  font-size: 80%;
}

.designated-school-head + p {
  margin-top: 1em;
  margin-bottom: 3em;
  text-align: right;
  letter-spacing: .025em;
}

.wrap-designated__text {
  text-align: right;
  line-height: 1.75;
  font-size: min(1.5rem,3.6vw);
}

.outer-designated {
  padding: 0 1em;
  margin-bottom: 1em;
}

.outer-designated__text {
  margin-bottom: 1em;
  line-height: calc(31/22);
  text-align: center;
  font-size: min(2.2rem,4vw);
}

.table-designated {
  line-height: calc(28/22);
  background-color: var(--color-white);
  font-size: min(2.2rem,3.6vw);
}

.table-designated tr:nth-child(even) {
  background-color: #f7f2e5;
}

.table-designated th,
.table-designated td {
  padding: .5em;
  vertical-align: middle;
}

.table-designated th:nth-child(1), .table-designated th:nth-child(4),
.table-designated td:nth-child(1),
.table-designated td:nth-child(4) {
  text-align: center;
}

.table-designated th:nth-child(1), .table-designated th:nth-child(2), .table-designated th:nth-child(3),
.table-designated td:nth-child(1),
.table-designated td:nth-child(2),
.table-designated td:nth-child(3) {
  border-right: 1px solid #91896b;
}

.table-designated th {
  color: var(--color-white);
  background-color: #00b8ee;
  text-align: center;
  white-space: nowrap;
}

.table-designated th:nth-child(2), .table-designated th:nth-child(3) {
  text-indent: 1em;
  letter-spacing: 1em;
}

.table-designated td:nth-child(2) {
  white-space: nowrap;
}

.list-majors {
  display: flex;
  flex-wrap: wrap;
}

.list-majors > li:not(:last-child)::after {
  content: "、";
}

.list-designated {
  display: flex;
  flex-flow: row wrap;
  margin-top: 2em;
}

.list-designated__item {
  margin-right: 1em;
  line-height: 1.75;
  font-size: min(1.9rem,3.6vw);
}

.list-designated + p {
  color: #0d4f7e;
  line-height: 1.75;
  font-size: min(2rem,4vw);
}

.designated-school-topics {
  position: relative;
  padding-top: 160px;
}

.designated-school-topics__inner {
  padding: 45px 45px 0;
}

.designated-school-topics__content {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin-top: -150px;
}

.designated-school-topics__text {
  padding-top: 2em;
  width: 570px;
  color: #fff;
  line-height: 1.5;
  font-size: min(2.4rem,4.5vw);
}

.designated-school-topics1 {
  display: block;
  margin: 0 auto 3em;
}

.designated-school-topics2 {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
}

.designated-school-topics3 {
  display: block;
  margin: -80px 0 50px;
  max-width: 100%;
  height: auto;
}

.designated-school-topics4 {
  margin-right: -140px;
}

@media screen and (max-width: 1200px) {
  .inner-designated {
    overflow-x: scroll;
    overflow-y: hidden;
    width: 100%;
  }
  .designated-school-topics__content {
    margin-top: -80px;
  }
  .designated-school-topics__text {
    width: 100%;
  }
  .designated-school-topics1 {
    max-width: 100%;
    height: auto;
  }
  .designated-school-topics4 {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 992px) {
  .wrap-designated {
    margin: 0 auto 10vw;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .vol76.designated-school .wrap {
    padding: 20vw 0;
  }
  .designated-school-head span {
    display: block;
    margin-top: .25em;
    margin-bottom: .25em;
  }
  .outer-designated {
    padding: 0;
  }
  .table-designated {
    width: 220%;
    height: auto;
  }
  .designated-school-topics {
    padding-top: 10vw;
  }
  .designated-school-topics__inner {
    padding: 10vw 5vw 5vw;
  }
  .designated-school-topics__content {
    margin-top: 0;
  }
  .designated-school-topics__text {
    padding-top: 1em;
  }
  .designated-school-topics2 {
    width: 50%;
    height: auto;
  }
  .designated-school-topics3 {
    margin: 0 -5%;
    max-width: 110%;
    width: 110%;
  }
}

@media all and (-ms-high-contrast: none) {
  .designated-school-head {
    font-size: 66px;
  }
  .wrap-designated__text {
    font-size: 15px;
  }
  .outer-designated__text {
    font-size: 22px;
  }
  .table-designated {
    font-size: 22px;
  }
  .list-designated__item {
    font-size: 19px;
  }
  .list-designated + p {
    font-size: 20px;
  }
  .designated-school-topics__text {
    font-size: 24px;
  }
}
