@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;
  transform: translate(100%, 0);
  transition: 0.4s ease-in-out;
  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 {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #122c2c;
  background: #0a1919;
}
.header-box1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0a1919;
}
.hero {
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  overflow: hidden;
}
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header-box2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #122c2c;
}
.header-leading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
h1 {
  color: transparent;
  -webkit-text-stroke: 1px #7fff4c;
  text-stroke: 1px #7fff4c;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN",
    "Yu Mincho", "MS PMincho", serif;
  font-style: italic;
  padding: 0 0.5em;
}
.header-leading p {
  display: inline-block;
  font-size: 18px;
  font-style: italic;
  letter-spacing: 2px;
  color: #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) {
  .header-box2 {
    clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%); /* 上に全閉 */
  }
  .hero img {
    opacity: 0;
  }
  .header-leading {
    text-align: center;
  }
  h1 {
    padding: 0 0.5em;
    font-size: 60px;
  }
  .header-leading p {
    font-size: 14px;
  }
  h1,
  .header-leading p {
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%); /* 左に全閉 */
  }
  .drawer {
    transform: translateY(-100px);
  }
  .header-name h2 {
    transform: translateY(100px);
  }
}
@media screen and (min-width: 768px) {
  .header-box1,
  .header-box2 {
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%); /* 左に全閉 */
  }
  .hero img {
    opacity: 0;
    transform: scale(1.15);
  }
  h1 {
    font-size: 102px;
  }
  h1,
  .header-leading p {
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%); /* 左に全閉 */
  }
  .drawer {
    transform: translateY(-100px);
  }
  .header-name h2 {
    transform: translateY(100px);
  }
}
@media screen and (max-width: 767px) {
}
/**************************************************
*
* Main
*
***************************************************/
section {
  padding-top: 120px;
}
section.dark {
  margin-top: 120px;
  padding-bottom: 120px;
  background: #122c2c;
  color: #fff;
}
section.dark.fields {
  padding-bottom: 200px;
}
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;
  clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%); /* 中心で全閉 */
}
section.fields h2,
section.fields h3,
section.fields .sub-title {
  text-align: center;
}
section.fields .sub-title {
  margin-bottom: 80px;
}
section.fields .domain {
  border: thin solid #214C4C;
  padding: 2em 0;
  transform: translateY(50px);
  opacity: 0;
}
section.fields h3 {
  font-size: 18px;
  font-weight: normal;
  letter-spacing: 1px;
  margin-bottom: 2em;
}
section.fields img {
  display: block;
  margin: 0 auto;
  width: 60%;
  height: 60%;
  object-fit: cover;
  margin-bottom: 2em;
  clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%); /* 上に全閉 */
}
section.fields li {
  text-align: center;
  font-size: 14px;
}
section.fields-2 {
  padding-top: 0;
  margin-top: -120px;
}
section.fields-2 .text-box {
  position: relative;
  padding: 80px;
  background: #214C4C;
  transform: translateY(100px);
  opacity: 0;
}
section.fields-2 .text-box p {
  color: #fff;
}
.text-box .panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0a1919;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
section.touch .btn-wrapper {
  margin-top: 60px;
}
section.touch a.btn {
  display: inline-block;
  padding: 1em 3em;
  color: #fff;
  background: #122c2c;
}
@media screen and (max-width: 767px) {
  section {
    padding-top: 80px;
  }
  section.touch .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;
  }
}
