/*==========================================
  Common
==========================================*/
/* base_sp
==================================*/
h1, h2, h3, h4, h5, h6, p, pre, blockquote, ul, li, ol, dl, dd, tr {
  font-size: 16px;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1;
}

.pc {
  display: none !important;
}

a {
  color: #000;
  text-decoration: none;
}
a:visited {
  color: #000;
}
a:hover {
  color: #000;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a:active {
  color: #000;
}

img {
  max-width: 100%;
}

/* header
==================================*/
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  width: 100%;
}
header .header_inner {
  display: flex;
  justify-content: space-between;
  padding: 24px 24px 24px;
}
header .logo a {
  color: #fff;
  font-family: "Montserrat", serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
header .logo a:visited, header .logo a:hover {
  color: #fff;
}
header .menu {
  position: relative;
  z-index: 50;
  width: 24px;
  height: 16px;
}
header .menu span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: inline-block;
  background: #fff;
  width: 24px;
  height: 2px;
  margin: auto;
  transition: 0.3s;
}
header .menu span.line-t.open {
  background: #000;
  top: 7px;
  transform: rotate(-32deg);
}
header .menu span.line-m {
  top: 7px;
}
header .menu span.line-m.open {
  background: #000;
  opacity: 0;
}
header .menu span.line-b {
  top: 14px;
}
header .menu span.line-b.open {
  background: #000;
  top: 7px;
  transform: rotate(32deg);
}
header nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  background: #fff;
  width: 100%;
  height: 100svh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
header nav .inner {
  display: flex;
  align-items: center;
  height: 100%;
}
header nav ul {
  display: grid;
  row-gap: 30px;
  padding: 0 48px;
}
header nav ul li a {
  font-family: "Montserrat", serif;
  font-size: 18px;
  text-transform: uppercase;
}
header nav ul li a path, header nav ul li a line {
  stroke: #000;
}

/* footer
==================================*/
footer {
  background: #000;
  padding: 30px 0;
}
footer .copy {
  color: #fff;
  font-family: "Montserrat", serif;
  font-size: 10px;
  text-align: center;
}

/* loader
==================================*/
#loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 1001;
  display: flex;
  justify-content: center;
  align-items: center;
}
#loader .logo {
  width: 70px;
  height: 83px;
  overflow: hidden;
}
#loader .logo img {
  transform: translateY(83px);
  animation: logoShow 0.5s cubic-bezier(0.42, 0, 0.18, 1) 0.5s forwards;
}
@keyframes logoShow {
  0% {
    transform: translateY(83px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Animation
==================================*/
.c-anim-load,
.c-anim-load02,
.c-anim-load03,
.c-anim-up,
.c-anim-up01,
.c-anim-up02 {
  transform: translate(0, 30px);
  opacity: 0;
  transition: 0.5s cubic-bezier(0.42, 0, 0.18, 1);
}

.c-anim-load04 {
  transform: translate(0, -30px);
  opacity: 0;
  transition: 0.5s cubic-bezier(0.42, 0, 0.18, 1);
}

.move {
  transform: translate(0, 0);
  opacity: 1;
}

#phArea {
  position: relative;
}
#phArea::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background: #000;
  width: 100%;
  transition: 1s cubic-bezier(0.42, 0, 0.18, 1);
}
#phArea.move::after {
  width: 0%;
}

/*==========================================
  Layout
==========================================*/
/*==================================
  Top
==================================*/
#Top #fix-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
  background: url(../images/main.jpg) no-repeat center/cover;
}
#Top #bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.81) 71%, #000 100%);
  width: 100%;
}
#Top #heroArea {
  position: relative;
  min-height: 100vh;
}
#Top #heroArea .textWrap {
  position: absolute;
  top: 50%;
  left: 24px;
  right: 24px;
  max-width: 1200px;
  margin: auto;
  transform: translateY(-50%);
}
#Top #heroArea .textWrap h1 {
  margin-bottom: 48px;
  color: #fff;
  font-size: 48px;
  letter-spacing: 0.1em;
  line-height: 1.1;
}
#Top #heroArea .textWrap h2 {
  margin-bottom: 24px;
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
}
#Top #heroArea .textWrap p {
  max-width: 300px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}
