@charset "utf-8";
:root {
  --red: #eb4034;
  --red-light: #f08981;
  --blue: #092c80;
  --blue-light: #527adb;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "メイリオ",
    "Meiryo", sans-serif;
  overflow-x: hidden;
}
.mincho {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN",
    "Yu Mincho", "MS PMincho", serif;
}
img {
  vertical-align: bottom;
}
a {
  text-decoration: none;
  transition: 0.3s;
}
ul,
ol {
  list-style-type: none;
}
small {
  font-size: 0.8em;
}
/**************************************************
*
* Navigation
*
***************************************************/
nav {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: #122c2c;
  transition: 0.4s ease-in-out;
  transform: translateX(100%);
  z-index: 10;
}
.nav-list {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.4s ease-in-out 0.1s;
}
nav.open {
  position: fixed;
  transform: translate(0, 0);
}
.open .nav-list {
  text-align: left;
}
.nav-list li {
  transition: 0.5s 0.1s;
}
.nav-list li:not(:first-of-type) {
  margin-top: 5em;
}
nav li a {
  color: #fff;
  transition: 0.3s;
}
.drawer {
  position: fixed;
  display: grid;
  place-items: center;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border: 1px solid #074466;
  cursor: pointer;
  z-index: 11;
}
.bar,
.bar:before,
.bar:after {
  display: block;
  width: 30px;
  height: 1px;
  content: "";
  background: #074466;
  transition: 0.3s;
}
.bar:before {
  transform: translateY(-8px);
}
.bar:after {
  transform: translateY(8px);
}
.open .bar {
  background: transparent;
}
.open .bar:before,
.open .bar:after {
  background: #186f9e;
}
.open .bar:before {
  transform: rotate(45deg);
}
.open .bar:after {
  transform: rotate(-45deg);
}
/**************************************************
*
* Header
*
***************************************************/
header {
  display: flex;
  position: relative;
  width: 100%;
  
  overflow: hidden;
}
header img {
	margin-top: 100px;
}
h1 {
  position: absolute;
  top: -30px;
  left: 20px;
  mix-blend-mode: difference;
  color : #122c2c;
	color: #fff;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN",
    "Yu Mincho", "MS PMincho", serif;
  font-weight: bold;
  font-style: italic;
  margin: 100px;
  z-index: 2;
}
.header-leading {
	position: relative;
	left: 3em;
	font-size: 16px;
	letter-spacing: 2px;
	text-align: center;
	padding: 0 5em 3px 5em;
	border-bottom: 1px solid #ccc;
}
.header-leading:after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 1px;
	background: #387ccc;
	background: #eb8613;
}

.header-name {
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.header-name h2 {
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 1px;
  color: #074466;
}
@media screen and (max-width: 767px) {
  h1 {
    padding: 0 0.5em;
    font-size: 42px;
  }
  .header-leading {
	display: block;
	left: 0;
	margin-top: 1em;
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) {
  h1 {
    font-size: 60px;
  }
}
/**************************************************
*
* Main
*
***************************************************/
section {
  padding-top: 120px;
}
section.dark {
  margin-top: 120px;
  padding-bottom: 120px;
  background: #122c2c;
  color: #fff;
}
section h2 {
  font-size: 36px;
  font-style: italic;
}
section .sub-title {
  font-size: 18px;
  font-style: italic;
  letter-spacing: 2px;
  margin-bottom: 2em;
}
section.light h2,
section.light p {
  color: #122c2c;
}
section .fig {
  overflow: hidden;
  background: #122c2c;
}
section .fig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section .btn-wrapper {
  margin-top: 60px;
}
section a.btn {
  display: inline-block;
  padding: 1em 3em;
  color: #fff;
  background: #122c2c;
}
@media screen and (max-width: 767px) {
  section {
    padding-top: 80px;
  }
  section .btn-wrapper {
    text-align: center;
  }
}
/**************************************************
*
* footer
*
***************************************************/
footer {
  position: relative;
  width: 100%;
  margin-top: 100px;
  padding-top: 60px;
  color: #fff;
  background: #122c2c;
}
.footer-logo-area {
  padding-bottom: 60px;
}
.footer-logo-area img {
  width: 150px;
  height: auto;
}
.footer-logo-area p {
  font-size: 16px;
  font-style: italic;
  letter-spacing: 1px;
}
.copyright {
  font-size: 14px;
  text-align: right;
  padding: 60px 0;
  color: #fff;
  background: #0f2727;
}
.globe img {
  position: absolute;
  bottom: 10%;
  left: 10%;
  width: auto;
  height: 60%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .footer-logo-area {
    text-align: center;
  }
  .footer-logo-area img {
    display: inline-block;
  }
  .footer-nav-list {
    margin-top: 60px;
  }
}
