@charset "utf-8";

*,*:before,*:after {
  box-sizing:border-box;
}

html {
  font-size:62.5%;
}

body {
  font-family:source-han-serif-japanese,yu-mincho-pr6n,"游明朝体",YuMincho,"Yu Mincho","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","ＭＳ Ｐ明朝","MS PMincho",serif;
  letter-spacing:0.1rem;
  color:#1d2d66;
}

img {
  vertical-align:bottom;
}

a {
 text-decoration:none;
 color:#1d2d66;
}

.display-none {
   display:none;
}

.typing {
  opacity: 0;
}
.typing span {
  opacity: 0;
}

#loader {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1000;
}

#loader .loader-slide {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index:2147483647;
}

#loader .loader-slide img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 200px;
  height: auto;
}

#loader .loader-slide.open {
  animation-name: slideOut;
  animation-fill-mode: forwards;
  animation-duration: .5s;
  animation-delay: .5s;
}


@keyframes slideOut {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(100%);
  }
}


/* -------------------------------- #wrapper ------------------------------- */

#wrapper {
  width:100%;
  margin:0 auto;
}


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

header {
  display:flex;
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:100;
}

nav#nav {
  display:none;
}

#nav ul li a {
  color:#fff;
}

#nav ul li a.active {
  color:#1d2d66;
}

header.active {
  background:rgba(255,255,255,1);
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
}

header h1 img {
  max-width:200px;
  height:auto;
  padding: 10px 0 10px 10px;
  transition:all .3s ease;
}

header h1 a:hover > img {
  max-width:215px;
  transition:all .3s ease;
}


/* -------------------------------- .btn-wrapper -------------------------- */

.btn-wrapper {
  position:absolute;
  top:20px;
  right:20px;
  width:300px;
}

.btn-wrapper nav {
  position: fixed;
  top: 0;
  right:-100%;
  width:100%;
  height: 100%;
  padding-top: 120px;
  background:rgba(29,45,102,0.8);
  font-size: 16px;
  z-index: 999;
}

.btn-wrapper nav ul li {
  display:block;
  padding: 20px 28px;
}

.btn-wrapper nav ul li a {
  color: #fff;
}

.btn-wrapper nav ul li a:hover {
  text-decoration:underline;
}

.btn-wrapper .btn-gnav {
  position: fixed;
  top: 22px;
  right: 15px;
  width: 30px;
  height: 24px;
  z-index: 9999;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}

.btn-wrapper .btn-gnav span {
  position:absolute;
  width:30px;
  height:3px;
  background:#1d2d66;
  -webkit-transition:all 400ms;
  transition:all 400ms;
}

.btn-wrapper .btn-gnav span:nth-child(1) {
  top:0;
}

.btn-wrapper .btn-gnav span:nth-child(2) {
  top:10px;
}

.btn-wrapper .btn-gnav span:nth-child(3) {
  top:20px;
}

.btn-wrapper .btn-gnav.open {
  -webkit-transform:rotate(180deg);
  transform:rotate(180deg);
}

.btn-wrapper .btn-gnav.open span {
  width: 24px;
  background:#fff;
}

.btn-wrapper .contents section p {
  position: absolute;
  top: 50%;
  width: 30%;
  line-height: 1.4;
  font-size: 20px;
  color: #fff;
  z-index:10;
}

.btn-wrapper .contents section:nth-child(odd) p {
  left: 10%;
}

.btn-wrapper .contents section:nth-child(even) p {
  right: 10%;
}

.btn a {
  font-family: 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN",HGS明朝E,メイリオ,Meiryo,serif;
}


/* -------------------- #nav hover ------------------- */

#nav ul li a {
  position:relative;
}

#nav ul li a::after {
  background-color: #de5724;
  bottom: -10px;
  content: '';
  display: block;
  height: 4px;
  position: absolute;
  transition: .4s all;
  width: 0;
}

#nav ul li a:hover::after {
  width: 100%;
  max-width:100%;
}



/* -------------------------------- #eye-catch ------------------------------- */

#eye-catch {
  height:400px;
  width:100%;
  position:relative;
}

#eye-catch ul {
  padding:1px 0 0 30px;
  position:absolute;
  bottom:0px;
  left:0px;
  right:0px;
  width:100%;
  background:#de5724;
  height:28px;
}

#eye-catch ul li {
  display:inline-block;
  margin-right:15px;
  color:#fff;
  font-size:13px;
}

#eye-catch ul a {
  line-height:28px;
  font-size:13px;
  font-weight:bold;
  color:#fff;
}

#eye-catch .page-ttl {
  text-align:center;
  color:#fff;
  width:90%;
  position:absolute;
  top:45%;
  left:50%;
  transform:translate(-50%,-40%);
}

#eye-catch .page-ttl h2 {
  font-size:36px;
  padding-bottom:5px;
}

#eye-catch .page-ttl p {
  font-size:14px;
}


/* -------------------------------- #ct ------------------------------- */

#ct {
  width:100%;
  margin:0 auto;
  color: #1d2d66;
}

#ct .container {
  display:flex;
  flex-wrap:wrap;
  height:auto;
  border:2px solid #1d2d66;
  overflow:hidden;
}

#ct .ct-left {
  width:100%;
  height:200px;
  text-align:center;
  border-bottom:2px solid #1d2d66;
  position:relative;
}

#ct .ct-left-inner h2 {
  font-size:24px;
  margin-bottom:15px;
}