#Top #heroArea .scroll {
  position: absolute;
  right: 12px;
  bottom: 50px;
}
#Top #heroArea .scroll p {
  position: relative;
  color: #fff;
  font-family: "Montserrat", serif;
  writing-mode: sideways-rl;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.2em;
  padding-bottom: 35vh;
}
#Top #heroArea .scroll p::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  background: linear-gradient(0deg, transparent 0%, #fff 100%);
  width: 1px;
  height: 76%;
}
#Top #heroArea .scroll p a {
  color: #fff;
}
#Top #heroArea .scroll p a:visited {
  color: #fff;
}
#Top #phArea {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  height: 130px;
  overflow: hidden;
}
#Top #phArea .ph {
  height: 130px;
}
#Top #phArea .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
#Top #Forte {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 15px 80px;
}
#Top #Forte h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 32px;
  text-align: center;
}
#Top #Forte p {
  color: #fff;
  max-width: 600px;
  margin: 0 auto 24px;
  font-size: 14px;
  font-weight: 700;
  text-align: justify;
}
#Top #Forte figure {
  margin: 0 -15px;
}
#Top h2.f-en {
  margin-bottom: 12px;
  font-size: 28px;
  text-align: center;
  text-transform: uppercase;
}
#Top .h2-sub {
  margin-bottom: 48px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}
#Top #Merit {
  background: #f8f7f6;
  padding: 100px 15px 60px;
}
#Top #Merit .wrap {
  margin: 0 auto 100px;
}
#Top #Merit .wrap .slider, #Top #Merit .wrap .ph {
  height: 240px;
  margin-bottom: 24px;
  border-radius: 10px;
  overflow: hidden;
}
#Top #Merit .wrap .slider img, #Top #Merit .wrap .ph img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: 50% 50%;
}
#Top #Merit .wrap .text h3 {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
}
#Top #Merit .wrap .text p {
  font-weight: 500;
  text-align: justify;
}
#Top #Merit .wrap03 {
  margin-bottom: 0;
}
#Top #Resouce {
  background: #f8f7f6;
  padding: 100px 15px 60px;
}
#Top #Resouce .large-ph {
  max-width: 812px;
  margin: 0 auto 50px;
  border-radius: 10px;
  overflow: hidden;
}
#Top #Resouce .cards .card {
  background: #fff;
  margin-bottom: 30px;
  padding: 30px 24px 40px;
  border-radius: 10px;
  box-shadow: 30px 40px 30px rgba(0, 0, 0, 0.1);
}
#Top #Resouce .cards .card .name {
  display: flex;
  align-items: center;
  margin-bottom: 2px;
  color: #1e5a9f;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}
#Top #Resouce .cards .card .company {
  margin-bottom: 10px;
  font-weight: 600;
}
#Top #Resouce .cards .card .ph {
  height: 180px;
  margin-bottom: 20px;
}
#Top #Resouce .cards .card .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
#Top #Resouce .cards .card .info {
  font-size: 14px;
}
#Top #Resouce .cards .card .links {
  display: grid;
  row-gap: 3px;
  margin-top: 20px;
}
#Top #Resouce .cards .card .links li a {
  display: flex;
  align-items: center;
  column-gap: 5px;
  width: fit-content;
  font-size: 14px;
}
#Top #Resouce .cards .card .links li a span {
  box-sizing: border-box;
  display: inline-block;
  background: url(../images/arrow_link.svg) no-repeat center/contain;
  width: 79px;
  height: 18px;
  padding-left: 8px;
  color: #fff;
  font-size: 10px;
  line-height: 18px;
}
#Top #Resouce .att {
  font-size: 14px;
  text-align: right;
}
#Top #About {
  background: #f8f7f6;
  padding: 100px 15px;
}
#Top #About .inner .ph {
  margin-bottom: 24px;
  border-radius: 10px;
  overflow: hidden;
}
#Top #About .inner .text {
  padding: 0 24px;
}
#Top #About .inner .text h2.f-en {
  text-align: left;
}
#Top #About .inner .text .h2-sub {
  text-align: left;
}
#Top #About .inner .text ul {
  display: grid;
  row-gap: 24px;
}
#Top #About .inner .text ul .address a {
  display: inline-block;
  transform-origin: bottom;
}
#Top #Contact {
  background: rgba(30, 90, 159, 0.5);
  padding: 50px 15px;
}
#Top #Contact .inner p {
  color: #fff;
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 700;
}
#Top #Contact .inner p span {
  font-size: 16px;
}
#Top #Contact .inner a {
  position: relative;
  display: block;
  background: #fff;
  width: 250px;
  padding: 18px 15px 18px 0;
  border-radius: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}
#Top #Contact .inner a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(45deg) translateY(-50%);
}