@charset "UTF-8";


:root {
  --f-en: Arial, sans-serif;
  --color-blue: #005CA2;
  --color-blue-dark: #386180;
}

img {
  max-width: 100%;
  height: auto;
  pointer-events: none;
}

.txt-right {
  text-align: right;
}

.txt-center {
  text-align: center;
}

.p-lows {
  overflow: hidden;
}

/*   [class$=container] {
    padding: 0px;
    width: 95%;
  } */

.l-container {
  max-width: 1400px;
  margin: auto;
}

@media screen and (min-width: 1401px) and (max-width: 1500px) {
  .l-container {
    max-width: calc(100% - 100px);
  }
}

@media screen and (min-width: 1201px) and (max-width: 1400px) {
  .l-container {
    max-width: 1100px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .l-container {
    max-width: calc(100% - 74px);
    margin: auto;
  }
}

.title-focus {
  color: var(--color-blue);
}

.title-focus.color-white {
  color: white;
}

.title-focus span {
  display: block;
  line-height: 1;
}

.title-focus span.txt-jp {
  font-size: 4rem;
  font-weight: bold;
  margin: 55px 0 0 0;
}

.title-focus span.txt-en {
  font-size: 1.8rem;
  font-weight: 500;
  margin-top: 17px;
}

.mainvisual-area {
  position: relative;
}

.mainvisual-area img {
  width: 100%;
  height: auto;
  min-height: 400px;
  object-fit: cover;
  object-position: center center;
}

.mainvisual-content {
  max-width: 1100px;
  position: absolute;
  z-index: 2;
  height: 100%;
  width: 95%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
}

.area-head {
  position: relative;
  padding: 97px 0px 110px;
}

.area-head figure {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: -1;
  overflow: hidden;
}

.area-head figure img {
  width: 100%;
  min-height: 467px;
  object-fit: cover;
  object-position: center center;
}

.area-head figure::after {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: calc(50% + 715px);
  max-width: calc(100% - 40px);
  background-color: white;
  height: 240px;
  z-index: 1;
  transform-origin: bottom left;
  transform: skewX(-35deg);
}

.bg-gradient {
  position: relative;
}

.bg-gradient::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 50%;
  z-index: -5;
  height: 100%;
  width: 100vw;
  transform: translateX(-50%);
  background-image: linear-gradient(135deg, #F7F9F8, #B9C8CD);
}

/* 404 */

.nfpage .container {
  margin: 100px auto 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nfpage .container h3 {
  font-size: 5rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.nfpage .container p {
  margin-bottom: 64px;
}

.nfpage .btn-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.nfpage .btn-center a {
  display: inline-block;
  padding: 16px 24px;
  background: #005CA2;
  color: #fffF;
  font-weight: bold;
  border: 3px solid #005CA2;
  transition: all .3s;
}

.nfpage .btn-center a:hover {
  background: #fff;
  color: #005CA2;
  border: 3px solid #005CA2;
}


/* =============================================
〜768px
============================================= */

@media screen and (max-width: 767.98px) {
  [class$=container] {
    padding: 0px 15px;
    width: 100%;
  }

  .title-focus span.txt-jp {
    font-size: 3rem;
    margin: 45px 0 0 0;
  }

  .title-focus span.txt-en {
    font-size: 1.6rem;
  }

  .mainvisual-area img {
    min-height: 300px;
  }

  .area-head {
    padding: 50px 0px 60px;
  }

  .area-head figure img {
    min-height: 250px;
  }

  .area-head figure::after {
    width: 100%;
    max-width: calc(100% - 20px);
    height: 100px;
  }

  .nfpage .container {
    margin: 64px auto;
  }

  .nfpage .container h3 {
    font-size: 3.6rem;
  }
}