/* ------------------------------------------------------------------------------------------------------------------------------------------------------
//  common.css
------------------------------------------------------------------------------------------------------------------------------------------------------ */
html {
  font-size: 62.5%;
}

@media screen and (max-width:768px) {
  html {
    font-size: calc(100vw / 375 * 10);
  }
}
body {
  /* font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', sans-serif; */
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.8rem;
  line-height: calc(40 / 18);
  min-width: 100rem;
}
@media screen and (max-width:768px) {
  body {
    font-size: 1.4rem;
    min-width: inherit;
  }
}

.body-container {
  overflow: hidden;
}

.inner {
  margin: auto;
  max-width: 100rem;
}
@media screen and (max-width:768px) {
  .inner {
    padding: 0 2rem;
  }
}

img {
  height: auto;
  max-width: 100%;
  width: 100%;
}

.ib {
  display: inline-block;
}

.serif {
  font-family: 'Noto Serif JP', serif;
}

/* ---------------------------------------------------------------------------
//  コンポーネント
--------------------------------------------------------------------------- */
/* btnA */
.btnA {
  background: #fff;
  border-radius: 10rem;
  color: #003990;
  display: block;
  height: 5.7rem;
  margin: auto;
  padding: 3px;
  transition: .2s;
  width: 25.6rem;
}
.btnA:hover {
  background: #003990;
}
.btnA span::after {
  background-image: url(../img/common/btn-arrow_blue.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: '';
  height: 1.5rem;
  margin: auto;
  position: absolute;
  right: 2.3rem;
  top: 0;
  width: .8rem;
}
.btnA span {
  align-items: center;
  border: solid 1px #003990;
  border-radius: 10rem;
  display: flex;
  font-size: 1.5rem;
  height: 100%;
  justify-content: center;
  position: relative;
  transition: .2s;
}
.btnA:hover span {
  background: #003990;
  color: #fff;
  font-weight: bold;
}
/* ---------------------------------------------------------------------------
//  ローデイング
--------------------------------------------------------------------------- */
#splash {
  align-items: center;
  background: #fff;
  color: #004396;
  display: flex;
  font-family: 'Poppins', sans-serif;
  height: 100%;
  justify-content: center;
  /*fixedで全面に固定*/
  position: fixed;
  text-align: center;
  width: 100%;
  z-index: 999;
}
.splash-wrap {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 17.4rem;
  justify-content: space-between;
}
.splash-wrap .logo {
  margin-bottom: 4.2rem;
  width: 8.6rem;
}
#splash svg {
  border-radius: 10rem;
  height: .6rem;
  margin-bottom: 1.5rem;
}
#splash .progressbar-text {
  color: inherit!important;
  left: inherit!important;
  line-height: 1;
  position: relative!important;
  top: inherit!important;
  transform: none!important;
}
#splash_text {
  color: #004396;
  font-size: 1.4rem;
  white-space: nowrap;
  width: 13.8rem;
  z-index: 999;
}

/* ---------------------------------------------------------------------------
//  header
--------------------------------------------------------------------------- */

.header-nav {
  display: flex;
  height: 10.7rem;
  justify-content: space-between;
  padding: 0 3rem;
  position: absolute;
  transition: .2s;
  width: 100%;
  z-index: 10;
}
.header-nav.active {
  background: rgba(255,255,255,.5);
  position: fixed;
}

.header-nav .drawer {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
  position: relative;
}
.header-nav .drawer .logo {
  width: 28.5rem;
  /* position: relative; */
}

.header-nav.active.sub {
  height: 4.2rem;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  padding: 0 0 0 2.7rem;
}

