@charset "UTF-8";
li {
  text-decoration: none;
  list-style: none;
}

a {
  text-decoration: none;
  color: black;
}

body {
  font-family: "IBM Plex Sans JP", sans-serif;
  background-color: rgb(244, 244, 244);
}

.detail {
  margin: 0 auto;
  margin-top: 30px;
  border: solid 1px black;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 200px;
  padding: 10px 25px;
  color: black;
  transition: 0.3s ease-in-out;
}
.detail:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -2em;
  transform: translateY(-50%);
  width: 60px;
  height: 1px;
  background-color: black;
  transition: 0.3s;
}
.detail:hover {
  background: black;
  color: white;
}
.detail:hover:after {
  right: -2.5em;
}

.fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.5s, transform 1s;
}

.fade.active {
  opacity: 1;
  transform: translateY(0px);
}

.header {
  height: 120px;
  background: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  position: fixed;
  z-index: 1000;
  width: 100%;
}
.header__contents {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.header__contents__name {
  margin-top: 30px;
  margin-left: 40px;
}
.header__contents__name a img {
  height: 30px;
  width: 200px;
  padding-left: 20px;
  margin-top: 10px;
}
.header__contents__nav {
  margin-top: 20px;
}
.header__contents__nav .pcnav ul {
  display: flex;
  justify-content: space-around;
}
.header__contents__nav .pcnav ul li {
  font-size: 14px;
}
.header__contents__nav .pcnav ul li:hover ul {
  display: block;
}
.header__contents__nav .pcnav ul li a {
  color: black;
  line-height: 70px;
  margin-right: 20px;
  position: relative;
  text-decoration: none; /*デフォルトで下線を非表示*/
}
.header__contents__nav .pcnav ul li a::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  content: "";
  width: 100%;
  height: 1.5px; /*下線の太さ*/
  background-color: #C40000; /*下線の色*/
  transition: all 0.3s; /*アニメーション速度*/
  transform: scaleX(0);
}
.header__contents__nav .pcnav ul li a:hover::after {
  width: 100%;
  transform: scaleX(1);
}
.header__contents__nav .pcnav ul li a img {
  width: 16px;
  height: 16px;
  margin-right: 4px;
  vertical-align: middle;
  margin-bottom: 4px;
}
.header__contents__nav .pcnav ul li p {
  line-height: 70px;
  margin-right: 20px;
  cursor: pointer;
}
.header__contents__nav .pcnav ul ul {
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgb(255, 255, 255);
  box-shadow: 6px 6px 25px 0 rgba(116, 116, 116, 0.5);
  width: -moz-max-content;
  width: max-content;
  height: 246px;
  display: none;
}
.header__contents__nav .pcnav ul ul:before {
  content: "";
  position: absolute;
  left: 45%;
  top: -15px;
  display: block;
  width: 0;
  height: 0;
  border-right: 15px solid transparent;
  border-bottom: 15px solid white;
  border-left: 15px solid transparent;
}
.header__contents__nav .pcnav ul ul li {
  padding-left: 20px;
  padding-right: 20px;
  display: inline-block;
  margin: 0 auto;
}
.header__contents__nav .pcnav ul ul li a {
  color: #444;
  line-height: 1;
  font-size: 16px;
}
.header__contents__nav .pcnav ul ul li a:hover {
  color: black;
}
.header__contents__nav .pcnav ul ul li a:hover::after {
  display: none;
}
.header__contents__nav .pcnav ul ul li a img {
  width: 240px;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: 24px;
  margin-bottom: 10px;
  display: block;
  filter: brightness(40%);
  transition: 0.6s;
}
.header__contents__nav .pcnav ul ul li a img:hover {
  filter: brightness(100%);
}
.header__contents__nav .pcnav ul ul li a .number {
  font-size: 18px;
  margin-right: 10px;
  color: #C40000;
  font-family: serif;
}
.header__contents__lang {
  height: 70px;
}
.header__contents__lang .english {
  margin-top: 20px;
  margin-right: 40px;
  display: inline-block;
  letter-spacing: 0.1rem;
  line-height: 70px;
  color: black;
}
.header__contents__lang .english img {
  width: 20px;
  height: 20px;
  margin-right: 6px;
  position: absolute;
  top: 43px;
  right: 105px;
}
.header .hambarger {
  display: none;
}
.header .globalMenuSp {
  display: none;
}

.top {
  width: 100vw;
  position: relative;
  margin-bottom: 10px;
}
.top__img img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(46%);
}
.top__ttl {
  position: absolute;
  top: 52%;
  left: 24%;
  transform: translate(-50%, -50%);
  color: white;
  font-family: serif;
}
.top__ttl h2 {
  font-size: 40px;
  letter-spacing: 1rem;
}
.top__ttl p {
  font-size: 20px;
}
.top .scrolldown {
  display: none;
}

.breadcrumb {
  width: 75vw;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin-bottom: 20px;
}

