@charset "UTF-8";
/* Break point
---------------------------------------------------------- */
/* Font
---------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Belanosima:wght@400;600;700&family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");
/* Mixin
---------------------------------------------------------- */
/* Animation
---------------------------------------------------------- */
.a-fadeIn {
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.a-fadeIn.-start {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* ==========================================================================//
//
//　変数
//
// ========================================================================== */
:root {
  /* Color
  ---------------------------------------------------------- */
  --color-main: #0a3d89;
  --color-sub: #006BBD;
  --color-bg: #F2F2F2;
  --color-font: #1D2427;
  --color-link: #0a3d89;
  /* font
  ---------------------------------------------------------- */
  --font-zenkaku: "Zen Kaku Gothic New", sans-serif;
  --font-l: 300;
  --font-r: 400;
  --font-m: 500;
  --font-b: 700;
  --font-bl: 900;
  --lhS: 1.2;
  --lhM: 1.5;
  --lhL: 1.8;
  --lhLL: 2.3;
  /* width
  ---------------------------------------------------------- */
  --maxWidth: 1040px;
}

.l-mv {
  background: var(--color-bg);
  position: relative;
}
@media screen and (min-width: 968px) {
  .l-mv {
    height: 350px;
    background: #fff;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    border-top: 3px solid #F2F2F2;
  }
}
.l-mv > * {
  position: relative;
  z-index: 2;
}
.l-mv__inner {
  display: block;
  padding: 70px 20px 0;
}
@media screen and (min-width: 968px) {
  .l-mv__inner {
    padding: 0;
  }
}
.l-mv__ttl {
  background: rgba(255, 255, 255, 0.8);
  padding: 15px 10px;
  text-align: center;
  max-width: 300px;
  margin: 0 auto;
  font-family: var(--font-zenkaku);
  font-weight: var(--font-m);
}
@media screen and (min-width: 968px) {
  .l-mv__ttl {
    max-width: none;
  }
}
.l-mv__ttl .-inner {
  display: inline-block;
}
.l-mv__ttl .-inner > * {
  display: block;
}
.l-mv__ttl .-txt1 {
  font-size: 23px;
  font-size: 2.3rem;
}
@media screen and (min-width: 968px) {
  .l-mv__ttl .-txt1 {
    font-size: clamp(34px, 34px + (100vw - 983px) * 0.0478, 46.5px);
  }
}
.l-mv__ttl .-txt2 {
  font-size: 36px;
  font-size: 3.6rem;
  margin-top: -3px;
}
@media screen and (min-width: 968px) {
  .l-mv__ttl .-txt2 {
    margin-top: -13px;
    font-size: clamp(54px, 54px + (100vw - 983px) * 0.0725, 73px);
  }
}
.l-mv__ttl .-txt3 {
  font-size: 14px;
  font-size: 1.4rem;
  color: var(--color-main);
  font-family: "Belanosima";
  font-weight: var(--font-r);
  text-align: right;
  margin-top: 5px;
  position: relative;
}
@media screen and (min-width: 968px) {
  .l-mv__ttl .-txt3 {
    font-size: 27px;
    font-size: 2.7rem;
  }
}
.l-mv__ttl .-txt3 .-and {
  font-size: 0.75em;
}
.l-mv__ttl .-txt3::before {
  content: "";
  width: calc(100% - 6em);
  height: 1px;
  background: var(--color-main);
  position: absolute;
  top: 50%;
  left: 0;
}
.l-mv__img {
  width: 100%;
  height: calc(100% - 40px);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media screen and (min-width: 968px) {
  .l-mv__img {
    height: 100%;
    position: relative;
    overflow: hidden;
  }
}
.l-mv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
}
@media screen and (min-width: 968px) {
  .l-mv__img img {
    -o-object-position: center center;
       object-position: center center;
  }
}
.l-mv .l-mv__ttl {
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.l-mv.-loaded .l-mv__ttl {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}