.header-nav.active.sub .drawer .logo {
  width: 15.6rem;
  height: 2.6rem;
  background-image: url(../img/common/sub-header-logo-active.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.header-nav.active.sub .drawer .logo img {
  opacity: 0;
}

/* .header-nav.active.sub .drawer .logo::after {
  position: absolute;
  width: 15.6rem;
  height: 2.6rem;
  content: "";
  display: block;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url(../img/common/sub-header-logo-active.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
} */

.header-nav .drawer .Toggle {
  display: none;
}

.menu {
  color: #003990;
  font-size: 1.4rem;
  font-weight: bold;
}
.menu ul {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  justify-content: flex-end;
}
.menu ul li + li {
  margin-left: 4rem;
}
.menu ul li {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
}
.menu ul li a {
  align-items: center;
  display: flex;
  height: 4.2rem;
  justify-content: center;
  transition: .2s;
}
.menu ul li a:hover {
  opacity: .7;
}
.menu ul li a:hover {
  background-color: transparent;
}
.menu ul li:last-of-type a {
  background: #003990;
  border: solid 1px #003990;
  color: #fff;
  width: 17rem;
}
.menu ul li:last-of-type a:hover {
  background: #fff;
  color: #003990;
  opacity: 1;
}

@media screen and (max-width:768px) {
  .header-nav {
    display: block;
    height: 6rem;
    padding: 0 2rem;
    position: fixed;
  }
  .header-nav .drawer .logo {
    position: relative;
    width: 16rem;
    z-index: 12;
  }
  .header-nav.active.sub {
    height: 6rem;
    padding: 0 2rem;
  }
  .header-nav.active.sub .drawer .logo {
    width: 16rem;
    height: auto;
    background-image: unset;
  }
  .header-nav.active.sub .drawer .logo img {
    opacity: 1;
  }
  .header-nav .drawer .Toggle {
    display: block;
  }
  .menu {
    background-color: #fff;
    color: #003990;
    font-size: 1.4rem;
    font-weight: bold;
    /* height: 100svh; */
    left: 0;
    min-height: 100vh;
    padding-top: 10rem;
    position: absolute;
    text-align: center;
    top: 0;
    transform: translateX(100%);
    transition: .5s ease;
    width: 100%;
  }
  .menu ul {
    display: block;
  }
  .menu ul li + li {
    margin-left: 0;
  }
  .menu ul li {
    display: block;
    height: auto;
  }
  .menu ul li a {
    display: block;
    height: auto;
    padding: 1rem;
  }
  .menu ul li:last-of-type a {
    margin-top: 1rem;
    width: 100%;
  }


  .menu.open {
    transform: translateX(0);
  }

  .Toggle {
    cursor: pointer;
    display: block;
    height: 4.2rem;
    position: fixed;
    right: 2rem;
    top: 1.5rem;
    width: 4.2rem;
    z-index: 11;
  }

  .Toggle span {
    border-bottom: solid 4px #000;
    display: block;
    position: absolute;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    width: 4.2rem;
  }
  .Toggle span:nth-child(1) {
    top: .5rem;
  }
  .Toggle span:nth-child(2) {
    top: 1.5rem;
  }
  .Toggle span:nth-child(3) {
    top: 2.5rem;
  }
  .Toggle.active span:nth-child(1) {
    top: 1.5rem;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .Toggle.active span:nth-child(2), .Toggle.active span:nth-child(3) {
    top: 1.5rem;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}


/* ---------------------------------------------------------------------------
//  footer01
--------------------------------------------------------------------------- */
.footer01 .container {
  background: #f5f5f5;
  padding: 6rem 0 5rem;
}

.footer01 .contents .content .title-area {
  background: #fff;
  color: #003990;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 1.5rem;
  padding: 2rem;
  text-align: center;
}
.footer01 .contents .content .text-area {
  position: relative;
}
.footer01 .contents .content .text-area .deco {
  left: -6.4rem;
  position: absolute;
  top: -7rem;
  width: 31.5rem;
}
.footer01 .contents .content .text-area .desc {
  color: #003990;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width:768px) {
  .footer01 .container {
    padding: 6rem 0 18rem;
  }

  .footer01 .contents .content .title-area {
    font-size: 2rem;
    line-height: 1.5;
    padding: 1rem;
  }
  .footer01 .contents .content .text-area .deco {
    bottom: -16rem;
    left: inherit;
    right: -1rem;
    top: inherit;
    width: 22rem;
  }
  .footer01 .contents .content .text-area .desc {
    text-align: left;
  }
}

/* ---------------------------------------------------------------------------
//  footer02
--------------------------------------------------------------------------- */
.footer02 {
  /* background-attachment: fixed; */
  background-image: url(../img/common/footer02-bg.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.footer02 .bg {
  background: rgba(28,32,36,.4);
  height: 100%;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.footer02 .container {
  padding: 4rem 0;
  position: relative;
}
.footer02 .contents .content {
  border: solid 1px #fff;
  padding: 1.8rem 0 4rem;
}
.footer02 .contents .content .title-area {
  color: #fff;
  font-size: 3.5rem;
  font-weight: 500;
  margin-bottom: 4rem;
  text-align: center;
}
.footer02 .contents .content .contact-area {
  display: flex;
  justify-content: center;
}
.footer02 .contents .content .contact-area .link {
  color: #fff;
  margin: 0 5rem;
  text-align: center;
  transition: .2s;
  width: 30.4rem;
}
.footer02 .contents .content .contact-area .link:hover {
  opacity: .7;
}
.footer02 .contents .content .contact-area .link.tel {
  cursor: default;
  pointer-events: none;
}
.footer02 .contents .content .contact-area .link .title {
  font-weight: bold;
  padding-bottom: 1.6rem;
  padding-top: 4.7rem;
  position: relative;
}
.footer02 .contents .content .contact-area .link .title::after {
  background: #fff;
  bottom: 0;
  content: '';
  height: 1px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 13rem;;
}
.footer02 .contents .content .contact-area .link .title {
  background-position: center top;
  background-repeat: no-repeat;
}
.footer02 .contents .content .contact-area .link.tel .title {
  background-image: url(../img/common/footer02-icon01.svg);
  background-size: 4.2rem;
}
.footer02 .contents .content .contact-area .link.mail .title {
  background-image: url(../img/common/footer02-icon02.svg);
  background-size: 4.7rem;
}
.footer02 .contents .content .contact-area .link.tel .desc {
  margin-top: 1rem;
}
.footer02 .contents .content .contact-area .link.mail .desc {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 2rem;
}

@media screen and (max-width: 768px) {
  .footer02 .container {
    padding: 4rem 0;
  }

  .footer02 .contents .content {
    padding: 2rem 2rem 4rem;
  }
  .footer02 .contents .content .title-area {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  .footer02 .contents .content .contact-area {
    display: block;
  }
  .footer02 .contents .content .contact-area .link {
    display: block;
    margin: 0;
    width: 100%;
  }
  .footer02 .contents .content .contact-area .link.tel {
    cursor: pointer;
    margin-bottom: 4rem;
    pointer-events: all;
  }
  .footer02 .contents .content .contact-area .link .title {
    padding-bottom: 1rem;
  }
  .footer02 .contents .content .contact-area .link.tel .desc {
    margin: auto;
    margin-top: 0;
    width: 22rem;
  }
  .footer02 .contents .content .contact-area .link.mail .desc {
    font-size: 1.4rem;
    margin-top: 1rem;
  }
}

/* ---------------------------------------------------------------------------
//  footer03
--------------------------------------------------------------------------- */
.footer03 .container {
  background: #003990;
  color: #fff;
  padding-bottom: 4rem;
  /* height: 54.6rem; */
  padding-top: 7.5rem;
  position: relative;
  text-align: center;
}
.footer03 .contents .content .title-area {
  margin-bottom: 1rem;
}
.footer03 .contents .content .title-area .logo {
  margin: auto;
  width: 8.1rem;
}
.footer03 .contents .content .title-area .title {
  font-size: 2.6rem;
  font-weight: bold;
  margin-top: -.5rem;
}
.footer03 .contents .content .text-area {
  font-size: 1.4rem;
  margin-bottom: 6.5rem;
}
.footer03 .contents .content .link-list {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}
.footer03 .contents .content .link-list .item {
  margin: 0 2rem;
}
.footer03 .contents .content .link-list .item .link {
  transition: .2s;
}
.footer03 .contents .content .link-list .item .link:hover {
  opacity: .7;
}
.footer03 .contents .content .bottom-area {
  align-items: center;
  display: flex;
  justify-content: center;
  transform: scale(.5);
}
.footer03 .contents .content .copyright {
  align-items: center;
  background: #fff;
  bottom: 0;
  color: #003990;
  display: flex;
  font-size: 1rem;
  height: 4rem;
  justify-content: center;
  left: 0;
  position: absolute;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .footer03 .container {
    padding-top: 6rem;
  }
  .footer03 .contents .content .text-area {
    font-size: 1.4rem;
    margin-bottom: 4rem;
  }
  .footer03 .contents .content .link-list {
    display: flex;
    flex-wrap: wrap;
    font-size: 1.2rem;
    justify-content: space-between;
  }
  .footer03 .contents .content .link-list .item {
    margin: 0;
    width: 20%;
  }
}

/* ---------------------------------------------------------------------------
//  sub-mv
--------------------------------------------------------------------------- */
.sub-mv {
  margin-top: 10.7rem;
  padding-top: 4rem;
  background-image: url(../img/common/sub-mv-bg.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 100% 44.2rem;
  height: 57.7rem;
}

.sub-mv .container {
  height: 100%;
}

.sub-mv .inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .sub-mv {
    margin-top: 6.45rem;
    padding-top: 2rem;
    background-size: 100% 22.2rem;
    height: 29rem;
  }
}

/* ---------------------------------------------------------------------------
//  404
--------------------------------------------------------------------------- */
.page404 {
  margin-top: 10.7rem;
  background-color: #004396;
  padding: 18.5rem 0 17.2rem;
  color: #fff;
  text-align: center;
}

.page404 .page-title-area .title {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 13rem;
  line-height: 1;
  margin-bottom: 2.5rem;
}

.page404 .page-title-area .eng {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 2.8rem;
  line-height: 1;
  margin-bottom: 2.3rem;
}

.page404 .desc {
  font-size: 1.7rem;
  line-height: 1;  
  margin-bottom: 2.9rem;
}

.page404 .link {
  width: 24.8rem;
  line-height: 4.8rem;
  font-weight: 500;
  font-size: 1.6rem;
  color: #004396;
  display: block;
  border-radius: 2.6rem;
  background-color: #fff;
  margin: 0 auto;
  transition: .2s;
}

.page404 .link:hover {
  opacity: .7;
}

@media screen and (max-width: 768px) {
  .page404 {
    margin-top: 6rem;
    padding: 9.2rem 0 8.6rem;
  }
  
  .page404 .page-title-area .title {
    font-size: 10rem;
    margin-bottom: 2rem;
  }

  .page404 .page-title-area .eng {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .page404 .desc {
    font-size: 1.6rem;
    line-height: calc(28/16);
  }
  
  .page404 .link {
    line-height: 4.5rem;
    font-size: 1.5rem;
  }
}