#ct .ct-left-inner p {
  font-size:16px;
  padding:0 20px;
}

#ct .ct-left-inner {
  width:100%;
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
}

#ct .ct-right {
  width:100%;

}

#ct .ct-right i {
  font-size:24px;
  vertical-align:middle;
  margin-right:40px;
}

#ct .ct-upper {
  border-bottom:2px solid #1d2d66;
  height:100px;
}

#ct .ct-upper a,
#ct .ct-btm a {
  height:100px;
  line-height:100px;
  color: #1d2d66;
  font-size:18px;
  display:block;
}

#ct span {
  width:100%;
  position:relative;
  left:35px;
}

#ct .ct-btm {
  height:100px;
}

#ct .ct-right p {
  position:relative;
}

#ct .ct-right p:after {
  position:absolute;
  content:">";
  display:inline-block;
  top:48%;
  transform:translate(-50%, -50%);
  right:15%;
  font-size:20px;
  transition:500ms all;
}

#ct .ct-right p:hover:after {
   right:10%;
   transition:500ms all;
}

#ct .ct-right p:hover {
  background:#1d2d66;
  color:#fff;
}




/* -------------------------------- footer ------------------------------- */

footer {
  background:#1d2d66;
  color:#fff;
}

footer .to-top {
  height:50px;
  position:relative;
  font-size:30px;
  text-align:center;
  margin-bottom:20px;
  background:#1d2d66;
  border-bottom:2px solid #fff;
  overflow:hidden;
}

footer .to-top a {
  position:absolute;
  top:0%;
  left:0%;
  padding-top:10px;
  color:#fff;
  display:block;
  width:100%;
}

footer .to-top a:hover {
  top:-10%;
  background:rgba(255,255,255,0.3);
  transition-duration:300ms;
}

footer .footer-logo {
  font-size:24px;
  text-align:center;
}

footer .footer-logo img {
  max-width:200px;
}

footer .footer-btm {
  display:flex;
  flex-wrap:wrap;
  width:85%;
  margin:0 auto;
  padding:20px 0 50px 0;
}

footer .footer-sub {
  font-size:24px;
}

footer .footer-nav a {
  font-size:14px;
  color:#fff;
}


footer nav ul {
  display:flex;
  flex-wrap:wrap;
}


footer nav ul li {
  width:50%;
  line-height:3rem;
}


footer .footer-btm > div {
  width:100%;
  margin-bottom:10px;
}

.nav-center address p {
  font-size:14px;
  line-height:3rem;
}

iframe {
  width:100%;
  max-width:100%;
}

.copy-wrapper {
  border-top:1px solid #fff;
  font-size:14px;
  text-align:center;
  color:#000;
  padding:10px 0;
  background:#fff;
}

.copy-wrapper p {
  display:inline-block;
}

.copy {
  margin-right:10px;
}

.copywrapper a {
  color:#000;
  font-size:14px;
}

footer .footer-logo img {
  max-width:200px;
  height:auto;
}

footer .footer-sub {
  margin-bottom:10px;
}








/* ================================================== tablet ================================================== */

@media screen and (min-width:760px) {



}


/* ================================================== pc ================================================== */


@media screen and (min-width:960px) {

  #eye-catch {
    height:500px;
  }



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


  header {
    justify-content:space-between;
    padding:20px;
  }

  header h1 {
    font-size:30px;
  }

  header #nav ul li a {
    font-size:14px;
    margin-right:5px;
    display:block;
  }

  header #nav ul li {
    padding:15px 30px;
  }


  nav#nav {
    display:block;
  }

  nav#nav ul {
    display:flex;
  }

  .btn-wrapper {
    display:none;
  }

  header h1 img {
    max-width:200px;
    padding:0;
  }

  footer .footer-logo {
    margin-bottom:20px;
  }

  footer .footer-logo img {
    max-width:200px;
  }

  footer .footer-btm > div {
    width:33.3%;
    margin-bottom:0px;
  }

　footer .nav-right p{
    margin-bottom:10px;
  }

  footer nav ul li {
    width:100%;
  }


  /* -------------------------------- #ct ------------------------------- */

  #ct {
    width:100%;
    margin:0 auto;
    color: #1d2d66;
  }

  #ct .container {
    display:flex;
    flex-wrap:wrap;
    height:300px;
    border:2px solid #1d2d66;
    overflow:hidden;
  }

  #ct .ct-left {
    width:65%;
    height:300px;
    text-align:center;
    border-right:2px solid #1d2d66;
    border-bottom:none;
    position:relative;
  }

  #ct .ct-left-inner h2 {
    font-size:24px;
    margin-bottom:15px;
  }

  #ct .ct-left-inner p {
    font-size:16px;
  }

  #ct .ct-left-inner {
    width:100%;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
  }

  #ct .ct-right {
    width:35%;
  }

  #ct .ct-right i {
    margin-right:70px;
  }

  #ct .ct-upper {
    border-bottom:2px solid #1d2d66;
    height:150px;
  }

  #ct .ct-upper a,
  #ct .ct-btm a {
    height:150px;
    line-height:150px;
    color: #1d2d66;
    font-size:18px;
    display:block;
  }

  #ct span {
    left:70px;
  }

  #ct .ct-btm {
    height:150px;
  }

  #ct .ct-right p {
    position:relative;
  }







}

@media screen and (min-width:1215px) {

}
