/*------------------------------------
  Default Styles
------------------------------------*/

html {
  font-size: 15px;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  html {
    font-size: 13px;
  }
}

main {
  /* margin-bottom: 100vh; */
  z-index: 99;
  position: relative;
  background-color: #ffffff;
  padding-top: 6em;
}

@media (max-width: 991px) {
  main {
    padding-top: 60px;
  }
}

body {
  overflow-x: hidden;
  position: relative;
  font-weight: 500;
  font-size: 1em;
  font-family: "Crimson Text", "Noto Serif JP", serif;
  line-height: 180%;
  letter-spacing: 0.1rem;
  color: #2f3845;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-font-feature-settings: "palt" on;
  font-feature-settings: "palt" on;
  text-rendering: optimizelegibility;
}

a {
  color: #00589f;
  cursor: pointer;
  transition: all 0.8s;
  text-underline-position: under;
  text-underline-offset: 0.2rem;
}

a:hover {
  color: #00589f;
  opacity: 0.6 !important;
  transition: all 0.8s;
  cursor: pointer;
}

a:focus {
  outline: none;
  cursor: pointer;
}

u {
  text-underline-position: under;
  text-underline-offset: 0.2rem;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  _::-webkit-full-page-media,
  _:future,
  a,
  u {
    text-underline-position: under;
    text-underline-offset: 0rem;
  }
}

p {
  line-height: 1.8;
}

figure {
  margin-bottom: 0;
}

hr {
  border-color: #e6e7e9;
}

[role="button"] {
  cursor: pointer;
}

img {
  user-drag: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
}

img.lazyload {
  width: 100%;
}

/*------------------------------------
  Headings
------------------------------------*/

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.h7,
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.6;
  font-weight: 700;
  font-family: "Crimson Text", "Noto Serif JP", serif;
  margin-bottom: 1rem;
}

/*------------------------------------
  Color
------------------------------------*/

.bg-navy {
  background-color: #00589f;
}

.text-navy {
  color: #00589f;
}

.bg-raven {
  background-color: #2f3845;
}

.text-raven {
  color: #2f3845;
}

.text-raven:hover {
  color: #2f3845;
}

.mark-raven-40 {
  background: rgba(88, 107, 125, 0.4);
  color: #ffffff;
  padding: 0.15em 0.3em;
  width: fit-content;
}

.bg-gradGray {
  background: linear-gradient(90deg, rgba(245, 245, 249, 0.4) 0.57%, rgba(247, 248, 252, 0.4) 100%);
}

.bg-nature {
  background: #f3f4f8;
}

.border-grayish {
  border-color: #c6ccd6 !important;
}

hr.border-grayish {
  opacity: 1;
  height: 0.5px;
  background-color: #c6ccd6 !important;
}

.border-harf {
  border-width: 0.5px !important;
}

/*----------------------------------
  Shadow
------------------------------------*/

.shadow-card {
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.15);
}

.shadow-child-head {
  text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
}

/*----------------------------------
  Spaces
------------------------------------*/

.u-space {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}

.u-space-top {
  padding-top: 6.25rem;
}

.u-space-bottom {
  padding-bottom: 6.25rem;
}

@media (max-width: 768px) {
  .u-space {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  .u-space-top {
    padding-top: 3.5rem;
  }
  .u-space-bottom {
    padding-bottom: 3.5rem;
  }
}

/*----------------------------------
  Font Weight
------------------------------------*/

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

/*----------------------------------
  Font Size
------------------------------------*/

.small-s {
  font-size: 0.65em;
}

/*----------------------------------
  Line Height
------------------------------------*/

.lh-xl {
  line-height: 2.5 !important;
}

.lh-xs {
  line-height: 0.8 !important;
}

/*----------------------------------
  Letter Spacing
------------------------------------*/

.ls-0 {
  letter-spacing: 0 !important;
}

.ls-sm {
  letter-spacing: 0.1em !important;
}

.ls-md {
  letter-spacing: 0.25em !important;
}

/*----------------------------------
  Sizing
------------------------------------*/

.w-fit {
  width: fit-content;
}

/*----------------------------------
  Object-Fit
------------------------------------*/

.object-fit-cover {
  object-fit: cover;
}

/*----------------------------------
  bottoms
------------------------------------*/

#bottoms .thumbnail {
  height: 8rem;
}

/*----------------------------------
  Loading
------------------------------------*/

/* .page-running {
  display: none;
} */

.page-running,
#header {
  opacity: 0;
  -moz-transition: -moz-transform 0.5s linear;
  -webkit-transition: -webkit-transform 0.5s linear;
  -o-transition: -o-transform 0.5s linear;
  -ms-transition: -ms-transform 0.5s linear;
  transition: transform 0.5s linear;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.page-blur {
  -webkit-animation-name: imageBlur;
  animation-name: imageBlur;
  opacity: 1 !important;
  transition: 0.8s;
}

@-webkit-keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }

  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}
@keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }

  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}

/*----------------------------------
  Arrow Button
------------------------------------*/

.arrow-btn {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35em;
  letter-spacing: 0.25em;
}

/*----------------------------------
  Page Fade Out
------------------------------------*/

.page-fadeout {
  /* animation: fadeOut 0.5s ease-out forwards; */
  -webkit-transform: translate3d(0, -100px, 0);
  -ms-transform: translate3d(0, -100px, 0);
  transform: translate3d(0, -100px, 0);
  -webkit-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  opacity: 0 !important;
}

/* .page-fadeout .page-running {
	display: none !important;
} */

@keyframes fadeOut {
  0% {
    opacity: 1 !important;
    visibility: visible;
  }
  100% {
    opacity: 0 !important;
    visibility: hidden;
    transform: translateY(-100px);
  }
}

.page-blur-out {
  -webkit-animation-name: imageBlurOut;
  animation-name: imageBlurOut;
  opacity: 0;
  transition: 0.5s;
}

@-webkit-keyframes imageBlurOut {
  from {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
  to {
    opacity: 0 !important;
    display: none !important;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }
}
@keyframes imageBlurOut {
  from {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
  to {
    opacity: 0 !important;
    display: none !important;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }
}