.breadcrumb li:not(:last-of-type)::after {
  content: "›";
  margin: 0 0.6em; /* 記号の左右の余白 */
  color: #777; /* 記号の色 */
}

.philosophy {
  width: 60vw;
  margin: 0 auto;
  padding-top: 60px;
  margin-top: -60px;
  font-family: serif;
}
.philosophy__sentence {
  margin-top: 100px;
}
.philosophy__sentence h3 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}
.philosophy__sentence h3:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100px;
  width: 1px;
  height: 160px;
  margin: auto;
  background-color: black;
}
.philosophy__sentence p {
  font-size: 16px;
  text-align: center;
  margin-top: 250px;
  line-height: 2;
}

.process {
  width: 100vw;
  margin-top: 100px;
  margin-bottom: 80px;
}
.process__contents {
  display: flex;
  justify-content: space-around;
  width: 90vw;
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 50px;
}
.process__contents__img img {
  width: 460px;
  max-width: 40vw;
  height: 360px;
  -o-object-fit: cover;
     object-fit: cover;
}
.process__contents__sentence {
  background-color: white;
  width: 70vw;
  height: -moz-fit-content;
  height: fit-content;
  margin: auto 0;
  padding: 20px;
  margin-left: -50px;
}
.process__contents__sentence .ttl {
  font-size: 22px;
  margin-bottom: 10px;
}
.process__contents__sentence .discription {
  font-size: 16px;
}

.bg-white {
  background-color: white;
}
.bg-white .sitemap {
  padding-top: 100px;
  padding-bottom: 80px;
  width: 80vw;
  margin: 0 auto;
}
.bg-white .sitemap img {
  width: 260px;
  height: 50px;
  margin-left: 50px;
}
.bg-white .sitemap__contents {
  display: flex;
  justify-content: space-around;
  margin-top: 50px;
}
.bg-white .sitemap__contents__columns {
  display: flex;
  flex-flow: column;
}
.bg-white .sitemap__contents__columns p {
  margin-bottom: 10px;
}
.bg-white .sitemap__contents__columns a {
  margin-bottom: 10px;
  font-size: 14px;
  color: black;
}
.bg-white .sitemap__contents__columns a:hover {
  opacity: 0.6;
}
.bg-white .sitemap__contents__columns .ttl {
  font-size: 16px;
  font-weight: bolder;
}
.bg-white .sitemap__contents__columns .border {
  display: flex;
  align-items: center;
}
.bg-white .sitemap__contents__columns .border:before {
  border-top: 1px solid;
  content: "";
  width: 10px;
  margin-right: 6px;
}

footer {
  background-color: #0E2C59;
  color: white;
  text-align: center;
}
footer p {
  font-size: 12px;
  line-height: 4;
}

#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #0E2C59;
  z-index: 9999999;
  text-align: center;
  color: #fff;
}
#splash__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  font-family: serif;
}

.splashbg {
  display: none;
}

body.appear .splashbg {
  display: block;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  transform: scaleX(0);
  background-color: #C40000; /*伸びる背景色の設定*/
  animation-name: PageAnime;
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes PageAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
#container {
  opacity: 0; /*はじめは透過0に*/
}

