@charset "UTF-8";
html {
  overflow-y: scroll;
  font-size: 62.5%;
}

/*** タブレット 768x ~ 1512px***/
@media screen and (min-width: 768px) and (max-width: 1512px) {
  html {
    font-size: 0.8333333333vw;
    font-size: 0.66137566vw;
  }
}
/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {
  html {
    font-size: 62.5%;
  }
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  -webkit-text-size-adjust: none;
  line-height: 1.5;
  font-weight: 400;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.font_roboto{
  font-family: "Roboto", sans-serif;
}
/* !Base Fonts -------------------------------------------------------------- */
a {
  color: #fff;
  text-decoration: none;
}
@media (min-width: 768px) {
  a {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  a:hover {
    text-decoration: underline;
  }
}
a[href^="tel:"] {
  cursor: default;
  pointer-events: none;
}

@media (min-width: 768px) {
  .h-opacity {
    -webkit-transition: opacity 0.5s ease-out;
    transition: opacity 0.5s ease-out;
  }
  .h-opacity:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}

.is-hide {
  display: none;
}

.is-pc {
  display: block;
}
@media (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

.is-sp {
  display: none;
}
@media (max-width: 767px) {
  .is-sp {
    display: block;
  }
}

.wrap {
  overflow: hidden;
}

/* !wrapper
---------------------------------------------------------- */
#wrapper {
  width: 100%;
  position: relative;
  min-height: 100dvh;
  background: url(../img/bg.png) center top repeat-y #004B89;
  background-size: 100% auto;
  overflow: hidden;
}
.inner {
  width: 100%;
  max-width: 112.4rem;
  margin: 0 auto;
  padding: 0 5rem;
}
@media (max-width: 767px) {
  #wrapper {
    background: url(../img/bg.png) center top repeat-y #004B89;
    background-size: 81.8rem auto;
  }
  .inner {
    padding: 0 2.4rem;
  }
}

/* !header
---------------------------------------------------------- */
#header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 10;
  padding: 3.2rem;
}

#header .header-logo {
  width: 26.2rem;
  font-size: 1px;
  line-height: 1;
  position: relative;
  z-index: 999;
}
#header .header-logo img {
  width: 100%;
}

.header-links{
  position: fixed;
  right: 0;
  top: 0;
  z-index: 99;
}
.header-links ul{
  display: flex;
  position: relative;
}
.header-links ul:before{
  content: '';
  width: 2rem;
  height: 3rem;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 3;
  background: #C81027;
}
.header-links li a{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 700;
  width: 22rem;
  height: 5.6rem;
  position: relative;
  text-decoration: none;
}
.header-links li a.yellow{
  color: #000;
}
.header-links li a:before{
  content: '';
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #C81027;
  transform: skew(30deg);
  transition: all 0.5s;
  pointer-events: none;
}
.header-links li a.yellow:before{
  background: #FFDA2A;
}
@media (max-width: 767px) {
  #header {
    position: static;
    background: #fff;
    padding: .8rem 1.5rem;
  }

  #header .header-logo {
    width: 24rem;
    margin: 0 auto;
  }

  .header-links{
    bottom: 0;
    top: auto;
    width: 100%;
    padding: 1.6rem 2.4rem;
  }
  .header-links ul{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    position: relative;
  }
  .header-links ul:before{
    content: none;
  }
  .header-links li a{
    font-size: 1.4rem;
    width: 100%;
    height: 4.5rem;
  }

}

/* !footer
---------------------------------------------------------- */
#footer {
  background: #002B49;
  padding: 5.3rem 0 2.6rem;
  text-align: center;
  position: relative;
}
.footer-contact{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%,-50%);
}
.footer-contact p{
  font-size: 1.8rem;
  line-height: 1.55;
  font-weight: 700;
  position: absolute;
  bottom: calc(100% + .7rem);
  left: 50%;
  transform: translateX(-50%);
  padding: 0 1.4rem;
  background: url(../img/line_left.svg)no-repeat left center,
  url(../img/line_right.svg)no-repeat right center;
  background-size: .8rem auto,.8rem auto;
}
.footer-contact a{
  position: relative;
  z-index: 9;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 66rem;
  height: 6.6rem;
  padding-bottom: .4rem;
  font-size: 2.4rem;
  font-weight: 700;
  text-decoration: none;
}
.footer-contact a:before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url(../img/arrow_contact.svg)no-repeat right 2.5rem center;
  background-size: 2rem auto;
  background-color: #C81027;
  transform: skew(-5deg);
  transition: all 0.5s;
  box-shadow: inset 0 -.4rem 0 rgba(0, 0, 0, .25);
  pointer-events: none;
}

#copyright{
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: .05em;
  font-weight: 400;
}
@media (max-width: 767px) {
  #footer {
    padding: 6.7rem 0 7.5rem;
  }
  .footer-contact{
  }
  .footer-contact p{
    font-size: 1.5rem;
    line-height: 1.55;
    font-weight: 700;
    position: absolute;
    bottom: calc(100% + .5rem);
    left: 50%;
    transform: translateX(-50%);
    padding: 0 1.7rem;
    white-space: nowrap;
    background: url(../img/line_left.svg)no-repeat left bottom .2rem,
    url(../img/line_right.svg)no-repeat right bottom .2rem;
    background-size: .8rem auto,.8rem auto;
  }
  .footer-contact a{
    position: relative;
    z-index: 9;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 33.7rem;
    height: 8.6rem;
    padding-right: 3rem;
    padding-bottom: .4rem;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
  }
  .footer-contact a:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: url(../img/arrow_contact.svg)no-repeat right 2rem center;
    background-size: 2rem auto;
    background-color: #C81027;
    transform: skew(-5deg);
    transition: all 0.5s;
    box-shadow: inset 0 -.4rem 0 rgba(0, 0, 0, .25);
    pointer-events: none;
  }

  #copyright{
    font-size: 1.2rem;
    line-height: 2;
    letter-spacing: .05em;
    font-weight: 400;
  }
}

@media (min-width: 768px) {
  .header-links li a:hover{
    z-index: 2;
  }
  .header-links li a:hover:before{
    box-shadow: 0 0 2rem rgba(0,0,0,.6);
  }
  .footer-contact a:hover:before{
    box-shadow: none;
    background-position: right 2rem center;
  }
}