﻿@charset "UTF-8";

html {
  font-size: 16px;
}

#global_header {
  background-color: rgba(255, 255, 255, 0.8);
  color: #005382;
  height: 4rem;
}

#global_header.scrolled {
  height: 4rem;
}

#global_header>div {
  min-width: 250px;
}

#global_header>div>h1 {
  font-size: 1.4rem;
  height: 4rem;
  line-height: 4rem;
}

#global_header.scrolled>div>h1 {
  height: 4rem;
  line-height: 4rem;
}

#global_header>div>h1>span:nth-child(1) {
  color: #103098;
}

#global_header>div>h1>span:nth-child(2) {
  color: #0B87DD;
}

/* Hamburger Menu */
#global_header>div>div {
  display: block;
}

#global_header.open>div>div>span {
  background: #fff;
}

#global_header.open>div>div>span:nth-child(1) {
  top: 11px;
  transform: rotate(315deg);
}

#global_header.open>div>div>span:nth-child(2) {
  width: 0;
  left: 50%;
}

#global_header.open>div>div>span:nth-child(3) {
  top: 11px;
  transform: rotate(-315deg);
}

/* Global Menu */
#global_header>div>nav {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(73, 161, 183, 0.9);
  left: 100%;
  transition: .3s 0s cubic-bezier(.645, .045, .355, 1);
}

#global_header.open>div>nav {
  left: 0;
}

#global_header>div>nav>ul {
  padding-left: 0;
  display: block;
  position: absolute;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 400px;
}

#global_header>div>nav>ul>li {
  margin: 1.875rem auto;
  padding-right: 15px;
  text-align: center;
}

#global_header>div>nav>ul>li>a {
  font-size: 1.875rem;
  font-weight: bold;
  border-bottom-style: none;
  cursor: pointer;
  transition: all 0.5s ease 0s;
  color: #fff;
}

#global_header>div>nav>ul>li>a::after {
  content: '';
  width: 8px;
  height: 8px;
  border-color: #fff;
  border-width: 2px;
  border-style: solid solid none none;
  transform: rotate(45deg);
  position: absolute;
  margin-top: 11px;
  margin-left: 12px;
}

#global_header.top:not(.scrolled)>div>h1>a>span:nth-child(1) {
  color: #103098;
  ;
}

#global_header.top:not(.scrolled)>div>h1>a>span:nth-child(2) {
  color: #0B87DD;
}

#global_header.top:not(.scrolled)>div>h1>a>span:nth-child(3) {
  color: #0F568D;
}

/* page header */
header.page_header {
  margin-top: 4rem;
  color: #fff;
  font-size: 2.25rem;
}

header.page_header.scrolled {
  margin-top: 4rem;
}

/* page contents */
section.page_contents_section {
  margin: 0 auto;
}

section.page_contents_section h1 {
  font-size: 1.5rem;
  margin: 4rem 0 2.25rem;
}

section.page_contents_section h2 {
  font-size: 1.25rem;
  margin: 3.125rem 0 1.75rem;
}

section.page_contents_section h3 {
  font-size: 1.125rem;
  margin: 2.25rem 0 1.25rem;
}

section.two_columns {
  flex-direction: column;
}

section.two_columns>section {
  width: 100%;
}

img {
  width: 100%;
}

.back_to_index>a {
  min-width: 150px;
  height: 20px;
  font-size: 1.2rem;
}

/* footer */

#map {
  padding: 2.25rem 1rem 2rem;
}

#map>ul {
  padding-left: 0px;
  flex-direction: column;
  text-align: center;
  margin: 0;
}

#map>ul>li {
  padding-top: 1rem;
}

#logo {
  padding: 1rem;
}

#logo>a#recruit {
  font-size: 1.3rem;
}

#logo>a>img {
  width: 80%;
}

#copyright {
  padding-bottom: 1rem;
}

#copyright>div {
  font-size: 0.5rem;
}