body.appear #container {
  animation-name: PageAnimeAppear;
  animation-duration: 1s;
  animation-delay: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media only screen and (max-width: 900px) {
  .header {
    height: 80px;
    position: fixed;
    z-index: 1000;
    width: 100vw;
    display: flex;
    justify-content: space-between;
    /* ナビ開いてる時のボタン */
    /* このクラスを、jQueryで付与・削除する */
  }
  .header__contents__name {
    margin-top: 10px;
    margin-left: 0px;
  }
  .header__contents__name img {
    margin-left: 0px;
  }
  .header__contents__lang {
    display: none;
  }
  .header__contents__nav {
    display: none;
  }
  .header .hamburger {
    display: block;
    position: fixed;
    z-index: 3;
    right: 13px;
    top: 12px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
  }
  .header .hamburger span {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 6px;
    background: #555;
    transition: 0.3s ease-in-out;
  }
  .header .hamburger span:nth-child(1) {
    top: 10px;
  }
  .header .hamburger span:nth-child(2) {
    top: 20px;
  }
  .header .hamburger span:nth-child(3) {
    top: 30px;
  }
  .header .hamburger.active {
    transition: all 0.3s ease-in-out;
    transition-delay: 0.6s;
    transform: rotate(45deg);
  }
  .header .hamburger.active span:nth-child(2) {
    width: 0px;
  }
  .header .hamburger.active span:nth-child(1),
  .header .hamburger.active span:nth-child(3) {
    background: #fff;
    transition-delay: 0.3s;
  }
  .header .hamburger.active span:nth-child(1) {
    transform: translateY(4px);
  }
  .header .hamburger.active span:nth-child(3) {
    transform: translateY(-16px) rotate(90deg);
  }
  .header .globalMenuSp {
    display: none;
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    text-align: center;
    width: 100%;
    height: 100vh;
    opacity: 0;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    pointer-events: none;
  }
  .header .globalMenuSp ul {
    margin: 0 auto;
    padding: 0;
    width: 100%;
  }
  .header .globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    transition: 0.4s all;
  }
  .header .globalMenuSp ul li:first-child {
    margin-top: 100px;
  }
  .header .globalMenuSp ul li:last-child {
    padding-bottom: 0;
  }
  .header .globalMenuSp ul li:hover {
    background: #ddd;
  }
  .header .globalMenuSp ul li a {
    display: block;
    color: #fff;
    padding: 1em 0;
    text-decoration: none;
  }
  .header nav.globalMenuSp.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }
}
@media only screen and (max-width: 900px) {
  .process {
    width: 90vw;
    margin: 0 auto;
    margin-top: 80px;
    margin-bottom: 20px;
  }
  .process__contents {
    flex-direction: column;
  }
  .process__contents__img img {
    width: 90vw;
    max-width: 90vw;
    height: 300px;
  }
  .process__contents__sentence {
    width: 90vw;
    margin: 0 auto;
    padding: 1.5rem;
    margin-top: -50px;
    margin-bottom: 20px;
  }
  .process__contents__sentence .ttl {
    font-size: 18px;
  }
  .process__contents__sentence .discription {
    font-size: 14px;
  }
}
@media only screen and (max-width: 780px) {
  .top__img img {
    height: 340px;
  }
  .top__ttl {
    position: absolute;
    top: 52%;
    left: 30%;
  }
  .top__ttl h2 {
    font-size: 30px;
  }
  .top__ttl p {
    font-size: 16px;
  }
  .philosophy {
    width: 80vw;
    padding-top: 20px;
  }
  .philosophy__sentence {
    margin-top: 80px;
  }
  .philosophy__sentence h3 {
    font-size: 28px;
  }
  .philosophy__sentence p {
    font-size: 16px;
  }
  .philosophy__img img {
    width: 80vw;
    margin-bottom: 0;
  }
  .bg-white .sitemap {
    padding-bottom: 40px;
  }
  .bg-white .sitemap img {
    width: 180px;
    height: 20px;
    -o-object-fit: cover;
       object-fit: cover;
    margin-left: 20px;
  }
  .bg-white .sitemap__contents {
    margin-top: 30px;
  }
  .bg-white .sitemap__contents__columns a {
    font-size: 12px;
    color: black;
  }
  .bg-white .sitemap__contents__columns .ttl {
    font-size: 14px;
    font-weight: bolder;
  }
  footer p {
    font-size: 10px;
  }
}
@media only screen and (max-width: 700px) {
  .bg-white .sitemap {
    padding-bottom: 20px;
  }
  .bg-white .sitemap img {
    width: 180px;
    height: 20px;
    -o-object-fit: cover;
       object-fit: cover;
    margin-left: 0px;
  }
  .bg-white .sitemap__contents {
    margin-top: 30px;
    flex-direction: column;
  }
  .bg-white .sitemap__contents__columns {
    margin-bottom: 20px;
  }
  .bg-white .sitemap__contents__columns a {
    font-size: 16px;
    color: black;
  }
  .bg-white .sitemap__contents__columns .ttl {
    font-size: 18px;
    font-weight: bolder;
  }
}
@media only screen and (max-width: 430px) {
  .top__img {
    overflow: hidden;
  }
  .top__img img {
    height: 100vh;
    animation: animationZoom2 10s ease-in-out infinite;
  }
  @keyframes animationZoom2 {
    50% {
      transform: scale(1.1);
    }
  }
  .top__ttl {
    position: absolute;
    top: 48%;
    left: 36%;
  }
  .top .scrolldown {
    display: block;
    position: absolute;
    bottom: 60px;
    left: 50%;
  }
  .top .scrolldown:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -4px;
    /*丸の形状*/
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #eee;
    /*丸の動き1.6秒かけて透過し、永遠にループ*/
    animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
  }
  .top .scrolldown::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    /*線の形状*/
    width: 2px;
    height: 60px;
    background: #eee;
  }
  @keyframes circlemove {
    0% {
      bottom: 55px;
    }
    100% {
      bottom: -5px;
    }
  }
  @keyframes cirlemovehide {
    0% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    80% {
      opacity: 0.9;
    }
    100% {
      opacity: 0;
    }
  }
  .top__menu {
    display: none;
  }
  .breadcrumb {
    display: none;
  }
  .philosophy {
    margin-top: 30px;
  }
  .philosophy__sentence {
    margin-top: 40px;
  }
  .philosophy__sentence h3 {
    font-size: 20px;
  }
  .philosophy__sentence h3 span {
    display: block;
  }
  .philosophy__sentence p {
    font-size: 15px;
    text-align: left;
    margin-top: 220px;
    line-height: 1.6;
  }
  .philosophy__img img {
    height: 260px;
  }
  #splash__logo {
    font-size: 22px;
    white-space: nowrap;
  }
}/*# sourceMappingURL=process-en.css.map */